[
  {
    "path": ".github/ISSUE_TEMPLATE/breaking-bug-report.md",
    "content": "---\nname: Breaking bug report\nabout: Create a report about a breaking bug\ntitle: \"[BUG: Breaking]\"\nlabels: 'bug: breaking'\nassignees: ''\n\n---\n\n## 🧨 Describe the Bug\n\nA clear and concise description of the breaking issue (e.g., crash, OOM, exception, etc).\n\n## 📄 Input Document\n\nAttach the PDF or input file that triggered the error.\n\n## 📤 Output Trace / Stack Trace\n\nPaste the **complete** stack trace or error output, if available.\n\n<details>\n<summary>Click to expand</summary>\n\n```\nPaste stack trace here\n```\n\n</details>\n\n## ⚙️ Environment\n\nPlease fill in all relevant details:\n\n- **Marker version**: \n- **Surya version**: \n- **Python version**: \n- **PyTorch version**: \n- **Transformers version**: \n- **Operating System** (incl. container info if relevant): \n\n## ✅ Expected Behavior\n\nWhat did you expect Marker to do?\n\n## 📟 Command or Code Used\n\nPaste the **exact bash command** or **Python code** you used to run Marker:\n\n<details>\n<summary>Click to expand</summary>\n\n```bash\n# or Python code block\nyour_command_here --with-flags\n```\n\n</details>\n\n## 📎 Additional Context\n\nAny other context that might help us debug this (e.g., CLI options, working directory, runtime settings).\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: \"[FEAT]\"\nlabels: enhancement\nassignees: ''\n\n---\n\n## ✨ Is your feature request related to a problem?\n\nA clear and concise description of what the problem is. \n\n## 💡 Describe the Solution You'd Like\n\nA concise description of what you want to happen or how you envision it working.\n\n## 📋 Alternatives Considered\n\nAny alternative solutions or workarounds you've tried.\n\n## 🧩 Additional Context\n\nAny additional context, references, or related issues.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/output-bug-report.md",
    "content": "---\nname: Output bug report\nabout: Create a report about poor output quality\ntitle: \"[BUG: Output]\"\nlabels: 'bug: output'\nassignees: ''\n\n---\n\n## 📝 Describe the Output Issue\n\nA clear and concise description of the incorrect or unexpected output.\n\n## 📄 Input Document\n\nAttach the PDF or input file used.\n\n## 📤 Current Output\n\nPaste the Markdown or HTML that Marker generated:\n\n````markdown\nPaste output here\n`````\n\n## ✅ Expected Output\n\nDescribe or paste what you expected Marker to generate.\n\n## ⚙️ Environment\n\nPlease fill in all relevant details:\n\n* **Marker version**:\n* **Surya version**:\n* **Python version**:\n* **PyTorch version**:\n* **Transformers version**:\n* **Operating System**:\n\n## 📟 Command or Code Used\n\nPaste the **exact bash command** or **Python code** you used to run Marker:\n\n<details>\n<summary>Click to expand</summary>\n\n```bash\n# or Python code block\nyour_command_here --with-flags\n```\n\n</details>\n\n## 📎 Additional Context\n\nAny other relevant info, configs, or assumptions.\n"
  },
  {
    "path": ".github/workflows/benchmarks.yml",
    "content": "name: Integration test\n\non: [push]\n\nenv:\n  PYTHONIOENCODING: \"utf-8\"\n\njobs:\n  benchmark:\n    runs-on: ${{ matrix.os }}\n    strategy:\n      matrix:\n        os: [t4_gpu, ubuntu-latest]\n    steps:\n      - uses: actions/checkout@v3\n      - name: Set up Python 3.11\n        uses: actions/setup-python@v4\n        with:\n          python-version: 3.11\n      - name: Install apt dependencies\n        run: |\n          sudo apt-get update\n          sudo apt-get install -y pandoc\n      - name: Install python dependencies\n        run: |\n          pip install poetry\n          poetry install --extras \"full\"\n      - name: Run benchmark test\n        run: |\n          poetry run python benchmarks/overall/overall.py --max_rows 5\n          poetry run python benchmarks/verify_scores.py conversion_results/benchmark/overall/result.json --type marker\n      - name: Run table benchmark\n        run: |\n          poetry run python benchmarks/table/table.py --max_rows 5\n          poetry run python benchmarks/verify_scores.py conversion_results/benchmark/table/table.json --type table"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: CI tests\n\non: [push]\n\njobs:\n  tests:\n    runs-on: t4_gpu\n    steps:\n      - uses: actions/checkout@v3\n      - name: Install apt requirements\n        run: |\n          sudo apt-get update\n          sudo apt-get install -y libpango-1.0-0 libharfbuzz0b libpangoft2-1.0-0 libgdk-pixbuf2.0-0 libcairo2 libffi-dev shared-mime-info\n      - name: Set up Python 3.11\n        uses: actions/setup-python@v4\n        with:\n          python-version: 3.11\n      - name: Install python dependencies\n        run: |\n          pip install poetry\n          poetry install --extras \"full\"\n      - name: Run tests\n        env:\n          HF_TOKEN: ${{ secrets.HF_TOKEN }}\n        run: poetry run pytest\n"
  },
  {
    "path": ".github/workflows/cla.yml",
    "content": "name: \"Marker CLA Assistant\"\non:\n  issue_comment:\n    types: [created]\n  pull_request_target:\n    types: [opened,closed,synchronize]\n\n# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings\npermissions:\n  actions: write\n  contents: write\n  pull-requests: write\n  statuses: write\n\njobs:\n  CLAAssistant:\n    runs-on: ubuntu-latest\n    steps:\n      - name: \"Marker CLA Assistant\"\n        if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'\n        uses: contributor-assistant/github-action@v2.3.0\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          # the below token should have repo scope and must be manually added by you in the repository's secret\n          # This token is required only if you have configured to store the signatures in a remote repository/organization\n          PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}\n        with:\n          path-to-signatures: 'signatures/version1/cla.json'\n          path-to-document: 'https://github.com/VikParuchuri/marker/blob/master/CLA.md'\n          # branch should not be protected\n          branch: 'master'\n          allowlist: VikParuchuri,Sandy"
  },
  {
    "path": ".github/workflows/publish.yml",
    "content": "name: Python package\non:\n  push:\n    tags:\n      - \"v*.*.*\"\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - name: Set up Python 3.11\n        uses: actions/setup-python@v4\n        with:\n          python-version: 3.11\n      - name: Install python dependencies\n        run: |\n          pip install poetry\n          poetry install --extras \"full\"\n      - name: Build package\n        run: |\n          poetry build\n      - name: Extract version from pyproject.toml\n        id: version\n        run: |\n          VERSION=$(python -c \"import tomllib; print(tomllib.load(open('pyproject.toml', 'rb'))['tool']['poetry']['version'])\")\n          echo \"version=v$VERSION\" >> $GITHUB_OUTPUT\n      - name: Publish package\n        env:\n          PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}\n        run: |\n          poetry config pypi-token.pypi \"$PYPI_TOKEN\"\n          poetry publish\n"
  },
  {
    "path": ".github/workflows/scripts.yml",
    "content": "name: Test CLI scripts\n\non: [push]\n\njobs:\n  tests:\n    runs-on: t4_gpu\n    steps:\n      - uses: actions/checkout@v3\n      - name: Set up Python 3.11\n        uses: actions/setup-python@v4\n        with:\n          python-version: 3.11\n      - name: Install python dependencies\n        run: |\n          pip install poetry\n          poetry install --extras \"full\"\n      - name: Download benchmark data\n        run: |\n          wget -O benchmark_data.zip \"https://drive.google.com/uc?export=download&id=1NHrdYatR1rtqs2gPVfdvO0BAvocH8CJi\"\n          unzip -o benchmark_data.zip\n      - name: Test single script\n        run: poetry run marker_single benchmark_data/pdfs/switch_trans.pdf --page_range 0\n      - name: Test convert script\n        run: poetry run marker benchmark_data/pdfs --max_files 1 --page_range 0\n      - name: Text convert script multiple workers\n        run: poetry run marker benchmark_data/pdfs --max_files 2 --page_range 0-5\n      - name: Test llm option\n        run: |\n          poetry run marker_single benchmark_data/pdfs/switch_trans.pdf --page_range 0 --use_llm > output.txt || echo \"Command failed but continuing\"\n          if ! grep -q \"UserWarning\" output.txt; then\n            echo \"Success: No UserWarning found\"\n            exit 0\n          else\n            echo \"Error: UserWarning found in output\"\n            exit 1\n          fi"
  },
  {
    "path": ".gitignore",
    "content": "private.py\n.DS_Store\nlocal.env\nexperiments\ntest_data\ntraining\nwandb\n*.dat\nreport.json\nbenchmark_data\ndebug_data\ntemp.md\ntemp\nconversion_results\nuploads\n/cache\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/\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/\ncover/\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\n.pybuilder/\ntarget/\n\n# Jupyter Notebook\n.ipynb_checkpoints\n\n# IPython\nprofile_default/\nipython_config.py\n\n# pyenv\n#   For a library or package, you might want to ignore these files since the code is\n#   intended to run in multiple environments; otherwise, check them in:\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# poetry\n#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.\n#   This is especially recommended for binary packages to ensure reproducibility, and is more\n#   commonly ignored for libraries.\n#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control\n#poetry.lock\n\n# pdm\n#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.\n#pdm.lock\n#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it\n#   in version control.\n#   https://pdm.fming.dev/#use-with-ide\n.pdm.toml\n\n# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm\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\n# pytype static type analyzer\n.pytype/\n\n# Cython debug symbols\ncython_debug/\n\n# PyCharm\n#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can\n#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore\n#  and can be added to the global gitignore or merged into this file.  For a more nuclear\n#  option (not recommended) you can uncomment the following to ignore the entire idea folder.\n.idea/\n\n.vscode/"
  },
  {
    "path": ".pre-commit-config.yaml",
    "content": "repos:\n- repo: https://github.com/astral-sh/ruff-pre-commit\n  # Ruff version.\n  rev: v0.9.10\n  hooks:\n    # Run the linter.\n    - id: ruff\n      types_or: [ python, pyi ]\n      args: [ --fix ]\n    # Run the formatter.\n    - id: ruff-format\n      types_or: [ python, pyi ]"
  },
  {
    "path": "CLA.md",
    "content": "Marker Contributor Agreement\n\nThis Marker Contributor Agreement (\"MCA\") applies to any contribution that you make to any product or project managed by us (the \"project\"), and sets out the intellectual property rights you grant to us in the contributed materials. The term \"us\" shall mean Endless Labs, Inc. The term \"you\" shall mean the person or entity identified below. \n\nIf you agree to be bound by these terms, sign by writing \"I have read the CLA document and I hereby sign the CLA\" in response to the CLA bot Github comment. Read this agreement carefully before signing. These terms and conditions constitute a binding legal agreement.\n\n1. The term 'contribution' or 'contributed materials' means any source code, object code, patch, tool, sample, graphic, specification, manual, documentation, or any other material posted or submitted by you to the project. \n2. With respect to any worldwide copyrights, or copyright applications and registrations, in your contribution: \n   - you hereby assign to us joint ownership, and to the extent that such assignment is or becomes invalid, ineffective or unenforceable, you hereby grant to us a perpetual, irrevocable, non-exclusive, worldwide, no-charge, royalty free, unrestricted license to exercise all rights under those copyrights. This includes, at our option, the right to sublicense these same rights to third parties through multiple levels of sublicensees or other licensing arrangements, including dual-license structures for commercial customers; \n   - you agree that each of us can do all things in relation to your contribution as if each of us were the sole owners, and if one of us makes a derivative work of your contribution, the one who makes the derivative work (or has it made will be the sole owner of that derivative work; \n   - you agree that you will not assert any moral rights in your contribution against us, our licensees or transferees; \n   - you agree that we may register a copyright in your contribution and exercise all ownership rights associated with it; and \n   - you agree that neither of us has any duty to consult with, obtain the consent of, pay or render an accounting to the other for any use or distribution of vour contribution. \n3. With respect to any patents you own, or that you can license without payment to any third party, you hereby grant to us a perpetual, irrevocable, non-exclusive, worldwide, no-charge, royalty-free license to:\n   - make, have made, use, sell, offer to sell, import, and otherwise transfer your contribution in whole or in part, alone or in combination with or included in any product, work or materials arising out of the project to which your contribution was submitted, and\n   - at our option, to sublicense these same rights to third parties through multiple levels of sublicensees or other licensing arrangements. \nIf you or your affiliates institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the contribution or any project it was submitted to constitutes direct or contributory patent infringement, then any patent licenses granted to you under this agreement for that contribution shall terminate as of the date such litigation is filed.\n4. Except as set out above, you keep all right, title, and interest in your contribution. The rights that you grant to us under these terms are effective on the date you first submitted a contribution to us, even if your submission took place before the date you sign these terms. Any contribution we make available under any license will also be made available under a suitable FSF (Free Software Foundation) or OSI (Open Source Initiative) approved license. \n5. You covenant, represent, warrant and agree that: \n   - each contribution that you submit is and shall be an original work of authorship and you can legally grant the rights set out in this MCA; \n   - to the best of your knowledge, each contribution will not violate any third party's copyrights, trademarks, patents, or other intellectual property rights; and \n   - each contribution shall be in compliance with U.S. export control laws and other applicable export and import laws.\nYou agree to notify us if you become aware of any circumstance which would make any of the foregoing representations inaccurate in any respect. Endless Labs, Inc. may publicly disclose your participation in the project, including the fact that you have signed the MCA. \n6. This MCA is governed by the laws of the State of California and applicable U.S. Federal law. Any choice of law rules will not apply."
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    Marker\n    Copyright (C) 2024  Endless Labs, Inc.\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    Marker Copyright (C) 2024  Endless Labs, Inc.\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<https://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<https://www.gnu.org/licenses/why-not-lgpl.html>."
  },
  {
    "path": "MODEL_LICENSE",
    "content": "                   AI PUBS OPEN RAIL-M LICENSE (MODIFIED)\n\nVersion 0.1, March 2, 2023 (Modified)\nhttp://licenses.ai/\n\nPLEASE READ THESE TERMS CAREFULLY BEFORE USING THE MODEL OR A DERIVATIVE WORKS OF THE MODEL MADE AVAILABLE IN CONNECTION WITH THESE TERMS.  BY DOWNLOADING, REPRODUCING, DISTRIBUTING OR USING THE MODEL OR A DERIVATIVE WORK OF THE MODEL IN ANY MANNER, YOU (“YOU”) AGREE TO BE BOUND BY THESE TERMS (THE “AGREEMENT”) TO THE EXCLUSION OF ALL OTHER TERMS. YOU REPRESENT AND WARRANT THAT YOU HAVE THE AUTHORITY TO ENTER INTO THIS AGREEMENT; IF YOU ARE ENTERING INTO THIS AGREEMENT ON BEHALF OF AN ORGANIZATION OR ENTITY, REFERENCES TO AND “YOU” IN THIS AGREEMENT, REFER TO THAT ORGANIZATION OR ENTITY. IF YOU DO NOT AGREE TO ALL OF THE FOLLOWING, YOU MAY NOT DOWNLOAD, REPRODUCE, DISTRIBUTE OR USE THE MODEL OR A DERIVATIVE WORK OF THE MODEL IN ANY MANNER.\n Section  I:  PREAMBLE\nThis OpenRAIL-M License, as modified, is generally applicable to any machine-learning Model.\nThe “Open” nomenclature indicates that the licensed Model is be freely accessible to downstream and other users.  The “RAIL” nomenclature indicates that there are use restrictions prohibiting the use of the Model. These restrictions are intended to avoid potential misuse. This License specifies that the  use restrictions in the original License must apply to such derivatives.\nNOW THEREFORE, You and Licensor agree as follows:\n1. Definitions\n(a) “Complementary Material” means the applicable source code and scripts used to define, run, load, benchmark or evaluate the Model, and used to prepare data for training or evaluation, if any. This includes any accompanying documentation, tutorials, examples, and any related information, if any. Complementary Material is not licensed under this License.\n(b) \"Contribution\" means any work, including the original version of the Model and any modifications or additions to that Model or Derivatives of the Model thereof, that is intentionally submitted to Licensor for inclusion in the Model by the rights owner or by an individual or legal entity authorized to submit on behalf of the rights owner. For the purposes of this definition, “submitted” means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Model, but excluding communication that is conspicuously marked or otherwise designated in writing by the rights owner as \"Not a Contribution.\"\n(c) \"Contributor\"  means Licensor and any individual or legal entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Model.\n(d) “Data” means a collection of information and/or content extracted from the dataset used with the Model, including to train, pretrain, or otherwise evaluate the Model. The Data is not licensed under this License.\n(e) “Derivatives of the Model” means all modifications to the Model, works based on the Model, or any other model which is created or initialized by transfer of patterns of the weights, parameters, activations or output of the Model, to the other model, in order to cause the other model to perform similarly to the Model, including - but not limited to - distillation methods entailing the use of intermediate data representations or methods based on the generation of synthetic data by the Model for training the other model.\n(f) “Distribution” means any transmission, reproduction, publication, distribution, or other sharing of the Model or Derivatives of the Model to a third party, including providing the Model as a hosted service made available by electronic or other remote means, including but not limited to API-based or web access.\n(g) “Harm” includes but is not limited to physical, mental, psychological, financial and reputational damage, pain, or loss\n(h) \"License\" means the terms and conditions for use, reproduction, and Distribution as defined in this document.\n(i) “Licensor” means the rights owner or entity authorized by the rights owner that is granting the License, including the persons or entities that may have rights in the Model and/or distributing the Model.\n(j) “Model” means any accompanying machine-learning based assemblies (including checkpoints), consisting of learnt weights, parameters (including optimizer states), corresponding to the model architecture as embodied in the Complementary Material, that have been trained or tuned, in whole or in part on the Data, using the Complementary Material.\n(k) “Output” means the results of operating a Model as embodied in informational content resulting therefrom.\n(l) “Third Parties” means individuals or legal entities that are not under common control with Licensor or You.\n(m) \"You\" (or \"Your\")  means an individual or legal entity exercising permissions granted by this License and/or making use of the Model for whichever purpose and in any field of use, including usage of the Model in an end-use application, including but not limited to a chatbot, translator, or image generator.\n                                              Section II:   INTELLECTUAL PROPERTY RIGHTS\nBoth copyright and patent grants may apply to the Model and Derivatives of the Model. The Model and Derivatives of the Model are subject to additional terms as described in Section III, which shall govern the use of the Model and Derivatives of the Model even in the event Section II is held unenforceable.\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare, publicly display, publicly perform, sublicense, and distribute the Model and Derivatives of the Model.\n3. Grant of Patent License. Subject to the terms and conditions of this License and where and as applicable, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this paragraph) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Model and/or Derivatives of the Model where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Model or Derivatives of the Model to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Model or Derivative of the Model and/or a Contribution incorporated within the Model or Derivative of the Model constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for the Model and/or Derivative of the Model shall terminate as of the date such litigation is asserted or filed.\nSection III: CONDITIONS OF USAGE, DISTRIBUTION AND REDISTRIBUTION\n4. Distribution and Redistribution. You may host the Model or Derivatives of the Model for remote access by Third Parties, including but not limited to  software-as-a-service, reproduce,  or Distribute copies of the Model or Derivatives of the Model thereof in any medium, with or without modifications, provided that You meet the conditions in this Section III:\n(a) Use-based restrictions in paragraph 5 MUST be included as an enforceable provision by You in any type of legal agreement (for example, a license) governing the use and/or distribution of the Model or Derivatives of the Model, and You shall give notice to subsequent users You Distribute to, that the Model and Derivatives of the Model are subject to paragraph 5;\n(b) You must give any Third Party recipients of the Model or Derivatives of the Model a copy of this License;\n(c) You must cause any modified files to carry prominent notices stating that You changed the files; and\n(d) You must retain all copyright, patent, trademark, and attribution notices excluding those notices that do not pertain to any part of the Model or  Derivatives of the Model.\nYou may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions, consistent with paragraph 4.a., for use, reproduction, or Distribution of Your modifications, or for any such Derivatives of the Model as a whole, provided Your use, reproduction, and Distribution of the Model otherwise complies with the conditions stated in this License.\n5. Use-based restrictions. The restrictions set forth in Attachment A are considered Use-based restrictions. Accordingly, You cannot use the Model or the Derivatives of the Model in violation of such restrictions. You may use the Model subject to this License, including only for lawful purposes and in accordance with the License. Use may include creating any content with, fine-tuning, updating, running, training, evaluating and/or re-parametrizing the Model. You shall require all of Your users who use the Model or a Derivative of the Model to comply with the terms of this paragraph 5.\n6.  The Output You Generate. Except as set forth herein, Licensor claims no rights in the Output You generate using the Model. You are solely responsible for the Output you generate and its subsequent uses. No use of the Output can contravene any provision as stated in the License.\n7.  Attribution.  In connection with any Output, or use of Distribution of any Model or Derivatives of the Model, You agree to give appropriate credit and attribution to Licensor, provide a link to the original Model or Derivatives of the Model, provide a copy of this License, and identify any changes You have made to the Model or Derivatives of the Model (collectively, the “Attribution”).  The Attribution must not suggest endorsement by any Licensor.\n8.  Share-a-Like.  As a condition to the license and authorizations herein, You agree to apply this License (to the exclusion of all others) to any and all copies of the Model, Derivatives of the Model, any changes or improvements to the Model or Derivatives of the Model, and to the Output and any derivatives, changes or improvements to or of the Output.\nSection IV: OTHER PROVISIONS\n9. Updates and Runtime Restrictions. To the maximum extent permitted by law, Licensor reserves the right to restrict (remotely or otherwise) usage of the Model in violation of this License, update the Model through electronic means, or cause modification to the Output resulting from updates to the Model based.\n10. Trademarks and related. Nothing in this License permits You to make use of Licensors’ trademarks, trade names, logos or to otherwise suggest endorsement or misrepresent the relationship between the parties; and any rights not expressly granted herein are reserved by the Licensors.\n11. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Model (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Model and Derivatives of the Model, and assume any risks associated with Your exercise of permissions under this License.\n12. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Model (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n13. Accepting Warranty or Additional Liability. While Distributing the Model or Derivatives of the Model, You may choose to charge a fee in exchange for support, warranty, indemnity, or other obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor or Licensor, and only if You agree to indemnify, defend, and hold each Contributor and the Licensor harmless for any liability incurred by, or claims asserted against, such Contributor or Licensor by reason of your accepting any such warranty or additional liability.\n14. If any provision of this License is held to be invalid, illegal or unenforceable, the remaining provisions shall be unaffected thereby and remain valid as if such provision had not been set forth herein.\nEND OF TERMS AND CONDITIONS\n\nAttachment A\nUSE RESTRICTIONS\nAs conditions to the Licenses set forth in this Agreement, You agree not to use, reproduce, modify, create or Distribute the Model, Derivatives of the Model, or Output (collectively, “Use”)  in any of the following ways:\n1. Legal:\n(a) In any way that violates any applicable national, federal, state, local or international law or regulation; or\n(b) to directly or indirectly infringe or misappropriate any third party intellectual property rights (including those of Licensor or any Contributor)\n2. Commercial:\n(a) for any purpose if You (your employer, or the entity you are affiliated with) generated more than two million US Dollars ($2,000,000) in gross revenue in the prior year, except where Your Use is limited to personal use or research purposes;\n(b) for any purpose if You (your employer, or the entity you are affiliated with) has raised more than two million US dollars ($2,000,000) in total equity or debt funding from any source, except where Your Use is limited to personal use or research purposes; or\n(c)  for any purpose if You (your employer, or the entity you are affiliated with) provides or otherwise makes available any product or service that competes with any product or service offered by or made available by Licensor or any of its affiliates.\nCommercial and broader use licenses may be available from Licensor at the following URL: https://www.datalab.to/"
  },
  {
    "path": "README.md",
    "content": "# Marker\n\nMarker converts documents to markdown, JSON, chunks, and HTML quickly and accurately.\n\n- Converts PDF, image, PPTX, DOCX, XLSX, HTML, EPUB files in all languages\n- Formats tables, forms, equations, inline math, links, references, and code blocks\n- Extracts and saves images\n- Removes headers/footers/other artifacts\n- Extensible with your own formatting and logic\n- Does structured extraction, given a JSON schema (beta)\n- Optionally boost accuracy with LLMs (and your own prompt)\n- Works on GPU, CPU, or MPS\n\nFor our managed API or on-prem document intelligence solution, check out [our platform here](https://datalab.to?utm_source=gh-marker).\n\n## Performance\n\n<img src=\"data/images/overall.png\" width=\"800px\"/>\n\nMarker benchmarks favorably compared to cloud services like Llamaparse and Mathpix, as well as other open source tools.\n\nThe above results are running single PDF pages serially.  Marker is significantly faster when running in batch mode, with a projected throughput of 25 pages/second on an H100.\n\nSee [below](#benchmarks) for detailed speed and accuracy benchmarks, and instructions on how to run your own benchmarks.\n\n## Hybrid Mode\n\nFor the highest accuracy, pass the `--use_llm` flag to use an LLM alongside marker.  This will do things like merge tables across pages, handle inline math, format tables properly, and extract values from forms.  It can use any gemini or ollama model.  By default, it uses `gemini-2.0-flash`.  See [below](#llm-services) for details.\n\nHere is a table benchmark comparing marker, gemini flash alone, and marker with use_llm:\n\n<img src=\"data/images/table.png\" width=\"400px\"/>\n\nAs you can see, the use_llm mode offers higher accuracy than marker or gemini alone.\n\n## Examples\n\n| PDF | File type | Markdown                                                                                                                     | JSON                                                                                                   |\n|-----|-----------|------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|\n| [Think Python](https://greenteapress.com/thinkpython/thinkpython.pdf) | Textbook | [View](https://github.com/VikParuchuri/marker/blob/master/data/examples/markdown/thinkpython/thinkpython.md)                 | [View](https://github.com/VikParuchuri/marker/blob/master/data/examples/json/thinkpython.json)         |\n| [Switch Transformers](https://arxiv.org/pdf/2101.03961.pdf) | arXiv paper | [View](https://github.com/VikParuchuri/marker/blob/master/data/examples/markdown/switch_transformers/switch_trans.md) | [View](https://github.com/VikParuchuri/marker/blob/master/data/examples/json/switch_trans.json) |\n| [Multi-column CNN](https://arxiv.org/pdf/1804.07821.pdf) | arXiv paper | [View](https://github.com/VikParuchuri/marker/blob/master/data/examples/markdown/multicolcnn/multicolcnn.md)                 | [View](https://github.com/VikParuchuri/marker/blob/master/data/examples/json/multicolcnn.json)         |\n\n# Commercial usage\n\nOur model weights use a modified AI Pubs Open Rail-M license (free for research, personal use, and startups under $2M funding/revenue) and our code is GPL. For broader commercial licensing or to remove GPL requirements, visit our pricing page [here](https://www.datalab.to/pricing?utm_source=gh-marker).\n\n# Hosted API & On-prem\n\nThere's a [hosted API](https://www.datalab.to?utm_source=gh-marker) and [painless on-prem solution](https://www.datalab.to/blog/self-serve-on-prem-licensing) for marker - it's free to sign up, and we'll throw in credits for you to test it out.\n\nThe API:\n- Supports PDF, image, PPT, PPTX, DOC, DOCX, XLS, XLSX, HTML, EPUB files\n- Is 1/4th the price of leading cloud-based competitors\n- Fast - ~15s for a 250 page PDF\n- Supports LLM mode\n- High uptime (99.99%)\n\n# Community\n\n[Discord](https://discord.gg//KuZwXNGnfH) is where we discuss future development.\n\n# Installation\n\nYou'll need python 3.10+ and [PyTorch](https://pytorch.org/get-started/locally/).\n\nInstall with:\n\n```shell\npip install marker-pdf\n```\n\nIf you want to use marker on documents other than PDFs, you will need to install additional dependencies with:\n\n```shell\npip install marker-pdf[full]\n```\n\n# Usage\n\nFirst, some configuration:\n\n- Your torch device will be automatically detected, but you can override this.  For example, `TORCH_DEVICE=cuda`.\n- Some PDFs, even digital ones, have bad text in them.  Set `--force_ocr` to force OCR on all lines, or the `strip_existing_ocr` to keep all digital text, and strip out any existing OCR text.\n- If you care about inline math, set `force_ocr` to convert inline math to LaTeX.\n\n## Interactive App\n\nI've included a streamlit app that lets you interactively try marker with some basic options.  Run it with:\n\n```shell\npip install streamlit streamlit-ace\nmarker_gui\n```\n\n## Convert a single file\n\n```shell\nmarker_single /path/to/file.pdf\n```\n\nYou can pass in PDFs or images.\n\nOptions:\n- `--page_range TEXT`: Specify which pages to process. Accepts comma-separated page numbers and ranges. Example: `--page_range \"0,5-10,20\"` will process pages 0, 5 through 10, and page 20.\n- `--output_format [markdown|json|html|chunks]`: Specify the format for the output results.\n- `--output_dir PATH`: Directory where output files will be saved. Defaults to the value specified in settings.OUTPUT_DIR.\n- `--paginate_output`: Paginates the output, using `\\n\\n{PAGE_NUMBER}` followed by `-` * 48, then `\\n\\n`\n- `--use_llm`: Uses an LLM to improve accuracy.  You will need to configure the LLM backend - see [below](#llm-services).\n- `--force_ocr`: Force OCR processing on the entire document, even for pages that might contain extractable text.  This will also format inline math properly.\n- `--block_correction_prompt`: if LLM mode is active, an optional prompt that will be used to correct the output of marker.  This is useful for custom formatting or logic that you want to apply to the output.\n- `--strip_existing_ocr`: Remove all existing OCR text in the document and re-OCR with surya.\n- `--redo_inline_math`: If you want the absolute highest quality inline math conversion, use this along with `--use_llm`.\n- `--disable_image_extraction`: Don't extract images from the PDF.  If you also specify `--use_llm`, then images will be replaced with a description.\n- `--debug`: Enable debug mode for additional logging and diagnostic information.\n- `--processors TEXT`: Override the default processors by providing their full module paths, separated by commas. Example: `--processors \"module1.processor1,module2.processor2\"`\n- `--config_json PATH`: Path to a JSON configuration file containing additional settings.\n- `config --help`: List all available builders, processors, and converters, and their associated configuration.  These values can be used to build a JSON configuration file for additional tweaking of marker defaults.\n- `--converter_cls`: One of `marker.converters.pdf.PdfConverter` (default) or `marker.converters.table.TableConverter`.  The `PdfConverter` will convert the whole PDF, the `TableConverter` will only extract and convert tables.\n- `--llm_service`: Which llm service to use if `--use_llm` is passed.  This defaults to `marker.services.gemini.GoogleGeminiService`.\n- `--help`: see all of the flags that can be passed into marker.  (it supports many more options then are listed above)\n\nThe list of supported languages for surya OCR is [here](https://github.com/VikParuchuri/surya/blob/master/surya/recognition/languages.py).  If you don't need OCR, marker can work with any language.\n\n## Convert multiple files\n\n```shell\nmarker /path/to/input/folder\n```\n\n- `marker` supports all the same options from `marker_single` above.\n- `--workers` is the number of conversion workers to run simultaneously.  This is automatically set by default, but you can increase it to increase throughput, at the cost of more CPU/GPU usage.  Marker will use 5GB of VRAM per worker at the peak, and 3.5GB average.\n\n## Convert multiple files on multiple GPUs\n\n```shell\nNUM_DEVICES=4 NUM_WORKERS=15 marker_chunk_convert ../pdf_in ../md_out\n```\n\n- `NUM_DEVICES` is the number of GPUs to use.  Should be `2` or greater.\n- `NUM_WORKERS` is the number of parallel processes to run on each GPU.\n\n## Use from python\n\nSee the `PdfConverter` class at `marker/converters/pdf.py` function for additional arguments that can be passed.\n\n```python\nfrom marker.converters.pdf import PdfConverter\nfrom marker.models import create_model_dict\nfrom marker.output import text_from_rendered\n\nconverter = PdfConverter(\n    artifact_dict=create_model_dict(),\n)\nrendered = converter(\"FILEPATH\")\ntext, _, images = text_from_rendered(rendered)\n```\n\n`rendered` will be a pydantic basemodel with different properties depending on the output type requested.  With markdown output (default), you'll have the properties `markdown`, `metadata`, and `images`.  For json output, you'll have `children`, `block_type`, and `metadata`.\n\n### Custom configuration\n\nYou can pass configuration using the `ConfigParser`.  To see all available options, do `marker_single --help`.\n\n```python\nfrom marker.converters.pdf import PdfConverter\nfrom marker.models import create_model_dict\nfrom marker.config.parser import ConfigParser\n\nconfig = {\n    \"output_format\": \"json\",\n    \"ADDITIONAL_KEY\": \"VALUE\"\n}\nconfig_parser = ConfigParser(config)\n\nconverter = PdfConverter(\n    config=config_parser.generate_config_dict(),\n    artifact_dict=create_model_dict(),\n    processor_list=config_parser.get_processors(),\n    renderer=config_parser.get_renderer(),\n    llm_service=config_parser.get_llm_service()\n)\nrendered = converter(\"FILEPATH\")\n```\n\n### Extract blocks\n\nEach document consists of one or more pages.  Pages contain blocks, which can themselves contain other blocks.  It's possible to programmatically manipulate these blocks.\n\nHere's an example of extracting all forms from a document:\n\n```python\nfrom marker.converters.pdf import PdfConverter\nfrom marker.models import create_model_dict\nfrom marker.schema import BlockTypes\n\nconverter = PdfConverter(\n    artifact_dict=create_model_dict(),\n)\ndocument = converter.build_document(\"FILEPATH\")\nforms = document.contained_blocks((BlockTypes.Form,))\n```\n\nLook at the processors for more examples of extracting and manipulating blocks.\n\n## Other converters\n\nYou can also use other converters that define different conversion pipelines:\n\n### Extract tables\n\nThe `TableConverter` will only convert and extract tables:\n\n```python\nfrom marker.converters.table import TableConverter\nfrom marker.models import create_model_dict\nfrom marker.output import text_from_rendered\n\nconverter = TableConverter(\n    artifact_dict=create_model_dict(),\n)\nrendered = converter(\"FILEPATH\")\ntext, _, images = text_from_rendered(rendered)\n```\n\nThis takes all the same configuration as the PdfConverter.  You can specify the configuration `force_layout_block=Table` to avoid layout detection and instead assume every page is a table.  Set `output_format=json` to also get cell bounding boxes.\n\nYou can also run this via the CLI with\n```shell\nmarker_single FILENAME --use_llm --force_layout_block Table --converter_cls marker.converters.table.TableConverter --output_format json\n```\n\n### OCR Only\n\nIf you only want to run OCR, you can also do that through the `OCRConverter`.  Set `--keep_chars` to keep individual characters and bounding boxes.\n\n```python\nfrom marker.converters.ocr import OCRConverter\nfrom marker.models import create_model_dict\n\nconverter = OCRConverter(\n    artifact_dict=create_model_dict(),\n)\nrendered = converter(\"FILEPATH\")\n```\n\nThis takes all the same configuration as the PdfConverter.\n\nYou can also run this via the CLI with\n```shell\nmarker_single FILENAME --converter_cls marker.converters.ocr.OCRConverter\n```\n\n### Structured Extraction (beta)\n\nYou can run structured extraction via the `ExtractionConverter`.  This requires an llm service to be setup first (see [here](#llm-services) for details).  You'll get a JSON output with the extracted values.\n\n```python\nfrom marker.converters.extraction import ExtractionConverter\nfrom marker.models import create_model_dict\nfrom marker.config.parser import ConfigParser\nfrom pydantic import BaseModel\n\nclass Links(BaseModel):\n    links: list[str]\n\nschema = Links.model_json_schema()\nconfig_parser = ConfigParser({\n    \"page_schema\": schema\n})\n\nconverter = ExtractionConverter(\n    artifact_dict=create_model_dict(),\n    config=config_parser.generate_config_dict(),\n    llm_service=config_parser.get_llm_service(),\n)\nrendered = converter(\"FILEPATH\")\n```\n\nRendered will have an `original_markdown` field.  If you pass this back in next time you run the converter, as the `existing_markdown` config key, you can skip re-parsing the document.\n\n# Output Formats\n\n## Markdown\n\nMarkdown output will include:\n\n- image links (images will be saved in the same folder)\n- formatted tables\n- embedded LaTeX equations (fenced with `$$`)\n- Code is fenced with triple backticks\n- Superscripts for footnotes\n\n## HTML\n\nHTML output is similar to markdown output:\n\n- Images are included via `img` tags\n- equations are fenced with `<math>` tags\n- code is in `pre` tags\n\n## JSON\n\nJSON output will be organized in a tree-like structure, with the leaf nodes being blocks.  Examples of leaf nodes are a single list item, a paragraph of text, or an image.\n\nThe output will be a list, with each list item representing a page.  Each page is considered a block in the internal marker schema.  There are different types of blocks to represent different elements.\n\nPages have the keys:\n\n- `id` - unique id for the block.\n- `block_type` - the type of block. The possible block types can be seen in `marker/schema/__init__.py`.  As of this writing, they are [\"Line\", \"Span\", \"FigureGroup\", \"TableGroup\", \"ListGroup\", \"PictureGroup\", \"Page\", \"Caption\", \"Code\", \"Figure\", \"Footnote\", \"Form\", \"Equation\", \"Handwriting\", \"TextInlineMath\", \"ListItem\", \"PageFooter\", \"PageHeader\", \"Picture\", \"SectionHeader\", \"Table\", \"Text\", \"TableOfContents\", \"Document\"]\n- `html` - the HTML for the page.  Note that this will have recursive references to children.  The `content-ref` tags must be replaced with the child content if you want the full html.  You can see an example of this at `marker/output.py:json_to_html`.  That function will take in a single block from the json output, and turn it into HTML.\n- `polygon` - the 4-corner polygon of the page, in (x1,y1), (x2,y2), (x3, y3), (x4, y4) format.  (x1,y1) is the top left, and coordinates go clockwise.\n- `children` - the child blocks.\n\nThe child blocks have two additional keys:\n\n- `section_hierarchy` - indicates the sections that the block is part of.  `1` indicates an h1 tag, `2` an h2, and so on.\n- `images` - base64 encoded images.  The key will be the block id, and the data will be the encoded image.\n\nNote that child blocks of pages can have their own children as well (a tree structure).\n\n```json\n{\n      \"id\": \"/page/10/Page/366\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/10/SectionHeader/0'></content-ref><content-ref src='/page/10/SectionHeader/1'></content-ref><content-ref src='/page/10/Text/2'></content-ref><content-ref src='/page/10/Text/3'></content-ref><content-ref src='/page/10/Figure/4'></content-ref><content-ref src='/page/10/SectionHeader/5'></content-ref><content-ref src='/page/10/SectionHeader/6'></content-ref><content-ref src='/page/10/TextInlineMath/7'></content-ref><content-ref src='/page/10/TextInlineMath/8'></content-ref><content-ref src='/page/10/Table/9'></content-ref><content-ref src='/page/10/SectionHeader/10'></content-ref><content-ref src='/page/10/Text/11'></content-ref>\",\n      \"polygon\": [[0.0, 0.0], [612.0, 0.0], [612.0, 792.0], [0.0, 792.0]],\n      \"children\": [\n        {\n          \"id\": \"/page/10/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>Supplementary Material for <i>Subspace Adversarial Training</i> </h1>\",\n          \"polygon\": [\n            [217.845703125, 80.630859375], [374.73046875, 80.630859375],\n            [374.73046875, 107.0],\n            [217.845703125, 107.0]\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/10/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        ...\n        ]\n    }\n\n\n```\n\n## Chunks\n\nChunks format is similar to JSON, but flattens everything into a single list instead of a tree.  Only the top level blocks from each page show up. It also has the full HTML of each block inside, so you don't need to crawl the tree to reconstruct it.  This enable flexible and easy chunking for RAG.\n\n## Metadata\n\nAll output formats will return a metadata dictionary, with the following fields:\n\n```json\n{\n    \"table_of_contents\": [\n      {\n        \"title\": \"Introduction\",\n        \"heading_level\": 1,\n        \"page_id\": 0,\n        \"polygon\": [...]\n      }\n    ], // computed PDF table of contents\n    \"page_stats\": [\n      {\n        \"page_id\":  0,\n        \"text_extraction_method\": \"pdftext\",\n        \"block_counts\": [(\"Span\", 200), ...]\n      },\n      ...\n    ]\n}\n```\n\n# LLM Services\n\nWhen running with the `--use_llm` flag, you have a choice of services you can use:\n\n- `Gemini` - this will use the Gemini developer API by default.  You'll need to pass `--gemini_api_key` to configuration.\n- `Google Vertex` - this will use vertex, which can be more reliable.  You'll need to pass `--vertex_project_id`.  To use it, set `--llm_service=marker.services.vertex.GoogleVertexService`.\n- `Ollama` - this will use local models.  You can configure `--ollama_base_url` and `--ollama_model`. To use it, set `--llm_service=marker.services.ollama.OllamaService`.\n- `Claude` - this will use the anthropic API.  You can configure `--claude_api_key`, and `--claude_model_name`.  To use it, set `--llm_service=marker.services.claude.ClaudeService`.\n- `OpenAI` - this supports any openai-like endpoint. You can configure `--openai_api_key`, `--openai_model`, and `--openai_base_url`. To use it, set `--llm_service=marker.services.openai.OpenAIService`.\n- `Azure OpenAI` - this uses the Azure OpenAI service. You can configure `--azure_endpoint`, `--azure_api_key`, and `--deployment_name`. To use it, set `--llm_service=marker.services.azure_openai.AzureOpenAIService`.\n\nThese services may have additional optional configuration as well - you can see it by viewing the classes.\n\n# Internals\n\nMarker is easy to extend.  The core units of marker are:\n\n- `Providers`, at `marker/providers`.  These provide information from a source file, like a PDF.\n- `Builders`, at `marker/builders`.  These generate the initial document blocks and fill in text, using info from the providers.\n- `Processors`, at `marker/processors`.  These process specific blocks, for example the table formatter is a processor.\n- `Renderers`, at `marker/renderers`. These use the blocks to render output.\n- `Schema`, at `marker/schema`.  The classes for all the block types.\n- `Converters`, at `marker/converters`.  They run the whole end to end pipeline.\n\nTo customize processing behavior, override the `processors`.  To add new output formats, write a new `renderer`.  For additional input formats, write a new `provider.`\n\nProcessors and renderers can be directly passed into the base `PDFConverter`, so you can specify your own custom processing easily.\n\n## API server\n\nThere is a very simple API server you can run like this:\n\n```shell\npip install -U uvicorn fastapi python-multipart\nmarker_server --port 8001\n```\n\nThis will start a fastapi server that you can access at `localhost:8001`.  You can go to `localhost:8001/docs` to see the endpoint options.\n\nYou can send requests like this:\n\n```\nimport requests\nimport json\n\npost_data = {\n    'filepath': 'FILEPATH',\n    # Add other params here\n}\n\nrequests.post(\"http://localhost:8001/marker\", data=json.dumps(post_data)).json()\n```\n\nNote that this is not a very robust API, and is only intended for small-scale use.  If you want to use this server, but want a more robust conversion option, you can use the hosted [Datalab API](https://www.datalab.to/plans).\n\n# Troubleshooting\n\nThere are some settings that you may find useful if things aren't working the way you expect:\n\n- If you have issues with accuracy, try setting `--use_llm` to use an LLM to improve quality.  You must set `GOOGLE_API_KEY` to a Gemini API key for this to work.\n- Make sure to set `force_ocr` if you see garbled text - this will re-OCR the document.\n- `TORCH_DEVICE` - set this to force marker to use a given torch device for inference.\n- If you're getting out of memory errors, decrease worker count.  You can also try splitting up long PDFs into multiple files.\n\n## Debugging\n\nPass the `debug` option to activate debug mode.  This will save images of each page with detected layout and text, as well as output a json file with additional bounding box information.\n\n# Benchmarks\n\n## Overall PDF Conversion\n\nWe created a [benchmark set](https://huggingface.co/datasets/datalab-to/marker_benchmark) by extracting single PDF pages from common crawl.  We scored based on a heuristic that aligns text with ground truth text segments, and an LLM as a judge scoring method.\n\n| Method     | Avg Time | Heuristic Score | LLM Score |\n|------------|----------|-----------------|-----------|\n| marker     | 2.83837  | 95.6709         | 4.23916   |\n| llamaparse | 23.348   | 84.2442         | 3.97619   |\n| mathpix    | 6.36223  | 86.4281         | 4.15626   |\n| docling    | 3.69949  | 86.7073         | 3.70429   |\n\nBenchmarks were run on an H100 for markjer and docling - llamaparse and mathpix used their cloud services.  We can also look at it by document type:\n\n<img src=\"data/images/per_doc.png\" width=\"1000px\"/>\n\n| Document Type        | Marker heuristic | Marker LLM | Llamaparse Heuristic | Llamaparse LLM | Mathpix Heuristic | Mathpix LLM | Docling Heuristic | Docling LLM |\n|----------------------|------------------|------------|----------------------|----------------|-------------------|-------------|-------------------|-------------|\n| Scientific paper     | 96.6737          | 4.34899    | 87.1651              | 3.96421        | 91.2267           | 4.46861     | 92.135            | 3.72422     |\n| Book page            | 97.1846          | 4.16168    | 90.9532              | 4.07186        | 93.8886           | 4.35329     | 90.0556           | 3.64671     |\n| Other                | 95.1632          | 4.25076    | 81.1385              | 4.01835        | 79.6231           | 4.00306     | 83.8223           | 3.76147     |\n| Form                 | 88.0147          | 3.84663    | 66.3081              | 3.68712        | 64.7512           | 3.33129     | 68.3857           | 3.40491     |\n| Presentation         | 95.1562          | 4.13669    | 81.2261              | 4              | 83.6737           | 3.95683     | 84.8405           | 3.86331     |\n| Financial document   | 95.3697          | 4.39106    | 82.5812              | 4.16111        | 81.3115           | 4.05556     | 86.3882           | 3.8         |\n| Letter               | 98.4021          | 4.5        | 93.4477              | 4.28125        | 96.0383           | 4.45312     | 92.0952           | 4.09375     |\n| Engineering document | 93.9244          | 4.04412    | 77.4854              | 3.72059        | 80.3319           | 3.88235     | 79.6807           | 3.42647     |\n| Legal document       | 96.689           | 4.27759    | 86.9769              | 3.87584        | 91.601            | 4.20805     | 87.8383           | 3.65552     |\n| Newspaper page       | 98.8733          | 4.25806    | 84.7492              | 3.90323        | 96.9963           | 4.45161     | 92.6496           | 3.51613     |\n| Magazine page        | 98.2145          | 4.38776    | 87.2902              | 3.97959        | 93.5934           | 4.16327     | 93.0892           | 4.02041     |\n\n## Throughput\n\nWe benchmarked throughput using a [single long PDF](https://www.greenteapress.com/thinkpython/thinkpython.pdf).\n\n| Method  | Time per page | Time per document | VRAM used |\n|---------|---------------|-------------------|---------- |\n| marker  | 0.18          | 43.42             |  3.17GB   |\n\nThe projected throughput is 122 pages per second on an H100 - we can run 22 individual processes given the VRAM used.\n\n## Table Conversion\n\nMarker can extract tables from PDFs using `marker.converters.table.TableConverter`. The table extraction performance is measured by comparing the extracted HTML representation of tables against the original HTML representations using the test split of [FinTabNet](https://developer.ibm.com/exchanges/data/all/fintabnet/). The HTML representations are compared using a tree edit distance based metric to judge both structure and content. Marker detects and identifies the structure of all tables in a PDF page and achieves these scores:\n\n| Method           | Avg score | Total tables |\n|------------------|-----------|--------------|\n| marker           | 0.816     | 99           |\n| marker w/use_llm | 0.907     | 99           |\n| gemini           | 0.829     | 99           |\n\nThe `--use_llm` flag can significantly improve table recognition performance, as you can see.\n\nWe filter out tables that we cannot align with the ground truth, since fintabnet and our layout model have slightly different detection methods (this results in some tables being split/merged).\n\n## Running your own benchmarks\n\nYou can benchmark the performance of marker on your machine. Install marker manually with:\n\n```shell\ngit clone https://github.com/VikParuchuri/marker.git\npoetry install\n```\n\n### Overall PDF Conversion\n\nDownload the benchmark data [here](https://drive.google.com/file/d/1ZSeWDo2g1y0BRLT7KnbmytV2bjWARWba/view?usp=sharing) and unzip. Then run the overall benchmark like this:\n\n```shell\npython benchmarks/overall.py --methods marker --scores heuristic,llm\n```\n\nOptions:\n\n- `--use_llm` use an llm to improve the marker results.\n- `--max_rows` how many rows to process for the benchmark.\n- `--methods` can be `llamaparse`, `mathpix`, `docling`, `marker`.  Comma separated.\n- `--scores` which scoring functions to use, can be `llm`, `heuristic`.  Comma separated.\n\n### Table Conversion\nThe processed FinTabNet dataset is hosted [here](https://huggingface.co/datasets/datalab-to/fintabnet-test) and is automatically downloaded. Run the benchmark with:\n\n```shell\npython benchmarks/table/table.py --max_rows 100\n```\n\nOptions:\n\n- `--use_llm` uses an llm with marker to improve accuracy.\n- `--use_gemini` also benchmarks gemini 2.0 flash.\n\n# How it works\n\nMarker is a pipeline of deep learning models:\n\n- Extract text, OCR if necessary (heuristics, [surya](https://github.com/VikParuchuri/surya))\n- Detect page layout and find reading order ([surya](https://github.com/VikParuchuri/surya))\n- Clean and format each block (heuristics, [texify](https://github.com/VikParuchuri/texify), [surya](https://github.com/VikParuchuri/surya))\n- Optionally use an LLM to improve quality\n- Combine blocks and postprocess complete text\n\nIt only uses models where necessary, which improves speed and accuracy.\n\n# Limitations\n\nPDF is a tricky format, so marker will not always work perfectly.  Here are some known limitations that are on the roadmap to address:\n\n- Very complex layouts, with nested tables and forms, may not work\n- Forms may not be rendered well\n\nNote: Passing the `--use_llm` and `--force_ocr` flags will mostly solve these issues.\n\n# Usage and Deployment Examples\n\nYou can always run `marker` locally, but if you wanted to expose it as an API, we have a few options:\n- Our platform API which is powered by `marker` and `surya` and is easy to test out - it's free to sign up, and we'll include credits, [try it out here](https://datalab.to)\n- Our painless on-prem solution for commercial use, which you can [read about here](https://www.datalab.to/blog/self-serve-on-prem-licensing) and gives you privacy guarantees with high throughput inference optimizations.\n- [Deployment example with Modal](./examples/README_MODAL.md) that shows you how to deploy and access `marker` through a web endpoint using [`Modal`](https://modal.com). Modal is an AI compute platform that enables developers to deploy and scale models on GPUs in minutes.\n"
  },
  {
    "path": "benchmarks/__init__.py",
    "content": ""
  },
  {
    "path": "benchmarks/overall/__init__.py",
    "content": ""
  },
  {
    "path": "benchmarks/overall/display/__init__.py",
    "content": ""
  },
  {
    "path": "benchmarks/overall/display/dataset.py",
    "content": "import json\nfrom typing import List\n\nimport datasets\nfrom tqdm import tqdm\n\nfrom benchmarks.overall.registry import METHOD_REGISTRY\nfrom benchmarks.overall.schema import FullResult\n\n\ndef build_dataset(bench_dataset: datasets.Dataset, result: FullResult, score_types: List[str], max_rows: int | None = None) -> datasets.Dataset:\n    rows = []\n    for idx, sample in tqdm(enumerate(bench_dataset), desc=\"Building dataset\"):\n        if idx not in result[\"markdown\"]:\n            continue\n\n        if max_rows is not None and idx >= max_rows:\n            break\n\n        row = {\n            \"uuid\": sample[\"uuid\"],\n            \"classification\": sample[\"classification\"],\n            \"language\": sample[\"language\"],\n            \"img\": sample[\"img\"],\n        }\n        for method in result[\"markdown\"][idx]:\n            if method == \"gt\":\n                continue\n\n            method_cls = METHOD_REGISTRY[method]()\n            md = result[\"markdown\"][idx][method]\n            try:\n                method_img = method_cls.render(result[\"markdown\"][idx][method])\n            except Exception as e:\n                # This can happen when the markdown is None\n                method_img = PIL.Image.new(\"RGB\", (200, 200))\n\n            row[f\"{method}_md\"] = md\n            row[f\"{method}_img\"] = method_img\n\n            for score_type in score_types:\n                try:\n                    row[f\"{method}_{score_type}\"] = result[\"scores\"][idx][method][score_type][\"score\"]\n                except KeyError:\n                    row[f\"{method}_{score_type}\"] = -1.0 # Missing score\n                try:\n                    row[f\"{method}_{score_type}_detail\"] = json.dumps(result[\"scores\"][idx][method][score_type][\"specific_scores\"])\n                except KeyError:\n                    row[f\"{method}_{score_type}_detail\"] = \"\" # Missing detail\n        rows.append(row)\n    ds = datasets.Dataset.from_list(rows)\n    return ds\n\n"
  },
  {
    "path": "benchmarks/overall/display/table.py",
    "content": "from pathlib import Path\nfrom typing import Dict, List\n\nimport tabulate\n\nfrom benchmarks.overall.schema import FullResult\n\ndef write_table(title: str, rows: list, headers: list, out_path: Path, filename: str):\n    table = tabulate.tabulate(rows, headers=headers, tablefmt=\"github\")\n    with open(out_path / filename, \"w\", encoding=\"utf-8\") as f:\n        f.write(f\"# {title}\\n\")\n        f.write(table)\n    print(title)\n    print(table)\n\n\ndef print_scores(result: FullResult, out_path: Path, methods: List[str], score_types: List[str], default_score_type=\"heuristic\", default_method=\"marker\"):\n    document_types = list(result[\"averages_by_type\"][default_method][default_score_type].keys())\n    headers = [\"Document Type\"]\n    for method in methods:\n        for score_type in score_types:\n            headers.append(f\"{method} {score_type}\")\n\n    document_rows = [[k] for k in document_types]\n    for i, doc_type in enumerate(document_types):\n        for method in methods:\n            for score_type in score_types:\n                avg_score = sum(result[\"averages_by_type\"][method][score_type][doc_type]) / max(1, len(result[\"averages_by_type\"][method][score_type][doc_type]))\n                document_rows[i].append(avg_score)\n\n    write_table(\"Document Types\", document_rows, headers, out_path, \"document_types.md\")\n\n    headers = [\"Block Type\"]\n    block_types = list(result[\"averages_by_block_type\"][default_method][default_score_type].keys()) # all possible blocks\n    block_score_types = list(result[\"averages_by_block_type\"][default_method].keys())\n    for method in methods:\n        for score_type in block_score_types:\n            headers.append(f\"{method} {score_type}\")\n\n    block_rows = [[k] for k in block_types]\n    for i, block_type in enumerate(block_types):\n        for method in methods:\n            for score_type in block_score_types:\n                avg_score = sum(result[\"averages_by_block_type\"][method][score_type][block_type]) / max(1, len(result[\"averages_by_block_type\"][method][score_type][block_type]))\n                block_rows[i].append(avg_score)\n\n    write_table(\"Block types\", block_rows, headers, out_path, \"block_types.md\")\n\n    headers = [\"Method\",  \"Avg Time\"] + score_types\n    inference_rows = [[k] for k in methods]\n    all_raw_scores = [result[\"scores\"][i] for i in result[\"scores\"]]\n    for i, method in enumerate(methods):\n        avg_time = sum(result[\"average_times\"][method]) / max(1, len(result[\"average_times\"][method]))\n        inference_rows[i].append(avg_time)\n        for score_type in score_types:\n            scores_lst = []\n            for ar in all_raw_scores:\n                try:\n                    # Sometimes a few llm scores are missing\n                    scores_lst.append(ar[method][score_type][\"score\"])\n                except KeyError:\n                    continue\n            avg_score = sum(scores_lst) / max(1, len(scores_lst))\n            inference_rows[i].append(avg_score)\n\n    write_table(\"Overall Results\", inference_rows, headers, out_path, \"overall.md\")\n\n    print(\"Scores computed by aligning ground truth markdown blocks with predicted markdown for each method.  The scores are 0-100 based on edit distance.\")"
  },
  {
    "path": "benchmarks/overall/download/__init__.py",
    "content": ""
  },
  {
    "path": "benchmarks/overall/download/base.py",
    "content": "import json\nfrom json import JSONDecodeError\nfrom pathlib import Path\n\nimport datasets\nfrom tqdm import tqdm\n\n\nclass Downloader:\n    cache_path: Path = Path(\"cache\")\n    service: str\n\n    def __init__(self, api_key, app_id, max_rows: int = 2200):\n        self.cache_path.mkdir(exist_ok=True)\n        self.max_rows = max_rows\n        self.api_key = api_key\n        self.app_id = app_id\n        self.ds = datasets.load_dataset(\"datalab-to/marker_benchmark\", split=\"train\")\n\n    def get_html(self, pdf_bytes):\n        raise NotImplementedError\n\n    def upload_ds(self):\n        rows = []\n        for file in self.cache_path.glob(\"*.json\"):\n            with open(file, \"r\") as f:\n                data = json.load(f)\n            rows.append(data)\n\n        out_ds = datasets.Dataset.from_list(rows, features=datasets.Features({\n            \"md\": datasets.Value(\"string\"),\n            \"uuid\": datasets.Value(\"string\"),\n            \"time\": datasets.Value(\"float\"),\n        }))\n        out_ds.push_to_hub(f\"datalab-to/marker_benchmark_{self.service}\", private=True)\n\n    def generate_data(self):\n        max_rows = self.max_rows\n        for idx, sample in tqdm(enumerate(self.ds), desc=f\"Saving {self.service} results\"):\n            cache_file = self.cache_path / f\"{idx}.json\"\n            if cache_file.exists():\n                continue\n\n            pdf_bytes = sample[\"pdf\"]  # This is a single page PDF\n            try:\n                out_data = self.get_html(pdf_bytes)\n            except JSONDecodeError as e:\n                print(f\"Error with sample {idx}: {e}\")\n                continue\n            except Exception as e:\n                print(f\"Error with sample {idx}: {e}\")\n                continue\n            out_data[\"uuid\"] = sample[\"uuid\"]\n\n            with cache_file.open(\"w\") as f:\n                json.dump(out_data, f)\n\n            if idx >= max_rows:\n                break\n\n    def __call__(self):\n        self.generate_data()\n        self.upload_ds()\n"
  },
  {
    "path": "benchmarks/overall/download/llamaparse.py",
    "content": "import io\nimport time\n\nimport requests\n\nfrom benchmarks.overall.download.base import Downloader\n\n\nclass LlamaParseDownloader(Downloader):\n    service = \"llamaparse\"\n\n    def get_html(self, pdf_bytes):\n        rand_name = str(time.time()) + \".pdf\"\n        start = time.time()\n        buff = io.BytesIO(pdf_bytes)\n        md = upload_and_parse_file(self.api_key, rand_name, buff)\n        end = time.time()\n        if isinstance(md, bytes):\n            md = md.decode(\"utf-8\")\n\n        return {\n            \"md\": md,\n            \"time\": end - start,\n        }\n\n\ndef upload_and_parse_file(api_key: str, fname: str, buff, max_retries: int = 180, delay: int = 1):\n    headers = {\n        \"Authorization\": f\"Bearer {api_key}\",\n        \"Accept\": \"application/json\"\n    }\n\n    # Upload file\n    files = {\n        'file': (fname, buff, 'application/pdf')\n    }\n    response = requests.post(\n        'https://api.cloud.llamaindex.ai/api/v1/parsing/upload',\n        headers=headers,\n        files=files\n    )\n    response.raise_for_status()\n    job_id = response.json()['id']\n\n    # Poll for completion\n    for _ in range(max_retries):\n        status_response = requests.get(\n            f'https://api.cloud.llamaindex.ai/api/v1/parsing/job/{job_id}',\n            headers=headers\n        )\n        status_response.raise_for_status()\n        if status_response.json()['status'] == 'SUCCESS':\n            # Get results\n            result_response = requests.get(\n                f'https://api.cloud.llamaindex.ai/api/v1/parsing/job/{job_id}/result/markdown',\n                headers=headers\n            )\n            result_response.raise_for_status()\n            return result_response.json()['markdown']\n\n        time.sleep(delay)\n\n    raise TimeoutError(\"Job did not complete within the maximum retry attempts\")"
  },
  {
    "path": "benchmarks/overall/download/main.py",
    "content": "import click\n\nfrom benchmarks.overall.download.llamaparse import LlamaParseDownloader\nfrom benchmarks.overall.download.mathpix import MathpixDownloader\nfrom benchmarks.overall.download.mistral import MistralDownloader\n\n\n@click.command(\"Download data from inference services\")\n@click.argument(\"service\", type=click.Choice([\"mathpix\", \"llamaparse\", \"mistral\"]))\n@click.option(\"--max_rows\", type=int, default=2200)\n@click.option(\"--api_key\", type=str, default=None)\n@click.option(\"--app_id\", type=str, default=None)\ndef main(service: str, max_rows: int, api_key: str, app_id: str):\n    registry = {\n        \"mathpix\": MathpixDownloader,\n        \"llamaparse\": LlamaParseDownloader,\n        \"mistral\": MistralDownloader,\n    }\n    downloader = registry[service](api_key, app_id, max_rows=max_rows)\n\n    # Generate data and upload to hub\n    downloader()\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "benchmarks/overall/download/mathpix.py",
    "content": "import json\nimport time\n\nimport requests\n\nfrom benchmarks.overall.download.base import Downloader\n\n\nclass MathpixDownloader(Downloader):\n    service = \"mathpix\"\n\n    def get_html(self, pdf_bytes):\n        headers = {\n            \"app_id\": self.app_id,\n            \"app_key\": self.api_key,\n        }\n        start = time.time()\n        pdf_id = mathpix_request(pdf_bytes, headers)\n        status = mathpix_status(pdf_id, headers)\n        if status in [\"processing\", \"error\"]:\n            md = \"\"\n        else:\n            md = mathpix_results(pdf_id, headers)\n        end = time.time()\n        if isinstance(md, bytes):\n            md = md.decode(\"utf-8\")\n\n        return {\n            \"md\": md,\n            \"time\": end - start\n        }\n\ndef mathpix_request(buffer, headers):\n    response = requests.post(\"https://api.mathpix.com/v3/pdf\",\n        headers=headers,\n        data={\n            \"options_json\": json.dumps(\n                {\n                    \"conversion_formats\": {\n                        \"md\": True,\n                        \"html\": True\n                    }\n                }\n            )\n        },\n        files={\n            \"file\": buffer\n        }\n    )\n    data = response.json()\n    pdf_id = data[\"pdf_id\"]\n    return pdf_id\n\ndef mathpix_status(pdf_id, headers):\n    max_iters = 120\n    i = 0\n    status = \"processing\"\n    status2 = \"processing\"\n    while i < max_iters:\n        time.sleep(1)\n        response = requests.get(f\"https://api.mathpix.com/v3/converter/{pdf_id}\",\n            headers=headers\n        )\n        status_resp = response.json()\n        if \"conversion_status\" not in status_resp:\n            continue\n        status = status_resp[\"conversion_status\"][\"md\"][\"status\"]\n        status2 = status_resp[\"conversion_status\"][\"html\"][\"status\"]\n        if status == \"completed\" and status2 == \"completed\":\n            break\n        elif status == \"error\" or status2 == \"error\":\n            break\n    out_status = \"completed\" if status == \"completed\" and status2 == \"completed\" else \"error\"\n    return out_status\n\ndef mathpix_results(pdf_id, headers, ext=\"md\"):\n    response = requests.get(f\"https://api.mathpix.com/v3/converter/{pdf_id}.{ext}\",\n        headers=headers\n    )\n    return response.content\n"
  },
  {
    "path": "benchmarks/overall/download/mistral.py",
    "content": "import io\nimport time\nimport requests\n\nfrom benchmarks.overall.download.base import Downloader\n\n\nclass MistralDownloader(Downloader):\n    service = \"mistral\"\n\n    def get_html(self, pdf_bytes):\n        rand_name = str(time.time()) + \".pdf\"\n        start = time.time()\n        buff = io.BytesIO(pdf_bytes)\n        md = upload_and_process_file(self.api_key, rand_name, buff)\n        end = time.time()\n        if isinstance(md, bytes):\n            md = md.decode(\"utf-8\")\n\n        return {\n            \"md\": md,\n            \"time\": end - start,\n        }\n\n\ndef upload_and_process_file(api_key: str, fname: str, buff):\n    headers = {\n        \"Authorization\": f\"Bearer {api_key}\"\n    }\n\n    upload_headers = headers.copy()\n    files = {\n        'file': (fname, buff, 'application/pdf'),\n        'purpose': (None, 'ocr')\n    }\n\n    upload_response = requests.post(\n        'https://api.mistral.ai/v1/files',\n        headers=upload_headers,\n        files=files\n    )\n    upload_response.raise_for_status()\n    file_id = upload_response.json()['id']\n\n    url_headers = headers.copy()\n    url_headers[\"Accept\"] = \"application/json\"\n\n    url_response = requests.get(\n        f'https://api.mistral.ai/v1/files/{file_id}/url?expiry=24',\n        headers=url_headers\n    )\n    url_response.raise_for_status()\n    signed_url = url_response.json()['url']\n\n    ocr_headers = headers.copy()\n    ocr_headers[\"Content-Type\"] = \"application/json\"\n\n    ocr_data = {\n        \"model\": \"mistral-ocr-latest\",\n        \"document\": {\n            \"type\": \"document_url\",\n            \"document_url\": signed_url\n        },\n        \"include_image_base64\": True\n    }\n    ocr_response = requests.post(\n        'https://api.mistral.ai/v1/ocr',\n        headers=ocr_headers,\n        json=ocr_data\n    )\n    ocr_response.raise_for_status()\n    result = ocr_response.json()\n    return result[\"pages\"][0][\"markdown\"]"
  },
  {
    "path": "benchmarks/overall/elo.py",
    "content": "import json\nimport random\nimport time\nimport os\nfrom dataclasses import dataclass\nfrom typing import List, Dict, Tuple, Literal\nfrom PIL import Image\nfrom collections import defaultdict\nimport tabulate\n\nimport click\nimport datasets\nfrom google import genai\nfrom google.genai.errors import APIError\nfrom pydantic import BaseModel\nfrom tqdm import tqdm\n\nfrom marker.settings import settings\n\nrating_prompt = \"\"\"\nYou're a document analysis expert who is comparing two different markdown samples to an image to see which one represents the content of the image better. The markdown will be called version A and version B.\n\nHere are some notes on the image and markdown:\n- Some parts of the page may have been recognized as images and linked from the markdown, like `![](_page_0_Picture_0.jpeg)`.\n- Tables will be formatted as Github flavored markdown.\n- Block equations will be in LaTeX.\n- The image and markdown may be in any language.\n- The markdown is based on the text extracted from the document, and sometimes the document may have had bad OCR applied to it, resulting in gibberish text.\n\nThe markdown should fully capture the meaning and formatting of the text in the image. You'll evaluate the markdown based on the image provided.\n\n**Instructions**\nFollow this process to evaluate the markdown:\n1. Carefully examine the image.\n2. Carefully examine the first markdown input provided.\n3. Describe how well version a represents the image.\n4. Carefully examine the second markdown input provided.\n5. Describe how well version B represents the image.\n6. Compare version A and version B.\n7. Decide which markdown representation is better, based on the criteria below.  Output version_a if version a is better, and version_b if version b is better.\n\nUse these criteria when judging the markdown:\n- Overall - the overall quality of the markdown as compared to the image.\n- Text quality - the quality of the text extraction from the image.\n- Formatting quality - the quality of the formatting applied to the markdown, as compared to the image.\n- Tables - how effectively the tables have been extracted and formatted.\n- Forms - how effectively the forms have extracted and formatted.\n- Equations - how effectively block equations have been converted to LaTeX.\n- Lists - if the lists have been properly extracted and formatted.\n- Images - if images are identified and placed correctly.\n\nNotes on scoring:\n- Perfect markdown will include all of the important text from the image, and the formatting will be correct (minor mistakes okay).  It's okay to omit some text that isn't important to the meaning, like page numbers and chapter headings.  If the entire page is an image, it's okay if the markdown is just a link to the image, unless the image would be better represented as text.\n- Bad markdown will have major missing text segments from the markdown or completely unreadable formatting.  It may also have key values that are different from the values in the image.\n\nOutput json, like in the example below.\n\n**Example**\nVersion A\n```markdown\n# *Section 1*\nThis is some *markdown* extracted from a document.  Here is a block equation:\n$$\\frac{ab \\cdot x^5 + x^2 + 2 \\cdot x + 123}{t}$$\n```\nVersion B\n```markdown\n# Section 1\nThis is some markdown extracted from a document.  Here is a block equation:\n$$\\frac{ab \\cdot x^5 + x^2 + 2 \\cdot x + 124}{t}$$\n```\nOutput\n```json\n{\n    \"image_description\": \"In the image, there is a section header 'Section 1', followed by some text and a block equation.\",\n    \"version_a_description\": \"In the markdown, there is a section header 'Section 1', followed by some text and a block equation.\",\n    \"version_b_description\": \"In the markdown, there is a section header 'Section 1', followed by some text and a block equation.  The formatting in version b is slightly different from the image.  The value 124 is also different from the image.\",\n    \"comparison\": \"Version A is better than version B.  The text and formatting in version A matches the image better than version B.  Version B also has an incorrect value.\",\n    \"winner\": \"version_a\",\n}\n```\n**Input**\nVersion A\n```markdown\n{{version_a}}\n```\nVersion B\n```markdown\n{{version_b}}\n```\n**Output**\n\"\"\"\n\nclass ComparerSchema(BaseModel):\n    image_description: str\n    version_a_description: str\n    version_b_description: str\n    comparison: str\n    winner: Literal[\"version_a\", \"version_b\"]\n\n\nclass Comparer:\n    def __init__(self):\n        pass\n\n    def __call__(\n        self,\n        img: Image.Image,\n        version_a: str,\n        version_b: str\n    ) -> str | None:\n        if version_a is None and version_b is not None:\n            return \"version_b\"\n        elif version_b is None and version_a is not None:\n            return \"version_a\"\n\n        hydrated_prompt = rating_prompt.replace(\"{{version_a}}\", version_a).replace(\"{{version_b}}\", version_b)\n        try:\n            rating = self.llm_rater(img, hydrated_prompt)\n        except Exception as e:\n            print(f\"Error: {e}\")\n            return\n        return rating\n\n\n    def llm_rater(self, img: Image.Image, prompt: str):\n        response = self.llm_response_wrapper(\n            [img, prompt],\n            ComparerSchema\n        )\n        assert \"winner\" in response, f\"Response missing 'winner' key: {response}\"\n        return response[\"winner\"]\n\n    def llm_response_wrapper(\n        self,\n        prompt,\n        response_schema,\n    ):\n        client = genai.Client(\n            http_options={\"timeout\": 60000},\n            vertexai=True,\n            project=os.getenv(\"VERTEX_PROJECT_ID\"),\n            location=os.getenv(\"VERTEX_LOCATION\"),\n        )\n        try:\n            responses = client.models.generate_content(\n                model=\"gemini-2.0-flash-001\",\n                contents=prompt,\n                config={\n                    \"temperature\": 0,\n                    \"response_schema\": response_schema,\n                    \"response_mime_type\": \"application/json\",\n                },\n            )\n            output = responses.candidates[0].content.parts[0].text\n            return json.loads(output)\n        except APIError as e:\n            print(f\"Hit Gemini rate limit\")\n            return\n        except Exception as e:\n            print(f\"Error: {e}\")\n            return\n\n\ndef display_win_rates_table(win_rates: dict):\n    table = []\n    headers = [\"Method A\", \"Method B\", \"Wins\", \"Losses\", \"Win %\"]\n    for method_a, method_b_dict in win_rates.items():\n        row = [method_a]\n        for method_b, results in method_b_dict.items():\n            row = [method_a, method_b, results[\"win\"], results[\"loss\"], (results[\"win\"] / (results[\"win\"] + results[\"loss\"])) * 100]\n            table.append(row)\n    print(tabulate.tabulate(table, headers=headers, tablefmt=\"pretty\"))\n\n\n@click.command(\"Calculate win rates for document conversion methods\")\n@click.argument(\"dataset\", type=str)\n@click.option(\"--methods\", type=str, help=\"List of methods to compare: comma separated like marker,mathpix\")\n@click.option(\"--row_samples\", type=int, default=2, help=\"Number of samples per row\")\n@click.option(\"--max_rows\", type=int, default=None, help=\"Maximum number of rows to process\")\ndef main(\n    dataset: str,\n    methods: str,\n    row_samples: int,\n    max_rows: int\n):\n    ds = datasets.load_dataset(dataset, split=\"train\")\n    method_lst = methods.split(\",\")\n    win_rates = {m: defaultdict(lambda: defaultdict(int)) for m in method_lst}\n    comparer = Comparer()\n    max_rows = max_rows or len(ds)\n\n    for i in tqdm(range(max_rows), desc=\"Calculating win rates...\"):\n        row = ds[i]\n        # Avoid any bias in ordering\n        random.shuffle(method_lst)\n\n        for j, method_a in enumerate(method_lst[:-1]):\n            for z, method_b in enumerate(method_lst[j:]):\n                if method_a == method_b:\n                    continue\n\n                method_a_md = row[f\"{method_a}_md\"]\n                method_b_md = row[f\"{method_b}_md\"]\n                winner = comparer(row[\"img\"], method_a_md, method_b_md)\n                if not winner:\n                    continue\n\n                if winner == \"version_a\":\n                    win_rates[method_a][method_b][\"win\"] += 1\n                    win_rates[method_b][method_a][\"loss\"] += 1\n                else:\n                    win_rates[method_b][method_a][\"win\"] += 1\n                    win_rates[method_a][method_b][\"loss\"] += 1\n        if i % 10 == 0:\n            display_win_rates_table(win_rates)\n\n    display_win_rates_table(win_rates)\n\n\nif __name__ == \"__main__\":\n    main()"
  },
  {
    "path": "benchmarks/overall/methods/__init__.py",
    "content": "import io\nimport random\nimport re\nfrom typing import Tuple\n\nimport markdown2\nfrom PIL import Image\nfrom playwright.sync_api import sync_playwright\n\nfrom benchmarks.overall.methods.schema import BenchmarkResult\nfrom marker.renderers.markdown import MarkdownRenderer\n\n\nclass BaseMethod:\n    def __init__(self, **kwargs):\n        for kwarg in kwargs:\n            if hasattr(self, kwarg):\n                setattr(self, kwarg, kwargs[kwarg])\n\n    @staticmethod\n    def convert_to_md(html: str):\n        md = MarkdownRenderer()\n        markdown = md.md_cls.convert(html)\n        return markdown\n\n    def __call__(self, sample) -> BenchmarkResult:\n        raise NotImplementedError()\n\n    def render(self, markdown: str):\n        return self.html_to_image(self.convert_to_html(markdown))\n\n    @staticmethod\n    def convert_to_html(md: str):\n        block_placeholders = []\n        inline_placeholders = []\n\n        # Add placeholders for the math\n        def block_sub(match):\n            content = match.group(1)\n            placeholder = f\"1BLOCKMATH{len(block_placeholders)}1\"\n            block_placeholders.append((placeholder, f\"$${content}$$\"))\n            return placeholder\n\n        def inline_sub(match):\n            content = match.group(1)\n            placeholder = f\"1INLINEMATH{len(inline_placeholders)}1\"\n            inline_placeholders.append((placeholder, f\"${content}$\"))\n            return placeholder\n\n        md = re.sub(r'\\${2}(.*?)\\${2}', block_sub, md, flags=re.DOTALL)\n        md = re.sub(r'\\$(.*?)\\$', inline_sub, md)\n\n        html = markdown2.markdown(md, extras=['tables'])\n\n        # Replace placeholders\n        for placeholder, math_str in block_placeholders:\n            html = html.replace(placeholder, math_str)\n        for placeholder, math_str in inline_placeholders:\n            html = html.replace(placeholder, math_str)\n\n        return html\n\n    def html_to_image(self, html: str) -> Image.Image:\n        with sync_playwright() as p:\n            browser = p.chromium.launch()\n            page = browser.new_page()\n            html_str = f\"\"\"\n            <!DOCTYPE html>\n            <html>\n                <head>\n                    <link rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/npm/katex@0.16.21/dist/katex.min.css\" integrity=\"sha384-zh0CIslj+VczCZtlzBcjt5ppRcsAmDnRem7ESsYwWwg3m/OaJ2l4x7YBZl9Kxxib\" crossorigin=\"anonymous\">\n                    <!-- The loading of KaTeX is deferred to speed up page rendering -->\n                    <script defer src=\"https://cdn.jsdelivr.net/npm/katex@0.16.21/dist/katex.min.js\" integrity=\"sha384-Rma6DA2IPUwhNxmrB/7S3Tno0YY7sFu9WSYMCuulLhIqYSGZ2gKCJWIqhBWqMQfh\" crossorigin=\"anonymous\"></script>\n                    <!-- To automatically render math in text elements, include the auto-render extension: -->\n                    <script defer src=\"https://cdn.jsdelivr.net/npm/katex@0.16.21/dist/contrib/auto-render.min.js\" integrity=\"sha384-hCXGrW6PitJEwbkoStFjeJxv+fSOOQKOPbJxSfM6G5sWZjAyWhXiTIIAmQqnlLlh\" crossorigin=\"anonymous\"></script>\n                </head>\n                <body>\n                    {html}\n                        <script>\n                        document.addEventListener(\"DOMContentLoaded\", function() {{\n                            renderMathInElement(document.body, {{\n                                delimiters: [\n                                    {{left: '$$', right: '$$', display: true}},\n                                    {{left: '$', right: '$', display: false}}\n                                ],\n                                throwOnError : false\n                            }});\n                        }});\n                        </script>\n                </body>\n            </html>\n            \"\"\".strip()\n            page.set_viewport_size({\"width\": 1200, \"height\": 800})\n            page.set_content(html_str)\n            page.wait_for_load_state(\"domcontentloaded\")\n            page.wait_for_timeout(500)  # Wait for KaTeX to render\n            screenshot_bytes = page.screenshot(full_page=True)\n            browser.close()\n\n        return Image.open(io.BytesIO(screenshot_bytes))"
  },
  {
    "path": "benchmarks/overall/methods/docling.py",
    "content": "import tempfile\nimport time\n\nfrom benchmarks.overall.methods import BaseMethod, BenchmarkResult\n\n\nclass DoclingMethod(BaseMethod):\n    model_dict: dict = None\n    use_llm: bool = False\n\n    def __call__(self, sample) -> BenchmarkResult:\n        from docling.document_converter import DocumentConverter\n        pdf_bytes = sample[\"pdf\"]  # This is a single page PDF\n        converter = DocumentConverter()\n\n        with tempfile.NamedTemporaryFile(suffix=\".pdf\", mode=\"wb\") as f:\n            f.write(pdf_bytes)\n            start = time.time()\n            result = converter.convert(f.name)\n            total = time.time() - start\n\n        return {\n            \"markdown\": result.document.export_to_markdown(),\n            \"time\": total\n        }\n\n"
  },
  {
    "path": "benchmarks/overall/methods/gt.py",
    "content": "from typing import List\nimport json\n\nfrom PIL import Image\n\nfrom benchmarks.overall.methods import BaseMethod, BenchmarkResult\n\n\nclass GTMethod(BaseMethod):\n    def __call__(self, sample) -> BenchmarkResult:\n        gt_blocks = json.loads(sample[\"gt_blocks\"])\n        gt_html = [block[\"html\"] for block in gt_blocks if len(block[\"html\"]) > 0]\n        gt_markdown = [self.convert_to_md(block) for block in gt_html]\n        return {\n            \"markdown\": gt_markdown,\n            \"time\": 0\n        }\n\n    def render(self, html: List[str]) -> Image.Image:\n        joined = \"\\n\\n\".join(html)\n        html = f\"\"\"\n<html>\n<head></head>\n<body>\n{joined}\n</body>\n</html>\n\"\"\".strip()\n        return self.html_to_image(html)"
  },
  {
    "path": "benchmarks/overall/methods/llamaparse.py",
    "content": "import datasets\n\nfrom benchmarks.overall.methods import BaseMethod, BenchmarkResult\n\n\nclass LlamaParseMethod(BaseMethod):\n    llamaparse_ds: datasets.Dataset = None\n\n    def __call__(self, sample) -> BenchmarkResult:\n        uuid = sample[\"uuid\"]\n        data = None\n        for row in self.llamaparse_ds:\n            if str(row[\"uuid\"]) == str(uuid):\n                data = row\n                break\n        if not data:\n            raise ValueError(f\"Could not find data for uuid {uuid}\")\n\n        return {\n            \"markdown\": data[\"md\"],\n            \"time\": data[\"time\"]\n        }"
  },
  {
    "path": "benchmarks/overall/methods/marker.py",
    "content": "import os\nimport tempfile\nimport time\n\nfrom benchmarks.overall.methods import BaseMethod, BenchmarkResult\nfrom marker.config.parser import ConfigParser\nfrom marker.converters.pdf import PdfConverter\n\n\nclass MarkerMethod(BaseMethod):\n    model_dict: dict = None\n    use_llm: bool = False\n\n    def __call__(self, sample) -> BenchmarkResult:\n        pdf_bytes = sample[\"pdf\"]  # This is a single page PDF\n        parser = ConfigParser({\n                \"page_range\": \"0\",\n                \"disable_tqdm\": True,\n                \"use_llm\": self.use_llm,\n                \"redo_inline_math\": self.use_llm,\n                \"llm_service\": \"marker.services.vertex.GoogleVertexService\",\n                \"vertex_project_id\": os.getenv(\"VERTEX_PROJECT_ID\"),\n            })\n\n        block_converter = PdfConverter(\n            artifact_dict=self.model_dict,\n            config=parser.generate_config_dict(),\n            llm_service=parser.get_llm_service()\n        )\n\n        with tempfile.NamedTemporaryFile(suffix=\".pdf\", mode=\"wb\") as f:\n            f.write(pdf_bytes)\n            start = time.time()\n            rendered = block_converter(f.name)\n            total = time.time() - start\n\n        return {\n            \"markdown\": rendered.markdown,\n            \"time\": total\n        }\n\n"
  },
  {
    "path": "benchmarks/overall/methods/mathpix.py",
    "content": "import datasets\n\nfrom benchmarks.overall.methods import BaseMethod, BenchmarkResult\n\n\nclass MathpixMethod(BaseMethod):\n    mathpix_ds: datasets.Dataset = None\n\n    def __call__(self, sample) -> BenchmarkResult:\n        uuid = sample[\"uuid\"]\n        data = None\n        for row in self.mathpix_ds:\n            if str(row[\"uuid\"]) == str(uuid):\n                data = row\n                break\n        if not data:\n            raise ValueError(f\"Could not find data for uuid {uuid}\")\n\n        return {\n            \"markdown\": data[\"md\"],\n            \"time\": data[\"time\"]\n        }"
  },
  {
    "path": "benchmarks/overall/methods/mistral.py",
    "content": "import datasets\n\nfrom benchmarks.overall.methods import BaseMethod, BenchmarkResult\n\n\nclass MistralMethod(BaseMethod):\n    mistral_ds: datasets.Dataset = None\n\n    def __call__(self, sample) -> BenchmarkResult:\n        uuid = sample[\"uuid\"]\n        data = None\n        for row in self.mistral_ds:\n            if str(row[\"uuid\"]) == str(uuid):\n                data = row\n                break\n        if not data:\n            raise ValueError(f\"Could not find data for uuid {uuid}\")\n\n        return {\n            \"markdown\": data[\"md\"],\n            \"time\": data[\"time\"]\n        }"
  },
  {
    "path": "benchmarks/overall/methods/olmocr.py",
    "content": "import base64\nimport json\nimport tempfile\nimport time\nfrom io import BytesIO\n\nimport torch\nfrom PIL import Image\n\nfrom benchmarks.overall.methods import BaseMethod, BenchmarkResult\n\n\ndef convert_single_page(filename: str, model, processor, device):\n    from olmocr.data.renderpdf import render_pdf_to_base64png\n    from olmocr.prompts import build_finetuning_prompt\n    from olmocr.prompts.anchor import get_anchor_text\n\n    image_base64 = render_pdf_to_base64png(filename, 1, target_longest_image_dim=1024)\n\n    # Build the prompt, using document metadata\n    anchor_text = get_anchor_text(filename, 1, pdf_engine=\"pdfreport\", target_length=4000)\n    prompt = build_finetuning_prompt(anchor_text)\n\n    # Build the full prompt\n    messages = [\n        {\n            \"role\": \"user\",\n            \"content\": [\n                {\"type\": \"text\", \"text\": prompt},\n                {\"type\": \"image_url\", \"image_url\": {\"url\": f\"data:image/png;base64,{image_base64}\"}},\n            ],\n        }\n    ]\n\n    # Apply the chat template and processor\n    text = processor.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)\n    main_image = Image.open(BytesIO(base64.b64decode(image_base64)))\n\n    inputs = processor(\n        text=[text],\n        images=[main_image],\n        padding=True,\n        return_tensors=\"pt\",\n    )\n    inputs = {key: value.to(device) for (key, value) in inputs.items()}\n\n    # Generate the output\n    output = model.generate(\n        **inputs,\n        temperature=0.8,\n        max_new_tokens=8192,\n        num_return_sequences=1,\n        do_sample=True,\n    )\n\n    # Decode the output\n    prompt_length = inputs[\"input_ids\"].shape[1]\n    new_tokens = output[:, prompt_length:]\n    text_output = processor.tokenizer.batch_decode(\n        new_tokens, skip_special_tokens=True\n    )[0]\n\n    try:\n        text_output = json.loads(text_output)\n        text = text_output[\"natural_text\"]\n    except Exception:\n        try:\n            text = text_output.split(\"natural_text\")[1].strip()\n        except Exception:\n            text = \"\"\n\n    return text\n\n\nclass OlmOCRMethod(BaseMethod):\n    olmocr_model: dict = None\n    use_llm: bool = False\n\n    def __call__(self, sample) -> BenchmarkResult:\n        pdf_bytes = sample[\"pdf\"]  # This is a single page PDF\n\n        with tempfile.NamedTemporaryFile(suffix=\".pdf\", mode=\"wb\") as f:\n            f.write(pdf_bytes)\n            start = time.time()\n            result = convert_single_page(f.name, self.olmocr_model[\"model\"], self.olmocr_model[\"processor\"], self.olmocr_model[\"model\"].device)\n            total = time.time() - start\n\n        return {\n            \"markdown\": result,\n            \"time\": total\n        }\n"
  },
  {
    "path": "benchmarks/overall/methods/schema.py",
    "content": "from typing import TypedDict, List\n\n\nclass BenchmarkResult(TypedDict):\n    markdown: str | List[str]\n    time: float | None"
  },
  {
    "path": "benchmarks/overall/overall.py",
    "content": "import json\nimport os\nimport traceback\nfrom collections import defaultdict\nfrom pathlib import Path\nfrom typing import List\n\nimport click\nimport datasets\nimport torch\nfrom tqdm import tqdm\n\nfrom benchmarks.overall.display.dataset import build_dataset\nfrom benchmarks.overall.registry import SCORE_REGISTRY, METHOD_REGISTRY\nfrom benchmarks.overall.schema import FullResult\nfrom marker.logger import configure_logging\nfrom marker.models import create_model_dict\nfrom marker.settings import settings\nfrom benchmarks.overall.display.table import print_scores\n\nconfigure_logging()\n\n\ndef get_method_scores(benchmark_dataset: datasets.Dataset, methods: List[str], score_types: List[str], artifacts: dict, max_rows=None) -> FullResult:\n    bench_scores = {}\n    averages_by_type = defaultdict(lambda: defaultdict(lambda: defaultdict(list)))\n    averages_by_block_type = defaultdict(lambda: defaultdict(lambda: defaultdict(list)))\n    average_times = defaultdict(list)\n    markdown_by_method = defaultdict(dict)\n    total_rows = len(benchmark_dataset)\n    if max_rows:\n        total_rows = min(max_rows, total_rows)\n    for idx, sample in tqdm(enumerate(benchmark_dataset), desc=\"Running benchmark\", total=total_rows):\n        if max_rows is not None and idx >= max_rows:\n            break\n\n        doc_type = sample[\"classification\"]\n        gt_cls = METHOD_REGISTRY[\"gt\"]\n        gt_blocks = json.loads(sample[\"gt_blocks\"])\n        gt_md = gt_cls(**artifacts)(sample)[\"markdown\"]\n        markdown_by_method[idx][\"gt\"] = gt_md\n\n        out_data = defaultdict(dict)\n\n        try:\n            for method in methods:\n                method_cls = METHOD_REGISTRY[method](**artifacts)\n                method_info = method_cls(sample)\n                method_md = method_info[\"markdown\"]\n                if method_md is None:\n                    method_md = \"\" # Avoid None values\n\n                average_times[method].append(method_info[\"time\"])\n                markdown_by_method[idx][method] = method_md\n\n                for score_type in score_types:\n                    score_cls = SCORE_REGISTRY[score_type]()\n                    try:\n                        scores = score_cls(sample, gt_md, method_md)\n                    except Exception as e:\n                        # Some scorers can fail, like the LLM one\n                        print(f\"Failed to score {method} with {score_type}: {e}\")\n                        continue\n\n                    out_data[method][score_type] = scores\n\n                    averages_by_type[method][score_type][doc_type].append(scores[\"score\"])\n\n                    if \"by_block\" in scores[\"specific_scores\"]: # Not all scorers support this\n                        for score, gt_block in zip(scores[\"specific_scores\"][\"by_block\"], gt_blocks):\n                            averages_by_block_type[method][score_type][gt_block[\"block_type\"]].append(score)\n        except Exception as e:\n            print(f\"Failed to process {idx}: {e}\")\n            traceback.print_exc()\n            if idx in markdown_by_method:\n                del markdown_by_method[idx]\n            continue\n\n        bench_scores[idx] = out_data\n\n    return {\n        \"scores\": bench_scores,\n        \"markdown\": markdown_by_method,\n        \"averages_by_type\": averages_by_type,\n        \"averages_by_block_type\": averages_by_block_type,\n        \"average_times\": average_times,\n    }\n\n@click.command(help=\"Benchmark PDF to MD conversion.\")\n@click.option(\"--dataset\", type=str, help=\"Path to the benchmark dataset\", default=\"datalab-to/marker_benchmark\")\n@click.option(\"--out_dataset\", type=str, help=\"Path to the output dataset\", default=None)\n@click.option(\"--methods\", type=str, help=\"Comma separated list of other methods to compare against.  Possible values: marker,mathpix,llamaparse,docling,mistral\", default=\"marker\")\n@click.option(\"--scores\", type=str, help=\"Comma separated list of scoring functions to use.  Possible values: heuristic,llm\", default=\"heuristic\")\n@click.option(\"--result_path\", type=str, default=os.path.join(settings.OUTPUT_DIR, \"benchmark\", \"overall\"), help=\"Output path for results.\")\n@click.option(\"--max_rows\", type=int, default=None, help=\"Maximum number of rows to process.\")\n@click.option(\"--use_llm\", is_flag=True, help=\"Use the LLM model for better marker quality.\")\n@click.option(\"--languages\", type=str, help=\"Comma separated list of languages to use for LLM\", default=None)\ndef main(\n        dataset: str,\n        out_dataset: str,\n        methods: str,\n        scores: str,\n        result_path: str,\n        max_rows: int,\n        use_llm: bool,\n        languages: str\n):\n    out_path = Path(result_path)\n    out_path.mkdir(parents=True, exist_ok=True)\n\n    methods = methods.split(\",\")\n    for method in methods:\n        if method not in METHOD_REGISTRY:\n            raise ValueError(f\"Method {method} not allowed.  Allowed methods are {METHOD_REGISTRY.keys()}\")\n\n    # Ensure marker is always first\n    all_methods = list(set(methods))\n    methods = [\"marker\"] if \"marker\" in all_methods else []\n    methods += [m for m in all_methods if m != \"marker\"]\n\n    score_types = scores.split(\",\")\n    for score_type in score_types:\n        if score_type not in SCORE_REGISTRY:\n            raise ValueError(f\"Score type {score_type} not allowed.  Allowed types are {SCORE_REGISTRY.keys()}\")\n\n    if languages:\n        languages = languages.split(\",\")\n    else:\n        languages = None\n\n    benchmark_dataset = datasets.load_dataset(dataset, split=\"train\")\n    if languages:\n        benchmark_dataset = benchmark_dataset.filter(lambda x: x[\"language\"] in languages)\n\n    artifacts = {\n        \"model_dict\": create_model_dict(),\n        \"use_llm\": use_llm,\n        \"mathpix_ds\": None,\n        \"llamaparse_ds\": None,\n    }\n\n    if \"mathpix\" in methods:\n        artifacts[\"mathpix_ds\"] = datasets.load_dataset(\"datalab-to/marker_benchmark_mathpix\", split=\"train\")\n\n    if \"llamaparse\" in methods:\n        artifacts[\"llamaparse_ds\"] = datasets.load_dataset(\"datalab-to/marker_benchmark_llamaparse\", split=\"train\")\n\n    if \"mistral\" in methods:\n        artifacts[\"mistral_ds\"] = datasets.load_dataset(\"datalab-to/marker_benchmark_mistral\", split=\"train\")\n\n    if \"olmocr\" in methods:\n        from transformers import AutoProcessor, Qwen2VLForConditionalGeneration\n        model = Qwen2VLForConditionalGeneration.from_pretrained(\"allenai/olmOCR-7B-0225-preview\",\n                                                                torch_dtype=torch.bfloat16).eval()\n        processor = AutoProcessor.from_pretrained(\"Qwen/Qwen2-VL-7B-Instruct\")\n        model.to(torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\"))\n        artifacts[\"olmocr_model\"] = {\"model\": model, \"processor\": processor}\n\n    print(f\"Running benchmark with methods: {methods} and scores: {score_types}\")\n    result = get_method_scores(benchmark_dataset, methods, score_types, artifacts, max_rows=max_rows)\n\n    # Display benchmark scoring tables\n    print_scores(result, out_path, methods, score_types, default_method=methods[0], default_score_type=score_types[0])\n\n    # Write to json\n    with open(out_path / \"result.json\", \"w\") as f:\n        json.dump(result, f)\n\n    if out_dataset:\n        if use_llm:\n            out_dataset += \"_llm\"\n        dataset = build_dataset(benchmark_dataset, result, score_types, max_rows=max_rows)\n        dataset.push_to_hub(out_dataset, private=True)\n\n\nif __name__ == \"__main__\":\n    main()\n\n"
  },
  {
    "path": "benchmarks/overall/registry.py",
    "content": "from benchmarks.overall.methods.docling import DoclingMethod\nfrom benchmarks.overall.methods.gt import GTMethod\nfrom benchmarks.overall.methods.llamaparse import LlamaParseMethod\nfrom benchmarks.overall.methods.marker import MarkerMethod\nfrom benchmarks.overall.methods.mathpix import MathpixMethod\nfrom benchmarks.overall.methods.mistral import MistralMethod\nfrom benchmarks.overall.methods.olmocr import OlmOCRMethod\nfrom benchmarks.overall.scorers.heuristic import HeuristicScorer\nfrom benchmarks.overall.scorers.llm import LLMScorer\n\nSCORE_REGISTRY = {\n    \"heuristic\": HeuristicScorer,\n    \"llm\": LLMScorer\n}\n\nMETHOD_REGISTRY = {\n    \"marker\": MarkerMethod,\n    \"gt\": GTMethod,\n    \"mathpix\": MathpixMethod,\n    \"llamaparse\": LlamaParseMethod,\n    \"docling\": DoclingMethod,\n    \"olmocr\": OlmOCRMethod,\n    \"mistral\": MistralMethod\n}"
  },
  {
    "path": "benchmarks/overall/schema.py",
    "content": "from typing import TypedDict, List, Dict\n\nfrom benchmarks.overall.scorers.schema import BlockScores\n\nAVG_TYPE = Dict[str, Dict[str, Dict[str, List[float]]]]\n\nclass FullResult(TypedDict):\n    scores: Dict[int, Dict[str, Dict[str, BlockScores]]]\n    averages_by_type: AVG_TYPE\n    averages_by_block_type: AVG_TYPE\n    average_times: Dict[str, List[float]]\n    markdown: Dict[int, Dict[str, str]]\n"
  },
  {
    "path": "benchmarks/overall/scorers/__init__.py",
    "content": "from typing import List\n\nfrom benchmarks.overall.scorers.schema import BlockScores\n\n\nclass BaseScorer:\n    def __init__(self):\n        pass\n\n    def __call__(self, sample, gt_markdown: List[str], method_markdown: str) -> BlockScores:\n        raise NotImplementedError()"
  },
  {
    "path": "benchmarks/overall/scorers/clean.py",
    "content": "import re\nimport subprocess\nimport tempfile\nfrom pathlib import Path\n\nimport latex2mathml.converter\n\nclass MarkdownCleaner:\n    def __init__(self):\n        pass\n\n    def __call__(self, markdown):\n        markdown = self.normalize_markdown(markdown)  # Use pandoc to normalize\n\n        # Replace math expressions with latexml\n        pattern = r'(?<!\\\\)\\$(?:\\$([^$]+)\\$\\$|\\s*([^$\\n]+?)\\s*\\$)'\n        markdown = re.sub(pattern, self.standardize_math, markdown)\n\n        # Replace image urls with a generic tag\n        pattern = r'!\\[(.*?)\\]\\((https?://[^\\s\\)]+)\\)'\n        markdown = re.sub(pattern, r'![link]', markdown)\n\n        # Clean up stray html tags\n        markdown = markdown.replace(\"<br>\", \"\\n\")\n        markdown = re.sub(r\"<sub>(.*?)</sub>\", r\"\\1\", markdown)\n        markdown = re.sub(r\"<sup>(.*?)</sup>\", r\"\\1\", markdown)\n        markdown = re.sub(r\"<span.*?>(.*?)</span>\", r\"\\1\", markdown)  # Remove span tags and keep content\n\n        # Clean up markdown formatting\n        markdown = re.sub(r\"\\s+\", \" \", markdown)\n        markdown = re.sub(r\"\\n+\", \"\\n\", markdown)\n        markdown = re.sub(\"\\\\.+\", \".\",\n                          markdown)  # Replace repeated periods with a single period, like in table of contents\n        markdown = re.sub(\"#+\", \"#\", markdown)  # Replace repeated headers with a single header\n        markdown = markdown.encode().decode('unicode-escape', errors=\"ignore\")  # Decode unicode characters properly\n        return markdown.strip().lower()\n\n    @staticmethod\n    def normalize_markdown(md_text: str) -> str:\n        with tempfile.TemporaryDirectory() as tmp_dir:\n            dirpath = Path(tmp_dir)\n            input_file = dirpath / 'input.md'\n            input_file.write_text(md_text, encoding='utf-8')\n\n            # Markdown to HTML\n            html_file = dirpath / 'temp.html'\n            subprocess.run(\n                [\n                    'pandoc',\n                    str(input_file),\n                    '-f', 'markdown+tex_math_dollars',\n                    '-t', 'html',\n                    '-o', str(html_file),\n                    '--quiet'\n                ],\n                check=True\n            )\n\n            # HTML to Markdown\n            output_file = dirpath / 'output.md'\n            subprocess.run(\n                [\n                    'pandoc',\n                    str(html_file),\n                    '-f', 'html',\n                    '-t', 'markdown+tex_math_dollars',\n                    '-o', str(output_file),\n                    '--quiet'\n                ],\n                check=True\n            )\n\n            # Read back the normalized Markdown\n            normalized_md = output_file.read_text(encoding='utf-8')\n\n        return normalized_md\n\n    def standardize_math(self, match):\n        try:\n            delim = \"$$\" if match.group(0).startswith('$$') else \"$\"\n            math_content = match.group(1) or match.group(2)\n            if delim == \"$$\":\n                math_content = latex2mathml.converter.convert(math_content)\n            else:\n                math_content = self.clean_latex(math_content)\n            return f'{delim}{math_content}{delim}'\n        except Exception as e:\n            print(f\"Failed to standardize math expression: {match.group(0)} with error: {e}\")\n            return match.group(0)\n\n    @staticmethod\n    def clean_latex(latex_str):\n        latex_str = re.sub(r'\\s+', ' ', latex_str.strip())\n        for tag in [r'\\\\text', r'\\\\mathrm', r'\\\\mathbf', r'\\\\textbf']:\n            latex_str = re.sub(tag + r'\\{([^}]+)\\}', r'\\1', latex_str)\n\n        replacements = {\n            '\\\\times': '*',\n            '\\\\cdot': '*',\n            '\\\\div': '/',\n            '\\\\le': '<=',\n            '\\\\ge': '>=',\n            '\\\\neq': '!=',\n            '\\\\to': '\\\\rightarrow',\n        }\n\n        for old, new in replacements.items():\n            latex_str = latex_str.replace(old, new)\n\n        return latex_str\n\n\n\n"
  },
  {
    "path": "benchmarks/overall/scorers/heuristic.py",
    "content": "from typing import List\n\nfrom rapidfuzz import fuzz\n\nfrom benchmarks.overall.scorers.clean import MarkdownCleaner\nfrom benchmarks.overall.scorers.schema import BlockScores\nfrom benchmarks.overall.scorers import BaseScorer\n\n\nclass HeuristicScorer(BaseScorer):\n    def __call__(self, sample, gt_markdown: List[str], method_markdown: str) -> BlockScores:\n        if not method_markdown:\n            return {\n                \"score\": 0,\n                \"specific_scores\": {\n                    \"order\": 0,\n                    \"by_block\": [0] * len(gt_markdown)\n                }\n            }\n\n        # Standardize inputs\n        gt_markdown = [self.clean_input(block) for block in gt_markdown]\n        method_markdown = self.clean_input(method_markdown)\n\n        alignments = self.find_fuzzy_alignments(method_markdown, gt_markdown)\n        scores = [alignment[\"score\"] for alignment in alignments]\n\n        # Find order score\n        orders = [alignment[\"start\"] for alignment in alignments]\n        correct_order = list(range(len(gt_markdown)))\n        actual_order = sorted(range(len(gt_markdown)), key=lambda x: orders[x])\n        order_score = self.kendall_tau(correct_order, actual_order)\n\n        # Weight score by sequence length\n        gt_weights = [len(g) for g in gt_markdown]\n        weighted_scores = [score * weight for score, weight in zip(scores, gt_weights)]\n\n        # Weight the score by sequence length\n        overall_score = sum(weighted_scores) / max(1, sum(gt_weights))\n        overall_score = overall_score * 0.8 + order_score * 0.2\n        return {\n            \"score\": overall_score,\n            \"specific_scores\": {\n                \"order\": order_score,\n                \"by_block\": scores\n            },\n        }\n\n    @staticmethod\n    def kendall_tau(correct_order: List[int], actual_order: List[int]) -> float:\n        n = len(correct_order)\n        concordant = 0\n        discordant = 0\n\n        if n <= 1:\n            return 100\n\n        for i in range(n):\n            for j in range(i + 1, n):\n                correct_sign = correct_order[i] - correct_order[j]\n                actual_sign = actual_order[i] - actual_order[j]\n\n                if (correct_sign > 0 and actual_sign > 0) or (correct_sign < 0 and actual_sign < 0):\n                    concordant += 1\n                elif (correct_sign < 0 and actual_sign > 0) or (correct_sign > 0 and actual_sign < 0):\n                    discordant += 1\n\n        total_pairs = (n * (n - 1)) // 2\n        tau = (concordant - discordant) / total_pairs\n        tau = (tau + 1) / 2 # 0-1 scale\n        return tau * 100 # 0-100 scale\n\n    @staticmethod\n    def find_fuzzy_alignments(\n            main_string: str,\n            substrings: List[str],\n            threshold: int = 70\n    ) -> List[dict]:\n        alignments = []\n\n        for idx, substr in enumerate(substrings):\n            result = fuzz.partial_ratio_alignment(substr, main_string, score_cutoff=threshold)\n\n            score = 0\n            dest_start = 0\n            dest_end = 0\n            if result:\n                score = result.score\n                dest_start = result.dest_start\n                dest_end = result.dest_end\n\n            alignments.append({\n                \"string\": substr,\n                \"start\": dest_start,\n                \"end\": dest_end,\n                \"score\": score,\n                \"idx\": idx\n            })\n        return alignments\n\n\n    @staticmethod\n    def clean_input(md: str):\n        cleaner = MarkdownCleaner()\n        return cleaner(md)"
  },
  {
    "path": "benchmarks/overall/scorers/llm.py",
    "content": "import json\nimport os\nimport tempfile\nimport time\nfrom typing import List\n\nfrom PIL import Image\nfrom google.genai.errors import APIError\nfrom google import genai\nimport pypdfium2 as pdfium\n\nfrom benchmarks.overall.scorers import BaseScorer, BlockScores\nfrom marker.settings import settings\n\nrating_prompt = \"\"\"\nYou're a document analysis expert who is comparing some markdown to an image to make sure the markdown is correct. You're rating how effectively the provided markdown represents the full text and formatting in the image provided.\nYou're given an image, along with the extracted markdown:\n- Some parts of the page may have been recognized as images and linked from the markdown, like `![](_page_0_Picture_0.jpeg)`.\n- Tables will be formatted as Github flavored markdown.\n- Block equations will be in LaTeX.\n- The image and markdown may be in any language.\n- The markdown is based on the text extracted from the document, and sometimes the document may have had bad OCR applied to it, resulting in gibberish text.\n\nThe markdown should fully capture the meaning and formatting of the text in the image. You'll evaluate the markdown based on the image provided.\n\n**Instructions**\nFollow this process to evaluate the markdown:\n1. Carefully examine the image.\n2. Carefully examine the markdown input provided.\n3. Compare the image to the markdown representation.  Does the markdown representation properly represent the important text and formatting in the image?\n4. Assign component scores, as described below.\n\nThese are the primary scores:\n- Overall - the overall quality of the markdown as compared to the image.\n- Text quality - the quality of the text extraction from the image.\n- Formatting quality - the quality of the formatting applied to the markdown, as compared to the image.\n\nDepending on which elements are present in the markdown, you will assign element-specific scores.\n- Tables - how effectively the tables have been extracted and formatted.\n- Forms - how effectively the forms have extracted and formatted.\n- Equations - how effectively block equations have been converted to LaTeX.\n- Section headers - if all of the section headers have been detected, and the right levels set.\n- Lists - if the lists have been properly extracted and formatted.\n- Images - if images are identified and placed correctly.\n\nNotes on scoring:\n- To get a 5/5, all of the important text from the image must appear in the markdown, and the formatting should be correct (minor mistakes okay).  It's okay to omit some text that isn't important to the meaning, like page numbers and chapter headings.  If the entire page is an image, it's okay if the markdown is just a link to the image, unless the image would be better represented as text.\n- A 3/5 may have small missing text elements from the markdown and/or moderate formatting issues.\n- A 1/5 will have major missing text segments from the markdown or completely unreadable formatting.\n- Use 0/5 if a field isn't applicable, like if the image doesn't contain a table.\n\nIf text that is important to the meaning of the document is missing, do not score higher than 3/5.\n\nOutput json, like in the example below.\n\n**Example**\nInput\n```markdown\n# Section 1\nThis is some *markdown* extracted from a document.  Here is a block equation:\n$$\\frac{ab \\cdot x^5 + x^2 + 2 \\cdot x + 123}{t}$$\n```\nOutput\n```json\n{\n    \"image_description\": \"In the image, there is a section header 'Section 1', followed by some text and a block equation.\",\n    \"markdown_description\": \"In the markdown, there is a section header 'Section 1', followed by some text and a block equation.\",\n    \"comparison\": \"The text and formatting matches the image.  There are no formatting or text extraction issues.  The equations and section headers are correct.\",\n    \"overall\": 5,\n    \"text\": 5,\n    \"formatting\": 5,\n    \"section_headers\": 5,\n\t\"tables\": 0,\n\t\"forms\": 0,\n    \"equations\": 5,\n\t\"lists\": 0,\n\t\"images\": 0\n}\n```\n**Input**\n```markdown\n{{markdown}}\n```\n**Output**\n\"\"\"\n\ncomparison_keys = [\"comparison\"]\ndescription_keys = [\"image_description\", \"markdown_description\"]\ntext_keys = comparison_keys + description_keys\nscore_keys = [\"overall\", \"text\", \"formatting\", \"section_headers\", \"tables\", \"forms\", \"equations\",\n            \"lists\", \"images\"]\n\n\nclass LLMScorer(BaseScorer):\n    def __call__(self, sample, gt_markdown: List[str], markdown: str) -> BlockScores:\n        pdf_bytes = sample[\"pdf\"]\n        with tempfile.NamedTemporaryFile(suffix=\".pdf\") as f:\n            f.write(pdf_bytes)\n            f.flush()\n            f.seek(0)\n            doc = pdfium.PdfDocument(f.name)\n            img = doc[0].render(scale=96/72).to_pil()\n            doc.close()\n\n        return self.llm_rater(img, markdown)\n\n\n    def llm_rater(self, img: Image.Image, markdown: str) -> BlockScores:\n        if not markdown:\n            null_scores = {k: 1 for k in score_keys}\n            text_scores = {k: \"\" for k in text_keys}\n            null_scores.update(text_scores)\n            return {\n                \"score\": 1,\n                \"specific_scores\": null_scores\n            }\n        req_keys = text_keys + score_keys\n        properties = {}\n        for key in req_keys:\n            content_type = \"INTEGER\" if key in score_keys else \"STRING\"\n            properties[key] = {\"type\": content_type}\n\n        response_schema = {\n            \"required\": req_keys,\n            \"properties\": properties,\n            \"type\": \"OBJECT\"\n        }\n        prompt = rating_prompt.replace(\"{{markdown}}\", markdown)\n        response = self.llm_response_wrapper([img, prompt], response_schema)\n        assert all([k in response for k in req_keys]), f\"Missing keys in response: {response}\"\n        return {\n            \"score\": response[\"overall\"],\n            \"specific_scores\": response,\n        }\n\n    def llm_response_wrapper(self, prompt, response_schema, depth=0):\n        client = genai.Client(\n            http_options={\"timeout\": 60000},\n            vertexai=True,\n            project=os.getenv(\"VERTEX_PROJECT_ID\"),\n            location=os.getenv(\"VERTEX_LOCATION\"),\n        )\n        try:\n            responses = client.models.generate_content(\n                model=\"gemini-2.0-flash-001\",\n                contents=prompt,\n                config={\n                    \"temperature\": 0,\n                    \"response_schema\": response_schema,\n                    \"response_mime_type\": \"application/json\",\n                },\n            )\n            output = responses.candidates[0].content.parts[0].text\n            return json.loads(output)\n        except APIError as e:\n            print(f\"Hit Gemini rate limit, waiting 120 seconds\")\n            time.sleep(120)\n            if depth > 2:\n                raise e\n            return self.llm_response_wrapper(prompt, response_schema, depth + 1)"
  },
  {
    "path": "benchmarks/overall/scorers/schema.py",
    "content": "from typing import TypedDict, List, Optional, Dict\n\n\nclass BlockScores(TypedDict):\n    score: float\n    specific_scores: Dict[str, float | List[float]]\n"
  },
  {
    "path": "benchmarks/table/__init__.py",
    "content": ""
  },
  {
    "path": "benchmarks/table/gemini.py",
    "content": "import json\nfrom PIL import Image\nfrom google import genai\nfrom google.genai import types\nfrom io import BytesIO\nfrom pydantic import BaseModel\n\nfrom marker.settings import settings\n\nprompt = \"\"\"\nYou're an expert document analyst who is good at turning tables in documents into HTML.  Analyze the provided image, and convert it to a faithful HTML representation.\n \nGuidelines:\n- Keep the HTML simple and concise.\n- Only include the <table> tag and contents.\n- Only use <table>, <tr>, and <td> tags.  Only use the colspan and rowspan attributes if necessary.  Do not use <tbody>, <thead>, or <th> tags.\n- Make sure the table is as faithful to the image as possible with the given tags.\n\n**Instructions**\n1. Analyze the image, and determine the table structure.\n2. Convert the table image to HTML, following the guidelines above.\n3. Output only the HTML for the table, starting with the <table> tag and ending with the </table> tag.\n\"\"\".strip()\n\nclass TableSchema(BaseModel):\n    table_html: str\n\ndef gemini_table_rec(image: Image.Image):\n    client = genai.Client(\n        api_key=settings.GOOGLE_API_KEY,\n        http_options={\"timeout\": 60000}\n    )\n\n    image_bytes = BytesIO()\n    image.save(image_bytes, format=\"PNG\")\n\n    responses = client.models.generate_content(\n        model=\"gemini-2.0-flash\",\n        contents=[types.Part.from_bytes(data=image_bytes.getvalue(), mime_type=\"image/png\"), prompt],  # According to gemini docs, it performs better if the image is the first element\n        config={\n            \"temperature\": 0,\n            \"response_schema\": TableSchema,\n            \"response_mime_type\": \"application/json\",\n        },\n    )\n\n    output = responses.candidates[0].content.parts[0].text\n    return json.loads(output)[\"table_html\"]"
  },
  {
    "path": "benchmarks/table/inference.py",
    "content": "from typing import List\n\nimport numpy as np\nfrom bs4 import BeautifulSoup\nimport pypdfium2 as pdfium\nfrom tqdm import tqdm\nimport base64\nimport tempfile\n\nfrom benchmarks.table.gemini import gemini_table_rec\nfrom marker.config.parser import ConfigParser\nfrom marker.converters.table import TableConverter\nfrom marker.models import create_model_dict\nfrom marker.processors.llm.llm_table import LLMTableProcessor\nfrom marker.processors.table import TableProcessor\nfrom marker.renderers.json import JSONBlockOutput\nfrom marker.schema.polygon import PolygonBox\nfrom marker.util import matrix_intersection_area\n\n\ndef extract_tables(children: List[JSONBlockOutput]):\n    tables = []\n    for child in children:\n        if child.block_type == 'Table':\n            tables.append(child)\n        elif child.children:\n            tables.extend(extract_tables(child.children))\n    return tables\n\ndef fix_table_html(table_html: str) -> str:\n    marker_table_soup = BeautifulSoup(table_html, 'html.parser')\n    tbody = marker_table_soup.find('tbody')\n    if tbody:\n        tbody.unwrap()\n    for th_tag in marker_table_soup.find_all('th'):\n        th_tag.name = 'td'\n    for br_tag in marker_table_soup.find_all('br'):\n        br_tag.replace_with(marker_table_soup.new_string(''))\n\n    marker_table_html = str(marker_table_soup)\n    marker_table_html = marker_table_html.replace(\"\\n\", \" \")  # Fintabnet uses spaces instead of newlines\n    return marker_table_html\n\n\ndef inference_tables(dataset, use_llm: bool, table_rec_batch_size: int | None, max_rows: int, use_gemini: bool):\n    models = create_model_dict()\n    config_parser = ConfigParser({'output_format': 'json', \"use_llm\": use_llm, \"table_rec_batch_size\": table_rec_batch_size, \"disable_tqdm\": True})\n    total_unaligned = 0\n    results = []\n\n    iterations = len(dataset)\n    if max_rows is not None:\n        iterations = min(max_rows, len(dataset))\n\n    for i in tqdm(range(iterations), desc='Converting Tables'):\n        try:\n            row = dataset[i]\n            pdf_binary = base64.b64decode(row['pdf'])\n            gt_tables = row['tables']  # Already sorted by reading order, which is what marker returns\n\n            # Only use the basic table processors\n            converter = TableConverter(\n                config=config_parser.generate_config_dict(),\n                artifact_dict=models,\n                processor_list=[\n                    \"marker.processors.table.TableProcessor\",\n                    \"marker.processors.llm.llm_table.LLMTableProcessor\",\n                ],\n                renderer=config_parser.get_renderer()\n            )\n\n            with tempfile.NamedTemporaryFile(suffix=\".pdf\", mode=\"wb\") as temp_pdf_file:\n                temp_pdf_file.write(pdf_binary)\n                temp_pdf_file.seek(0)\n                marker_json = converter(temp_pdf_file.name).children\n\n                doc = pdfium.PdfDocument(temp_pdf_file.name)\n                page_image = doc[0].render(scale=96/72).to_pil()\n                doc.close()\n\n            if len(marker_json) == 0 or len(gt_tables) == 0:\n                print(f'No tables detected, skipping...')\n                total_unaligned += len(gt_tables)\n                continue\n\n            marker_tables = extract_tables(marker_json)\n            marker_table_boxes = [table.bbox for table in marker_tables]\n            page_bbox = marker_json[0].bbox\n\n            if len(marker_tables) != len(gt_tables):\n                print(f'Number of tables do not match, skipping...')\n                total_unaligned += len(gt_tables)\n                continue\n\n            table_images = [\n                page_image.crop(\n                    PolygonBox.from_bbox(bbox)\n                    .rescale(\n                        (page_bbox[2], page_bbox[3]), (page_image.width, page_image.height)\n                    ).bbox\n                )\n                for bbox\n                in marker_table_boxes\n            ]\n\n            # Normalize the bboxes\n            for bbox in marker_table_boxes:\n                bbox[0] = bbox[0] / page_bbox[2]\n                bbox[1] = bbox[1] / page_bbox[3]\n                bbox[2] = bbox[2] / page_bbox[2]\n                bbox[3] = bbox[3] / page_bbox[3]\n\n            gt_boxes = [table['normalized_bbox'] for table in gt_tables]\n            gt_areas = [(bbox[2] - bbox[0]) * (bbox[3] - bbox[1]) for bbox in gt_boxes]\n            marker_areas = [(bbox[2] - bbox[0]) * (bbox[3] - bbox[1]) for bbox in marker_table_boxes]\n            table_alignments = matrix_intersection_area(gt_boxes, marker_table_boxes)\n\n            aligned_tables = []\n            used_tables = set()\n            unaligned_tables = set()\n            for table_idx, alignment in enumerate(table_alignments):\n                try:\n                    max_area = np.max(alignment)\n                    aligned_idx = np.argmax(alignment)\n                except ValueError:\n                    # No alignment found\n                    unaligned_tables.add(table_idx)\n                    continue\n\n                if max_area <= .01:\n                    # No alignment found\n                    unaligned_tables.add(table_idx)\n                    continue\n\n                if aligned_idx in used_tables:\n                    # Marker table already aligned with another gt table\n                    unaligned_tables.add(table_idx)\n                    continue\n\n                # Gt table doesn't align well with any marker table\n                gt_table_pct = gt_areas[table_idx] / max_area\n                if not .85 < gt_table_pct < 1.15:\n                    unaligned_tables.add(table_idx)\n                    continue\n\n                # Marker table doesn't align with gt table\n                marker_table_pct = marker_areas[aligned_idx] / max_area\n                if not .85 < marker_table_pct < 1.15:\n                    unaligned_tables.add(table_idx)\n                    continue\n\n                gemini_html = \"\"\n                if use_gemini:\n                    try:\n                        gemini_html = gemini_table_rec(table_images[aligned_idx])\n                    except Exception as e:\n                        print(f'Gemini failed: {e}')\n\n                aligned_tables.append(\n                    (marker_tables[aligned_idx], gt_tables[table_idx], gemini_html)\n                )\n                used_tables.add(aligned_idx)\n\n            total_unaligned += len(unaligned_tables)\n\n            for marker_table, gt_table, gemini_table in aligned_tables:\n                gt_table_html = gt_table['html']\n\n                # marker wraps the table in <tbody> which fintabnet data doesn't\n                # Fintabnet doesn't use th tags, need to be replaced for fair comparison\n                marker_table_html = fix_table_html(marker_table.html)\n                gemini_table_html = fix_table_html(gemini_table)\n\n                results.append({\n                    \"marker_table\": marker_table_html,\n                    \"gt_table\": gt_table_html,\n                    \"gemini_table\": gemini_table_html\n                })\n        except pdfium.PdfiumError:\n            print('Broken PDF, Skipping...')\n            continue\n    return results, total_unaligned"
  },
  {
    "path": "benchmarks/table/scoring.py",
    "content": "\"\"\"\"\nTEDS Code Adapted from https://github.com/ibm-aur-nlp/EDD\n\"\"\"\n\nimport distance\nfrom apted import APTED, Config\nfrom apted.helpers import Tree\nfrom lxml import html\nfrom collections import deque\n\ndef wrap_table_html(table_html:str)->str:\n    return f'<html><body>{table_html}</body></html>'\n\nclass TableTree(Tree):\n    def __init__(self, tag, colspan=None, rowspan=None, content=None, *children):\n        self.tag = tag\n        self.colspan = colspan\n        self.rowspan = rowspan\n        self.content = content\n\n        # Sets self.name and self.children\n        super().__init__(tag, *children)\n\n    def bracket(self):\n        \"\"\"Show tree using brackets notation\"\"\"\n        if self.tag == 'td':\n            result = '\"tag\": %s, \"colspan\": %d, \"rowspan\": %d, \"text\": %s' % \\\n                     (self.tag, self.colspan, self.rowspan, self.content)\n        else:\n            result = '\"tag\": %s' % self.tag\n        for child in self.children:\n            result += child.bracket()\n        return \"{{{}}}\".format(result)\n\nclass CustomConfig(Config):\n    @staticmethod\n    def maximum(*sequences):\n        return max(map(len, sequences))\n\n    def normalized_distance(self, *sequences):\n        return float(distance.levenshtein(*sequences)) / self.maximum(*sequences)\n\n    def rename(self, node1, node2):\n        if (node1.tag != node2.tag) or (node1.colspan != node2.colspan) or (node1.rowspan != node2.rowspan):\n            return 1.\n        if node1.tag == 'td':\n            if node1.content or node2.content:\n                return self.normalized_distance(node1.content, node2.content)\n        return 0.\n\ndef tokenize(node):\n    \"\"\"\n    Tokenizes table cells\n    \"\"\"\n    global __tokens__\n    __tokens__.append('<%s>' % node.tag)\n    if node.text is not None:\n        __tokens__ += list(node.text)\n    for n in node.getchildren():\n        tokenize(n)\n    if node.tag != 'unk':\n        __tokens__.append('</%s>' % node.tag)\n    if node.tag != 'td' and node.tail is not None:\n            __tokens__ += list(node.tail)\n\ndef tree_convert_html(node, convert_cell=False, parent=None):\n    \"\"\"\n    Converts HTML tree to the format required by apted\n    \"\"\"\n    global __tokens__\n    if node.tag == 'td':\n        if convert_cell:\n            __tokens__ = []\n            tokenize(node)\n            cell = __tokens__[1:-1].copy()\n        else:\n            cell = []\n        new_node = TableTree(node.tag,\n                             int(node.attrib.get('colspan', '1')),\n                             int(node.attrib.get('rowspan', '1')),\n                             cell, *deque())\n    else:\n        new_node = TableTree(node.tag, None, None, None, *deque())\n    if parent is not None:\n        parent.children.append(new_node)\n    if node.tag != 'td':\n        for n in node.getchildren():\n            tree_convert_html(n, convert_cell, new_node)\n    if parent is None:\n        return new_node\n\ndef similarity_eval_html(pred, true, structure_only=False):\n    \"\"\"\n    Computes TEDS score between the prediction and the ground truth of a given samples\n    \"\"\"\n    pred, true = html.fromstring(pred), html.fromstring(true)\n    if pred.xpath('body/table') and true.xpath('body/table'):\n        pred = pred.xpath('body/table')[0]\n        true = true.xpath('body/table')[0]\n        n_nodes_pred = len(pred.xpath(\".//*\"))\n        n_nodes_true = len(true.xpath(\".//*\"))\n        tree_pred = tree_convert_html(pred, convert_cell=not structure_only)\n        tree_true = tree_convert_html(true, convert_cell=not structure_only)\n        n_nodes = max(n_nodes_pred, n_nodes_true)\n        distance = APTED(tree_pred, tree_true, CustomConfig()).compute_edit_distance()\n        return 1.0 - (float(distance) / n_nodes)\n    else:\n        return 0.0\n\n"
  },
  {
    "path": "benchmarks/table/table.py",
    "content": "import os\nos.environ[\"PYTORCH_ENABLE_MPS_FALLBACK\"] = \"1\"  # Transformers uses .isin for an op, which is not supported on MPS\n\nfrom pathlib import Path\nfrom itertools import repeat\nfrom typing import List\n\nimport time\nimport datasets\nfrom tqdm import tqdm\nimport click\nfrom tabulate import tabulate\nimport json\nfrom concurrent.futures import ProcessPoolExecutor\n\nfrom marker.settings import settings\nfrom benchmarks.table.inference import inference_tables\n\nfrom scoring import wrap_table_html, similarity_eval_html\n\ndef update_teds_score(result, prefix: str = \"marker\"):\n    prediction, ground_truth = result[f'{prefix}_table'], result['gt_table']\n    prediction, ground_truth = wrap_table_html(prediction), wrap_table_html(ground_truth)\n    score = similarity_eval_html(prediction, ground_truth)\n    result.update({f'{prefix}_score':score})\n    return result\n\n\n@click.command(help=\"Benchmark Table to HTML Conversion\")\n@click.option(\"--result_path\", type=str, default=os.path.join(settings.OUTPUT_DIR, \"benchmark\", \"table\"), help=\"Output path for results.\")\n@click.option(\"--dataset\", type=str, default=\"datalab-to/fintabnet_bench_marker\", help=\"Dataset to use\")\n@click.option(\"--max_rows\", type=int, default=None, help=\"Maximum number of PDFs to process\")\n@click.option(\"--max_workers\", type=int, default=16, help=\"Maximum number of workers to use\")\n@click.option(\"--use_llm\", is_flag=True, help=\"Use LLM for improving table recognition.\")\n@click.option(\"--table_rec_batch_size\", type=int, default=None, help=\"Batch size for table recognition.\")\n@click.option(\"--use_gemini\", is_flag=True, help=\"Evaluate Gemini for table recognition.\")\ndef main(\n        result_path: str,\n        dataset: str,\n        max_rows: int,\n        max_workers: int,\n        use_llm: bool,\n        table_rec_batch_size: int | None,\n        use_gemini: bool = False\n):\n    start = time.time()\n\n\n    dataset = datasets.load_dataset(dataset, split='train')\n    dataset = dataset.shuffle(seed=0)\n\n    results, total_unaligned = inference_tables(dataset, use_llm, table_rec_batch_size, max_rows, use_gemini)\n\n    print(f\"Total time: {time.time() - start}.\")\n    print(f\"Could not align {total_unaligned} tables from fintabnet.\")\n\n    with ProcessPoolExecutor(max_workers=max_workers) as executor:\n        marker_results = list(\n            tqdm(\n                executor.map(update_teds_score, results), desc='Computing alignment scores', total=len(results)\n            )\n        )\n\n    avg_score = sum([r[\"marker_score\"] for r in marker_results]) / len(marker_results)\n    headers = [\"Avg score\", \"Total tables\"]\n    data = [f\"{avg_score:.3f}\", len(marker_results)]\n    gemini_results = None\n    if use_gemini:\n        with ProcessPoolExecutor(max_workers=max_workers) as executor:\n            gemini_results = list(\n                tqdm(\n                    executor.map(update_teds_score, results, repeat(\"gemini\")), desc='Computing Gemini scores',\n                    total=len(results)\n                )\n            )\n        avg_gemini_score = sum([r[\"gemini_score\"] for r in gemini_results]) / len(gemini_results)\n        headers.append(\"Avg Gemini score\")\n        data.append(f\"{avg_gemini_score:.3f}\")\n\n    table = tabulate([data], headers=headers, tablefmt=\"github\")\n    print(table)\n    print(\"Avg score computed by comparing marker predicted HTML with original HTML\")\n\n    results = {\n        \"marker\": marker_results,\n        \"gemini\": gemini_results\n    }\n\n    out_path = Path(result_path)\n    out_path.mkdir(parents=True, exist_ok=True)\n    with open(out_path / \"table.json\", \"w+\") as f:\n        json.dump(results, f, indent=2)\n\n    print(f\"Results saved to {out_path}.\")\n\nif __name__ == '__main__':\n    main()"
  },
  {
    "path": "benchmarks/throughput/__init__.py",
    "content": ""
  },
  {
    "path": "benchmarks/throughput/main.py",
    "content": "import os\nimport tempfile\nimport time\nfrom multiprocessing import get_context\nfrom concurrent.futures import ProcessPoolExecutor\nimport torch\n\nimport click\nimport pypdfium2 as pdfium\nfrom tqdm import tqdm\n\nimport datasets\n\n\ndef get_next_pdf(ds: datasets.Dataset, i: int):\n    while True:\n        pdf = ds[i][\"pdf\"]\n        filename = ds[i][\"filename\"]\n        if pdf and filename.endswith(\".pdf\"):\n            return pdf, filename, i + 1\n        i += 1\n        if i >= len(ds):\n            i = 0\n\n\ndef single_batch(\n    batch_size: int,\n    num_threads: int,\n    force_ocr: bool,\n    quantize: bool,\n    compile: bool,\n    worker_id: int,\n    chunksize: int = 100,\n):\n    if quantize:\n        os.environ[\"RECOGNITION_MODEL_QUANTIZE\"] = \"true\"\n    if compile:\n        os.environ[\"COMPILE_ALL\"] = \"true\"\n\n    for item in [\n        \"DETECTOR_POSTPROCESSING_CPU_WORKERS\",\n        \"OPENBLAS_NUM_THREADS\",\n        \"PDFTEXT_CPU_WORKERS\",\n        \"OMP_NUM_THREADS\",\n    ]:\n        os.environ[item] = f\"{num_threads}\"\n\n    torch.set_num_threads(num_threads)\n\n    from marker.converters.pdf import PdfConverter\n    from marker.models import create_model_dict\n    from marker.output import text_from_rendered\n\n    ds = datasets.load_dataset(\"datalab-to/pdfs\", split=\"train\")\n    model_dict = create_model_dict()\n    torch.cuda.reset_peak_memory_stats()\n\n    times = []\n    i = 0\n    pages = 0\n    chars = 0\n\n    min_time = time.time()\n    for _ in range(batch_size):\n        pdf, fname, i = get_next_pdf(ds, i)\n        print(f\"Inferencing {fname} on worker {worker_id}...\")\n\n        pdf_doc = pdfium.PdfDocument(pdf)\n        page_count = len(pdf_doc)\n        pdf_doc.close()\n        pages += page_count\n\n        with tempfile.NamedTemporaryFile(suffix=\".pdf\") as f:\n            f.write(pdf)\n            f.flush()\n            page_range_chunks = list(range(0, page_count, chunksize))\n            for chunk_start in page_range_chunks:\n                chunk_end = min(chunk_start + chunksize, page_count)\n                page_range = list(range(chunk_start, chunk_end))\n\n                block_converter = PdfConverter(\n                    artifact_dict=model_dict,\n                    config={\n                        \"disable_tqdm\": worker_id > 0,\n                        \"page_range\": page_range,\n                        \"force_ocr\": force_ocr,\n                    },\n                )\n                start = time.time()\n                rendered = block_converter(f.name)\n                markdown, _, _ = text_from_rendered(rendered)\n                chars += len(markdown)\n\n                total = time.time() - start\n                times.append(total)\n\n    max_gpu_vram = torch.cuda.max_memory_reserved() / 1024**3\n    max_time = time.time()\n    return sum(times), min_time, max_time, max_gpu_vram, pages, chars\n\n\n@click.command(help=\"Benchmark PDF to MD conversion throughput.\")\n@click.option(\"--workers\", default=1, help=\"Number of workers to use.\")\n@click.option(\"--batch_size\", default=1, help=\"Batch size for inference.\")\n@click.option(\"--force_ocr\", is_flag=True, help=\"Force OCR on all pages.\")\n@click.option(\"--quantize\", is_flag=True, help=\"Use quantized model.\")\n@click.option(\"--compile\", is_flag=True, help=\"Use compiled model.\")\ndef main(\n    workers: int,\n    batch_size: int,\n    force_ocr: bool,\n    quantize: bool,\n    compile: bool,\n):\n    total_cpus = os.cpu_count()\n    start = time.time()\n    current_gpu_vram = torch.cuda.memory_reserved() / 1024**3\n    with ProcessPoolExecutor(\n        max_workers=workers, mp_context=get_context(\"spawn\")\n    ) as executor:\n        cpus_per_worker = min(8, max(2, total_cpus // workers))\n        futures = [\n            executor.submit(\n                single_batch,\n                batch_size,\n                cpus_per_worker,\n                force_ocr,\n                quantize,\n                compile,\n                i,\n            )\n            for i in range(workers)\n        ]\n        all_times = []\n        min_time = None\n        max_time = time.time()\n        vrams = []\n        page_count = 0\n        char_count = 0\n        for future in tqdm(futures, desc=\"Running marker workers...\"):\n            times, min_time_worker, max_time_worker, max_vram, pages, chars = (\n                future.result()\n            )\n            vrams.append(max_vram - current_gpu_vram)\n            all_times.append(times)\n            page_count += pages\n            char_count += chars\n            min_time = (\n                min(min_time_worker, min_time)\n                if min_time is not None\n                else min_time_worker\n            )\n            max_time = max(max_time, max_time_worker)\n\n    end = time.time() - start\n    all_worker_time = max_time - min_time\n\n    print(f\"Average time per worker: {sum(all_times) / len(all_times)}\")\n    print(f\"Max time per worker: {max(all_times)}\")\n    print(f\"End to end time (counting model loading), all processes: {end}\")\n    print(f\"End to end time (no model loading), all processes: {all_worker_time}\")\n    print(f\"Total pages: {page_count}\")\n    print(f\"Total characters: {char_count}\")\n    print(f\"Time per page: {all_worker_time / page_count:.2f}\")\n    print(f\"Characters per second: {char_count / all_worker_time:.2f}\")\n    print(f\"Max GPU VRAM: {max(vrams):.2f} GB\")\n    print(f\"Average GPU VRAM: {sum(vrams) / len(vrams):.2f} GB\")\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "benchmarks/verify_scores.py",
    "content": "import json\nimport argparse\n\n\ndef verify_scores(file_path):\n    with open(file_path, 'r') as file:\n        data = json.load(file)\n\n    raw_scores = [data[\"scores\"][k] for k in data[\"scores\"]]\n    marker_scores = [r[\"marker\"][\"heuristic\"][\"score\"] for r in raw_scores]\n    marker_score = sum(marker_scores) / len(marker_scores)\n    if marker_score < 90:\n        raise ValueError(\"Marker score below 90\")\n\n\ndef verify_table_scores(file_path):\n    with open(file_path, 'r') as file:\n        data = json.load(file)\n\n    avg = sum([r[\"marker_score\"] for r in data[\"marker\"]]) / len(data)\n    if avg < 0.7:\n        raise ValueError(\"Average score is below the required threshold of 0.7\")\n\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(description=\"Verify benchmark scores\")\n    parser.add_argument(\"file_path\", type=str, help=\"Path to the json file\")\n    parser.add_argument(\"--type\", type=str, help=\"Type of file to verify\", default=\"marker\")\n    args = parser.parse_args()\n    if args.type == \"marker\":\n        verify_scores(args.file_path)\n    elif args.type == \"table\":\n        verify_table_scores(args.file_path)\n"
  },
  {
    "path": "chunk_convert.py",
    "content": "from marker.scripts.chunk_convert import chunk_convert_cli\n\nif __name__ == \"__main__\":\n    chunk_convert_cli()"
  },
  {
    "path": "convert.py",
    "content": "from marker.scripts.convert import convert_cli\n\nif __name__ == \"__main__\":\n    convert_cli()\n"
  },
  {
    "path": "convert_single.py",
    "content": "from marker.scripts.convert_single import convert_single_cli\n\nif __name__ == \"__main__\":\n    convert_single_cli()\n"
  },
  {
    "path": "data/.gitignore",
    "content": "latex\npdfs\nreferences"
  },
  {
    "path": "data/examples/json/multicolcnn.json",
    "content": "{\n  \"children\": [\n    {\n      \"id\": \"/page/0/Page/277\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/0/PageHeader/14'></content-ref><content-ref src='/page/0/SectionHeader/0'></content-ref><content-ref src='/page/0/Text/1'></content-ref><content-ref src='/page/0/SectionHeader/2'></content-ref><content-ref src='/page/0/Text/3'></content-ref><content-ref src='/page/0/SectionHeader/4'></content-ref><content-ref src='/page/0/Text/5'></content-ref><content-ref src='/page/0/Text/6'></content-ref><content-ref src='/page/0/Text/7'></content-ref><content-ref src='/page/0/Text/8'></content-ref><content-ref src='/page/0/Text/9'></content-ref><content-ref src='/page/0/Text/10'></content-ref><content-ref src='/page/0/Text/11'></content-ref><content-ref src='/page/0/SectionHeader/12'></content-ref><content-ref src='/page/0/Text/13'></content-ref><content-ref src='/page/0/PageFooter/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/0/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              18.119998931884766,\n              211.199951171875\n            ],\n            [\n              36.2599983215332,\n              211.199951171875\n            ],\n            [\n              36.2599983215332,\n              559.2799987792969\n            ],\n            [\n              18.119998931884766,\n              559.2799987792969\n            ]\n          ],\n          \"bbox\": [\n            18.119998931884766,\n            211.199951171875,\n            36.2599983215332,\n            559.2799987792969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {},\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>An Aggregated Multicolumn Dilated Convolution Network for Perspective-Free Counting</h1>\",\n          \"polygon\": [\n            [\n              117.5888671875,\n              105.9219970703125\n            ],\n            [\n              477.371826171875,\n              105.9219970703125\n            ],\n            [\n              477.371826171875,\n              138.201171875\n            ],\n            [\n              117.5888671875,\n              138.201171875\n            ]\n          ],\n          \"bbox\": [\n            117.5888671875,\n            105.9219970703125,\n            477.371826171875,\n            138.201171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Diptodip Deb Georgia Institute of Technology diptodipdeb@gatech.edu</p>\",\n          \"polygon\": [\n            [\n              104.81396484375,\n              163.4853515625\n            ],\n            [\n              259.00787353515625,\n              163.4853515625\n            ],\n            [\n              259.00787353515625,\n              202.3262939453125\n            ],\n            [\n              104.81396484375,\n              202.3262939453125\n            ]\n          ],\n          \"bbox\": [\n            104.81396484375,\n            163.4853515625,\n            259.00787353515625,\n            202.3262939453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>Abstract</h1>\",\n          \"polygon\": [\n            [\n              144.1845703125,\n              232.4891357421875\n            ],\n            [\n              190.48028564453125,\n              232.4891357421875\n            ],\n            [\n              190.48028564453125,\n              244.4443359375\n            ],\n            [\n              144.1845703125,\n              244.4443359375\n            ]\n          ],\n          \"bbox\": [\n            144.1845703125,\n            232.4891357421875,\n            190.48028564453125,\n            244.4443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>We propose the use of dilated filters to construct an ag</i><i>gregation module in a multicolumn convolutional neural</i> <i>network for perspective-free counting. Counting is a com</i><i>mon problem in computer vision (e.g. traffic on the street or</i> <i>pedestrians in a crowd). Modern approaches to the count</i><i>ing problem involve the production of a density map via re</i><i>gression whose integral is equal to the number of objects</i> <i>in the image. However, objects in the image can occur at</i> <i>different scales (e.g. due to perspective effects) which can</i> <i>make it difficult for a learning agent to learn the proper</i> <i>density map. While the use of multiple columns to extract</i> <i>multiscale information from images has been shown be</i><i>fore, our approach aggregates the multiscale information</i> <i>gathered by the multicolumn convolutional neural network</i> <i>to improve performance. Our experiments show that our</i> <i>proposed network outperforms the state-of-the-art on many</i> <i>benchmark datasets, and also that using our aggregation</i> <i>module in combination with a higher number of columns is</i> <i>beneficial for multiscale counting.</i></p>\",\n          \"polygon\": [\n            [\n              49.904296875,\n              258.9959716796875\n            ],\n            [\n              287.47265625,\n              258.9959716796875\n            ],\n            [\n              287.47265625,\n              485.33203125\n            ],\n            [\n              49.904296875,\n              485.33203125\n            ]\n          ],\n          \"bbox\": [\n            49.904296875,\n            258.9959716796875,\n            287.47265625,\n            485.33203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>1. Introduction</h1>\",\n          \"polygon\": [\n            [\n              50.016357421875,\n              512.06591796875\n            ],\n            [\n              128.49609375,\n              512.06591796875\n            ],\n            [\n              128.49609375,\n              524.0211181640625\n            ],\n            [\n              50.016357421875,\n              524.0211181640625\n            ]\n          ],\n          \"bbox\": [\n            50.016357421875,\n            512.06591796875,\n            128.49609375,\n            524.0211181640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Learning to count the number of objects in an image is a deceptively difficult problem with many interesting applications, such as surveillance <a href=\\\"#page-8-0\\\">[20]</a>, traffic monitoring <a href=\\\"#page-8-1\\\">[14]</a> and medical image analysis <a href=\\\"#page-8-2\\\">[22]</a>. In many of these application areas, the objects to be counted vary widely in appearance, size and shape, and labeled training data is typically sparse. These factors pose a significant computer vision and machine learning challenge.</p>\",\n          \"polygon\": [\n            [\n              49.0078125,\n              533.7682189941406\n            ],\n            [\n              286.576171875,\n              533.7682189941406\n            ],\n            [\n              286.576171875,\n              627.4168395996094\n            ],\n            [\n              49.0078125,\n              627.4168395996094\n            ]\n          ],\n          \"bbox\": [\n            49.0078125,\n            533.7682189941406,\n            286.576171875,\n            627.4168395996094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Lempitsky et al. <a href=\\\"#page-8-3\\\">[15]</a> showed that it is possible to learn to count without learning to explicitly detect and localize individual objects. Instead, they propose learning to predict a density map whose integral over the image equals the number of objects in the image. This approach has been adopted by many later works (Cf. <a href=\\\"#page-8-4\\\">[18,</a> <a href=\\\"#page-9-0\\\">28]</a>).</p>\",\n          \"polygon\": [\n            [\n              49.7548828125,\n              630.5612335205078\n            ],\n            [\n              287.0244140625,\n              630.5612335205078\n            ],\n            [\n              287.0244140625,\n              700.734375\n            ],\n            [\n              49.7548828125,\n              700.734375\n            ]\n          ],\n          \"bbox\": [\n            49.7548828125,\n            630.5612335205078,\n            287.0244140625,\n            700.734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">However, in many counting problems, such as those</p>\",\n          \"polygon\": [\n            [\n              59.84033203125,\n              703.4442443847656\n            ],\n            [\n              287.173828125,\n              703.4442443847656\n            ],\n            [\n              287.173828125,\n              713.49609375\n            ],\n            [\n              59.84033203125,\n              713.49609375\n            ]\n          ],\n          \"bbox\": [\n            59.84033203125,\n            703.4442443847656,\n            287.173828125,\n            713.49609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Jonathan Ventura University of Colorado Colorado Springs jventura@uccs.edu</p>\",\n          \"polygon\": [\n            [\n              291.4570007324219,\n              163.6572265625\n            ],\n            [\n              488.89715576171875,\n              163.6572265625\n            ],\n            [\n              488.89715576171875,\n              202.3262939453125\n            ],\n            [\n              291.4570007324219,\n              202.3262939453125\n            ]\n          ],\n          \"bbox\": [\n            291.4570007324219,\n            163.6572265625,\n            488.89715576171875,\n            202.3262939453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\">counting cells in a microscope image, pedestrians in a crowd, or vehicles in a traffic jam, regressors trained on a single image scale are not reliable <a href=\\\"#page-8-4\\\">[18]</a>. This is due to a variety of challenges including overlap of objects and perspective effects which cause significant variance in object shape, size and appearance.</p></blockquote>\",\n          \"polygon\": [\n            [\n              308.390625,\n              234.1092529296875\n            ],\n            [\n              545.1151123046875,\n              234.1092529296875\n            ],\n            [\n              545.1151123046875,\n              303.8478698730469\n            ],\n            [\n              308.390625,\n              303.8478698730469\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            234.1092529296875,\n            545.1151123046875,\n            303.8478698730469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\">The most successful recent approaches address this issue by explicitly incorporating multi-scale information in the network <a href=\\\"#page-8-4\\\">[18,</a><a href=\\\"#page-9-0\\\">28]</a>. These approaches either combine multiple networks which take input patches of different sizes <a href=\\\"#page-8-4\\\">[18]</a> or combine multiple filtering paths (\\\"columns\\\") which have different size filters <a href=\\\"#page-9-0\\\">[28]</a>.</p></blockquote>\",\n          \"polygon\": [\n            [\n              308.390625,\n              306.861328125\n            ],\n            [\n              545.1151733398438,\n              306.861328125\n            ],\n            [\n              545.1151733398438,\n              376.9228210449219\n            ],\n            [\n              308.390625,\n              376.9228210449219\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            306.861328125,\n            545.1151733398438,\n            376.9228210449219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\">Following on the intuition that multiscale integration is key to achieving good counting performance, we propose to incorporate dilated filters <a href=\\\"#page-8-5\\\">[25]</a> into a multicolumn convolutional neural network design <a href=\\\"#page-9-0\\\">[28]</a>. Dilated filters exponentially increase the network's receptive field without an exponential increase in parameters, allowing for efficient use of multiscale information. Convolutional neural networks with dilated filters have proven to provide competitive performance in image segmentation where multiscale analysis is also critical <a href=\\\"#page-8-5\\\">[25,</a> <a href=\\\"#page-8-6\\\">26]</a>. By incorporating dilated filters into the multicolumn network design, we greatly increase the ability of the network to selectively aggregate multiscale information, without the need for explicit perspective maps during training and testing. We propose the \\\"aggregated multicolumn dilated convolution network\\\" or AMDCN which uses dilations to aggregate multiscale information. Our extensive experimental evaluation shows that this proposed network outperforms previous methods on many benchmark datasets.</p></blockquote>\",\n          \"polygon\": [\n            [\n              308.390625,\n              380.14453125\n            ],\n            [\n              545.1151123046875,\n              380.14453125\n            ],\n            [\n              545.1151123046875,\n              605.4156646728516\n            ],\n            [\n              308.390625,\n              605.4156646728516\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            380.14453125,\n            545.1151123046875,\n            605.4156646728516\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>2. Related Work</h1>\",\n          \"polygon\": [\n            [\n              307.1953125,\n              621.7747497558594\n            ],\n            [\n              392.0625,\n              621.7747497558594\n            ],\n            [\n              392.0625,\n              633.7299499511719\n            ],\n            [\n              307.1953125,\n              633.7299499511719\n            ]\n          ],\n          \"bbox\": [\n            307.1953125,\n            621.7747497558594,\n            392.0625,\n            633.7299499511719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Counting using a supervised regressor to formulate a density map was first shown by <a href=\\\"#page-8-3\\\">[15]</a>. In this paper, Lempitsky et al. show that the minimal annotation of a single dot blurred by a Gaussian kernel produces a sufficient density map to train a network to count. All of the counting methods that we examine as well as the method we use in</p>\",\n          \"polygon\": [\n            [\n              308.86199951171875,\n              643.5\n            ],\n            [\n              545.361328125,\n              643.5\n            ],\n            [\n              545.361328125,\n              713.4066772460938\n            ],\n            [\n              308.86199951171875,\n              713.4066772460938\n            ]\n          ],\n          \"bbox\": [\n            308.86199951171875,\n            643.5,\n            545.361328125,\n            713.4066772460938\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/PageFooter/15\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              294.7939453125,\n              733.3320770263672\n            ],\n            [\n              300.102294921875,\n              733.3320770263672\n            ],\n            [\n              300.102294921875,\n              743.2946739196777\n            ],\n            [\n              294.7939453125,\n              743.2946739196777\n            ]\n          ],\n          \"bbox\": [\n            294.7939453125,\n            733.3320770263672,\n            300.102294921875,\n            743.2946739196777\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/1/Page/286\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/1/FigureGroup/285'></content-ref><content-ref src='/page/1/Text/2'></content-ref><content-ref src='/page/1/Text/3'></content-ref><content-ref src='/page/1/Text/4'></content-ref><content-ref src='/page/1/Text/5'></content-ref><content-ref src='/page/1/Text/6'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/1/FigureGroup/285\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/1/Figure/0'></content-ref><content-ref src='/page/1/Caption/1'></content-ref>\",\n          \"polygon\": [\n            [\n              48.8583984375,\n              71.15625\n            ],\n            [\n              588.0362548828125,\n              71.15625\n            ],\n            [\n              588.0362548828125,\n              416.49609375\n            ],\n            [\n              48.8583984375,\n              416.49609375\n            ]\n          ],\n          \"bbox\": [\n            48.8583984375,\n            71.15625,\n            588.0362548828125,\n            416.49609375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/1/Figure/0\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  48.8583984375,\n                  71.15625\n                ],\n                [\n                  588.0362548828125,\n                  71.15625\n                ],\n                [\n                  588.0362548828125,\n                  339.15234375\n                ],\n                [\n                  48.8583984375,\n                  339.15234375\n                ]\n              ],\n              \"bbox\": [\n                48.8583984375,\n                71.15625,\n                588.0362548828125,\n                339.15234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/12\"\n              },\n              \"images\": {\n                \"/page/1/Figure/0\": \"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Kk5QooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAMjxRYS6p4V1SxgGZp7Z0QerY4Fct4E8Y6Hb+B7OC+1G2s7mwi8m4gnkCOpXj7p5OfavQKxr3wl4e1K9+2Xmi2U9wTkyPCCW+vr+NaxnHl5ZDPOPEmv3Gu6ToPjD+zJYLDTtUJYbt5eHIHmYwMDjFdL4y8baAfBd79k1O1u5ryBoYIYZA7szjH3RyMZ712/2eH7P9n8mPyNuzy9o27fTHTFZNn4R8O6fefbLTRbGG4ByJEhUFT7en4VftIO11tsFzzy806fSbD4Z2NypWeK9Tep6qSQcfhmtOTULTRfjbdS6lPHaw3mmosMszBUYgjjJ47GvQriws7uWCW5tIJpIH3wvLGGMbeqk9D7iq+qaHpWtxLHqen292qHK+dGGK/Q9RR7ZP4l3/F3C5wF1rlhrPxp8PLp1wlzFbW9wjzRHchcxscBhwcDHT1q94T/AOSq+MvpB/KuxtdC0mx+zm10yzhNsGELJCoMe7htpxkZ7+tWIrCzt7ua6htII7mfHmzJGA8mOm4gZP40pVY2sl0t+NwucNpP/Jbte/7B0X/stC/8l1f/ALBH/s1dylhZx30l8lpAt3IoR51jAkZR0BbqRR9gs/t/2/7JB9s2eX9o8seZt/u7uuPal7VfhYLnDfC373if/sLy1FokjQ/FfxlKkTSslrCwjXq5CjgfWu+tbCzsfN+yWkFv5rmSTyYwm9j1Y4HJ96I7CzhvJryK0gS6mAEsyxgO4HTc2Mn8aHVTcnbf/gBc8ii0r4f+JrOTWoNQPhvUVZjLGl2I2jcE8lT/AOy4rr/hbqep6p4SMupTyXPl3DxwXMg+aWMYwxz15zzW3eeDvDeoXhu7vRLGW4Y5Z2hGWPqfX8a2Ioo4IkihjSONBhURQAo9AB0qqlZSjy6/PoDY+io5J4YniSSVEeVtkaswBdsE4HqcAn6A1JXOIKKKKACiiigAooooAKKKKACuO8b+N18OJHpumxR3mv3SFre3Y/JEnQzSkdEB/FjwO5DvHHjT/hG4orDToFu9dvFJtoGz5cSjgyykdEHp1Y8DuR5rY2LWzz3NzcSXmo3T+Zd3kv35n/ooHCqOAOBTSNKdPm9AsbFrZ57m5uJLzUbp/Mu7yX78z/0UDhVHAHAq5RRVHWlbRBXT/DT/AJDfiH/rna/+1a5iun+Gn/Ib8Q/9c7X/ANq0mZVvhPRqKKKk5QooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACsjxJ4k07wro76lqUjBAQkUMY3STyH7saL/Ex9PqTgAmjxJ4k07wro76lqUjBAQkUMY3STyH7saL/Ex9PqTgAmvH5ZdR1/WP7e17aLsAraWaNujsYz/Cp/ic/wAT9+gwBQkXCDky1pNzqmufEnw9rmtvtunupI7ezjfMVnEbeU7B/ec4BZ+5AAwAK9trxrRv+Rz8Of8AX6//AKTzV7LTY6iSdkFFFFIzCiiigAooooAKKKKAPHPH/wDyV60/7AJ/9H1Vq14//wCSvWn/AGAT/wCj6q1SOqj8IUUUUzUK6f4af8hvxD/1ztf/AGrXMV0/w0/5DfiH/rna/wDtWkzKt8J6NRRRUnKFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUVC91bxNtkniRvRnANAE1FFFABRRRQAUUUUAFVdS1Oy0fTp9Q1G6itbSBd0k0rYVR0H4kkADuSBTdV1Wx0TS7jUtSuY7azt03yyueFH8yScAAckkAcmvC/FWq33jeO41LU4ZLbSreKR9O0x+oO04mmHQyEdB0QHA5JJCoxctj36ORJYkkjYMjgMrDoQehp1VNL/5BFl/1wT/0EVboJCiiigAooooAKKKKACiiigAooooAKqanqdlo2m3Go6jcpbWdum+WVzwo/qewA5JIAo1PU7LRtNuNR1G5jtrO3TfLLIeFH9T2AHJJAFeL6vq97431GPUL+KS20i3bfYac/UntNMO7+i9FB9cmgqMXJ2R7XYX1vqenWt/ZyeZbXUSTQvtI3IwBU4PI4I61YrA8C/8AJPfDX/YKtf8A0Utb9BIUUUUAFFFFABRRRQAUUUUAFZHiTxJp3hXR31LUpGCAhIoYxuknkP3Y0X+Jj6fUnABNHiTxJp3hXR31LUpGCAhIoYxuknkP3Y0X+Jj6fUnABNePyy6jr+sf29r20XYBW0s0bdHYxn+FT/E5/ifv0GAKEi4QcmEsuo6/rH9va9tF2AVtLNG3R2MZ/hU/xOf4n79BgCrVFFUdcYqKsixo3/I5+HP+v1//AEnmr2WvGtG/5HPw5/1+v/6TzV7LSZzVviCiiikZBRRRQAUUUUAFFFFAHjnj/wD5K9af9gE/+j6q1a8f/wDJXrT/ALAJ/wDR9VapHVR+EKKKKZqFdP8ADT/kN+If+udr/wC1a5iun+Gn/Ib8Q/8AXO1/9q0mZVvhPRqKKKk5QooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK4r4r69qHhr4dajqWlzeReKY40l2glNzhSRnjOCa7WvOPjr/ySfUv+usH/AKMWgCKP4M6ZfIsmv+IfEGsTMMv594QhPso5A9s1btvgn4BtZEkXRnaRGDKzXk3BHTo2K79P9Wv0FOoAKKKKACiiigAqnquq2OiaXcalqVzHbWdum+WVzwo/mSTgADkkgDk0arqtjoml3Gpalcx21nbpvllc8KP5kk4AA5JIA5NeL6rqt9431SLUtShkttKt336dpj9Qe00w6GQjoOiA4HJJIVGLk7INV1W+8b6pFqWpQyW2lW779O0x+oPaaYdDIR0HRAcDkkmPVf8AkD3v/XvJ/wCgmrdVNV/5A97/ANe8n/oJqjrUVFWR7bpf/IIsv+uCf+girdVNL/5BFl/1wT/0EVbqTiCmySJFG0kjqiICzMxwAB1JNEkkcMTyyuqRopZnY4CgdST2Fec6pqknjGUKoaPw8jZRCMG+I6Mw7Rei/wAXU8YBqMXJ2QHZ/wDCT+H/APoO6Z/4Fx/40f8ACT+H/wDoO6Z/4Fx/41xn9n2X/Ppb/wDfsf4Uv9n2X/Ppb/8Afsf4Vr7DzHY7L/hJ/D//AEHdM/8AAuP/ABo/4Sfw/wD9B3TP/AuP/GuN/s+y/wCfS3/79j/Cj+z7L/n0t/8Av2P8KPYeYWOy/wCEn8P/APQd0z/wLj/xq5ZahZalE0tjeW91GrbGeCUOA2AcEg9cEfnXj+u31tFM2maZa2xviAZZjEpW2U9zxyx7L+J469L8IbSKy0jXbeEHYuqZyTkkm3gJJPqSSfxqJ0+VXA9Eqpqep2WjabcajqNzHbWdum+WWQ8KP6nsAOSSAKNT1Oy0bTbjUdRuY7azt03yyyHhR/U9gBySQBXjGr6ve+N9Sj1DUIpLbSLd99hpz9Se00w7v6L0UH1yazHGLk7INX1e98b6lHqGoRSW2kW777DTn6k9pph3f0XooPrk1KehooPQ1R1xioqyPTvAv/JPfDX/AGCrX/0Utb9YHgX/AJJ74a/7BVr/AOilrfqTiCori4hs7aW5uZUhgiUvJJI2FVRySSegouLiGztpbm5lSGCJS8kkjYVVHJJJ6CvOr+/m8XXKTTI8OiRMHtrZxhrlhyJZB2XuqH6nnAFRi5OyA6QfEHwyQCL+Ug9CLOb/AOIo/wCFgeGv+f6b/wAA5/8A4isaitvYLuOxs/8ACwPDX/P9N/4Bz/8AxFH/AAsDw1/z/Tf+Ac//AMRWNRR7BdwsbP8AwsDw1/z/AE3/AIBz/wDxFX9E8T6N4ja6XSb0XDWjhJ18tkaMkZGQwB5/oa8y13XZWnfStKkxcDi4uQMi3B7D1cjoO3U9gdj4T20Vpea/DCuFBtzyckkhyST3JPJNROnyq6AyviGxl+K2mxSHfHDozyxK3IR2m2lh6EgAZ9Kp1b8f/wDJW7P/ALAR/wDR9VKhHTR+EKKKKZqWNG/5HPw5/wBfr/8ApPNXsteNaN/yOfhz/r9f/wBJ5q9lqWctb4gpskiRRtJI6pGgLMzHAUDqSaJJEijaSR1SNAWZmOAoHUk151quqyeMJdibk8PI2VUjBvyOjMO0XoP4up4wC4xcnZGRrj4hW0uXs9D1i8tiT5dxEkKpKP7yh5VbB7EgZ60v/Ce/9Sxrn/kt/wDHqz8YGBRW/sYjsaH/AAnv/Usa5/5Lf/HqP+E9/wCpY1z/AMlv/j1Z9FHsYhY0P+E9/wCpY1z/AMlv/j1Lo3xBsNY8Tf2ANN1G0vfJMx+0LEVAGOCUkbB5zg9q43XddkhlOmaYVa+IBklIytsp7n1Y9l/E8dY/AtrHaeOdORNzE29yzu5yzsdmWY9yaidNJXQWF8f/APJXrT/sAn/0fVWrXj//AJK9af8AYBP/AKPqrWaOmj8IUUUUzUK6f4af8hvxD/1ztf8A2rXMV0/w0/5DfiH/AK52v/tWkzKt8J6NRRRUnKFc/L458MQzSRPrVrvjYowVi2CDgjIGOtYWv6/Lr882k6TM0enRsY7y+jbBlI4MURH5M46dBzkrDBBFbQRwQRrHFGoVEQYCgdABWsKTkrsdjoP+E98Lf9Bq3/8AHv8ACj/hPfC3/Qat/wDx7/CsOir9h5hY3P8AhPfC3/Qat/8Ax7/Cj/hPfC3/AEGrf/x7/CsOsfXNcXS1S3t0E+oTA+TDngDu7nso/XoKPYruFjv9M8V6FrN81lp2qW9xdLGZTCh+YJkDdg9skCtivHvh9btF8RY5p5TPdzaZdNNMw5c+Zb4AHZR2HavYaxlHldhBRRRUgFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAV5x8df8Akk+pf9dYP/Ri16PXnHx1/wCST6l/11g/9GLQB6Kn+rX6CnU1P9Wv0FOoAKKKKACiiigDyr4tkzeJfB9nIS1szXc7Qn7rSIibGI7ldzY9Mmsetf4rf8jj4N/653//AKDFWRVI6qPwhVTVf+QPe/8AXvJ/6Cat1U1X/kD3v/XvJ/6CaZo9j23S/wDkEWX/AFwT/wBBFWZJI4YnlldUjRSzOxwFA6knsKraX/yCLL/rgn/oIrzfxprGq6p4kudEj08TaRYGPzo/tAT7VIyK4D8fcXcPl7nrxxUxi5OyOEt6pqknjGUKoaPw8jZRCMG+I6Mw7Rei/wAXU8YBs1hf2vq//QDT/wADF/8AiaP7Y1j/AKAaf+Bi/wDxNdkYqKsijdorC/tjWP8AoBp/4GL/APE0f2xrH/QDT/wMX/4mqA3a53XddkimbTNMZTfEAyzEZW2U9z6sey/ieOtTVvEOswx29umnR2kl3L5KXBnEnlnYzk7ccnCHHbOM1StbWO0h8uPccks7scs7HqzHuT60twC1tY7SHy49xySzuxyzserMe5PrXefC3/jy1/8A7Cg/9JoK4mu2+Fv/AB5a/wD9hQf+k0FZVvhExvxViSew8PxSoHjOrAlWGQSLedh+RAP4VyNdj8UP+PXw9/2FD/6TT1x1YI6KPwhQehooPQ0zY9O8C/8AJPfDX/YKtf8A0UtbVxcQ2dtLc3MqQwRKXkkkbCqo5JJPQVi+Bf8Aknvhr/sFWv8A6KWuO8d3Gr6l4sXSoJLQabZW8Ny1vMrETSuz4LYIyF2AhemTk5wMTGLk7I4Ca/v5vF1yk0yPDokTB7a2cYa5YciWQdl7qh+p5wBbrA8/xF/f0v8A79yf/FUef4i/v6X/AN+5P/iq7Ix5VZIo36KwPP8AEX9/S/8Av3J/8VR5/iL+/pf/AH7k/wDiqrXsBv1zWu67K076VpUmLgcXFyBkW4PYerkdB26nsDT1vUvEdrZxjztPjE8yQGSGN96BjglckjPpmq9tbRWkCwwrhRk8nJJPJJPck8k0t9AC2torSBYYVwoyeTkknkknuSeSa7L4Yf8AIT8Q/wDbt/6C9clXW/DD/kJ+If8At2/9Bes63wiZh+P/APkrdn/2Aj/6PqpVvx//AMlbs/8AsBH/ANH1UrnR00fhCiiimaljRv8Akc/Dn/X6/wD6TzV7HJIkUbSSOqRoCzMxwFA6kmvHNG/5HPw5/wBfr/8ApPNXUfE1Li9i0jSkvJba3up3M4jCnzAibgpDAgrnGRjnFK13Y5avxFXVdVk8YS7E3J4eRsqpGDfkdGYdovQfxdTxgGxjAwK537DqgGB4hvf+/Fv/APG6X7Fqn/QxXv8A34g/+N11xhyqyRFjoaK577Fqn/QxXv8A34g/+N0fYtU/6GK9/wC/EH/xuqs+wHQ1z2u67JDKdM0wq18QDJKRlbZT3Pqx7L+J461NTi1i00m8uY/EV55kMDyLmCDGQpI/5Z1m6fAkFlHtyzOPMkdjlnY8lmPcmk77ASWtrHaRbE3MSSzu5yzserMe5Nbfg/8A5H7Tv+va4/8AZKyq1fB//I/ad/17XH/slRU+BiZF4/8A+SvWn/YBP/o+qtWvH/8AyV60/wCwCf8A0fVWuZHTR+EKKKKZqFdP8NP+Q34h/wCudr/7VrlALm6vYdO06D7RqE+fLjJwqqOruf4UHc/QDJIFeqeFvDNv4a0941kNxeTkPdXTDBlbHGB/Co6Be3uSSZZhWkrWN2uC1/X5dfnm0nSZmj06NjHeX0bYMpHBiiI/JnHToOclXfEjUdYQabo+lPDEt+JWuZXkZH8tNmUUqCRu34J6gA4wTkcxBLrttBHBBZ6RHFGoVESWQBQOgA21rTp82rMEb8EEVtBHBBGscUahURBgKB0AFSVgfbPEX/Pvpf8A3+k/+Jo+2eIv+ffS/wDv9J/8TXSM36KwPtniL/n30v8A7/Sf/E1V1PWPEOnaVeXzWumMttA8xAlkyQqk/wB32oA0dc1xdLVLe3QT6hMD5MOeAO7ueyj9egrm7e3aJpJ55TPdzHdNOw5c9gB2Udh2ot7domknnlM93Md007Dlz2AHZR2HarFLzYGz4G/5KFb/APYLuv8A0bb161Xkvgb/AJKFb/8AYLuv/RtvXrVctX42SwooorMAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACvOPjr/wAkn1L/AK6wf+jFr0evOPjr/wAkn1L/AK6wf+jFoA9FT/Vr9BTqan+rX6CnUAFFFFABRRRQB5T8Vv8AkcfBv/XO/wD/AEGKsitf4rf8jj4N/wCud/8A+gxVkVSOqj8IVU1X/kD3v/XvJ/6Cat1S1h1j0W9Z2CjyHGT6kECmaPY9v0v/AJBFl/1wT/0EV53qH/I6+If+u0P/AKIjr0XTVZNKs1ZSrLAgIIwQdorzrUP+R18Q/wDXaH/0RHV0PjOJBRRRXaUFFFFAGB4m/wBdon/X83/pPNUVS+Jv9don/X83/pPNUVZvdiCu2+Fv/Hlr/wD2FB/6TQVxNdt8Lf8Ajy1//sKD/wBJoKxrfCJi/FD/AI9fD3/YUP8A6TT1x1dj8UP+PXw9/wBhQ/8ApNPXHVgjoo/CFB6Gio7ieK2t5JpnCRoMszdAKZsepeBf+Se+Gv8AsFWv/opa5XX/APkf9R/68LX/ANCmrrvBlvNaeBvD9tcRPFPFpttHJG4wyMIlBBHYg1yOv/8AI/6j/wBeFr/6FNVUfjRwohoooruKCiiigDD8U/8AHlZ/9fsX86r1Y8U/8eVn/wBfsX86r1m9xBXW/DD/AJCfiH/t2/8AQXrkq634Yf8AIT8Q/wDbt/6C9ZVvhEzD8f8A/JW7P/sBH/0fVSrfj/8A5K3Z/wDYCP8A6PqpXOjpo/CFFFMRLu+v4tM0yET38wyFbhIk7yOeyj8yeBzTNG0ldlzQVafxzoMUKtI8M8lxKFGfLj8mRdzeg3Mo9ya6zx9/yFPD3/XWf/0XW74Z8M2nhqwaKJjPdTEPdXTjDzP/AEUdAo4A/EnC8ff8hTw9/wBdZ/8A0XRD40ck5c0rmRRRRXoAFFFFAGfrv/Ivan/16S/+gGsa1/49If8Armv8q2dd/wCRe1P/AK9Jf/QDWNa/8ekP/XNf5VEtxEtavg//AJH7Tv8Ar2uP/ZKyq1fB/wDyP2nf9e1x/wCyVnV+BiZF4/8A+SvWn/YBP/o+qtWvH/8AyV60/wCwCf8A0fVWuVHTR+EKjAubq9h07ToPtGoT58uMnCqo6u5/hQdz9AMkgUAXN1ew6dp0H2jUJ8+XGThVUdXc/wAKDufoBkkCvU/C/he28NWTqr/aL6fDXV2y4aVh0AH8Kjsvb3JJI2FSpy6LcPC/he28NWTqr/aL6fDXV2y4aVh0AH8Kjsvb3JJO9RRUnKcJ47/5GPQP+uN3/wC0ay61PHf/ACMegf8AXG7/APaNZddtD4CkFFFFbDCsnxT/AMijrX/XjP8A+gGtasnxT/yKOtf9eM//AKAaUtgKNFFFQI1PBlzFB8RbFJG2mawuYk46sWhfH5Rsfwr1+vne7vpdM8VaHqCf6q0Zp5j6IJIlP/oePxr6IByMiuSr8RU4pRUl1CiiiszMKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigArzj46/wDJJ9S/66wf+jFr0evOPjr/AMkn1L/rrB/6MWgD0VP9Wv0FOpqf6tfoKdQAUUUUAFFFFAHlPxW/5HHwb/1zv/8A0GKsitf4rf8AI4+Df+ud/wD+gxViTzxWsDzzuEjQZZj2qkdVH4QnnitYHnncJGgyzHtXW+DvB0tzPDrmuQFChD2VhIP9V6SSD+/6L/D/AL3Q8HeDpbmeHXNcgKFCHsrCQf6r0kkH9/0X+H/e6eiUmzOpUvogrzDUP+R18Q/9dof/AERHXp9eYah/yOviH/rtD/6IjrWh8ZkgooortKCiiigDA8Tf67RP+v5v/Seaoql8Tf67RP8Ar+b/ANJ5qirN7sQV23wt/wCPLX/+woP/AEmgria7b4W/8eWv/wDYUH/pNBWNb4RMX4of8evh7/sKH/0mnrjq7H4of8evh7/sKH/0mnrip54raB5pnVIkGWZugFYI6KPwhPPFbQPNM6pEgyzN0ArrPB/g+W7nh1zXIGQIQ9lYSDmM9pZB/f8ARf4ep+b7p4P8Hy3c8Oua5AyBCHsrCQcxntLIP7/ov8PU/N930Wk2RUqX0QV5tr//ACP+o/8AXha/+hTV6TXm2v8A/I/6j/14Wv8A6FNWlH40ZIhoooruKCiiigDD8U/8eVn/ANfsX86r1Y8U/wDHlZ/9fsX86r1m9xBXW/DD/kJ+If8At2/9BeuSrrfhh/yE/EP/AG7f+gvWVb4RMw/H/wDyVuz/AOwEf/R9VKt+P/8Akrdn/wBgI/8Ao+qKJd31/FpmmQie/mGQrcJEneRz2UfmTwOa50dNJpQuwRLu+v4tM0yET38wyFbhIk7yOeyj8yeBzXqvhnwzaeGrBoomM91MQ91dOMPM/wDRR0CjgD8STwz4ZtPDVg0UTGe6mIe6unGHmf8Aoo6BRwB+JO3SbMZzcmFcP4+/5Cnh7/rrP/6LruK4fx9/yFPD3/XWf/0XVU/iRmZFFFFegWFFFFAGfrv/ACL2p/8AXpL/AOgGsa1/49If+ua/yrZ13/kXtT/69Jf/AEA1jWv/AB6Q/wDXNf5VEtxEtavg/wD5H7Tv+va4/wDZKyq1fB//ACP2nf8AXtcf+yVnV+BiZF4//wCSvWn/AGAT/wCj6ogXN1ew6dp0H2jUJ8+XGThVUdXc/wAKDufoBkkCr3j23v7v4xWFtpto1xdTaIUQHhE/fklnbsoHU/QDJIFei+F/C9t4asnVX+0X0+Gurtlw0rDoAP4VHZe3uSSeS5rGpyxstw8L+F7bw1ZOqv8AaL6fDXV2y4aVh0AH8Kjsvb3JJO9RRSMQooooA4Tx3/yMegf9cbv/ANo1l1qeO/8AkY9A/wCuN3/7RrLrtofAUgooorYYVk+Kf+RR1r/rxn/9ANa1ZPin/kUda/68Z/8A0A0pbAUaKKKgQyDTP7X1G9sgu530O8ZB6ustuy/qBXrHgvU/7X8GaTeFtztbqjn1Zflb9VNcH4H/AOShW/8A2C7r/wBG29dB8OP+Je+v+Hm4/s7UGMQ9In5X+RP41y1fiZotabXbX+vwO6ooorIxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK84+Ov/JJ9S/66wf+jFr0evOPjr/ySfUv+usH/oxaAPRU/wBWv0FOpqf6tfoKdQAUUUUAFFFFAHkvxdnitfFXhCeZwkaRX5Zj2+WKtbwd4OluZ4dc1yAoUIeysJB/qvSSQf3/AEX+H/e6dhqPhzSdX1XTNTv7NZ7vTGd7R3Y4jZgMnbnBPyjGQcEZGDWpQVzPl5QooooJCvMNQ/5HXxD/ANdof/REden15hqH/I6+If8ArtD/AOiI62ofGNBRRRXaUFFFFAGB4m/12if9fzf+k81RVL4m/wBdon/X83/pPNUXSs3uxB0ruPhZG50bVbvYwt7vUDLbuRgSoIYk3D1G5GAPfHpXOeFvCz+LJFu7tWTQUPA6G+I7D/pl6n+LoOOvriIkUaxxoqIoCqqjAAHQAVzVZp6ITOB+K88Vtp2gzTOqRJqZLM3QD7NPUXg/wfLdzw65rkDIEIeysJBzGe0sg/v+i/w9T833e5vtKsdTe0a9to5zaTi5g3jISQKVDY9QGOM/XqBVysR8z5bBRRRQSFeba/8A8j/qP/Xha/8AoU1ek15tr/8AyP8AqP8A14Wv/oU1a0fjQ0Q0UUV3FBRRRQBh+Kf+PKz/AOv2L+dV6seKf+PKz/6/Yv51WZgqlmICgZJPQVm9xAzBVLMQFAySegrtPhfZ3Hk6nqzwtHaXzRfZmfgyKgILgf3SW4PfGehBON4T8Jt4nePUtTjK6IpDQQMMG9PZmH/PL0H8XU/L971gAAAA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oAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACmTOY4JHHVVJH5U+mSoZIXQHBZSM0AedeEPiHdXvwu1DxXraRNJZyTApAuwMFxtHU8knFZGnWvxc8S6fFr0PiLTtKS4XzrbTjbKyhDyoZipPI9z+FZUXgX4i+HvCGoeF7W00PV9JvPMJCzNHMpbuC21ewPeu48P6n4p0b4Xxy6l4ekm1qxQW6WMUgLTBSFVsjIHHJxnpQBc+H/i288S2F7bavaLa61pc5tr2JPuluzL7Hn8q7CuG+G/h7V9Mi1bWfECRxatrVz9olgjORCoGFXPrya7mgArzj46/8kn1L/rrB/wCjFr0evOPjr/ySfUv+usH/AKMWgD0VP9Wv0FOpqf6tfoKdQAVg+L/E9v4U0CW/mw8x+S3iJ/1kh6D6Dqfat6vHfjB4e1O5ubbVW1CKW3aRLW1s9pVlZvTqCSRknjoPSmldm1CEZ1EpPQ3fg9qdzqmgapNeTNNcvqDSO7dSWRP8K9Frzn4T+H9Y8OQ6vaatZtblpI3jO4Mr8MDggkdh+dejUPcMRb2r5diOWCKdds0SSKDnDqCP1rjviJ4Jk8V+FG0zSo7G3ujPHJ5kq7F2qckZVSf0rtaKRiQ2tvHa26RRxogAGQgwM1NRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQBzEPg/yfiNc+Lvt2fOshafZfJ6YIO7fu9umPxrp6KKACiiigAooooAKKKKACiiigAooooAKKKKAOduPAXhK71A39x4c0yS5LbmdrdfmPqRjBP1roERY0VEUKijCqowAPQU6igAooooAKKKKACiiigAooooAKKKKACqt9pthqkSRahZW13GjiRUuIlkCsOjAEHBHrVqigArn7jwN4UutS/tGfw9psl2W3GVrdcs3qRjBPua6CigBAAoAAAA4AFLXLeM/GcPhe2jt7eIXes3QP2SzBx9ZHP8KDue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FpoLa6S6RA2AzqCAG9RhiCK10RY0VEUKigBVUYAHoKdRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAIw3KVOcEY4ODXllg95J8bdR8PvquptpcGnJcRwG9k4c7ec5yep4zXqleWab/ychrH/YHT+aUAep0UUUAcp8SbA6h4B1RVH7yBBcKR22EMT+QNU/F11HrXwY1S9cBhcaQ0+PRtm79CP0rsbu2S8s57WUZjmjaNvoRg/wA68rsbl5PgH4gspj++0+2vLWT2IBP8mAp9DVa0vR/n/wAMb/wf1hdW+GulKSPNs4xayD02gbf/AB0rXd15B8MCfD+paTZH5bXXdFtrmL085IxuH1I3E/UV6/QxVIpPTZhRRRSMwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoorH8Ua7F4b8OXmpyYLRJiJD/HIeFH5/pmgcU5OyOYv/wDirviRb6cPn0vQQLi4/uvcH7q/h/RhXf1zHgPQpdE8No15ltRvWN1du33jI/OD9BgfXNdPTZpVavyrZHC+Mf8AiaeNvCmhjlFna/mHbEY+XP1IYV3VcLof/E2+KviDUvvRadbx2ERPqfmb8iG/Ou6oYVdFGPZfnqFFFFIyCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAIyMV5Wz3n/AAu8eHf7V1P+yjpn2nyPtsn+szjO7O78M16pXljf8nKL/wBgT/2agDofFUOp+GtCuNb0O9upXsl86azu5mmjnjH3hlsspxkgg9uQa3/DuuWviXw/ZaxZE+RdRhwD1U91PuDkUzxTLHD4S1iSYgRrZTFs+mw1x/wOt57f4Wad5wIEkkskYP8AdLnH9aAPRqKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooARs7TtALY4BOBmvPrTwt4lg+KF54teDSTBc2a2v2cXsm5cbfmz5OD06V6FRQAUUUUAFeP6x/xLbf4oaSeFlsnvoh674zvP5kD8K9gryD4tg6Zqk96Plj1LQryzc+6oXH6lRTRrS1Uo91+WpLdW0sHwk8G+IbVc3WjW1pcDH8UZRQ6/Q/Ln2Br1W1uYry0huoG3QzRrIjeqkZB/I1zPgyzh1D4VaHZXC7objSIYnHs0QB/nVX4aXk39gXGiXbZvNHuXtHz3UElT9OoH+7R0H8VP0/J/1+J2tFFFIxCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACuA1f/irviJaaMvz6ZomLu8/uvMfuIfp/wDFCuq8Sa3D4d8P3mqTYIgTKKf43PCr+JIrK8AaJNpPh0XN9ltT1Fzd3bN13NyAfoO3qTTXc2p+7Fz+SOqqK5njtbWW4lOI4kLufQAZNS1yfxJ1BtP8Caj5efOuVFtGB1YucEf987qSM4R5pKPcq/C6CQ+FpdUnGJ9Uu5btyevLYH8ifxrtqo6Lp66Todjp64xbQJEcdyAAT+dXqbHUlzTbCiiikQFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAAc4461543hbxMfiiPF4g0jyRY/ZPs/wBuk3dc7s+Tj8K9DooA5PX9D1rxXYHSb5rTTtNmI+1G1naaWZAc7ASiBAe5547V0tnZ2+n2UFnaRLFbwII4416KoGAKZp2pWWrWa3dhcJcW7EhZEOQSDg1aoBq2jCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK8x+O1gbj4eyXiD57SXJP+wylSPzK16dXKfE23S6+GXiKN+gsZJPxUbh+oFBUJcsrlj4f/8AJOfDX/YMt/8A0WtY0/8AxTvxagm+7aa/b+U/p58fQ/lgfVjWj8MrpLz4Z+HZU6LYxxfig2H9VqL4k6dLdeFGv7Xi90uVb2Fh1Gw/N+mT+Apoul8XK+uh2FFU9J1GLV9ItNRg/wBXcxLKB6ZGcfh0q5SM2rOzCiiigQUUUUAFFFFABRRRQAVFc3MFnbS3N1NHDBEpeSSRgqoo6kk9BRdXUFlay3V1MkMESl5JJGwqqOpJrzq+vp/Ft0lxcRvDo0TB7W0cYadh0llHp3VD06nnAWoxcnZAdT/wnnhP/oYdO/7/AK0f8J54T/6GHTv+/wCtYNFbew8x2N7/AITzwn/0MOnf9/1o/wCE88J/9DDp3/f9awaKPYeYWN7/AITzwn/0MOnf9/1rT0vWdN1u2e40u/t7yFHMbPBIHCuACVOOhwRx715RrmuSyTyaXpcm2ZeLm6HIgH91fVz+nU9gej+ElvFa6XrsMK7UXVPXJJ+zQEknuSeSaznT5VcR6FRRRWYBRRRQAUUUUAFVdR1G00mwmvr6dYLaFdzu3b2HqSeAByScUajqNppNhNfX06wW0K7ndu3sPUk8ADkk4rz6ee78R38epalE0FrC26xsG/5Z/wDTST1kI6DooOBzk1UIOTsgN8eP7AgEaXrOD/05n/Gj/hP7D/oF6z/4Bn/Gsyit/YodjT/4T+w/6Bes/wDgGf8AGj/hP7D/AKBes/8AgGf8azKKPYoLGn/wn9h/0C9Z/wDAM/41d8NeMNL8VvfJp32gPYyCOdZoimCc9Ox6Ee2K8y1rWpNRmk0zTJWSBCUurtDg57xxn19W7dBz06L4VQx297r0MKKkaC2VVUYAG16znTUVdAelUUUVkIKKKKACiiigAqG7u7ews5ru7mSC3hUvJJIcKqjqSaLu7t7Czmu7uZILeFS8kkhwqqOpJrzu9vbjxVeR3d3G8GlQsHtLNxhpGHSWUevdUP3ep+b7tRi5OyA0x451K4zLZ+HC1sxzE1xeCJ2XsSmw7c9cE59cHil/4TPW/wDoWoP/AAZf/a6rUV0exiOxZ/4TPW/+hag/8GX/ANro/wCEz1v/AKFqD/wZf/a6rUUexiFiz/wmet/9C1B/4Mv/ALXTNA+Icus+Lz4fm0dYGELu1xHd+aquuPkPyjnByeeOPXjkdc1yWeeTS9LlKOvy3V2v/LH/AGF9X/8AQfrgVJ4Ht4rXxvpcMKBI1tbjA/745PqfeonTSV0B7HRRRWAgooooAKKKKACiikJCqWYgADJJ7UABIVSzEAAZJPauX/4WDoTEmEahcR5IWWDT5njfHdWC4Ye44NYesaw/i+RrW1Zk8PqcSSDg35HYf9Mff+P/AHfvSqoVQqgBQMAAcAVtCldXY7Gv/wAJ/o//AD76v/4LJ/8A4mj/AIT/AEf/AJ99X/8ABZP/APE1k0VfsF3Cxrf8J/o//Pvq/wD4LJ//AImj/hP9H/599X/8Fk//AMTWTWDruutZv/Z+n7ZNRdcktysCn+N/6L3+mTSdFdwsd3o/jbRNc1qTR7SS5W/jgNw0M9rJEfLBAz8wHdhXRV498PbVbbx/CAzSSPpt08srnLSMZbfLE/5x0HFen6/rEGgaFeapcYKW8ZYLn7zdFX8SQKxlGzsCTbsjkte/4q3x/Y+H1+bTtKxe3/o0n8CH8/yJ9K7+uS+Hujz6foLahf5Op6rIbu5YjkbuVX8AenYk11tJmlVq/Ktl/TCuF8a/8TTxh4U0IfMhuWvpl/2YxkZ+vzCu6rhdH/4m/wAWdcv/AL0WmWsdlGf9pvmb8iGH40IKOjcuy/4B3VFFFIyCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAOH+En/JPbP/rrL/6Ga7iuH+En/JPbP/rrL/6Ga7im9zWv/Fl6hRRRSMgooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK5n4if8AJN/En/YOn/8AQDXTVzPxE/5Jv4k/7B0//oBoA5X4E3zTeAhYyZD2sgIB7I6hh+u6vTZY0mieKRQ0bqVZT0IPUV5L8LP+JZrNnaH5Y9U8PWV2o7FkRUP/ALMa9dps1qr3rrrY4X4cSvpyav4WnYmXSbphFu6mFyWU/wAz+Iruq4PXf+Kf+JmjayPlttVQ6fcntv6oT7k4H0U13lDCtq1Pv/TCiiikZBRRRQAUUUUAFRXV1BZWst1dTJDBEpeSSRsKqjqSalrynxhqGt6r4tudOjt7KTStMaIrBLcOnnSlFfe4CHIXcML0yMnJxioxcnZAXL6+n8W3SXFxG8OjRMHtbRxhp2HSWUendUPTqecBbdYP2/xF/wBA/S//AANk/wDjVH2/xF/0D9L/APA2T/41XXGKirIo3qKwft/iL/oH6X/4Gyf/ABqj7f4i/wCgfpf/AIGyf/GqoDermdc1yWSeTS9Lk2zLxc3Q5EA/ur6uf06nsDV1jWNfijtrZ4bK0+2TGDz4J2keP5GckBkAzhCM9iRwarW9vFaQLDCu1F98knuSe5PUmluAW9vFaQLDCu1F98knuSe5PUmu7+Fv/Hlr/wD2FB/6TQVxNdt8Lf8Ajy1//sKD/wBJoKyrfCJne0UUVzCCisy48Q6Va+ILPQZbxRql3G0sVuqlm2KCSzYGFHBwWxkggZrToAKq6jqNppNhNfX06wW0K7ndu3sPUk8ADkk4q1XlnjZNS1Px0LdNS8m10+1hmht2hDp5rtIDIeRlgEAGemTjBNVGLk7ICxPPd+I7+PUtSiaC1hbdY2Df8s/+mknrIR0HRQcDnJq5XPeRrn/Qbj/8A1/xo8jXP+g3H/4Br/jXZGPKrJFHQ0Vz3ka5/wBBuP8A8A1/xo8jXP8AoNx/+Aa/409ewHQ1yWta1JqM0mmaZKyQISl1docHPeOM+vq3boOelbXm1y3solbWQY550hkEdsEbYx5wwPB96SGGO3hSGFFSNBtVVGABS1egBDDHbwpDCipGg2qqjAArsPhh/wAhPxD/ANu3/oL1yVdb8MP+Qn4h/wC3b/0F6zrfCJno1FFFcogqJbq3e6ktVnia5jRXeEOC6q2QCR1AODg+xrkvHHjgeHgml6XHHd6/dJuhgY/JAnQyykdEHYdWPA9ub+Ftm9t4q1uS4upbu9uLWCa5upT80sheQZx0AwAAo4AAFA+V2uerVDd3dvYWc13dzJBbwqXkkkOFVR1JNTVwHxMtvt8mg2Mk88du9y8jrFIU3MiZXOPQ8/UCmld2EVL29uPFV5Hd3cbwaVCwe0s3GGkYdJZR691Q/d6n5vu265z+xR/0E9V/8DHo/sUf9BPVf/Ax67Yw5VZFWOjornP7FH/QT1X/AMDHo/sUf9BPVf8AwMenZgdHXL65rks88ml6XKUdflurtf8Alj/sL6v/AOg/XAqvq+lvb6LfTxarqqyR28jq32x+CFJBqlp8McGnwRxqFUID9SeST6knvSd9gJLe3itYFhhQJGvQf19z71teD/8AkftO/wCva4/9krKrV8H/API/ad/17XH/ALJUVPgYmevUUUVyCCvO/G/jeeO5k8O+HZR/aOMXd6BlbJT2HrIR0HbqaPG/jeeO5k8O+HZR/aOMXd6BlbJT2HrIR0Hbqa42xsYNPthBADjJZmY5Z2PVmPck9TTSNadPm1ex6b8OTIfAGk+bPNPJscGWeQu7fO3JJ5NdTXL/AA6/5EHS/wDdf/0Y1dRSMmISFUsxAAGST2rzvWNYfxfI1rasyeH1OJJBwb8jsP8Apj7/AMf+796X4mPqN1JpOjWl7HbWt4JpLpXhL+csezCHDKdp3nIzzgDpkHn1j8QKoVdU08KBgAae2AP+/tbUqd9WNI6BVCqFUAKBgADgClrn9viH/oLWH/gvb/47Rt8Q/wDQWsP/AAXt/wDHa6dewzoKK5/b4h/6C1h/4L2/+O1S1e78Radot9fLqdgxtreSYL9gYZ2qTjPmn09KNewF/Xddazf+z9P2yai65JblYFP8b/0Xv9MmsK1tVtkYBmkkdt8srnLSMerE/wCcdBxRa2q2yMAzSSO2+WVzlpGPVif846Dip6SXVgbPgb/koVv/ANgu6/8ARtvW34l/4qvxxp/hhPmsLDF9qPox/gjP1z09G9q5XQdWg0PxQ+p3J/dW+j3bkZ+8fNt8KPcnA/Gu5+Hmkz2uiy6vqAzqesSfa5yRyFP3F+gBzjtnFc1T4mzSn7qc/u9TsKKKKyMSOeZLe3knlbbHGpdj6ADJrjPhdC8nhq51eZcTarezXTE9cFsAfmCfxq78R9ROm+BNTZCfNnQWyAdSXO0/oTW1oWnDSNA0/TwBm3t0jbHcgDJ/PNPoarSl6v8AI0KKKKRkFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUVzfi7xlaeDobWa9s7qeK4ZlDQBSFIwcHJHXn8jQVGLk7Lcy/hJ/yT2z/wCusv8A6Ga7ivIvhP4ytEsrHwutndPds8jGVQvlqMlsk5z09q9dpy3NcTFxqu/UKKKKRgFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABXBfEvWNWgbQ/D+iXn2G81u7MBvAMmFFGWK+/Nd7XNeNfB0HjHS4YDdy2N7ayiezvIfvQyDvjuPbNAHmmveH/ABdoGp6X4Xj8ZaheaZ4hl8mS5umLT25X5mCMSThl4xT/ABP8PoPhjo58WeFNUv4LmxdGuIZ5t6XSFgCGGBzzXrHhxbuLRILbUNUi1O+gzFc3MYUBnB5BA6EccVyPjjwleeIdWS41vxHHZ+ELYJLLZYCGR1PO9+Pl6dz7DvQB3tncC7soLkLtE0ayAHtkZqamxhBEgjACADaB0x2p1ABXM/ET/km/iT/sHT/+gGumrmPiMwX4b+JCxAH9nTDn/cNAHE6f/wAS2y+FusDhWs4rGU+okiUL+pY167XlOoWrz/ALQrmH/XWNlZ3UZ9CqqCfyY16fY3SX2n215H/q54llX6MAR/On0NZ604v1X6/qYHj/AEdtZ8G3sUIP2m3AuYCOodOePcjI/GtDwzrC6/4a0/U1I3TwguB2ccMP++ga1q4PwL/xJPEHiDwq/EdvP9rtB/0xkxwPYfL+JNHQa96m121/z/Q7yiiikYhXi/xH8WXniJdZ0LS5XtdJ08SRX9wpxJdSquTCvdYxxuPVvujjJPtFfPmm6beeIfFXi/RNPTMs+tXfnzsDstomwN7epPIVepI7AEgKja+p73YknT7Yk5PlL/IVYpkMQhgjiBJCKFBPsMU+gkK8w1D/AJHXxD/12h/9ER16fXmGof8AI6+If+u0P/oiOtqHxjQUUUV2lBRRRQBgeJv9don/AF/N/wCk81RVL4m/12if9fzf+k81RVm92IK7b4W/8eWv/wDYUH/pNBXE123wt/48tf8A+woP/SaCsa3wiZ3tZHinVJtE8J6vqtsqNPZ2cs8ayAlSyqSM47ZFa9c/45tp7zwF4gtraGSaeXT50jijUszsUOAAOST6VzCPNPBli1t8QNLubm4kvNRu2nku7yX78z+UfyUDhVHAHAr2uuJ8F+EJrGVdb1hQNSdCsNuGytoh6jjhnPc9B0HGSe2oZU2m9ArzbX/+R/1H/rwtf/Qpq9JrzbX/APkf9R/68LX/ANCmrWj8aEiGiiiu4oKKKKAMPxT/AMeVn/1+xfzqvVjxT/x5Wf8A1+xfzqvWb3EFdb8MP+Qn4h/7dv8A0F65Kut+GH/IT8Q/9u3/AKC9ZVvhEz0aiiiuUR86eEppNQ0htYu2MuoX80klzcOctIQ7KPoAAAAOB2r0D4d/8jXq3/XjB/6HLXm/gyeK28EWs0zrHEhmLM3QDzXr1r4faFfWr3etX8ZtmvYo44bVxh0jUsQz+jHd93sAM85Ab2OibSppHc1w/j7/AJCnh7/rrP8A+i67iuH8ff8AIU8Pf9dZ/wD0XVU/iRzmRRRRXoFhRRRQBn67/wAi9qf/AF6S/wDoBrGtf+PSH/rmv8q2dd/5F7U/+vSX/wBANY1r/wAekP8A1zX+VRLcRLWr4P8A+R+07/r2uP8A2SsqtXwf/wAj9p3/AF7XH/slZ1fgYmevUUUVxiPBNMA23z4G59RvGY92P2iQZPr0FXqpaZ/qrv8A7CF5/wClElaOl6Xe+JtSbT9PcwwREC8vQMiEddi9jIR26KOT2Bo7FJRgmz0H4df8iDpf+6//AKMauoqppmm2ukabb6fZR+XbW6BI1JJOPcnknuTVupOM4Tx3/wAjHoH/AFxu/wD2jWXWp47/AORj0D/rjd/+0ay67aHwFIKKKK2GFZPin/kUda/68Z//AEA1rVk+Kf8AkUda/wCvGf8A9ANKWwFGiiioER2Ggf8ACSeNdJsnOLdIpZrgZ4eJXiJUjvltg/M9q93AAAAGAK8l8Df8lCt/+wXdf+jbevWq5KvxMJSbSXYKKKKzJOF8cf8AEz8U+FNBHzLJdm8mX/ZiGRn2PzCu6rhdL/4m/wAXNYvfvRaVZx2cZ7B3+Y/j94V3VNmtXRRj2X56hRRRSMgooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACuW+Imif274Kv4EXdPCv2iH13JzgfUbh+NdTRQVCTjJSXQ8e+CGicahrki+lrCfyZ//AGX9a9hqho2j2mg6Ymn2SbIEZ2A/3mLf1x+FX6bd2XXqe0m5BRRRSMgooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKpatq+n6Fp0uoapdxWtpF9+WQ4A9vc+woA8g+IZh8B+JTrvhfXGi12/lUz6IQZlvCT12DlT/kYrO8PSH4oeLpbfx5qb2c9nJmDw2FaBTjnJzyx9uv0FdTouvfC+xm1zxlZajFdXZlMtxPKjecm44CxowBAPTgc9zWVqPir4e/EzULXT9QtdS0nU2I+wX9xAIXLZ4CuGORns3HpzQB7QqhVCgYAGAKz9d0+61XQ7yxstSl025njKR3cS7miPqBkfzB54INX0XZGq5JwAMnvTqAPH3+EfjML8nxX1kt6FZQP/R1cj4l+Fni3RYJte1nVoPFGnWKGee2vbudWZFGSRz1A/wBr8DX0dXM/ET/km/iT/sHT/wDoBoAlsFtfEnw8tltrVbW11DTFEVuMYhV4+FGPTIH4VT+Gl8b7wFpwfPm24a3cHtsYgD/vnFWvh/8A8k58Nf8AYMt//Ra1keBP+Jd4j8WaGflWG+F1Gv8AsyjPH0AX86fQ1jrTku1n+h3VeR+NPGOk6N4+03VrCf7Td2iSWt/AgIynYbiMZBJ/IV65XmHxT8A/2tbvrulw5v4lzcRIOZkHcf7QH5j6CiO5eGcOe09mdX4I8UP4u0SXUntVtgLholjD7uAFOScDnn0rpK87+C+P+EHkx/z+yZ/75SvRKHuRWio1GkFV7Wws7Fp2tLWGBriUzTGKML5kh6s2OpOByasUUjIKKKKACvMNQ/5HXxD/ANdof/REden15hqH/I6+If8ArtD/AOiI62ofGNBRRRXaUFFFFAGB4m/12if9fzf+k81RVL4m/wBdon/X83/pPNUVZvdiCu2+Fv8Ax5a//wBhQf8ApNBXE123wt/48tf/AOwoP/SaCsa3wiZ3tFFFcwgooooAK821/wD5H/Uf+vC1/wDQpq9JrzbX/wDkf9R/68LX/wBCmrWj8aGiGiiiu4oKKKKAMPxT/wAeVn/1+xfzqvVjxT/x5Wf/AF+xfzqvWb3EFdb8MP8AkJ+If+3b/wBBeuSrrfhh/wAhPxD/ANu3/oL1lW+ETPRqKKK5RHlHwy+G17pWn2k/ieJBNaSO1rZBg6o29iJXIJDNz8o6L16/d9XoooBu4Vw/j7/kKeHv+us//ouu4rh/H3/IU8Pf9dZ//RdXT+JAZFFFFegWFFFFAGfrv/Ivan/16S/+gGsa1/49If8Armv8q2dd/wCRe1P/AK9Jf/QDWNa/8ekP/XNf5VEtxEtavg//AJH7Tv8Ar2uP/ZKyq1fB/wDyP2nf9e1x/wCyVnV+BiZ69RRRXGI8K8M6TfeJL6+0+wZoIYtQu/tl7jIhBuJDtXPBkIPHYA5PYH2nStKstE02HT9PgENvEMKo5JPUkk8kk8knkmpre1t7ONo7aCKBGdpCsSBQWY5ZsDuSSSe5NTUFOTYUUUUEnCeO/wDkY9A/643f/tGsutTx3/yMegf9cbv/ANo1l120PgKQUUUVsMKyfFP/ACKOtf8AXjP/AOgGtasnxT/yKOtf9eM//oBpS2Ao0UUVAjZ8Df8AJQrf/sF3X/o23r1qvJfA3/JQrf8A7Bd1/wCjbevWq5KvxslhTJZUhheWRgqIpZiewHJp9cv8RNSOmeBNUkU4kli+zoB1Jc7ePwJP4VmVCPNJR7mf8L4nn8P3mtTKRLq19LcnPXbuwB+Yb867is3w9po0jw7p2n4wbe3RG92x8x/PNaVN7jqy5ptoKKKKRAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAeGfHCy8RaJqFr4o0zVNS/sxikV1aRXckaIw6HCMMBhwSO/wBa7TwtovhnxZ4dtNYsbnWTFOnzJ/bd3mNx95T+96g12mqabaaxpdzp19EJbW5jMciHuD/WvAfBuo3fwh+JVz4U1eVjot+4MEzfdBPCSe2fut/9agDa+KngnV9B0OXX/DfiTXY4bbBubSTUZnATONyktnjuCTXsumMz6VZu7FmaBCSTkk7RUesaZDrei3umTsVhu4WhZl6gMMZFWbaEW1rDApJWJAgJ6nAxQBLRRXO3/jLT9N8S2eg3NtereXpItyIh5cmOpDZxx+dAHRUVj6f4ih1LVrvT4bK+V7R/LmlkiAjDYyAGzzwQePXnFbFABRVb+0bL/n8t/wDv6v8AjR/aNj/z+W//AH9X/GgCzRVdb+zZgq3cBJ4AEg5/WrFABRXn3iDxxrk3i6Twr4O0y0vNQt4xLeXN65EEAPQELgk8jv8Ah1o8O+OtXj8Q3nh3xlp9rY6hb2xu0ubRmMEsQ6kbskYwe/Y9KAPQaK8rsfG3j7xdFNqnhLQtJj0ZHZYH1ORxLc7TglQpAH48e9a+ifEZtY8H65qD6f8AZNZ0aOQXdjK2QsiqSOf7pwfyP1oA72isHwdrs3iTwdputXEMcU11D5jRx52qckcZ+lcpp3xIv734Xaz4rextlubCaWNIQW2MFKgZ5z3oA9JqK5uYLO2kubqaOGCNdzySMFVR6knpXli+NfiNqfh9fEmkeHtITShD53k3Urm4mUDLMoBAA4OAecetVPiB4pvvFXwQGsaXZQizvI/9OEsnzQYcD5f73zDH0oA9fgniubeO4gdZIpVDo69GUjIIqSuT+HU+tz+D7H+27O2tmWGNbYW8hbfFsXazeh9q6ygAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAry/4wfZ4rnwpd6tGZNAg1LN+CpZBkfIWHcda9QqG6tLa+tZLW7giuLeQbXilQMrD0IPBoA8/1bwFo3ijxB4a8S6LHpT2NtIXuDFgJcRj7uNoIYhh3x6VT+NmpaK/hNtGeSGbXZZYvsFtGQ0yvuGGAHKjGRnvXpOn6faaVYQ2Nhbpb2sI2xxRjCqPQVTfw1osmvjXZNNgfVFQRrcuuWUDpjPTr1HNAF2xWZNPtluDmdYlEh/2sDP61YoooAK5n4if8k38Sf8AYOn/APQDXTVzPxE/5Jv4k/7B0/8A6AaAH/D/AP5Jz4a/7Blv/wCi1rIn/wCJX8ZbaTpHq2nNGfeSM5/9BUfnWv8AD/8A5Jz4a/7Blv8A+i1rI+I3+g3HhvXRx9h1JFkPpG/Df+ggfjTRrR1ly90zuqKKKRkUtO0qz0lbhLKIRRzzNOyDoHYDOB26Z/GrtFFA229WVdS1G00jTbjUb6YQ2tvGZJZD2ArzkfF68ls21a28Da3NoQy324bQSg6uE7j3zivQda0Ww8Q6TPpeqQGeznAEkYdkzg5HKkHqBXN+M/FOleBPDCWcaCS7kh+zafp8fzPKcbVGOu0cZP8AWgR0eh63YeItGttV02bzbS4XcjYwR2II7EHitCuN+F3hu78LeArLT7/5bti08sf/ADzLnO38Bj8c12VABXmGof8AI6+If+u0P/oiOvT68w1D/kdfEP8A12h/9ER1tQ+MaCiiiu0oKKKKAMDxN/rtE/6/m/8ASeaoql8Tf67RP+v5v/SeaoWZUUszBVUZJJwAKze7EDMqKWZgqqMkk4AFd38LradND1G9kheOG/vvtFsXGDJH5MSBsdQCUbGeowehrB8JeEm8SPHqmqRFdGUh7e2cYN4ezuP+efov8XU8YB9XAwMDpXNVmnohMK4Tx34u1jTdY0nwz4at7eTWtU3Mstzny4I16sQOvf8ALoa7uoLy6tbC0kvLyaOC3gUu8shAVB3OTWIjy7UfEPjv4f3en3nia907WdFurhbeZ7eDypLdm6EYwCOvr07V6wCCMjoa8ellvPjH4htPs0Elv4M0y4ErTyLta+lXoFH93/E9+B7D0oAK821//kf9R/68LX/0KavSa821/wD5H/Uf+vC1/wDQpq1o/GhohoooruKCiiigDD8U/wDHlZ/9fsX86r1Y8U/8eVn/ANfsX86qTTRwQvNM6pGg3MzHAArN7iCaaOCF5pnVI0G5mY4AFd78NtIvbS2v9UvIWt11BozDDIMSBEBAZh/CTuzjqBjPPAzfB3g6TUZodb1uBkt0IksrGQYJPaWUevdVPTqecBfS65qtTm0QmFFFef8AxR8bf8I3p9rpVpdRWup6qxiiuZm2pbR9GlJ9s8D1rERma78UbhPiZpHhrRkjks2vFtr66ZNwLnrGh6ZA6/WvU6+etW1HwbouqeALTRtas7i20+/aW8uBICSx27pHPuQa9+sr221GyhvLOdJ7aZQ8cqHKsD3BoAnrh/H3/IU8Pf8AXWf/ANF13FcP4+/5Cnh7/rrP/wCi6un8SAyKKKK9AsKKKKAM/Xf+Re1P/r0l/wDQDWNa/wDHpD/1zX+VbOu/8i9qf/XpL/6AaxIHWOxid2CosQJYnAAxUS3ESu6xozuwVFGSxOABXV/D/Qbu61KPxJcq1vaLC8dnEy4eYPjMhz91cD5R1Oc9MZq+EfCLeIHi1bVoSukqQ9raSDBuj2kkH9zuFP3up4wD6pXLUqX0QmFFFFYiPHJ9PPxB+K+vaLr2pXkGn6VGn2TT4JjEJQRzIcdf/rirvw/lutD+JGveDrfUrjUdGtIEnhaeTzGtnOMx7vxPHt9aybDw9D8WvGuu6lrU8lvaaPcmxtYbMLHIcZyzvjcfp7mr/hGxPw7+KJ8HWkoudK1S2a8ieRF86J1zkM4ALDg9fUe+QD12iiigDhPHf/Ix6B/1xu//AGjWXWp47/5GPQP+uN3/AO0ay67aHwFIKKKK2GFZPin/AJFHWv8Arxn/APQDWtWT4p/5FHWv+vGf/wBANKWwFGiitDw34bm8X3BkkLxaFExWWVSQ12w6xoeydmYfQdyMpSUVdiNH4dWNze+JH1yOPGnQWs1okzf8tpGeMnZ6qvlkE9MnAzg49SqOCCG1t47e3iSKGJQkcaKAqqOAAB0FSVxylzO5IVwvjv8A4mfiLwroA+ZZ703Uy/7EQzg/UFvyruq4XTv+Jv8AF/VLv70WkWSWqHsHf5if/QhQjWjo3LsjuqKKKRkFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAhIUEkgAckmvPn0qy+JHia11a4tIpND0iRhaSuvN7Lnlh/0yUjj+8R6Vz3xL+KOi2mtr4WnuLoWSn/iaSWahnYf88VJIxn+I54HFS2/7QHga0tore3stVihiUIkaWyAKo4AA30AerX13Fp+n3F5LxFbxNK30UZP8qi0fUk1jRrLUo42jS7gSZUbqoYZwfzrwzx98dtG1vwhe6Todtfrc3ieU0lxGqKiH73RiSSOPxr2LwR/yImg/wDXhD/6AKAN6uK+JekjWdDtra03DXFuFl0t0OGSVeS2eygZz+HfFdrWUfDunNrq60y3Jv0Qorm8mKqp6gJu2AHA4x2oAxvhxrFvq/hOIrG0V9BI0WoRSHLrcA/OW+p5/H2rrW+4cruGOnrWHpng/RdH1e51WxguIry6bdcOb2ZxKemWVnKnr6cVu0AecNYaPuP/ABZ9jz1+x6fz/wCRKT7Bo/8A0R5v/APT/wD45XpFFAHn1nY6St7AU+E7WrCRSJ/slgPKOfvZWTPHXjmvQaKKAPKvBM0em/GTxtp16yx3d68VxbBzgyR4P3fXGR+XtW34w8TWd++r+CrFJ59Xn0qaXMKgpH8pwrnOQTxgY7itfxR4F8PeMPKbWLHzJ4eI543MciD03Kensaf4Y8E6B4PilXRrEQyTf62Z3LySfVjzj26UAYXwf1Sxu/hjpccMsYeyjMNymQDG4JzuHbPWuK0ZhrN/8V9X0/8AeWE8DQxSJysjrG2SPX1/Gu61f4R+DNa1KS/uNMaKeY5m+zzvEsp/2lU4/LFdTpWi6boemR6bpllFbWaAgRIvHPXPqT6mgDj/AIY6rYwfB7SruW6iSC1tWEzs4AQqTkH0Nee+HZFm/Zv8USr917mdh9CUr0Zfg74IXVTfjSDkv5ht/Ofyd3rszj8OntW5D4L8PQeHrzQYtPC6ZeO0k8Amk+dmIJOd2R0HQigCp4eAHwr08Acf2Qn/AKKry6w5/ZUuv91//R9e42+m2lrpUemQxbbOOEQLHuJwgGMZJz075zWbbeENBtPC7+GoLBV0h1ZGt2kduGOT8xJbrz1oAl8KkHwhopByPsMHT/cFa9YPhXwhpPg6xms9IWdYJZPMZZZjJg4xxnoK3qACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACuZ+In/JN/En/AGDp/wD0A101cz8RP+Sb+JP+wdP/AOgGgB/w/wD+Sc+Gv+wZb/8AotaZ8QtP/tLwHq8IGWSHzl+qEP8A+y0/4f8A/JOfDX/YMt//AEWtdBNEk8EkMgykilWHqCMGgqEuWSl2M7w3qH9q+GdMvictPbIzn/awN365rUriPhbK6eFZtLlOZdMvZrVgevDbv/Zj+VdvTe46seWbQUUUUiDnPHfiqPwb4QvdZaMSyRAJDGejSMcKD7dz9K8R8GfEHwXp1+/iTxPdahqfiaflpmtsx2w/uRjPGPX8vf6RooAxfC3inTfGGijVdKMxtjI0Y81NrZHXj8a2qKKACvMNQ/5HXxD/ANdof/REden1y+peBrHUtWudS/tDUraa52mVbeVQpKqFBwVPYCrpyUZXYI5iit7/AIV3af8AQb1r/v8AR/8AxFH/AAru0/6Detf9/o//AIiuj6xHsVcwaK3v+Fd2n/Qb1r/v9H/8RR/wru0/6Detf9/o/wD4ij6xHsFzgfFLKkmjMzBVW+Ykk4AH2eatjwl4SbxI8eqapEV0ZSHt7Zxg3h7O4/55+i/xdTxgHo2+GWjT3NrLf3eo38dtL5y29zKhjZsEDcAoyPmPGcHvkcV2gGBgdKyqVebYTYAYGB0ooorEQV5L8W9E8Z+I9U02y0jRP7Q0KDE1xEbuOFbiTPCtlw2AAPzr1qigDymy1z4r2kUFrD8PdLt7WMBFSO9iARfYCSvVVyVGRg45FLRQAV5tr/8AyP8AqP8A14Wv/oU1ek1j6n4U0LWbz7ZqGmQT3GwR+YwIYqCSBx6ZP51cJcsrgcRRXV/8IB4V/wCgLb/m3+NH/CAeFf8AoC2/5t/jW/1jyHc5Siur/wCEA8K/9AW3/Nv8aP8AhAPCv/QFt/zb/Gj6x5Bc818XTR2+mW00zqkaXkTMzHAAzXR+DvB0mozQ63rcDJboRJZWMgwSe0so9e6qenU84C9TF4D8LQ3EM66JaGWFxJGWUttYdCAT1FdFWU6rlsFwooorIQVkax4X0LxDJFJrGk2l88QIjM8YYqD1xmteigDyjxZ8KtPuPEnhiTRPDNiNPiuy2pCNY0Bi4xuBILDrwM16hZ2dtp1nFZ2cCQW0KhI4oxhVA7AVPRQAVwPxHurezvvD011PFBF50w3yuFXPl9Mmu+pskUcq7ZEVxnOGGacXZ3A8g/4SHRf+gxp//gSn+NH/AAkOi/8AQY0//wACU/xr1v7Ha/8APtD/AN8Cj7Ha/wDPtD/3wK3+sPsO55J/wkOi/wDQY0//AMCU/wAaP+Eh0X/oMaf/AOBKf41639jtf+faH/vgUfY7X/n2h/74FH1h9gueLa3r2jyaDqKJq1izNaygKtwhJO08da1fA3hFvENvZ6vq0JXSVRHtbVxg3RwCJHH9zuFP3up4wD6p9jtf+faH/vgVNUTquQXCiiishBRRRQB55qnw71W18SXeveDvER0a4vjm8t5bcTQyt/eweh/DuelXfCfgKbR9cuPEWu6xJrOuzx+V9oaMRpEn91FHT/PHWu2ooAKKKKAOE8d/8jHoH/XG7/8AaNZdd3rHhzStfMB1O185rfd5TCR0K7sZ5Ug84H5Vmf8ACvfDP/PhN/4GT/8Axdb06ygrWGmcvRXUf8K98M/8+E3/AIGT/wDxdH/CvfDP/PhN/wCBk/8A8XV/WF2C5y9ZPin/AJFHWv8Arxn/APQDXff8K98M/wDPhN/4GT//ABdMl+HPhWaJ4pdOkeN1KspvJ8EHqPv0PEJrYLnDeG/Dc3i+4MkheLQomKyyqSGu2HWND2TszD6DuR6/BBDa28dvbxJFDEoSONFAVVHAAA6CiCCG1t47e3iSKGJQkcaKAqqOAAB0FSVzyk5O7EFFFFSA2R1ijaR2CooLMT2ArifhgjXOi6hrkqkSatfy3AJ/uA4A/Ahq0viDqX9l+BdVnBw8kPkJjrlzt4/Ak/hWl4a03+x/DOm6fjDQW6K/+9jLfrmn0NVpSb7v8jUooopGQUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAGXP4b0K6nee40XTppnOXkktUZmPqSRzUf/CJ+HP8AoX9K/wDAOP8AwrYqKW5t4CBNPFGT0DuB/OgDM/4RPw5/0L+lf+Acf+FasUUcESRQxpHGgCqiDAUDoAB0FRx3trK4SO5hdz0VZASanoAKKwNT8X6fpOtWmk3MF59rvCwtlSHcJdoycHPYeuKsDxHYpeQWt2s9lNcNshF1EUWRv7ob7u72zn2oA16KKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigArmfiJ/yTfxJ/wBg6f8A9ANdNXM/ET/km/iT/sHT/wDoBoAf8P8A/knPhr/sGW//AKLWujrnPh//AMk58Nf9gy3/APRa10dAHC+G/wDiWfE3xRpnRLtIr+Ifo5/76b9K7quF8Q/8Sz4o+GdS6R3sUtjIf1Qf99N+ld1TZrV1tLuv+AFFFFIyCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA4Xx9/xMta8L+HxyLq++0TL6xxDJB+oJ/Ku6rhbL/ib/GHULj70Oj2KW6+gkk+bP5Fh+Fd1TZrU0UY+X5hRRRSMgooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA4/XPFl94f8U2llqEdpDpF7HJ5N8dxIlUZEbD1I5B79K3tDn1S502OfVobeCeQbhFDuOwdgc9/5Vz3i7SL3xYJ9Jl0+8t7GCIzw3cckWXuR/q9o37hjryBk+nfY8KXWt3Og248Q6c9lqUahJsyRushHG5djHr1wcdaAJvE1/PpfhjUr62BM8Fu7x4GeccGuQt7TRUiUz/DvUr2dgDJc3dnbTSyt3ZnaQk16DNFHcQvDKivHIpV1YZDA8EGueXQNcs1EGmeJTHaLxHFd2aztGOyh9ykge+T7mgCno0OjrqsBtvAU2mTZO27axtoxHx/eRiw9OB3rsKxLHT/ABDDeRyXuvW1zbjO+JNP8stx/e8w4/KtugDzrxp/yVbwD/v3X/oArR+LFsk/wz1l2O17eIXETjgo6MCCD2NVfFWmaxffEHwvqlno1zPZaW85nlWWFch0AG0NICefYVd8V6ZqnjLSxoS2U2nWNxIpvbieSMsYgQSiKjNljgDJwAPWgDa8K382qeEtIv7n/X3FnFJIfVioJNa9RW1vFaWsVtAgSGFBGijsoGAKloAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACuZ+In/JN/En/YOn/wDQDXTVzPxE/wCSb+JP+wdP/wCgGgB/w/8A+Sc+Gv8AsGW//ota6Ouc+H//ACTnw1/2DLf/ANFrXR0AcR8Uo3i8M22rRDMul30N0COuA23+ZH5V2kUiTRJLGdyOoZT6g9KzPE+n/wBq+FtUsQMtNbOEH+1jK/qBVHwBqH9p+BNInJyywCFvqhKf+y0+hq9aS8n+Z0lFFFIyCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigApGZURnYgKoySewpa5vx9qX9leBtWuQ2HaAwp67n+QY/PP4UFRjzSUV1Mr4Yq13peqa9IDv1XUJZlJ/uA4Ufgd1dzWR4W03+x/C2mWBXa8Nugcf7ZGW/Umt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PEv/AGCrr/0U1eXeENFu/FVtaWtq7wafDDGt5er1B2jMUZ7v6n+H64Fe039jb6np11YXkfmWt1E8MybiNyMCGGRyOCelM0zTLLRtMttN063W3s7ZBHFEucKB7nkn1J5J5NBUZNbDtP0+00qwhsbGBILaFdscaDgD+p7571ZoooJOE8d/8jHoH/XG7/8AaNZdanjv/kY9A/643f8A7RrLrtofAUgooorYYVk+Kf8AkUda/wCvGf8A9ANa1ZPin/kUda/68Z//AEA0pbAUaKKKgRs+Bv8AkoVv/wBgu6/9G29etV5L4G/5KFb/APYLuv8A0bb161XJV+NksKKKKzAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigDB8YeGofFfh2fTpCFm/1lvIf4JB0P0PQ+xNaGi2R03QtPsW621tHCfqqgf0q9RQVzvl5egUUVieKrzXrPR8+HNOivdSkkEaLNJsSMHOXb1Ax096CTVF3bNdtaLcRG5VA7QhxvCngEr1x71NXjPw1sNV034weJoNb1AX+omwieedRhdzFTtUegzgdOnSvZqACvMNQ/5HXxD/ANdof/REden15hqH/I6+If8ArtD/AOiI62ofGNBRRRXaUFFFFAGB4m/12if9fzf+k81RVL4m/wBdon/X83/pPNUVZvdiCu2+Fv8Ax5a//wBhQf8ApNBXDxRXd/fxaZpkInv5hlVJwka95HPZR+ZPA5r1zwx4cg8M6UbSKV55pXM1zcPwZZSAC2OwwoAA6ADr1rCtJWsJmzRRUc5lFvIYApm2nYG6FscZ9s1ziKmo61pukzWcV/dxwSXs629sjZJkkPQAD+fSr9eCeIvDWu2HjfwVrfibWBfapd6xFH5MC7YLZAwO1AeTz3/n1r3ugArzbX/+R/1H/rwtf/Qpq9JrzbX/APkf9R/68LX/ANCmrWj8aGiGiiiu4oKKKKAMPxT/AMeVn/1+xfzqvVjxT/x5Wf8A1+xfzqvWb3EFdZ8MP+Qn4h/7dv8A0F65O2tr3VtSTS9LRXu3G53cfJbp/ff+g6sfxI9c8O+HbLw1potLXc8jnfPcSffmfuzH+Q6AYArCtJW5RM16parq+naHYve6pewWlsvBkmcKM+g9T7VdrkPE/gSLxV4n0XUdQulk07TtzNpzxbkmc9GJz244welc4i3ofj7wr4jvPsmk63a3NzjIiyUZvoGAz+FdJXjvxestKhvfDVnotpBD4me/ja1+yxhHWMHktj+HOOvofevYRnAz170ALXD+Pv8AkKeHv+us/wD6LruK4fx9/wAhTw9/11n/APRdXT+JAZFFFFegWFFFFAGfrv8AyL2p/wDXpL/6AaxrX/j0h/65r/KtnXf+Re1P/r0l/wDQDWNa/wDHpD/1zX+VRLcRLWr4NO74g2CryyWlwzAfwg7ACfQZ4rIjju76/i03TYRPfzDKoThY17yOeyj8yeBkmvWPC/he08M2DRxsZ7yYhrq7cYaZv6KOgXoB6kknCrNW5RM3aKKK5hBVGTWdNi1iLSHvYF1GaMyR2xf52UdTj04NUfFnie08J6DNqVyDI+RHbwL96eU/dRR6k15J4d0nVdP+OGiXuvTmTVtTsJrq4T+GHIYLGvsoAFAHu9FFFAHCeO/+Rj0D/rjd/wDtGsutTx3/AMjHoH/XG7/9o1l120PgKQUUUVsMKyfFP/Io61/14z/+gGtasnxT/wAijrX/AF4z/wDoBpS2Ao0UVFLK6yRQQQvcXU7eXBbx/elb0HoO5J4AyTUN2Eb3gb/koVv/ANgu6/8ARtvXrVcr4O8Hr4fja+vnSfWLhNssq/ciTOfKjz/DkDJ6sRk9AB1VcU5c0rokKKKKkAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA8x8O/8l+8W/8AYPg/9kr06sKy8J2Fj4v1HxNFLcm9v4UhlRmXywq4xtGM547k1u0AFeYah/yOviH/AK7Q/wDoiOvT68x1qDULbxhrMo0jUZ4bh4nilt4C6sBCinke6mtaLSldjQlFV/Ov/wDoA6z/AOAbUedf/wDQB1n/AMA2rr9pHuO5Yoqv51//ANAHWf8AwDajzr//AKAOs/8AgG1HtI9wuZHib/XaJ/1/N/6TzVBFFd39/FpmmQie/mGVUnCRr3kc9lH5k8DmrWrabrutXWlQafod8kqXZdpLuExRIpikXczegLDgcntzXp/hjwxaeGbBoomM93MQ91duMPM39FHQL0A98k41KqWwmw8MeGLTwzYNFExnu5iHurtxh5m/oo6BegHvkncoorlEFFFFAHmnxR/5Gf4f/wDYcj/mtel1map4f0vWrrT7nULXzptPnFxat5jL5cg6HAIz06HIrToAK821/wD5H/Uf+vC1/wDQpq9JrgfEeia7J4tudQsNNS7tp7SCIH7QsZVkaQkEH/fFaUmlJNjRnUU7+yfFH/Qvj/wNjo/snxR/0L4/8DY66/aw7juNop39k+KP+hfH/gbHR/ZPij/oXx/4Gx0e1h3C5g+Kf+PKz/6/Yv51Xtra91bUk0vS0V7txud3HyW6f33/AKDqx/EjW1bwr4t1iO2totKgtMXKSNPNdK6xgHk7V5P0r0bw74dsvDWm/ZbXc8jnfPcSffnfuzH+Q6AcCsalVfZE2Hh3w7ZeGtN+y2u55HO+e4k+/O/dmP8AIdAOBWvRRXMIK4f4iePf+ESt7Ww0+OK41zUDstYpXCog6GRySMKP89K7iuX8RfDrwr4s1BL/AFvSzd3KRiNX+0yphQScYVgO5oA5zwToeh6Hdy65rfiTT9U8TXY/fXT3SER5/gjGeB2/wHFel9a4FPgr8PY3V18P4ZSCD9suOv8A38rvQAqgDoOBQAtcP4+/5Cnh7/rrP/6LruK5rxb4dvtdfTprC7t4JrOR2InjZ1YMu3sRg1UHaSbA5Wir3/CHeJv+glpH/gPJ/wDF0f8ACHeJv+glpH/gPJ/8XXX7eBVyjRV7/hDvE3/QS0j/AMB5P/i6P+EO8Tf9BLSP/AeT/wCLo9vALmDrv/Ivan/16S/+gGsSxju76Sz03TYRPfzRgqhOFjXAzI57KPzJ4GSa7K98C+Jb2xuLVtU0lVmiaMsLaTIBGM/f966nwl4UtPCmli3jc3F5IFN1eOuGmYDHT+FR2XoB6kknOdZfZE2O8L+F7TwzYNHGxnvJiGurtxhpm/oo6BegHqSSd2iiuYQUUUUAeW+O/C3jfVfHVhrOhtpc1pYRf6NDfOdqSnO59oHJ6YJridQHxK/4W1pH2htE/t/7DJ9n27vJ8r5t273619EVlzeHtKuPEVvr8tru1O2iMMU/mMNqHORtztPU9RQBoQeb9ni8/b52wb9vTdjnH41JRRQBwnjv/kY9A/643f8A7RrLrc8b6Xqt3qekXmm6c98tuk6SpHLGjLv8vB+dgCPlPesL7D4l/wChWvP/AAKtv/jtdVGcVGzY0LRSfYfEv/QrXn/gVbf/AB2j7D4l/wChWvP/AAKtv/jta+1h3HcWsnxT/wAijrX/AF4z/wDoBrV+w+Jf+hWvP/Aq2/8AjtUda0XxTqGhahZReF7sSXFtJEha6tsAspAz+896TqwtuFzFlldZIoIIXuLqdvLgt4/vSt6D0Hck8AZJr03wf4PTQI2vr5kuNYnXbLKv3YV6+XHnovqerHk9gDwf4PTQI2vr5kuNYnXbLKv3YV6+XHnovqerHk9gOrrlqVObRbCCiiisxBRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAH//2Q==\"\n              }\n            },\n            {\n              \"id\": \"/page/1/Caption/1\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-1-0\\\"></span>Figure 1. Fully convolutional architecture diagram (not to scale). Arrows show separate columns that all take the same input. At the end of the columns, the feature maps are merged (concatenated) together and passed to another series of dilated convolutions: the aggregator, which can aggregate the multiscale information collected by the columns <a href=\\\"#page-8-5\\\">[25]</a>. The input image is I with C channels. The output single channel density map is D, and integrating over this map (summing the pixels) results in the final count. Initial filter sizes are labeled with brackets or lines. Convolution operations are shown as flat rectangles, feature maps are shown as prisms. The number below each filter represents the dilation rate (1 means no dilation).</p>\",\n              \"polygon\": [\n                [\n                  50.0537109375,\n                  352.24700927734375\n                ],\n                [\n                  545.1107788085938,\n                  352.24700927734375\n                ],\n                [\n                  545.1107788085938,\n                  416.49609375\n                ],\n                [\n                  50.0537109375,\n                  416.49609375\n                ]\n              ],\n              \"bbox\": [\n                50.0537109375,\n                352.24700927734375,\n                545.1107788085938,\n                416.49609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/1/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">our paper follow this method of producing a density map via regression. This is particularly advantageous because a sufficiently accurate regressor can also locate the objects in the image via this method. However, the Lempitsky paper ignores the issue of perspective scaling and other scaling issues. The work of <a href=\\\"#page-8-7\\\">[27]</a> introduces CNNs (convolutional neural networks) for the purposes of crowd counting, but performs regression on similarly scaled image patches.</p>\",\n          \"polygon\": [\n            [\n              49.38134765625,\n              438.1144714355469\n            ],\n            [\n              286.875,\n              438.1144714355469\n            ],\n            [\n              286.875,\n              531.7640075683594\n            ],\n            [\n              49.38134765625,\n              531.7640075683594\n            ]\n          ],\n          \"bbox\": [\n            49.38134765625,\n            438.1144714355469,\n            286.875,\n            531.7640075683594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/1/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">These issues are addressed by the work of <a href=\\\"#page-8-4\\\">[18]</a>. Rubio et al. show that a fully convolutional neural network can be used to produce a supervised regressor that produces density maps as in <a href=\\\"#page-8-3\\\">[15]</a>. They further demonstrate a method dubbed HydraCNN which essentially combines multiple convolutional networks that take in differently scaled image patches in order to incorporate multiscale, global information from the image. The premise of this method is that a single regressor will fail to accurately represent the difference in values of the features of an image caused by perspective shifts (scaling effects) <a href=\\\"#page-8-4\\\">[18]</a>.</p>\",\n          \"polygon\": [\n            [\n              49.306640625,\n              534.4453125\n            ],\n            [\n              286.576171875,\n              534.4453125\n            ],\n            [\n              286.576171875,\n              665.15625\n            ],\n            [\n              49.306640625,\n              665.15625\n            ]\n          ],\n          \"bbox\": [\n            49.306640625,\n            534.4453125,\n            286.576171875,\n            665.15625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/1/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">However, the architectures of both <a href=\\\"#page-8-4\\\">[18]</a> and <a href=\\\"#page-8-7\\\">[27]</a> are not fully convolutional due to requiring multiple image patches and, as discussed in <a href=\\\"#page-8-5\\\">[25]</a>, the experiments of <a href=\\\"#page-8-8\\\">[11,</a> <a href=\\\"#page-8-9\\\">17]</a> and <a href=\\\"#page-8-10\\\">[9,</a> <a href=\\\"#page-8-11\\\">12,</a> <a href=\\\"#page-8-12\\\">16]</a> leave it unclear as to whether rescaling patches</p>\",\n          \"polygon\": [\n            [\n              49.08251953125,\n              667.5794143676758\n            ],\n            [\n              286.3651123046875,\n              667.5794143676758\n            ],\n            [\n              286.3651123046875,\n              713.49609375\n            ],\n            [\n              49.08251953125,\n              713.49609375\n            ]\n          ],\n          \"bbox\": [\n            49.08251953125,\n            667.5794143676758,\n            286.3651123046875,\n            713.49609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/1/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">of the image is truly necessary in order to solve dense prediction problems via convolutional neural networks. Moreover, these approaches seem to saturate in performance at three columns, which means the network is extracting information from fewer scales. The work of <a href=\\\"#page-8-5\\\">[25]</a> proposes the use of dilated convolutions as a simpler alternative that does not require sampling of rescaled image patches to provide global, scale-aware information to the network. A fully convolutional approach to multiscale counting has been proposed by <a href=\\\"#page-9-0\\\">[28]</a>, in which a multicolumn convolutional network gathers features of different scales by using convolutions of increasing kernel sizes from column to column instead of scaling image patches. Further, DeepLab has used dilated convolutions in multiple columns to extract scale information for segmentation <a href=\\\"#page-8-13\\\">[8]</a>. We build on these approaches with our aggregator module as described in Section <a href=\\\"#page-2-0\\\">3.1,</a> which should allow for extracting information from more scales.</p>\",\n          \"polygon\": [\n            [\n              308.390625,\n              438.11541748046875\n            ],\n            [\n              545.1151733398438,\n              438.11541748046875\n            ],\n            [\n              545.1151733398438,\n              651.3159484863281\n            ],\n            [\n              308.390625,\n              651.3159484863281\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            438.11541748046875,\n            545.1151733398438,\n            651.3159484863281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/1/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It should be noted that other methods of counting exist, including training a network to recognize deep object features via only providing the counts of the objects of interest in an image <a href=\\\"#page-8-14\\\">[21]</a> and using CNNs (convolutional neural networks) along with boosting in order to improve the results</p>\",\n          \"polygon\": [\n            [\n              307.79296875,\n              655.1015625\n            ],\n            [\n              545.1151733398438,\n              655.1015625\n            ],\n            [\n              545.1151733398438,\n              713.4069519042969\n            ],\n            [\n              307.79296875,\n              713.4069519042969\n            ]\n          ],\n          \"bbox\": [\n            307.79296875,\n            655.1015625,\n            545.1151733398438,\n            713.4069519042969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/2/Page/438\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/2/PictureGroup/435'></content-ref><content-ref src='/page/2/Text/2'></content-ref><content-ref src='/page/2/Text/3'></content-ref><content-ref src='/page/2/SectionHeader/4'></content-ref><content-ref src='/page/2/SectionHeader/5'></content-ref><content-ref src='/page/2/Text/6'></content-ref><content-ref src='/page/2/Text/7'></content-ref><content-ref src='/page/2/TextInlineMath/8'></content-ref><content-ref src='/page/2/Text/10'></content-ref><content-ref src='/page/2/Equation/11'></content-ref><content-ref src='/page/2/Text/12'></content-ref><content-ref src='/page/2/Equation/13'></content-ref><content-ref src='/page/2/Text/14'></content-ref><content-ref src='/page/2/Text/15'></content-ref><content-ref src='/page/2/Text/16'></content-ref><content-ref src='/page/2/Text/17'></content-ref><content-ref src='/page/2/Footnote/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/2/PictureGroup/435\",\n          \"block_type\": \"PictureGroup\",\n          \"html\": \"<content-ref src='/page/2/Picture/0'></content-ref><content-ref src='/page/2/Caption/1'></content-ref>\",\n          \"polygon\": [\n            [\n              48.708984375,\n              70.91455078125\n            ],\n            [\n              286.3586730957031,\n              70.91455078125\n            ],\n            [\n              286.3586730957031,\n              216.38336181640625\n            ],\n            [\n              48.708984375,\n              216.38336181640625\n            ]\n          ],\n          \"bbox\": [\n            48.708984375,\n            70.91455078125,\n            286.3586730957031,\n            216.38336181640625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/2/Picture/0\",\n              \"block_type\": \"Picture\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  48.708984375,\n                  70.91455078125\n                ],\n                [\n                  285.6796875,\n                  70.91455078125\n                ],\n                [\n                  285.6796875,\n                  153.333984375\n                ],\n                [\n                  48.708984375,\n                  153.333984375\n                ]\n              ],\n              \"bbox\": [\n                48.708984375,\n                70.91455078125,\n                285.6796875,\n                153.333984375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/12\"\n              },\n              \"images\": {\n                \"/page/2/Picture/0\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/2/Caption/1\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p>Figure 2. UCF sample results. Left: input counting image. Middle: Ground truth density map. Right: AMDCN prediction of density map on test image. The network never saw these images during training. All density maps are one channel only (i.e. grayscale), but are colored here for clarity.</p>\",\n              \"polygon\": [\n                [\n                  49.60546875,\n                  163.388671875\n                ],\n                [\n                  286.3586730957031,\n                  163.388671875\n                ],\n                [\n                  286.3586730957031,\n                  216.38336181640625\n                ],\n                [\n                  49.60546875,\n                  216.38336181640625\n                ]\n              ],\n              \"bbox\": [\n                49.60546875,\n                163.388671875,\n                286.3586730957031,\n                216.38336181640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/2/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-2-2\\\"></span>of regression for production of density maps <a href=\\\"#page-8-15\\\">[24]</a>. In the same spirit, <a href=\\\"#page-8-16\\\">[4]</a> combines deep and shallow convolutions within the same network, providing accurate counting of dense objects (e.g. the UCF50 crowd dataset).</p>\",\n          \"polygon\": [\n            [\n              49.82958984375,\n              239.4554443359375\n            ],\n            [\n              286.3650817871094,\n              239.4554443359375\n            ],\n            [\n              286.3650817871094,\n              285.2840881347656\n            ],\n            [\n              49.82958984375,\n              285.2840881347656\n            ]\n          ],\n          \"bbox\": [\n            49.82958984375,\n            239.4554443359375,\n            286.3650817871094,\n            285.2840881347656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this paper, however, we aim to apply the dilated convolution method of <a href=\\\"#page-8-5\\\">[25]</a>, which has shown to be able to incorporate multiscale perspective information without using multiple inputs or a complicated network architecture, as well as the multicolumn approach of <a href=\\\"#page-8-13\\\">[8,</a> <a href=\\\"#page-9-0\\\">28]</a> to aggregate multiscale information for the counting problem.</p>\",\n          \"polygon\": [\n            [\n              49.82958984375,\n              287.75848388671875\n            ],\n            [\n              286.576171875,\n              287.75848388671875\n            ],\n            [\n              286.576171875,\n              357.4970397949219\n            ],\n            [\n              49.82958984375,\n              357.4970397949219\n            ]\n          ],\n          \"bbox\": [\n            49.82958984375,\n            287.75848388671875,\n            286.576171875,\n            357.4970397949219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>3. Method</h1>\",\n          \"polygon\": [\n            [\n              49.418701171875,\n              371.27313232421875\n            ],\n            [\n              101.91387939453125,\n              371.27313232421875\n            ],\n            [\n              101.91387939453125,\n              383.22833251953125\n            ],\n            [\n              49.418701171875,\n              383.22833251953125\n            ]\n          ],\n          \"bbox\": [\n            49.418701171875,\n            371.27313232421875,\n            101.91387939453125,\n            383.22833251953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-2-0\\\"></span>3.1. Dilated Convolutions for Multicolumn Networks</h2>\",\n          \"polygon\": [\n            [\n              49.53076171875,\n              391.4488220214844\n            ],\n            [\n              287.173828125,\n              391.4488220214844\n            ],\n            [\n              287.173828125,\n              414.3627014160156\n            ],\n            [\n              49.53076171875,\n              414.3627014160156\n            ]\n          ],\n          \"bbox\": [\n            49.53076171875,\n            391.4488220214844,\n            287.173828125,\n            414.3627014160156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We propose the use of dilated convolutions as an attractive alternative to the architecture of the HydraCNN <a href=\\\"#page-8-4\\\">[18]</a>, which seems to saturate in performance at 3 or more columns. We refer to our proposed network as the aggregated multicolumn dilated convolution network<a href=\\\"#page-2-1\\\">1</a> , henceforth shortened as the AMDCN. The architecture of the AMDCN is inspired by the multicolumn counting network of <a href=\\\"#page-9-0\\\">[28]</a>. Extracting features from multiple scales is a good idea when attempting to perform perspective-free counting and increasing the convolution kernel size across columns is an efficient method of doing so. However, the number of parameters increases exponentially as larger kernels are used in these columns to extract features at larger scales. Therefore, we propose using dilated convolutions rather than larger kernels.</p>\",\n          \"polygon\": [\n            [\n              49.306640625,\n              422.6754150390625\n            ],\n            [\n              287.173828125,\n              422.6754150390625\n            ],\n            [\n              287.173828125,\n              600.0099334716797\n            ],\n            [\n              49.306640625,\n              600.0099334716797\n            ]\n          ],\n          \"bbox\": [\n            49.306640625,\n            422.6754150390625,\n            287.173828125,\n            600.0099334716797\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Dilated convolutions, as discussed in <a href=\\\"#page-8-5\\\">[25]</a>, allow for the exponential increase of the receptive field with a linear increase in the number of parameters with respect to each hidden layer.</p>\",\n          \"polygon\": [\n            [\n              49.23193359375,\n              602.4853363037109\n            ],\n            [\n              286.875,\n              602.4853363037109\n            ],\n            [\n              286.875,\n              648.3139343261719\n            ],\n            [\n              49.23193359375,\n              648.3139343261719\n            ]\n          ],\n          \"bbox\": [\n            49.23193359375,\n            602.4853363037109,\n            286.875,\n            648.3139343261719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/TextInlineMath/8\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\" class=\\\"has-continuation\\\">In a traditional 2D convolution, we define a real valued function F : Z 2 → R, an input Ωr = [−r, r] 2 ∈ Z 2 , and a filter function k : Ωr → R. In this case, a convolution</p>\",\n          \"polygon\": [\n            [\n              49.38134765625,\n              650.788330078125\n            ],\n            [\n              286.365478515625,\n              650.788330078125\n            ],\n            [\n              286.365478515625,\n              685.65234375\n            ],\n            [\n              49.38134765625,\n              685.65234375\n            ]\n          ],\n          \"bbox\": [\n            49.38134765625,\n            650.788330078125,\n            286.365478515625,\n            685.65234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">operation as defined in <a href=\\\"#page-8-5\\\">[25]</a> is given by</p>\",\n          \"polygon\": [\n            [\n              308.86199951171875,\n              74.40740966796875\n            ],\n            [\n              464.2486267089844,\n              74.40740966796875\n            ],\n            [\n              464.2486267089844,\n              84.3699951171875\n            ],\n            [\n              308.86199951171875,\n              84.3699951171875\n            ]\n          ],\n          \"bbox\": [\n            308.86199951171875,\n            74.40740966796875,\n            464.2486267089844,\n            84.3699951171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Equation/11\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">(F*k)(\\\\mathbf{p}) = \\\\sum_{\\\\mathbf{s}+\\\\mathbf{t}=\\\\mathbf{p}} F(\\\\mathbf{s})k(\\\\mathbf{t}). \\\\quad (1)</math></p>\",\n          \"polygon\": [\n            [\n              364.8009948730469,\n              94.8427734375\n            ],\n            [\n              545.66015625,\n              94.8427734375\n            ],\n            [\n              545.66015625,\n              120.3662109375\n            ],\n            [\n              364.8009948730469,\n              120.3662109375\n            ]\n          ],\n          \"bbox\": [\n            364.8009948730469,\n            94.8427734375,\n            545.66015625,\n            120.3662109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A dilated convolution is essentially a generalization of the traditional 2D convolution that allows the operation to skip some inputs. This enables an increase in the size of the filter (i.e. the size of the receptive field) without losing resolution. Formally, we define from <a href=\\\"#page-8-5\\\">[25]</a> the dilated convolution as</p>\",\n          \"polygon\": [\n            [\n              308.8620300292969,\n              131.5810546875\n            ],\n            [\n              545.66015625,\n              131.5810546875\n            ],\n            [\n              545.66015625,\n              201.72210693359375\n            ],\n            [\n              308.8620300292969,\n              201.72210693359375\n            ]\n          ],\n          \"bbox\": [\n            308.8620300292969,\n            131.5810546875,\n            545.66015625,\n            201.72210693359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Equation/13\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">(F*_{l}k)(\\\\mathbf{p})=\\\\sum_{\\\\mathbf{s}+l\\\\mathbf{t}=\\\\mathbf{p}}F(\\\\mathbf{s})k(\\\\mathbf{t})\\\\tag{2}</math></p>\",\n          \"polygon\": [\n            [\n              363.375,\n              211.341796875\n            ],\n            [\n              545.1124267578125,\n              211.341796875\n            ],\n            [\n              545.1124267578125,\n              236.865234375\n            ],\n            [\n              363.375,\n              236.865234375\n            ]\n          ],\n          \"bbox\": [\n            363.375,\n            211.341796875,\n            545.1124267578125,\n            236.865234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">where l is the index of the current layer of the convolution.</p>\",\n          \"polygon\": [\n            [\n              308.390625,\n              247.52099609375\n            ],\n            [\n              543.1434936523438,\n              247.52099609375\n            ],\n            [\n              543.1434936523438,\n              257.714111328125\n            ],\n            [\n              308.390625,\n              257.714111328125\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            247.52099609375,\n            543.1434936523438,\n            257.714111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Using dilations to construct the aggregator in combination with the multicolumn idea will allow for the construction of a network with more than just 3 or 4 columns as in <a href=\\\"#page-9-0\\\">[28]</a> and <a href=\\\"#page-8-13\\\">[8]</a>, because the aggregator should prevent the saturation of performance with increasing numbers of columns. Therefore the network will be able to extract useful features from more scales. We take advantage of dilations within the columns as well to provide large receptive fields with fewer parameters.</p>\",\n          \"polygon\": [\n            [\n              308.390625,\n              260.17254638671875\n            ],\n            [\n              545.1151733398438,\n              260.17254638671875\n            ],\n            [\n              545.1151733398438,\n              365.7760925292969\n            ],\n            [\n              308.390625,\n              365.7760925292969\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            260.17254638671875,\n            545.1151733398438,\n            365.7760925292969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Looking at more scales should allow for more accurate regression of the density map. However, because not all scales will be relevant, we extend the network beyond a simple 1 × 1 convolution after the merged columns. Instead, we construct a second part of the network, the aggregator, which sets our method apart from <a href=\\\"#page-9-0\\\">[28]</a>, <a href=\\\"#page-8-13\\\">[8]</a>, and other multicolumn networks. This aggregator is another series of dilated convolutions that should appropriately consolidate the multiscale information collected by the columns. This is a capability of dilated convolutions observed by <a href=\\\"#page-8-5\\\">[25]</a>. While papers such as <a href=\\\"#page-9-0\\\">[28]</a> and <a href=\\\"#page-8-13\\\">[8]</a> have shown that multiple columns and dilated columns are useful in extracting multiscale information, we argue in this paper that the simple aggregator module built using dilated convolutions is able to effectively make use multiscale information from multiple columns. We show compelling evidence for these claims in Section <a href=\\\"#page-5-0\\\">4.5.</a></p>\",\n          \"polygon\": [\n            [\n              308.091796875,\n              368.2344665527344\n            ],\n            [\n              545.115234375,\n              368.2344665527344\n            ],\n            [\n              545.115234375,\n              569.4799194335938\n            ],\n            [\n              308.091796875,\n              569.4799194335938\n            ]\n          ],\n          \"bbox\": [\n            308.091796875,\n            368.2344665527344,\n            545.115234375,\n            569.4799194335938\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The network as shown in Figure <a href=\\\"#page-1-0\\\">1</a> contains 5 columns. Note that dilations allow us to use more columns for counting than <a href=\\\"#page-9-0\\\">[28]</a> or <a href=\\\"#page-8-13\\\">[8]</a>. Each column looks at a larger scale than the previous (the exact dilations can also be seen in Figure <a href=\\\"#page-1-0\\\">1)</a>. There are 32 feature maps for each convolution, and all inputs are zero padded prior to each convolution in order to maintain the same data shape from input to output. That is, an image input to this network will result in a density map of the same dimensions. All activations in the specified network are ReLUs. Our input pixel values are floating point 32 bit values from 0 to 1. We center our inputs at 0 by subtracting the per channel mean from each channel. When</p>\",\n          \"polygon\": [\n            [\n              308.689453125,\n              571.9373168945312\n            ],\n            [\n              545.115234375,\n              571.9373168945312\n            ],\n            [\n              545.115234375,\n              713.4069290161133\n            ],\n            [\n              308.689453125,\n              713.4069290161133\n            ]\n          ],\n          \"bbox\": [\n            308.689453125,\n            571.9373168945312,\n            545.115234375,\n            713.4069290161133\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Footnote/9\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-2-1\\\"></span><sup>1</sup> Implementation available on <a href=\\\"https://github.com/diptodip/counting\\\">https://github.com/</a> <a href=\\\"https://github.com/diptodip/counting\\\">diptodip/counting</a>.</p>\",\n          \"polygon\": [\n            [\n              49.68017578125,\n              694.1896514892578\n            ],\n            [\n              286.3621520996094,\n              694.1896514892578\n            ],\n            [\n              286.3621520996094,\n              712.9256591796875\n            ],\n            [\n              49.68017578125,\n              712.9256591796875\n            ]\n          ],\n          \"bbox\": [\n            49.68017578125,\n            694.1896514892578,\n            286.3621520996094,\n            712.9256591796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/2/SectionHeader/4\",\n        \"2\": \"/page/2/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/3/Page/454\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/3/Text/0'></content-ref><content-ref src='/page/3/Equation/1'></content-ref><content-ref src='/page/3/TextInlineMath/2'></content-ref><content-ref src='/page/3/SectionHeader/3'></content-ref><content-ref src='/page/3/Text/4'></content-ref><content-ref src='/page/3/Text/5'></content-ref><content-ref src='/page/3/Text/6'></content-ref><content-ref src='/page/3/Text/7'></content-ref><content-ref src='/page/3/SectionHeader/8'></content-ref><content-ref src='/page/3/Text/9'></content-ref><content-ref src='/page/3/Text/10'></content-ref><content-ref src='/page/3/SectionHeader/11'></content-ref><content-ref src='/page/3/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/3/Text/0\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">training, we use a scaled mean absolute error for our loss function:</p>\",\n          \"polygon\": [\n            [\n              49.53076171875,\n              73.91162109375\n            ],\n            [\n              286.576171875,\n              73.91162109375\n            ],\n            [\n              286.576171875,\n              96.32501220703125\n            ],\n            [\n              49.53076171875,\n              96.32501220703125\n            ]\n          ],\n          \"bbox\": [\n            49.53076171875,\n            73.91162109375,\n            286.576171875,\n            96.32501220703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Equation/1\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">L = \\\\frac{1}{n} \\\\sum_{i=1}^{n} |\\\\hat{y}_i - \\\\gamma y_i| \\\\qquad (3)</math></p>\",\n          \"polygon\": [\n            [\n              125.28369140625,\n              95.82470703125\n            ],\n            [\n              288.0703125,\n              95.82470703125\n            ],\n            [\n              288.0703125,\n              127.037109375\n            ],\n            [\n              125.28369140625,\n              127.037109375\n            ]\n          ],\n          \"bbox\": [\n            125.28369140625,\n            95.82470703125,\n            288.0703125,\n            127.037109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/TextInlineMath/2\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">where γ is the scale factor, <math display=\\\"inline\\\">\\\\hat{y}_i </math>is the prediction, <math display=\\\"inline\\\">y_i </math>is the true value, and <math display=\\\"inline\\\">n</math> is the number of pixels. We use a scaled mean absolute error because the target values are so small that it is numerically unstable to regress to these values. At testing time, when retrieving the output density map from the network, we scale the pixel values by <math display=\\\"inline\\\">γ^{-1} </math>to obtain the correct value. This approach is more numerically stable and avoids having the network learn to output only zeros by weighting the nonzero values highly. For all our datasets, we set <math display=\\\"inline\\\">γ = 255. </math></p>\",\n          \"polygon\": [\n            [\n              49.38134765625,\n              134.8328857421875\n            ],\n            [\n              286.576171875,\n              134.8328857421875\n            ],\n            [\n              286.576171875,\n              253.107421875\n            ],\n            [\n              49.38134765625,\n              253.107421875\n            ]\n          ],\n          \"bbox\": [\n            49.38134765625,\n            134.8328857421875,\n            286.576171875,\n            253.107421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/2/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2>3.2. Experiments</h2>\",\n          \"polygon\": [\n            [\n              49.119873046875,\n              263.97784423828125\n            ],\n            [\n              128.95028686523438,\n              263.97784423828125\n            ],\n            [\n              128.95028686523438,\n              274.936767578125\n            ],\n            [\n              49.119873046875,\n              274.936767578125\n            ]\n          ],\n          \"bbox\": [\n            49.119873046875,\n            263.97784423828125,\n            128.95028686523438,\n            274.936767578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We evaluated the performance of dilated convolutions against various counting methods on a variety of common counting datasets: UCF50 crowd data, TRANCOS traffic data <a href=\\\"#page-8-4\\\">[18]</a>, UCSD crowd data <a href=\\\"#page-8-17\\\">[5]</a>, and WorldExpo crowd data <a href=\\\"#page-8-7\\\">[27]</a>. For each of these data sets, we used labels given by the corresponding density map for each image. An example of this is shown in Figure <a href=\\\"#page-2-2\\\">2.</a> We have performed experiments on the four different splits of the UCSD data as used in <a href=\\\"#page-8-4\\\">[18]</a> and the split of the UCSD data as used in <a href=\\\"#page-9-0\\\">[28]</a> (which we call the original split). We also evaluated the performance of our network on the TRANCOS traffic dataset <a href=\\\"#page-8-1\\\">[14]</a>. We have also experimented with higher density datasets for crowd counting, namely WorldExpo and UCF.</p>\",\n          \"polygon\": [\n            [\n              49.306640625,\n              283.5155029296875\n            ],\n            [\n              287.771484375,\n              283.5155029296875\n            ],\n            [\n              287.771484375,\n              448.89495849609375\n            ],\n            [\n              49.306640625,\n              448.89495849609375\n            ]\n          ],\n          \"bbox\": [\n            49.306640625,\n            283.5155029296875,\n            287.771484375,\n            448.89495849609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We have observed that multicolumn dilations produce density maps (and therefore counts) that often have lower loss than those of HydraCNN <a href=\\\"#page-8-4\\\">[18]</a> and <a href=\\\"#page-9-0\\\">[28]</a>. We measure density map regression loss via a scaled mean absolute error loss during training. We compare accuracy of the counts via mean absolute error for the crowd datasets and the GAME metric in the TRANCOS dataset as explained in Section <a href=\\\"#page-3-0\\\">3.2.2.</a> Beyond the comparison to HydraCNN, we will also compare to other recent convolutional counting methods, especially those of <a href=\\\"#page-8-14\\\">[21]</a>, <a href=\\\"#page-8-15\\\">[24]</a>, and <a href=\\\"#page-8-16\\\">[4]</a> where possible.</p>\",\n          \"polygon\": [\n            [\n              49.53076171875,\n              451.6363525390625\n            ],\n            [\n              287.173828125,\n              451.6363525390625\n            ],\n            [\n              287.173828125,\n              569.25\n            ],\n            [\n              49.53076171875,\n              569.25\n            ]\n          ],\n          \"bbox\": [\n            49.53076171875,\n            451.6363525390625,\n            287.173828125,\n            569.25\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For all datasets, we generally use patched input images and ground truth density maps produced by summing a Gaussian of a fixed size (σ) for each object for training. This size varies from dataset to dataset, but remains constant within a dataset with the exception of cases in which a perspective map is used. This is explained per dataset. All experiments were performed using Keras with the Adam optimizer <a href=\\\"#page-8-18\\\">[10]</a>. The learning rates used are detailed per dataset. For testing, we also use patches that can either be directly pieced together or overlapped and averaged except in the case of UCF, for which we run our network on the full image.</p>\",\n          \"polygon\": [\n            [\n              49.60546875,\n              571.9372863769531\n            ],\n            [\n              286.875,\n              571.9372863769531\n            ],\n            [\n              286.875,\n              713.49609375\n            ],\n            [\n              49.60546875,\n              713.49609375\n            ]\n          ],\n          \"bbox\": [\n            49.60546875,\n            571.9372863769531,\n            286.875,\n            713.49609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Furthermore, we performed a set of experiments in which we varied the number of columns from 1 to 5 (simply by including or not including the columns as specified in Figure <a href=\\\"#page-1-0\\\">1,</a> starting with the smallest filter column and adding larger filter columns one by one). Essentially, the network is allowed to extract information at larger and larger scales in addition to the smaller scales as we include each column. We then performed the same set of experiments, varying the number of columns, but with the aggregator module removed. We perform these experiments on the original split of UCSD as specified in Section <a href=\\\"#page-4-0\\\">3.2.3</a> and <a href=\\\"#page-8-17\\\">[5]</a>, the TRAN-COS dataset, and the WorldExpo dataset because these are relatively large and well defined datasets. We limit the number of epochs to 10 for all of these sets of experiments in order to control for the effect of learning time, and also compare all results using MAE for consistency. These experiments are key to determining the efficacy of the aggregator in effectively combining multiscale information and in providing evidence to support the use of multiple columns to extract multiscale information from images. We report the results of these ablation studies in Section <a href=\\\"#page-5-0\\\">4.5.</a></p>\",\n          \"polygon\": [\n            [\n              308.8619689941406,\n              74.056640625\n            ],\n            [\n              545.66015625,\n              74.056640625\n            ],\n            [\n              545.66015625,\n              323.4729919433594\n            ],\n            [\n              308.8619689941406,\n              323.4729919433594\n            ]\n          ],\n          \"bbox\": [\n            308.8619689941406,\n            74.056640625,\n            545.66015625,\n            323.4729919433594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4>3.2.1 UCF50 Crowd Counting</h4>\",\n          \"polygon\": [\n            [\n              307.79296875,\n              339.92578125\n            ],\n            [\n              443.4609375,\n              339.92578125\n            ],\n            [\n              443.4609375,\n              350.13201904296875\n            ],\n            [\n              307.79296875,\n              350.13201904296875\n            ]\n          ],\n          \"bbox\": [\n            307.79296875,\n            339.92578125,\n            443.4609375,\n            350.13201904296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/3/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">UCF is a particularly challenging crowd counting dataset. There are only 50 images in the whole dataset and they are all of varying sizes and from different scenes. The number of people also varies between images from less than 100 to the thousands. The average image has on the order of 1000 people. The difficulty is due to the combination of the very low number of images in the dataset and the fact that the images are all of varying scenes, making high quality generalization crucial. Furthermore, perspective effects are particularly noticeable for many images in this dataset. Despite this, there is no perspective information available for this dataset.</p>\",\n          \"polygon\": [\n            [\n              308.390625,\n              359.0173645019531\n            ],\n            [\n              545.66015625,\n              359.0173645019531\n            ],\n            [\n              545.66015625,\n              500.4868469238281\n            ],\n            [\n              308.390625,\n              500.4868469238281\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            359.0173645019531,\n            545.66015625,\n            500.4868469238281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/3/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We take 1600 random patches of size 150 × 150 for the training. For testing, we do not densely scan the image as in <a href=\\\"#page-8-4\\\">[18]</a> but instead test on the whole image. In order to standardize the image sizes, we pad each image out with zeros until all images are 1024 × 1024. We then suppress output in the regions where we added padding when testing. This provides a cleaner resulting density map for these large crowds. The ground truth density maps are produced by annotating each object with a Gaussian of σ = 15.</p>\",\n          \"polygon\": [\n            [\n              308.390625,\n              502.16058349609375\n            ],\n            [\n              545.66015625,\n              502.16058349609375\n            ],\n            [\n              545.66015625,\n              608.1248321533203\n            ],\n            [\n              308.390625,\n              608.1248321533203\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            502.16058349609375,\n            545.66015625,\n            608.1248321533203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/3/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-3-0\\\"></span>3.2.2 TRANCOS Traffic Counting</h4>\",\n          \"polygon\": [\n            [\n              308.390625,\n              624.55078125\n            ],\n            [\n              461.390625,\n              624.55078125\n            ],\n            [\n              461.390625,\n              634.7828826904297\n            ],\n            [\n              308.390625,\n              634.7828826904297\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            624.55078125,\n            461.390625,\n            634.7828826904297\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/3/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">TRANCOS is a traffic counting dataset that comes with its own metric <a href=\\\"#page-8-1\\\">[14]</a>. This metric is known as GAME, which stands for Grid Average Mean absolute Error. GAME splits a given density map into 4 L grids, or subarrays, and obtains a mean absolute error within each grid separately. The value of L is a parameter chosen by the user. These</p>\",\n          \"polygon\": [\n            [\n              307.79296875,\n              643.6692352294922\n            ],\n            [\n              546.85546875,\n              643.6692352294922\n            ],\n            [\n              546.85546875,\n              713.49609375\n            ],\n            [\n              307.79296875,\n              713.49609375\n            ]\n          ],\n          \"bbox\": [\n            307.79296875,\n            643.6692352294922,\n            546.85546875,\n            713.49609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/3/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/2/SectionHeader/4\",\n        \"2\": \"/page/3/SectionHeader/3\",\n        \"4\": \"/page/3/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/4/Page/639\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/4/Text/0'></content-ref><content-ref src='/page/4/Equation/1'></content-ref><content-ref src='/page/4/TextInlineMath/2'></content-ref><content-ref src='/page/4/TextInlineMath/3'></content-ref><content-ref src='/page/4/SectionHeader/4'></content-ref><content-ref src='/page/4/Text/5'></content-ref><content-ref src='/page/4/TextInlineMath/6'></content-ref><content-ref src='/page/4/Text/7'></content-ref><content-ref src='/page/4/Text/8'></content-ref><content-ref src='/page/4/TextInlineMath/9'></content-ref><content-ref src='/page/4/SectionHeader/10'></content-ref><content-ref src='/page/4/Text/11'></content-ref><content-ref src='/page/4/TextInlineMath/12'></content-ref><content-ref src='/page/4/Text/13'></content-ref><content-ref src='/page/4/Equation/14'></content-ref><content-ref src='/page/4/TextInlineMath/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/4/Text/0\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">individual errors are summed to obtain the final error for a particular image. The intuition behind this metric is that it is desirable to penalize a density map whose overall count might match the ground truth, but whose shape does not match the ground truth <a href=\\\"#page-8-1\\\">[14]</a>. More formally, we define</p>\",\n          \"polygon\": [\n            [\n              49.60546875,\n              74.1533203125\n            ],\n            [\n              287.173828125,\n              74.1533203125\n            ],\n            [\n              287.173828125,\n              132.1900634765625\n            ],\n            [\n              49.60546875,\n              132.1900634765625\n            ]\n          ],\n          \"bbox\": [\n            49.60546875,\n            74.1533203125,\n            287.173828125,\n            132.1900634765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/3/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Equation/1\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">GAME(L) = \\\\frac{1}{N} \\\\cdot \\\\sum_{n=1}^{N} \\\\left( \\\\sum_{l=1}^{4^L} |e_n^l - t_n^l| \\\\right) \\\\tag{4}</math></p>\",\n          \"polygon\": [\n            [\n              84.49365234375,\n              138.572265625\n            ],\n            [\n              286.3623962402344,\n              138.572265625\n            ],\n            [\n              286.3623962402344,\n              176.150390625\n            ],\n            [\n              84.49365234375,\n              176.150390625\n            ]\n          ],\n          \"bbox\": [\n            84.49365234375,\n            138.572265625,\n            286.3623962402344,\n            176.150390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/3/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/TextInlineMath/2\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">where N refers to the number of images, L is the level parameter for GAME, e l n is the predicted or estimated count in region l of image n and t l n is the ground truth count in region l of image n <a href=\\\"#page-8-1\\\">[14]</a>.</p>\",\n          \"polygon\": [\n            [\n              49.23193359375,\n              180.53985595703125\n            ],\n            [\n              287.173828125,\n              180.53985595703125\n            ],\n            [\n              287.173828125,\n              226.59893798828125\n            ],\n            [\n              49.23193359375,\n              226.59893798828125\n            ]\n          ],\n          \"bbox\": [\n            49.23193359375,\n            180.53985595703125,\n            287.173828125,\n            226.59893798828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/3/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/TextInlineMath/3\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">For training this dataset, we take 1600 randomly sampled patches of size 80 × 80. For testing this dataset, we take 80 × 80 non-overlapping patches which we can stitch back together into the full-sized 640 × 480 images. We trained the AMDCN network with density maps produced with a Gaussian of σ = 15 as specified in [18].</p>\",\n          \"polygon\": [\n            [\n              49.306640625,\n              228.59136962890625\n            ],\n            [\n              286.576171875,\n              228.59136962890625\n            ],\n            [\n              286.576171875,\n              298.353515625\n            ],\n            [\n              49.306640625,\n              298.353515625\n            ]\n          ],\n          \"bbox\": [\n            49.306640625,\n            228.59136962890625,\n            286.576171875,\n            298.353515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/3/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-4-0\\\"></span>3.2.3 UCSD Crowd Counting</h4>\",\n          \"polygon\": [\n            [\n              49.306640625,\n              314.06341552734375\n            ],\n            [\n              182.4345703125,\n              314.06341552734375\n            ],\n            [\n              182.4345703125,\n              324.0260009765625\n            ],\n            [\n              49.306640625,\n              324.0260009765625\n            ]\n          ],\n          \"bbox\": [\n            49.306640625,\n            314.06341552734375,\n            182.4345703125,\n            324.0260009765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The UCSD crowd counting dataset consists of frames of video of a sidewalk. There are relatively few people in view at any given time (approximately 25 on average). Furthermore, because the dataset comes from a video, there are many nearly identical images in the dataset. For this dataset, there have been two different ways to split the data into train and test sets. Therefore, we report results using both methods of splitting the data. The first method consists of four different splits: maximal, downscale, upscale, and minimal. Minimal is particularly challenging as the train set contains only 10 images. Moreover, upscale appears to be the easiest for the majority of methods <a href=\\\"#page-8-4\\\">[18]</a>. The second method of splitting this data is much more succinct, leaving 1200 images in the testing set and 800 images in the training set <a href=\\\"#page-9-0\\\">[28]</a>. This split comes from the original paper, so we call it the original split <a href=\\\"#page-8-17\\\">[5]</a>.</p>\",\n          \"polygon\": [\n            [\n              49.38134765625,\n              332.8343505859375\n            ],\n            [\n              287.173828125,\n              332.8343505859375\n            ],\n            [\n              287.173828125,\n              522.45703125\n            ],\n            [\n              49.38134765625,\n              522.45703125\n            ]\n          ],\n          \"bbox\": [\n            49.38134765625,\n            332.8343505859375,\n            287.173828125,\n            522.45703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/TextInlineMath/6\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">For this dataset, each object is annotated with a 2D Gaussian of covariance Σ = 8 \\n· 12x2. The ground truth map is produced by summing these. When we make use of the perspective maps provided, we divide Σ by the perspective map value at that pixel x, represented by M(x). The provided perspective map for UCSD contains both a horizontal and vertical direction so we take the square root of the provided combined value. For training, we take 1600 random 79 × 119 pixel patches and for testing, we split each test image up into quadrants (which have dimension 79 × 119). There are two different ways to split the dataset into training and testing sets. We have experimented on the split that gave [18] the best results as well as the split used in [28].</p>\",\n          \"polygon\": [\n            [\n              49.53076171875,\n              524.1171569824219\n            ],\n            [\n              286.3650817871094,\n              524.1171569824219\n            ],\n            [\n              286.3650817871094,\n              677.91796875\n            ],\n            [\n              49.53076171875,\n              677.91796875\n            ]\n          ],\n          \"bbox\": [\n            49.53076171875,\n            524.1171569824219,\n            286.3650817871094,\n            677.91796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">First, we split the dataset into four separate groups of training and testing sets as used in <a href=\\\"#page-8-4\\\">[18]</a> and originally defined by <a href=\\\"#page-8-0\\\">[20]</a>. These groups are \\\"upscale,\\\" \\\"maximal,\\\"</p>\",\n          \"polygon\": [\n            [\n              49.68017578125,\n              679.078125\n            ],\n            [\n              286.875,\n              679.078125\n            ],\n            [\n              286.875,\n              713.4067840576172\n            ],\n            [\n              49.68017578125,\n              713.4067840576172\n            ]\n          ],\n          \"bbox\": [\n            49.68017578125,\n            679.078125,\n            286.875,\n            713.4067840576172\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">\\\"minimal,\\\" and \\\"downscale.\\\" We see in Table <a href=\\\"#page-6-0\\\">3</a> that the \\\"upscale\\\" split and \\\"downscale\\\" split give us state of the art results on counting for this dataset. For this experiment, we sampled 1600 random patches of size 119 × 79 pixels (width and height respectively) for the training set and split the test set images into 119 × 79 quadrants that could be reconstructed by piecing them together without overlap. We also added left-right flips of each image to our training data.</p>\",\n          \"polygon\": [\n            [\n              307.79296875,\n              74.1533203125\n            ],\n            [\n              545.1151123046875,\n              74.1533203125\n            ],\n            [\n              545.1151123046875,\n              168.0557861328125\n            ],\n            [\n              307.79296875,\n              168.0557861328125\n            ]\n          ],\n          \"bbox\": [\n            307.79296875,\n            74.1533203125,\n            545.1151123046875,\n            168.0557861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/TextInlineMath/9\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">We then evaluate the original split. For this experiment, we similarly sampled 1600 random patches of size 119 × 79 pixels (width and height respectively) for the training set and split the test set images into 119 × 79 quadrants that could be reconstructed by piecing them together without overlap.</p>\",\n          \"polygon\": [\n            [\n              308.390625,\n              169.6728515625\n            ],\n            [\n              545.1162719726562,\n              169.6728515625\n            ],\n            [\n              545.1162719726562,\n              240.5390625\n            ],\n            [\n              308.390625,\n              240.5390625\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            169.6728515625,\n            545.1162719726562,\n            240.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4>3.2.4 WorldExpo '10 Crowd Counting</h4>\",\n          \"polygon\": [\n            [\n              308.86199951171875,\n              259.17828369140625\n            ],\n            [\n              477.4889221191406,\n              259.17828369140625\n            ],\n            [\n              477.4889221191406,\n              269.140869140625\n            ],\n            [\n              308.86199951171875,\n              269.140869140625\n            ]\n          ],\n          \"bbox\": [\n            308.86199951171875,\n            259.17828369140625,\n            477.4889221191406,\n            269.140869140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The WorldExpo dataset <a href=\\\"#page-8-7\\\">[27]</a> contains a larger number of people (approximately 50 on average, which is double that of UCSD) and contains images from multiple locations. Perspective effects are also much more noticeable in this dataset as compared to UCSD. These qualities of the dataset serve to increase the difficulty of counting. Like UCSD, the WorldExpo dataset was constructed from frames of video recordings of crowds. This means that, unlike UCF, this dataset contains a relatively large number of training and testing images. We experiment on this dataset with and without perspective information.</p>\",\n          \"polygon\": [\n            [\n              308.390625,\n              278.80322265625\n            ],\n            [\n              545.1151123046875,\n              278.80322265625\n            ],\n            [\n              545.1151123046875,\n              408.31671142578125\n            ],\n            [\n              308.390625,\n              408.31671142578125\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            278.80322265625,\n            545.1151123046875,\n            408.31671142578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/TextInlineMath/12\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">Without perspective maps, we generate label density maps for this dataset in the same manner as previously described: a 2D Gaussian with σ = 15. We take 16000 150 × 150 randomly sampled patches for training. For testing, we densely scan the image, producing 150 × 150 patches at a stride of 100.</p>\",\n          \"polygon\": [\n            [\n              308.390625,\n              410.75909423828125\n            ],\n            [\n              545.66015625,\n              410.75909423828125\n            ],\n            [\n              545.66015625,\n              480.4976501464844\n            ],\n            [\n              308.390625,\n              480.4976501464844\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            410.75909423828125,\n            545.66015625,\n            480.4976501464844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When perspective maps are used, however, we follow the procedure as described in <a href=\\\"#page-8-7\\\">[27]</a>, which involves estimating a \\\"crowd density distribution kernel\\\" as the sum of two 2D Gaussians: a symmetric Gaussian for the head and an ellipsoid Gaussian for the body. These are scaled by the perspective map M provided, where M(x) gives the number of pixels that represents a meter at pixel x <a href=\\\"#page-8-7\\\">[27]</a>. Note that the meaning of this perspective map is distinct from the meaning of the perspective map provided for the UCSD dataset. Using this information, the density contribution from a person with head pixel x is given by the following sum of normalized Gaussians:</p>\",\n          \"polygon\": [\n            [\n              308.689453125,\n              482.93902587890625\n            ],\n            [\n              545.1155395507812,\n              482.93902587890625\n            ],\n            [\n              545.1155395507812,\n              624.4086151123047\n            ],\n            [\n              308.689453125,\n              624.4086151123047\n            ]\n          ],\n          \"bbox\": [\n            308.689453125,\n            482.93902587890625,\n            545.1155395507812,\n            624.4086151123047\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Equation/14\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">D_{\\\\bf x}=\\\\frac{1}{||Z||}\\\\left(\\\\mathcal{N}_{h}(\\\\bf x,\\\\sigma_{h})+\\\\mathcal{N}_{b}(\\\\bf x_{b},\\\\Sigma_{b})\\\\right)\\\\tag{5}</math></p>\",\n          \"polygon\": [\n            [\n              349.03125,\n              632.6324462890625\n            ],\n            [\n              545.1123657226562,\n              632.6324462890625\n            ],\n            [\n              545.1123657226562,\n              657.80859375\n            ],\n            [\n              349.03125,\n              657.80859375\n            ]\n          ],\n          \"bbox\": [\n            349.03125,\n            632.6324462890625,\n            545.1123657226562,\n            657.80859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/TextInlineMath/15\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">where $x_b$ is the center of the body, which is 0.875 meters down from the head on average, and can be determined from the perspective map $M$ and the head center x [27]. We sum these Gaussians for each person to produce</p>\",\n          \"polygon\": [\n            [\n              307.494140625,\n              667.3479156494141\n            ],\n            [\n              545.1151123046875,\n              667.3479156494141\n            ],\n            [\n              545.1151123046875,\n              713.4070816040039\n            ],\n            [\n              307.494140625,\n              713.4070816040039\n            ]\n          ],\n          \"bbox\": [\n            307.494140625,\n            667.3479156494141,\n            545.1151123046875,\n            713.4070816040039\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/2/SectionHeader/4\",\n        \"2\": \"/page/3/SectionHeader/3\",\n        \"4\": \"/page/4/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/5/Page/564\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/5/TableGroup/435'></content-ref><content-ref src='/page/5/TextInlineMath/2'></content-ref><content-ref src='/page/5/SectionHeader/3'></content-ref><content-ref src='/page/5/SectionHeader/4'></content-ref><content-ref src='/page/5/Text/5'></content-ref><content-ref src='/page/5/Text/6'></content-ref><content-ref src='/page/5/SectionHeader/7'></content-ref><content-ref src='/page/5/Text/8'></content-ref><content-ref src='/page/5/SectionHeader/9'></content-ref><content-ref src='/page/5/Text/10'></content-ref><content-ref src='/page/5/TableGroup/436'></content-ref><content-ref src='/page/5/Text/13'></content-ref><content-ref src='/page/5/SectionHeader/14'></content-ref><content-ref src='/page/5/Text/15'></content-ref><content-ref src='/page/5/SectionHeader/16'></content-ref><content-ref src='/page/5/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/5/TableGroup/435\",\n          \"block_type\": \"TableGroup\",\n          \"html\": \"<content-ref src='/page/5/Table/0'></content-ref><content-ref src='/page/5/Caption/1'></content-ref>\",\n          \"polygon\": [\n            [\n              49.23193359375,\n              70.2861328125\n            ],\n            [\n              283.587890625,\n              70.2861328125\n            ],\n            [\n              283.587890625,\n              178.6640625\n            ],\n            [\n              49.23193359375,\n              178.6640625\n            ]\n          ],\n          \"bbox\": [\n            49.23193359375,\n            70.2861328125,\n            283.587890625,\n            178.6640625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/5/Table/0\",\n              \"block_type\": \"Table\",\n              \"html\": \"<table><tbody><tr><th>Method</th><th>MAE</th></tr><tr><td>AMDCN</td><td>290.82</td></tr><tr><td>Hydra2s [18]</td><td>333.73</td></tr><tr><td>MCNN [28]</td><td>377.60</td></tr><tr><td>[27]</td><td>467.00</td></tr><tr><td>[23]</td><td>295.80</td></tr><tr><td>[3]</td><td>318.10</td></tr></tbody></table>\",\n              \"polygon\": [\n                [\n                  69.10400390625,\n                  70.2861328125\n                ],\n                [\n                  265.060546875,\n                  70.2861328125\n                ],\n                [\n                  265.060546875,\n                  160.1982421875\n                ],\n                [\n                  69.10400390625,\n                  160.1982421875\n                ]\n              ],\n              \"bbox\": [\n                69.10400390625,\n                70.2861328125,\n                265.060546875,\n                160.1982421875\n              ],\n              \"children\": [\n                {\n                  \"id\": \"/page/5/TableCell/506\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>Method</th>\",\n                  \"polygon\": [\n                    [\n                      69.10400390625,\n                      70.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      70.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      71.2861328125\n                    ],\n                    [\n                      69.10400390625,\n                      71.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    69.10400390625,\n                    70.2861328125,\n                    70.10400390625,\n                    71.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/507\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>MAE</th>\",\n                  \"polygon\": [\n                    [\n                      70.10400390625,\n                      70.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      70.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      71.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      71.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    70.10400390625,\n                    70.2861328125,\n                    71.10400390625,\n                    71.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/508\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>AMDCN</td>\",\n                  \"polygon\": [\n                    [\n                      69.10400390625,\n                      71.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      71.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      72.2861328125\n                    ],\n                    [\n                      69.10400390625,\n                      72.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    69.10400390625,\n                    71.2861328125,\n                    70.10400390625,\n                    72.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/509\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>290.82</td>\",\n                  \"polygon\": [\n                    [\n                      70.10400390625,\n                      71.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      71.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      72.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      72.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    70.10400390625,\n                    71.2861328125,\n                    71.10400390625,\n                    72.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/510\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Hydra2s [18]</td>\",\n                  \"polygon\": [\n                    [\n                      69.10400390625,\n                      72.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      72.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      73.2861328125\n                    ],\n                    [\n                      69.10400390625,\n                      73.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    69.10400390625,\n                    72.2861328125,\n                    70.10400390625,\n                    73.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/511\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>333.73</td>\",\n                  \"polygon\": [\n                    [\n                      70.10400390625,\n                      72.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      72.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      73.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      73.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    70.10400390625,\n                    72.2861328125,\n                    71.10400390625,\n                    73.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/512\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>MCNN [28]</td>\",\n                  \"polygon\": [\n                    [\n                      69.10400390625,\n                      73.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      73.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      74.2861328125\n                    ],\n                    [\n                      69.10400390625,\n                      74.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    69.10400390625,\n                    73.2861328125,\n                    70.10400390625,\n                    74.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/513\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>377.60</td>\",\n                  \"polygon\": [\n                    [\n                      70.10400390625,\n                      73.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      73.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      74.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      74.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    70.10400390625,\n                    73.2861328125,\n                    71.10400390625,\n                    74.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/514\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[27]</td>\",\n                  \"polygon\": [\n                    [\n                      69.10400390625,\n                      74.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      74.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      75.2861328125\n                    ],\n                    [\n                      69.10400390625,\n                      75.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    69.10400390625,\n                    74.2861328125,\n                    70.10400390625,\n                    75.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/515\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>467.00</td>\",\n                  \"polygon\": [\n                    [\n                      70.10400390625,\n                      74.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      74.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      75.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      75.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    70.10400390625,\n                    74.2861328125,\n                    71.10400390625,\n                    75.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/516\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[23]</td>\",\n                  \"polygon\": [\n                    [\n                      69.10400390625,\n                      75.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      75.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      76.2861328125\n                    ],\n                    [\n                      69.10400390625,\n                      76.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    69.10400390625,\n                    75.2861328125,\n                    70.10400390625,\n                    76.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/517\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>295.80</td>\",\n                  \"polygon\": [\n                    [\n                      70.10400390625,\n                      75.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      75.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      76.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      76.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    70.10400390625,\n                    75.2861328125,\n                    71.10400390625,\n                    76.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/518\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[3]</td>\",\n                  \"polygon\": [\n                    [\n                      69.10400390625,\n                      76.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      76.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      77.2861328125\n                    ],\n                    [\n                      69.10400390625,\n                      77.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    69.10400390625,\n                    76.2861328125,\n                    70.10400390625,\n                    77.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/519\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>318.10</td>\",\n                  \"polygon\": [\n                    [\n                      70.10400390625,\n                      76.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      76.2861328125\n                    ],\n                    [\n                      71.10400390625,\n                      77.2861328125\n                    ],\n                    [\n                      70.10400390625,\n                      77.2861328125\n                    ]\n                  ],\n                  \"bbox\": [\n                    70.10400390625,\n                    76.2861328125,\n                    71.10400390625,\n                    77.2861328125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/2/SectionHeader/4\",\n                    \"2\": \"/page/3/SectionHeader/3\",\n                    \"4\": \"/page/4/SectionHeader/10\"\n                  },\n                  \"images\": {}\n                }\n              ],\n              \"section_hierarchy\": {\n                \"1\": \"/page/2/SectionHeader/4\",\n                \"2\": \"/page/3/SectionHeader/3\",\n                \"4\": \"/page/4/SectionHeader/10\"\n              },\n              \"images\": null\n            },\n            {\n              \"id\": \"/page/5/Caption/1\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-5-1\\\"></span>Table 1. Mean absolute error of various methods on UCF crowds</p>\",\n              \"polygon\": [\n                [\n                  49.23193359375,\n                  169.14794921875\n                ],\n                [\n                  283.587890625,\n                  169.14794921875\n                ],\n                [\n                  283.587890625,\n                  178.6640625\n                ],\n                [\n                  49.23193359375,\n                  178.6640625\n                ]\n              ],\n              \"bbox\": [\n                49.23193359375,\n                169.14794921875,\n                283.587890625,\n                178.6640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/2/SectionHeader/4\",\n                \"2\": \"/page/3/SectionHeader/3\",\n                \"4\": \"/page/4/SectionHeader/10\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/10\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/5/TextInlineMath/2\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">duce the final density map. We set σ = 0.2<i>M</i>(x) for <i>Nh </i>and σx = 0.2<i>M</i>(x), σy = 0.5<i>M</i>(x) for Σb in <i>Nb</i>.</p>\",\n          \"polygon\": [\n            [\n              49.1572265625,\n              197.2218017578125\n            ],\n            [\n              286.1279296875,\n              197.2218017578125\n            ],\n            [\n              286.1279296875,\n              220.110595703125\n            ],\n            [\n              49.1572265625,\n              220.110595703125\n            ]\n          ],\n          \"bbox\": [\n            49.1572265625,\n            197.2218017578125,\n            286.1279296875,\n            220.110595703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/4\",\n            \"2\": \"/page/3/SectionHeader/3\",\n            \"4\": \"/page/4/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>4. Results</h1>\",\n          \"polygon\": [\n            [\n              49.343994140625,\n              231.4151611328125\n            ],\n            [\n              100.5556640625,\n              231.4151611328125\n            ],\n            [\n              100.5556640625,\n              243.370361328125\n            ],\n            [\n              49.343994140625,\n              243.370361328125\n            ]\n          ],\n          \"bbox\": [\n            49.343994140625,\n            231.4151611328125,\n            100.5556640625,\n            243.370361328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2>4.1. UCF Crowd Counting</h2>\",\n          \"polygon\": [\n            [\n              49.38134765625,\n              251.10882568359375\n            ],\n            [\n              173.619140625,\n              251.10882568359375\n            ],\n            [\n              173.619140625,\n              262.0677490234375\n            ],\n            [\n              49.38134765625,\n              262.0677490234375\n            ]\n          ],\n          \"bbox\": [\n            49.38134765625,\n            251.10882568359375,\n            173.619140625,\n            262.0677490234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The UCF dataset is particularly challenging due to the large number of people in the images, the variety of the scenes, as well as the low number of training images. We see in Figure <a href=\\\"#page-2-2\\\">2</a> that because the UCF dataset has over 1000 people on average in each image, the shapes output by the network in the density map are not as well defined or separated as in the UCSD dataset.</p>\",\n          \"polygon\": [\n            [\n              49.4560546875,\n              269.8974609375\n            ],\n            [\n              286.4267578125,\n              269.8974609375\n            ],\n            [\n              286.4267578125,\n              352.30078125\n            ],\n            [\n              49.4560546875,\n              352.30078125\n            ]\n          ],\n          \"bbox\": [\n            49.4560546875,\n            269.8974609375,\n            286.4267578125,\n            352.30078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We report a state of the art result on this dataset in Table <a href=\\\"#page-5-1\\\">1,</a> following the standard protocol of 5-fold cross validation. Our MAE on the dataset is 290.82, which is approximately 5 lower than the previous state of the art, HydraCNN <a href=\\\"#page-8-4\\\">[18]</a>. This is particularly indicative of the power of an aggregated multicolumn dilation network. Despite not making use of perspective information, the AMDCN is still able to produce highly accurate density maps for UCF.</p>\",\n          \"polygon\": [\n            [\n              49.68017578125,\n              353.5833740234375\n            ],\n            [\n              286.36505126953125,\n              353.5833740234375\n            ],\n            [\n              286.36505126953125,\n              447.2319030761719\n            ],\n            [\n              49.68017578125,\n              447.2319030761719\n            ]\n          ],\n          \"bbox\": [\n            49.68017578125,\n            353.5833740234375,\n            286.36505126953125,\n            447.2319030761719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2>4.2. TRANCOS Traffic Counting</h2>\",\n          \"polygon\": [\n            [\n              49.68017578125,\n              455.92767333984375\n            ],\n            [\n              203.80078125,\n              455.92767333984375\n            ],\n            [\n              203.80078125,\n              466.8865661621094\n            ],\n            [\n              49.68017578125,\n              466.8865661621094\n            ]\n          ],\n          \"bbox\": [\n            49.68017578125,\n            455.92767333984375,\n            203.80078125,\n            466.8865661621094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Our network performs very well on the TRANCOS dataset. Indeed, as confirmed by the GAME score, AMDCN produces the most accurate count and shape combined as compared to other methods. Table <a href=\\\"#page-5-2\\\">2</a> shows that we achieve state of the art results as measured by the GAME metric <a href=\\\"#page-8-1\\\">[14]</a> across all levels.</p>\",\n          \"polygon\": [\n            [\n              49.82958984375,\n              474.7153015136719\n            ],\n            [\n              286.36505126953125,\n              474.7153015136719\n            ],\n            [\n              286.36505126953125,\n              544.4538726806641\n            ],\n            [\n              49.82958984375,\n              544.4538726806641\n            ]\n          ],\n          \"bbox\": [\n            49.82958984375,\n            474.7153015136719,\n            286.36505126953125,\n            544.4538726806641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2>4.3. UCSD Crowd Counting</h2>\",\n          \"polygon\": [\n            [\n              50.1119384765625,\n              553.1486358642578\n            ],\n            [\n              181.388671875,\n              553.1486358642578\n            ],\n            [\n              181.388671875,\n              564.1075286865234\n            ],\n            [\n              50.1119384765625,\n              564.1075286865234\n            ]\n          ],\n          \"bbox\": [\n            50.1119384765625,\n            553.1486358642578,\n            181.388671875,\n            564.1075286865234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Results are shown in Table <a href=\\\"#page-6-0\\\">3</a> and Figure <a href=\\\"#page-6-1\\\">3.</a> We see that the \\\"original\\\" split as defined by the creators of the dataset in <a href=\\\"#page-8-17\\\">[5]</a> and used in <a href=\\\"#page-9-0\\\">[28]</a> gives us somewhat worse results for counting on this dataset. Results were consistent over multiple trainings. Again, including the perspective map does not seem to increase performance on this dataset. Despite this, we see in Table <a href=\\\"#page-6-0\\\">3</a> and Figure <a href=\\\"#page-6-1\\\">3</a> that the results are comparable to the state of the art. In fact, for two of the splits, our proposed network beats the state of the art. For the upscale split, the AMDCN is the state of the art by a large relative margin. This is compelling because it shows that accurate perspective-free counting can be achieved without</p>\",\n          \"polygon\": [\n            [\n              49.68017578125,\n              571.9372711181641\n            ],\n            [\n              287.173828125,\n              571.9372711181641\n            ],\n            [\n              287.173828125,\n              713.4068832397461\n            ],\n            [\n              49.68017578125,\n              713.4068832397461\n            ]\n          ],\n          \"bbox\": [\n            49.68017578125,\n            571.9372711181641,\n            287.173828125,\n            713.4068832397461\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/TableGroup/436\",\n          \"block_type\": \"TableGroup\",\n          \"html\": \"<content-ref src='/page/5/Table/11'></content-ref><content-ref src='/page/5/Caption/12'></content-ref>\",\n          \"polygon\": [\n            [\n              308.86199951171875,\n              73.283203125\n            ],\n            [\n              547.154296875,\n              73.283203125\n            ],\n            [\n              547.154296875,\n              237.4913330078125\n            ],\n            [\n              308.86199951171875,\n              237.4913330078125\n            ]\n          ],\n          \"bbox\": [\n            308.86199951171875,\n            73.283203125,\n            547.154296875,\n            237.4913330078125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/5/Table/11\",\n              \"block_type\": \"Table\",\n              \"html\": \"<table><tbody><tr><th>Method</th><th>GAME<br/>(L=0)</th><th>GAME<br/>(L=1)</th><th>GAME<br/>(L=2)</th><th>GAME<br/>(L=3)</th></tr><tr><td>AMDCN<br/>[18]</td><td>9.77<br/>10.99</td><td>13.16<br/>13.75</td><td>15.00<br/>16.69</td><td>15.87<br/>19.32</td></tr><tr><td>[15] + SIFT<br/>from [14]</td><td>13.76</td><td>16.72</td><td>20.72</td><td>24.36</td></tr><tr><td>[13] + RGB<br/>Norm + Filters<br/>from [14]</td><td>17.68</td><td>19.97</td><td>23.54</td><td>25.84</td></tr><tr><td>HOG-2<br/>from [14]</td><td>13.29</td><td>18.05</td><td>23.65</td><td>28.41</td></tr></tbody></table>\",\n              \"polygon\": [\n                [\n                  309.287109375,\n                  73.283203125\n                ],\n                [\n                  547.154296875,\n                  73.283203125\n                ],\n                [\n                  547.154296875,\n                  207.28125\n                ],\n                [\n                  309.287109375,\n                  207.28125\n                ]\n              ],\n              \"bbox\": [\n                309.287109375,\n                73.283203125,\n                547.154296875,\n                207.28125\n              ],\n              \"children\": [\n                {\n                  \"id\": \"/page/5/TableCell/520\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>Method</th>\",\n                  \"polygon\": [\n                    [\n                      309.287109375,\n                      73.283203125\n                    ],\n                    [\n                      310.287109375,\n                      73.283203125\n                    ],\n                    [\n                      310.287109375,\n                      74.283203125\n                    ],\n                    [\n                      309.287109375,\n                      74.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    309.287109375,\n                    73.283203125,\n                    310.287109375,\n                    74.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/521\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>GAME<br/>(L=0)</th>\",\n                  \"polygon\": [\n                    [\n                      310.287109375,\n                      73.283203125\n                    ],\n                    [\n                      311.287109375,\n                      73.283203125\n                    ],\n                    [\n                      311.287109375,\n                      74.283203125\n                    ],\n                    [\n                      310.287109375,\n                      74.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    310.287109375,\n                    73.283203125,\n                    311.287109375,\n                    74.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/522\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>GAME<br/>(L=1)</th>\",\n                  \"polygon\": [\n                    [\n                      311.287109375,\n                      73.283203125\n                    ],\n                    [\n                      312.287109375,\n                      73.283203125\n                    ],\n                    [\n                      312.287109375,\n                      74.283203125\n                    ],\n                    [\n                      311.287109375,\n                      74.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    311.287109375,\n                    73.283203125,\n                    312.287109375,\n                    74.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/523\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>GAME<br/>(L=2)</th>\",\n                  \"polygon\": [\n                    [\n                      312.287109375,\n                      73.283203125\n                    ],\n                    [\n                      313.287109375,\n                      73.283203125\n                    ],\n                    [\n                      313.287109375,\n                      74.283203125\n                    ],\n                    [\n                      312.287109375,\n                      74.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    312.287109375,\n                    73.283203125,\n                    313.287109375,\n                    74.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/524\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>GAME<br/>(L=3)</th>\",\n                  \"polygon\": [\n                    [\n                      313.287109375,\n                      73.283203125\n                    ],\n                    [\n                      314.287109375,\n                      73.283203125\n                    ],\n                    [\n                      314.287109375,\n                      74.283203125\n                    ],\n                    [\n                      313.287109375,\n                      74.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    313.287109375,\n                    73.283203125,\n                    314.287109375,\n                    74.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/525\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>AMDCN<br/>[18]</td>\",\n                  \"polygon\": [\n                    [\n                      309.287109375,\n                      74.283203125\n                    ],\n                    [\n                      310.287109375,\n                      74.283203125\n                    ],\n                    [\n                      310.287109375,\n                      75.283203125\n                    ],\n                    [\n                      309.287109375,\n                      75.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    309.287109375,\n                    74.283203125,\n                    310.287109375,\n                    75.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/526\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>9.77<br/>10.99</td>\",\n                  \"polygon\": [\n                    [\n                      310.287109375,\n                      74.283203125\n                    ],\n                    [\n                      311.287109375,\n                      74.283203125\n                    ],\n                    [\n                      311.287109375,\n                      75.283203125\n                    ],\n                    [\n                      310.287109375,\n                      75.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    310.287109375,\n                    74.283203125,\n                    311.287109375,\n                    75.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/527\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>13.16<br/>13.75</td>\",\n                  \"polygon\": [\n                    [\n                      311.287109375,\n                      74.283203125\n                    ],\n                    [\n                      312.287109375,\n                      74.283203125\n                    ],\n                    [\n                      312.287109375,\n                      75.283203125\n                    ],\n                    [\n                      311.287109375,\n                      75.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    311.287109375,\n                    74.283203125,\n                    312.287109375,\n                    75.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/528\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>15.00<br/>16.69</td>\",\n                  \"polygon\": [\n                    [\n                      312.287109375,\n                      74.283203125\n                    ],\n                    [\n                      313.287109375,\n                      74.283203125\n                    ],\n                    [\n                      313.287109375,\n                      75.283203125\n                    ],\n                    [\n                      312.287109375,\n                      75.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    312.287109375,\n                    74.283203125,\n                    313.287109375,\n                    75.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/529\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>15.87<br/>19.32</td>\",\n                  \"polygon\": [\n                    [\n                      313.287109375,\n                      74.283203125\n                    ],\n                    [\n                      314.287109375,\n                      74.283203125\n                    ],\n                    [\n                      314.287109375,\n                      75.283203125\n                    ],\n                    [\n                      313.287109375,\n                      75.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    313.287109375,\n                    74.283203125,\n                    314.287109375,\n                    75.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/530\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[15] + SIFT<br/>from [14]</td>\",\n                  \"polygon\": [\n                    [\n                      309.287109375,\n                      75.283203125\n                    ],\n                    [\n                      310.287109375,\n                      75.283203125\n                    ],\n                    [\n                      310.287109375,\n                      76.283203125\n                    ],\n                    [\n                      309.287109375,\n                      76.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    309.287109375,\n                    75.283203125,\n                    310.287109375,\n                    76.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/531\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>13.76</td>\",\n                  \"polygon\": [\n                    [\n                      310.287109375,\n                      75.283203125\n                    ],\n                    [\n                      311.287109375,\n                      75.283203125\n                    ],\n                    [\n                      311.287109375,\n                      76.283203125\n                    ],\n                    [\n                      310.287109375,\n                      76.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    310.287109375,\n                    75.283203125,\n                    311.287109375,\n                    76.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/532\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>16.72</td>\",\n                  \"polygon\": [\n                    [\n                      311.287109375,\n                      75.283203125\n                    ],\n                    [\n                      312.287109375,\n                      75.283203125\n                    ],\n                    [\n                      312.287109375,\n                      76.283203125\n                    ],\n                    [\n                      311.287109375,\n                      76.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    311.287109375,\n                    75.283203125,\n                    312.287109375,\n                    76.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/533\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>20.72</td>\",\n                  \"polygon\": [\n                    [\n                      312.287109375,\n                      75.283203125\n                    ],\n                    [\n                      313.287109375,\n                      75.283203125\n                    ],\n                    [\n                      313.287109375,\n                      76.283203125\n                    ],\n                    [\n                      312.287109375,\n                      76.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    312.287109375,\n                    75.283203125,\n                    313.287109375,\n                    76.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/534\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>24.36</td>\",\n                  \"polygon\": [\n                    [\n                      313.287109375,\n                      75.283203125\n                    ],\n                    [\n                      314.287109375,\n                      75.283203125\n                    ],\n                    [\n                      314.287109375,\n                      76.283203125\n                    ],\n                    [\n                      313.287109375,\n                      76.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    313.287109375,\n                    75.283203125,\n                    314.287109375,\n                    76.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/535\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[13] + RGB<br/>Norm + Filters<br/>from [14]</td>\",\n                  \"polygon\": [\n                    [\n                      309.287109375,\n                      76.283203125\n                    ],\n                    [\n                      310.287109375,\n                      76.283203125\n                    ],\n                    [\n                      310.287109375,\n                      77.283203125\n                    ],\n                    [\n                      309.287109375,\n                      77.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    309.287109375,\n                    76.283203125,\n                    310.287109375,\n                    77.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/536\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>17.68</td>\",\n                  \"polygon\": [\n                    [\n                      310.287109375,\n                      76.283203125\n                    ],\n                    [\n                      311.287109375,\n                      76.283203125\n                    ],\n                    [\n                      311.287109375,\n                      77.283203125\n                    ],\n                    [\n                      310.287109375,\n                      77.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    310.287109375,\n                    76.283203125,\n                    311.287109375,\n                    77.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/537\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>19.97</td>\",\n                  \"polygon\": [\n                    [\n                      311.287109375,\n                      76.283203125\n                    ],\n                    [\n                      312.287109375,\n                      76.283203125\n                    ],\n                    [\n                      312.287109375,\n                      77.283203125\n                    ],\n                    [\n                      311.287109375,\n                      77.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    311.287109375,\n                    76.283203125,\n                    312.287109375,\n                    77.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/538\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>23.54</td>\",\n                  \"polygon\": [\n                    [\n                      312.287109375,\n                      76.283203125\n                    ],\n                    [\n                      313.287109375,\n                      76.283203125\n                    ],\n                    [\n                      313.287109375,\n                      77.283203125\n                    ],\n                    [\n                      312.287109375,\n                      77.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    312.287109375,\n                    76.283203125,\n                    313.287109375,\n                    77.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/539\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>25.84</td>\",\n                  \"polygon\": [\n                    [\n                      313.287109375,\n                      76.283203125\n                    ],\n                    [\n                      314.287109375,\n                      76.283203125\n                    ],\n                    [\n                      314.287109375,\n                      77.283203125\n                    ],\n                    [\n                      313.287109375,\n                      77.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    313.287109375,\n                    76.283203125,\n                    314.287109375,\n                    77.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/540\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>HOG-2<br/>from [14]</td>\",\n                  \"polygon\": [\n                    [\n                      309.287109375,\n                      77.283203125\n                    ],\n                    [\n                      310.287109375,\n                      77.283203125\n                    ],\n                    [\n                      310.287109375,\n                      78.283203125\n                    ],\n                    [\n                      309.287109375,\n                      78.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    309.287109375,\n                    77.283203125,\n                    310.287109375,\n                    78.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/541\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>13.29</td>\",\n                  \"polygon\": [\n                    [\n                      310.287109375,\n                      77.283203125\n                    ],\n                    [\n                      311.287109375,\n                      77.283203125\n                    ],\n                    [\n                      311.287109375,\n                      78.283203125\n                    ],\n                    [\n                      310.287109375,\n                      78.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    310.287109375,\n                    77.283203125,\n                    311.287109375,\n                    78.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/542\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>18.05</td>\",\n                  \"polygon\": [\n                    [\n                      311.287109375,\n                      77.283203125\n                    ],\n                    [\n                      312.287109375,\n                      77.283203125\n                    ],\n                    [\n                      312.287109375,\n                      78.283203125\n                    ],\n                    [\n                      311.287109375,\n                      78.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    311.287109375,\n                    77.283203125,\n                    312.287109375,\n                    78.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/543\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>23.65</td>\",\n                  \"polygon\": [\n                    [\n                      312.287109375,\n                      77.283203125\n                    ],\n                    [\n                      313.287109375,\n                      77.283203125\n                    ],\n                    [\n                      313.287109375,\n                      78.283203125\n                    ],\n                    [\n                      312.287109375,\n                      78.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    312.287109375,\n                    77.283203125,\n                    313.287109375,\n                    78.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/5/TableCell/544\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>28.41</td>\",\n                  \"polygon\": [\n                    [\n                      313.287109375,\n                      77.283203125\n                    ],\n                    [\n                      314.287109375,\n                      77.283203125\n                    ],\n                    [\n                      314.287109375,\n                      78.283203125\n                    ],\n                    [\n                      313.287109375,\n                      78.283203125\n                    ]\n                  ],\n                  \"bbox\": [\n                    313.287109375,\n                    77.283203125,\n                    314.287109375,\n                    78.283203125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/9\"\n                  },\n                  \"images\": {}\n                }\n              ],\n              \"section_hierarchy\": {\n                \"1\": \"/page/5/SectionHeader/3\",\n                \"2\": \"/page/5/SectionHeader/9\"\n              },\n              \"images\": null\n            },\n            {\n              \"id\": \"/page/5/Caption/12\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-5-2\\\"></span>Table 2. Mean absolute error of various methods on TRANCOS traffic</p>\",\n              \"polygon\": [\n                [\n                  308.86199951171875,\n                  217.529296875\n                ],\n                [\n                  545.108642578125,\n                  217.529296875\n                ],\n                [\n                  545.108642578125,\n                  237.4913330078125\n                ],\n                [\n                  308.86199951171875,\n                  237.4913330078125\n                ]\n              ],\n              \"bbox\": [\n                308.86199951171875,\n                217.529296875,\n                545.108642578125,\n                237.4913330078125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/5/SectionHeader/3\",\n                \"2\": \"/page/5/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/5/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">creating image pyramids or requiring perspective maps as labels using the techniques presented by the AMDCN.</p>\",\n          \"polygon\": [\n            [\n              308.86199951171875,\n              269.58740234375\n            ],\n            [\n              546.2578125,\n              269.58740234375\n            ],\n            [\n              546.2578125,\n              291.5050048828125\n            ],\n            [\n              308.86199951171875,\n              291.5050048828125\n            ]\n          ],\n          \"bbox\": [\n            308.86199951171875,\n            269.58740234375,\n            546.2578125,\n            291.5050048828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/SectionHeader/14\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2>4.4. WorldExpo '10 Crowd Counting</h2>\",\n          \"polygon\": [\n            [\n              308.689453125,\n              318.3517761230469\n            ],\n            [\n              480.814453125,\n              318.3517761230469\n            ],\n            [\n              480.814453125,\n              329.3106689453125\n            ],\n            [\n              308.689453125,\n              329.3106689453125\n            ]\n          ],\n          \"bbox\": [\n            308.689453125,\n            318.3517761230469,\n            480.814453125,\n            329.3106689453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Our network performs reasonably well on the more challenging WorldExpo dataset. While it does not beat the state of the art, our results are comparable. What is more, we do not need to use the perspective maps to obtain these results. As seen in Table <a href=\\\"#page-7-1\\\">4,</a> the AMDCN is capable of incorporating the perspective effects without scaling the Gaussians with perspective information. This shows that it is possible to achieve counting results that approach the state of the art with much simpler labels for the counting training data.</p>\",\n          \"polygon\": [\n            [\n              308.86199951171875,\n              343.01953125\n            ],\n            [\n              545.1151733398438,\n              343.01953125\n            ],\n            [\n              545.1151733398438,\n              448.6579284667969\n            ],\n            [\n              308.86199951171875,\n              448.6579284667969\n            ]\n          ],\n          \"bbox\": [\n            308.86199951171875,\n            343.01953125,\n            545.1151733398438,\n            448.6579284667969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/SectionHeader/16\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-5-0\\\"></span>4.5. Ablation Studies</h2>\",\n          \"polygon\": [\n            [\n              308.689453125,\n              475.50469970703125\n            ],\n            [\n              405.6838684082031,\n              475.50469970703125\n            ],\n            [\n              405.6838684082031,\n              486.4635925292969\n            ],\n            [\n              308.689453125,\n              486.4635925292969\n            ]\n          ],\n          \"bbox\": [\n            308.689453125,\n            475.50469970703125,\n            405.6838684082031,\n            486.4635925292969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We report the results of the ablation studies in Figure <a href=\\\"#page-7-2\\\">4.</a> We note from these plots that while there is variation in performance, a few trends stand out. Most importantly, the lowest errors are consistently with a combination of a larger number of columns and including the aggregator module. Notably for the TRANCOS dataset, including the aggregator consistently improves performance. Generally, the aggregator tends to decrease the variance in performance of the network. Some of the variance that we see in the plots can be explained by: (1) for lower numbers of columns, including an aggregator is not as likely to help as there is not much separation of multiscale information across columns and (2) for the UCSD dataset, there is less of a perspective effect than TRANCOS and WorldExpo so a simpler network is more likely to perform comparably to a larger network. These results verify the notion that using more columns increases accuracy, and also support our justification for the use of the aggregator module.</p>\",\n          \"polygon\": [\n            [\n              308.390625,\n              500.2063293457031\n            ],\n            [\n              545.1151733398438,\n              500.2063293457031\n            ],\n            [\n              545.1151733398438,\n              713.4069442749023\n            ],\n            [\n              308.390625,\n              713.4069442749023\n            ]\n          ],\n          \"bbox\": [\n            308.390625,\n            500.2063293457031,\n            545.1151733398438,\n            713.4069442749023\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/16\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/5/SectionHeader/3\",\n        \"2\": \"/page/5/SectionHeader/16\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/6/Page/460\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/6/FigureGroup/277'></content-ref><content-ref src='/page/6/Caption/2'></content-ref><content-ref src='/page/6/TableGroup/278'></content-ref><content-ref src='/page/6/SectionHeader/6'></content-ref><content-ref src='/page/6/SectionHeader/7'></content-ref><content-ref src='/page/6/Text/8'></content-ref><content-ref src='/page/6/Text/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/6/FigureGroup/277\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/6/Figure/0'></content-ref><content-ref src='/page/6/Caption/1'></content-ref>\",\n          \"polygon\": [\n            [\n              70.3740234375,\n              95.1328125\n            ],\n            [\n              509.203125,\n              95.1328125\n            ],\n            [\n              509.203125,\n              317.689453125\n            ],\n            [\n              70.3740234375,\n              317.689453125\n            ]\n          ],\n          \"bbox\": [\n            70.3740234375,\n            95.1328125,\n            509.203125,\n            317.689453125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/6/Figure/0\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  70.3740234375,\n                  95.1328125\n                ],\n                [\n                  509.203125,\n                  95.1328125\n                ],\n                [\n                  509.203125,\n                  310.921875\n                ],\n                [\n                  70.3740234375,\n                  310.921875\n                ]\n              ],\n              \"bbox\": [\n                70.3740234375,\n                95.1328125,\n                509.203125,\n                310.921875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/5/SectionHeader/3\",\n                \"2\": \"/page/5/SectionHeader/16\"\n              },\n              \"images\": {\n                \"/page/6/Figure/0\": \"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KACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAxpPCmiS6g169iDM0omZfMfy2kHRzHnYW4ByRmtmiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACmSxRzwvFKivG6lXRhkMDwQR6U+igDJ03wzpGk3IuLO0KzKnlozyvIY0/uruJ2jgcDA4rWoooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqO4kaK2kkXG5VJGakqC8/48p/9w/yoANl1/z3i/79H/4qjZdf894v+/R/+KqeigCqTdCdY/Ni5Utnyz2I9/en7Lr/AJ7xf9+j/wDFUN/x/J/1zb+YqegCDZdf894v+/R/+Ko2XX/PeL/v0f8A4qp6KAINl1/z3i/79H/4qjZdf894v+/R/wDiqnooAg2XX/PeL/v0f/iqNl1/z3i/79H/AOKqeigCDZdf894v+/R/+Ko2XX/PeL/v0f8A4qp6KAINl1/z3i/79H/4qmZuvP8AL82L7u7Pln1+tWqg/wCX4f8AXM/zoANl1/z3i/79H/4qjZdf894v+/R/+KqeigCDZdf894v+/R/+Ko2XX/PeL/v0f/iqnooAg2XX/PeL/v0f/iqNl1/z3i/79H/4qp6KAINl1/z3i/79H/4qjZdf894v+/R/+KqeigCDZdf894v+/R/+Ko2XX/PeL/v0f/iqnooAqg3RnMXmxcKGz5Z7k+/tT9l1/wA94v8Av0f/AIqgf8fz/wDXJf5mp6AINl1/z3i/79H/AOKo2XX/AD3i/wC/R/8AiqnooAg2XX/PeL/v0f8A4qjZdf8APeL/AL9H/wCKqeigCDZdf894v+/R/wDiqNl1/wA94v8Av0f/AIqp6KAINl1/z3i/79H/AOKo2XX/AD3i/wC/R/8Aiqno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iigAooooAKKKKACiiigAooooAKKKKAKo1OwbUTpwvbY3wXebYSr5gX125zirVeTxT6xoS+KtVtru3uLwaxFajzbYDcX8gZLA5A2tjH410Oqajq+jfYrLUPE9lE8iyO88diXnlORtVIRnCgE5bnsMCgDt6K84t/F2uXeh2HkSwC8l1xtLaea1ZA0YVyHMZIKtwDt45GOKsfbvFTXniDT11m1B0iNJkuDZDdNvjLhGGcADaRkcnI6Y5AO/orzmfxzdXs+l2yXg0sTaXDfzzR2T3TF5BwiqAQAMEkn2ArqPCOs3Wt6M815HtnhneAyCFolmCniRVbkAgg4PfNAG9RRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRWfrqTyaDfrbz+RL5DbZNm7HHPH04oAmstTsNSWRrC9trpYm2SGCVXCt6HB4NWq8s8PSa9a6T4T0bS9QtLf+0dNa5edrMExBViIAUEbj8xGT1zntV7X/E+p6fJqnl6/aLc2KExWdrYPc79qA/vmH+rJOeONowcmgD0WiuJXWNd1vX7awsLyDT4JdHhv3kMHmuruzDaMkDHA6+nvxQ0/wASeJJNG0LXbq7tDDeX0dlLZx2+BhpDGXDk53ZG7HTt70Aei0V5ldeOdQuJNUurO/EJs7iWG2sP7MlmFwIzg7pVHBYg4x04zmvRbG6+26fbXflvF58SyeW4wy7gDg+4zQBYooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA5248IWtxbajC1zMBfahHfuQB8rIYyFHt+7H5mpNU8OS3eux6zYapNYXgt/ssjLEkivHu3AYYcEHPNb1FAHLWXgi2s4oI/t91N5OqnVA8u0s8hUqQxxyDkmtJdAhW+1m686TdqsaRyDjCBUKjH4GteigDlx4O+yLp8ml6rcWV5Z2SWJmEaSCaJRwHVhjIOSCMdTWxo+ljSLAWxuri7kZ2kknuH3O7sck+gHoBwK0KKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACormEXNrNAxIWVChI7ZGKlooAwbDwtb2E+iypcSsdKsms4wwHzqQgyff5B+dUJ/BDSDVbaHW7y303U5ZJri1jRMl3Hz4cjIU+n4ZrraKAMXTPDkOmajDercSSSRadFp+GAAKxkkN9Tmq8XhC1h0DTdJFzMYrC7S7RyBuZlkMgB9snFdFRQBy0/g6XzL6Kw1y9sLC/laW4toVQnc33yjkZTd3x3JxiumiiWGFIkzsRQq5JJwPc9afRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUVT1HUYtNgjklV3aWRYokQcu7dBzwPqaALlFA6c1TbUYo9Vj0+RHWSWMyRN1VwuNw9iMjr60AXKKZM7Rwu6RNKyjIRSAW9hkgVz/hHxhb+MbW5ubSwvLaG3maBmufL5deoAVj69aAOjorE0vxF/aetajpg027gewZVlllaMoSw3DG1ieR7VQsvGy60102haPe6jb2srQyzq8USlx1Ch3DHHuAPegDqqK5G2+Imk3Hhe+18wXcVtaXJtWidFMjSAqMABiPvNjOce9WYPFx/t+x0W/0e8sry9R5Id7xOhVRk8qxOfw/GgDpaK5C08eC+1zVNItfD2qzXWmFRchXtwBuGRgtKM5FafhzxZpfihLr+z2lE1pJ5VxDKm1om9CRlT+BNAG5RRRQAUUUUAFFFFABRWV4j1yPw3oN3q81rPcw2qGSRINu4KO/zEf41dsbpb7T7a7RSqzxLKFPUBgDj9aALFFFFABRRWN4o8QxeFtAudYntLi5htwC6wFcgE4z8xHGSOmT7UAbNFZE+u+TqOkWq2U0g1EMfNVlCxYXd8wJyc+1a2RkjuOaAFooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoormde8a2mh6Tf6kbK6ubeymWCVotg+ckDGGYHAJGTjvxmgDpqKarb41cDqM4qtp+oRajDI8aujxSNFLG/VHHUccH6igC3RXP+L/Fdv4N0Y6reWV1c2qsqObfYSpJwOGYdz2q9PqzwaC+qtp9wdkRma3DR+YFAz13bc496ANKisA+LrC38HjxNfxXFlYmJZtsih32tjbwhYc5Hf61nX/jxtL0JtdvfDupR6WIxJ5okgZgp6EqJO+R0yfagDsKK5y68Wxpf2WnWWn3N7f3Vr9sEKMiBIuBksxAzk4wM/hTLDxnb6jpGrX8GnXoOlyvFcW7GMSblUM2Pn2nGf73agDpqK4m1+JNrceGY/EbaHqsWkOpf7SxgO1QSCSol3dR2BrrNN1G11fTbfULGXzbW4QSRPtK7lPscEUAWqKKKACiszXNXOi2cNwLOW68y4jg2RMqld5xu+YjgVp0AFFZmvaudD0tr0Wkt3iRE8qJlU/MwXOWIHGa0x0oAKKKiuZjb20kywvMUUt5cZG5vYbiB+ZFAEtFY/hfxDB4p8P22sW0EsMNxu2xy43DDFecZHatigAoorE8V+JYfCeiPqlxZ3FzCjKrCErldxCgncRxkjpmgDborLuNZMGuafpgs5XF5HJJ54Zdse0A4IJyc57CtPIJI7igBaKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/Z\"\n              }\n            },\n            {\n              \"id\": \"/page/6/Caption/1\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p>(a) UCSD upscale split. (b) UCSD original split.</p>\",\n              \"polygon\": [\n                [\n                  136.4150390625,\n                  309.181640625\n                ],\n                [\n                  455.760986328125,\n                  309.181640625\n                ],\n                [\n                  455.760986328125,\n                  317.689453125\n                ],\n                [\n                  136.4150390625,\n                  317.689453125\n                ]\n              ],\n              \"bbox\": [\n                136.4150390625,\n                309.181640625,\n                455.760986328125,\n                317.689453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/5/SectionHeader/3\",\n                \"2\": \"/page/5/SectionHeader/16\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/16\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/6/Caption/2\",\n          \"block_type\": \"Caption\",\n          \"html\": \"<p></p>\",\n          \"polygon\": [\n            [\n              375.626953125,\n              307.44140625\n            ],\n            [\n              451.529296875,\n              307.44140625\n            ],\n            [\n              451.529296875,\n              315.94921875\n            ],\n            [\n              375.626953125,\n              315.94921875\n            ]\n          ],\n          \"bbox\": [\n            375.626953125,\n            307.44140625,\n            451.529296875,\n            315.94921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/TableGroup/278\",\n          \"block_type\": \"TableGroup\",\n          \"html\": \"<content-ref src='/page/6/Caption/3'></content-ref><content-ref src='/page/6/Table/4'></content-ref><content-ref src='/page/6/Caption/5'></content-ref>\",\n          \"polygon\": [\n            [\n              50.11199951171875,\n              328.427001953125\n            ],\n            [\n              546.2578125,\n              328.427001953125\n            ],\n            [\n              546.2578125,\n              575.984375\n            ],\n            [\n              50.11199951171875,\n              575.984375\n            ]\n          ],\n          \"bbox\": [\n            50.11199951171875,\n            328.427001953125,\n            546.2578125,\n            575.984375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/6/Caption/3\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-6-1\\\"></span>Figure 3. UCSD crowd counting dataset. Both plots show comparisons of predicted and ground truth counts over time. While AMDCN does not beat the state of the art on the original split, the predictions still follow the true counts reasonably. The jump in the original split is due to that testing set including multiple scenes of highly varying counts.</p>\",\n              \"polygon\": [\n                [\n                  50.11199951171875,\n                  328.427001953125\n                ],\n                [\n                  546.2578125,\n                  328.427001953125\n                ],\n                [\n                  546.2578125,\n                  359.3114013671875\n                ],\n                [\n                  50.11199951171875,\n                  359.3114013671875\n                ]\n              ],\n              \"bbox\": [\n                50.11199951171875,\n                328.427001953125,\n                546.2578125,\n                359.3114013671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/5/SectionHeader/3\",\n                \"2\": \"/page/5/SectionHeader/16\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/Table/4\",\n              \"block_type\": \"Table\",\n              \"html\": \"<table><tbody><tr><th>Method</th><th>maximal</th><th>downscale</th><th>upscale</th><th>minimal</th><th>original</th></tr><tr><td>AMDCN (without perspective information)</td><td>1.63</td><td>1.43</td><td>0.63</td><td>1.71</td><td>1.74</td></tr><tr><td>AMDCN (with perspective information)</td><td>1.60</td><td>1.24</td><td>1.37</td><td>1.59</td><td>1.72</td></tr><tr><td>[18] (with perspective information)</td><td>1.65</td><td>1.79</td><td>1.11</td><td>1.50</td><td>-</td></tr><tr><td>[18] (without perspective information)</td><td>2.22</td><td>1.93</td><td>1.37</td><td>2.38</td><td>-</td></tr><tr><td>[15]</td><td>1.70</td><td>1.28</td><td>1.59</td><td>2.02</td><td>-</td></tr><tr><td>[13]</td><td>1.70</td><td>2.16</td><td>1.61</td><td>2.20</td><td>-</td></tr><tr><td>[19]</td><td>1.43</td><td>1.30</td><td>1.59</td><td>1.62</td><td>-</td></tr><tr><td>[2]</td><td>1.24</td><td>1.31</td><td>1.69</td><td>1.49</td><td>-</td></tr><tr><td>[27]</td><td>1.70</td><td>1.26</td><td>1.59</td><td>1.52</td><td>1.60</td></tr><tr><td>[28]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>1.07</td></tr><tr><td>[1,28]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>2.16</td></tr><tr><td>[7]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>2.25</td></tr><tr><td>[5]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>2.24</td></tr><tr><td>[6]</td><td>-</td><td>-</td><td>-</td><td>-</td><td>2.07</td></tr></tbody></table>\",\n              \"polygon\": [\n                [\n                  60.9609375,\n                  367.76953125\n                ],\n                [\n                  532.810546875,\n                  367.76953125\n                ],\n                [\n                  532.810546875,\n                  557.26171875\n                ],\n                [\n                  60.9609375,\n                  557.26171875\n                ]\n              ],\n              \"bbox\": [\n                60.9609375,\n                367.76953125,\n                532.810546875,\n                557.26171875\n              ],\n              \"children\": [\n                {\n                  \"id\": \"/page/6/TableCell/369\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>Method</th>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      367.76953125\n                    ],\n                    [\n                      61.9609375,\n                      367.76953125\n                    ],\n                    [\n                      61.9609375,\n                      368.76953125\n                    ],\n                    [\n                      60.9609375,\n                      368.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    367.76953125,\n                    61.9609375,\n                    368.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/370\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>maximal</th>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      367.76953125\n                    ],\n                    [\n                      62.9609375,\n                      367.76953125\n                    ],\n                    [\n                      62.9609375,\n                      368.76953125\n                    ],\n                    [\n                      61.9609375,\n                      368.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    367.76953125,\n                    62.9609375,\n                    368.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/371\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>downscale</th>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      367.76953125\n                    ],\n                    [\n                      63.9609375,\n                      367.76953125\n                    ],\n                    [\n                      63.9609375,\n                      368.76953125\n                    ],\n                    [\n                      62.9609375,\n                      368.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    367.76953125,\n                    63.9609375,\n                    368.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/372\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>upscale</th>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      367.76953125\n                    ],\n                    [\n                      64.9609375,\n                      367.76953125\n                    ],\n                    [\n                      64.9609375,\n                      368.76953125\n                    ],\n                    [\n                      63.9609375,\n                      368.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    367.76953125,\n                    64.9609375,\n                    368.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/373\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>minimal</th>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      367.76953125\n                    ],\n                    [\n                      65.9609375,\n                      367.76953125\n                    ],\n                    [\n                      65.9609375,\n                      368.76953125\n                    ],\n                    [\n                      64.9609375,\n                      368.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    367.76953125,\n                    65.9609375,\n                    368.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/374\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>original</th>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      367.76953125\n                    ],\n                    [\n                      66.9609375,\n                      367.76953125\n                    ],\n                    [\n                      66.9609375,\n                      368.76953125\n                    ],\n                    [\n                      65.9609375,\n                      368.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    367.76953125,\n                    66.9609375,\n                    368.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/375\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>AMDCN (without perspective information)</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      368.76953125\n                    ],\n                    [\n                      61.9609375,\n                      368.76953125\n                    ],\n                    [\n                      61.9609375,\n                      369.76953125\n                    ],\n                    [\n                      60.9609375,\n                      369.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    368.76953125,\n                    61.9609375,\n                    369.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/376\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.63</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      368.76953125\n                    ],\n                    [\n                      62.9609375,\n                      368.76953125\n                    ],\n                    [\n                      62.9609375,\n                      369.76953125\n                    ],\n                    [\n                      61.9609375,\n                      369.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    368.76953125,\n                    62.9609375,\n                    369.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/377\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.43</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      368.76953125\n                    ],\n                    [\n                      63.9609375,\n                      368.76953125\n                    ],\n                    [\n                      63.9609375,\n                      369.76953125\n                    ],\n                    [\n                      62.9609375,\n                      369.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    368.76953125,\n                    63.9609375,\n                    369.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/378\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>0.63</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      368.76953125\n                    ],\n                    [\n                      64.9609375,\n                      368.76953125\n                    ],\n                    [\n                      64.9609375,\n                      369.76953125\n                    ],\n                    [\n                      63.9609375,\n                      369.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    368.76953125,\n                    64.9609375,\n                    369.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/379\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.71</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      368.76953125\n                    ],\n                    [\n                      65.9609375,\n                      368.76953125\n                    ],\n                    [\n                      65.9609375,\n                      369.76953125\n                    ],\n                    [\n                      64.9609375,\n                      369.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    368.76953125,\n                    65.9609375,\n                    369.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/380\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.74</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      368.76953125\n                    ],\n                    [\n                      66.9609375,\n                      368.76953125\n                    ],\n                    [\n                      66.9609375,\n                      369.76953125\n                    ],\n                    [\n                      65.9609375,\n                      369.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    368.76953125,\n                    66.9609375,\n                    369.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/381\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>AMDCN (with perspective information)</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      369.76953125\n                    ],\n                    [\n                      61.9609375,\n                      369.76953125\n                    ],\n                    [\n                      61.9609375,\n                      370.76953125\n                    ],\n                    [\n                      60.9609375,\n                      370.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    369.76953125,\n                    61.9609375,\n                    370.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/382\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.60</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      369.76953125\n                    ],\n                    [\n                      62.9609375,\n                      369.76953125\n                    ],\n                    [\n                      62.9609375,\n                      370.76953125\n                    ],\n                    [\n                      61.9609375,\n                      370.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    369.76953125,\n                    62.9609375,\n                    370.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/383\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.24</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      369.76953125\n                    ],\n                    [\n                      63.9609375,\n                      369.76953125\n                    ],\n                    [\n                      63.9609375,\n                      370.76953125\n                    ],\n                    [\n                      62.9609375,\n                      370.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    369.76953125,\n                    63.9609375,\n                    370.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/384\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.37</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      369.76953125\n                    ],\n                    [\n                      64.9609375,\n                      369.76953125\n                    ],\n                    [\n                      64.9609375,\n                      370.76953125\n                    ],\n                    [\n                      63.9609375,\n                      370.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    369.76953125,\n                    64.9609375,\n                    370.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/385\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.59</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      369.76953125\n                    ],\n                    [\n                      65.9609375,\n                      369.76953125\n                    ],\n                    [\n                      65.9609375,\n                      370.76953125\n                    ],\n                    [\n                      64.9609375,\n                      370.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    369.76953125,\n                    65.9609375,\n                    370.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/386\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.72</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      369.76953125\n                    ],\n                    [\n                      66.9609375,\n                      369.76953125\n                    ],\n                    [\n                      66.9609375,\n                      370.76953125\n                    ],\n                    [\n                      65.9609375,\n                      370.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    369.76953125,\n                    66.9609375,\n                    370.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/387\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[18] (with perspective information)</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      370.76953125\n                    ],\n                    [\n                      61.9609375,\n                      370.76953125\n                    ],\n                    [\n                      61.9609375,\n                      371.76953125\n                    ],\n                    [\n                      60.9609375,\n                      371.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    370.76953125,\n                    61.9609375,\n                    371.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/388\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.65</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      370.76953125\n                    ],\n                    [\n                      62.9609375,\n                      370.76953125\n                    ],\n                    [\n                      62.9609375,\n                      371.76953125\n                    ],\n                    [\n                      61.9609375,\n                      371.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    370.76953125,\n                    62.9609375,\n                    371.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/389\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.79</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      370.76953125\n                    ],\n                    [\n                      63.9609375,\n                      370.76953125\n                    ],\n                    [\n                      63.9609375,\n                      371.76953125\n                    ],\n                    [\n                      62.9609375,\n                      371.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    370.76953125,\n                    63.9609375,\n                    371.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/390\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.11</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      370.76953125\n                    ],\n                    [\n                      64.9609375,\n                      370.76953125\n                    ],\n                    [\n                      64.9609375,\n                      371.76953125\n                    ],\n                    [\n                      63.9609375,\n                      371.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    370.76953125,\n                    64.9609375,\n                    371.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/391\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.50</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      370.76953125\n                    ],\n                    [\n                      65.9609375,\n                      370.76953125\n                    ],\n                    [\n                      65.9609375,\n                      371.76953125\n                    ],\n                    [\n                      64.9609375,\n                      371.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    370.76953125,\n                    65.9609375,\n                    371.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/392\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      370.76953125\n                    ],\n                    [\n                      66.9609375,\n                      370.76953125\n                    ],\n                    [\n                      66.9609375,\n                      371.76953125\n                    ],\n                    [\n                      65.9609375,\n                      371.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    370.76953125,\n                    66.9609375,\n                    371.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/393\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[18] (without perspective information)</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      371.76953125\n                    ],\n                    [\n                      61.9609375,\n                      371.76953125\n                    ],\n                    [\n                      61.9609375,\n                      372.76953125\n                    ],\n                    [\n                      60.9609375,\n                      372.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    371.76953125,\n                    61.9609375,\n                    372.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/394\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>2.22</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      371.76953125\n                    ],\n                    [\n                      62.9609375,\n                      371.76953125\n                    ],\n                    [\n                      62.9609375,\n                      372.76953125\n                    ],\n                    [\n                      61.9609375,\n                      372.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    371.76953125,\n                    62.9609375,\n                    372.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/395\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.93</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      371.76953125\n                    ],\n                    [\n                      63.9609375,\n                      371.76953125\n                    ],\n                    [\n                      63.9609375,\n                      372.76953125\n                    ],\n                    [\n                      62.9609375,\n                      372.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    371.76953125,\n                    63.9609375,\n                    372.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/396\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.37</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      371.76953125\n                    ],\n                    [\n                      64.9609375,\n                      371.76953125\n                    ],\n                    [\n                      64.9609375,\n                      372.76953125\n                    ],\n                    [\n                      63.9609375,\n                      372.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    371.76953125,\n                    64.9609375,\n                    372.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/397\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>2.38</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      371.76953125\n                    ],\n                    [\n                      65.9609375,\n                      371.76953125\n                    ],\n                    [\n                      65.9609375,\n                      372.76953125\n                    ],\n                    [\n                      64.9609375,\n                      372.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    371.76953125,\n                    65.9609375,\n                    372.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/398\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      371.76953125\n                    ],\n                    [\n                      66.9609375,\n                      371.76953125\n                    ],\n                    [\n                      66.9609375,\n                      372.76953125\n                    ],\n                    [\n                      65.9609375,\n                      372.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    371.76953125,\n                    66.9609375,\n                    372.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/399\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[15]</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      372.76953125\n                    ],\n                    [\n                      61.9609375,\n                      372.76953125\n                    ],\n                    [\n                      61.9609375,\n                      373.76953125\n                    ],\n                    [\n                      60.9609375,\n                      373.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    372.76953125,\n                    61.9609375,\n                    373.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/400\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.70</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      372.76953125\n                    ],\n                    [\n                      62.9609375,\n                      372.76953125\n                    ],\n                    [\n                      62.9609375,\n                      373.76953125\n                    ],\n                    [\n                      61.9609375,\n                      373.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    372.76953125,\n                    62.9609375,\n                    373.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/401\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.28</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      372.76953125\n                    ],\n                    [\n                      63.9609375,\n                      372.76953125\n                    ],\n                    [\n                      63.9609375,\n                      373.76953125\n                    ],\n                    [\n                      62.9609375,\n                      373.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    372.76953125,\n                    63.9609375,\n                    373.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/402\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.59</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      372.76953125\n                    ],\n                    [\n                      64.9609375,\n                      372.76953125\n                    ],\n                    [\n                      64.9609375,\n                      373.76953125\n                    ],\n                    [\n                      63.9609375,\n                      373.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    372.76953125,\n                    64.9609375,\n                    373.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/403\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>2.02</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      372.76953125\n                    ],\n                    [\n                      65.9609375,\n                      372.76953125\n                    ],\n                    [\n                      65.9609375,\n                      373.76953125\n                    ],\n                    [\n                      64.9609375,\n                      373.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    372.76953125,\n                    65.9609375,\n                    373.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/404\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      372.76953125\n                    ],\n                    [\n                      66.9609375,\n                      372.76953125\n                    ],\n                    [\n                      66.9609375,\n                      373.76953125\n                    ],\n                    [\n                      65.9609375,\n                      373.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    372.76953125,\n                    66.9609375,\n                    373.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/405\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[13]</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      373.76953125\n                    ],\n                    [\n                      61.9609375,\n                      373.76953125\n                    ],\n                    [\n                      61.9609375,\n                      374.76953125\n                    ],\n                    [\n                      60.9609375,\n                      374.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    373.76953125,\n                    61.9609375,\n                    374.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/406\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.70</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      373.76953125\n                    ],\n                    [\n                      62.9609375,\n                      373.76953125\n                    ],\n                    [\n                      62.9609375,\n                      374.76953125\n                    ],\n                    [\n                      61.9609375,\n                      374.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    373.76953125,\n                    62.9609375,\n                    374.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/407\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>2.16</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      373.76953125\n                    ],\n                    [\n                      63.9609375,\n                      373.76953125\n                    ],\n                    [\n                      63.9609375,\n                      374.76953125\n                    ],\n                    [\n                      62.9609375,\n                      374.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    373.76953125,\n                    63.9609375,\n                    374.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/408\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.61</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      373.76953125\n                    ],\n                    [\n                      64.9609375,\n                      373.76953125\n                    ],\n                    [\n                      64.9609375,\n                      374.76953125\n                    ],\n                    [\n                      63.9609375,\n                      374.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    373.76953125,\n                    64.9609375,\n                    374.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/409\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>2.20</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      373.76953125\n                    ],\n                    [\n                      65.9609375,\n                      373.76953125\n                    ],\n                    [\n                      65.9609375,\n                      374.76953125\n                    ],\n                    [\n                      64.9609375,\n                      374.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    373.76953125,\n                    65.9609375,\n                    374.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/410\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      373.76953125\n                    ],\n                    [\n                      66.9609375,\n                      373.76953125\n                    ],\n                    [\n                      66.9609375,\n                      374.76953125\n                    ],\n                    [\n                      65.9609375,\n                      374.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    373.76953125,\n                    66.9609375,\n                    374.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/411\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[19]</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      374.76953125\n                    ],\n                    [\n                      61.9609375,\n                      374.76953125\n                    ],\n                    [\n                      61.9609375,\n                      375.76953125\n                    ],\n                    [\n                      60.9609375,\n                      375.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    374.76953125,\n                    61.9609375,\n                    375.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/412\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.43</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      374.76953125\n                    ],\n                    [\n                      62.9609375,\n                      374.76953125\n                    ],\n                    [\n                      62.9609375,\n                      375.76953125\n                    ],\n                    [\n                      61.9609375,\n                      375.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    374.76953125,\n                    62.9609375,\n                    375.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/413\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.30</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      374.76953125\n                    ],\n                    [\n                      63.9609375,\n                      374.76953125\n                    ],\n                    [\n                      63.9609375,\n                      375.76953125\n                    ],\n                    [\n                      62.9609375,\n                      375.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    374.76953125,\n                    63.9609375,\n                    375.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/414\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.59</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      374.76953125\n                    ],\n                    [\n                      64.9609375,\n                      374.76953125\n                    ],\n                    [\n                      64.9609375,\n                      375.76953125\n                    ],\n                    [\n                      63.9609375,\n                      375.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    374.76953125,\n                    64.9609375,\n                    375.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/415\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.62</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      374.76953125\n                    ],\n                    [\n                      65.9609375,\n                      374.76953125\n                    ],\n                    [\n                      65.9609375,\n                      375.76953125\n                    ],\n                    [\n                      64.9609375,\n                      375.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    374.76953125,\n                    65.9609375,\n                    375.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/416\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      374.76953125\n                    ],\n                    [\n                      66.9609375,\n                      374.76953125\n                    ],\n                    [\n                      66.9609375,\n                      375.76953125\n                    ],\n                    [\n                      65.9609375,\n                      375.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    374.76953125,\n                    66.9609375,\n                    375.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/417\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[2]</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      375.76953125\n                    ],\n                    [\n                      61.9609375,\n                      375.76953125\n                    ],\n                    [\n                      61.9609375,\n                      376.76953125\n                    ],\n                    [\n                      60.9609375,\n                      376.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    375.76953125,\n                    61.9609375,\n                    376.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/418\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.24</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      375.76953125\n                    ],\n                    [\n                      62.9609375,\n                      375.76953125\n                    ],\n                    [\n                      62.9609375,\n                      376.76953125\n                    ],\n                    [\n                      61.9609375,\n                      376.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    375.76953125,\n                    62.9609375,\n                    376.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/419\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.31</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      375.76953125\n                    ],\n                    [\n                      63.9609375,\n                      375.76953125\n                    ],\n                    [\n                      63.9609375,\n                      376.76953125\n                    ],\n                    [\n                      62.9609375,\n                      376.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    375.76953125,\n                    63.9609375,\n                    376.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/420\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.69</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      375.76953125\n                    ],\n                    [\n                      64.9609375,\n                      375.76953125\n                    ],\n                    [\n                      64.9609375,\n                      376.76953125\n                    ],\n                    [\n                      63.9609375,\n                      376.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    375.76953125,\n                    64.9609375,\n                    376.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/421\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.49</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      375.76953125\n                    ],\n                    [\n                      65.9609375,\n                      375.76953125\n                    ],\n                    [\n                      65.9609375,\n                      376.76953125\n                    ],\n                    [\n                      64.9609375,\n                      376.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    375.76953125,\n                    65.9609375,\n                    376.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/422\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      375.76953125\n                    ],\n                    [\n                      66.9609375,\n                      375.76953125\n                    ],\n                    [\n                      66.9609375,\n                      376.76953125\n                    ],\n                    [\n                      65.9609375,\n                      376.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    375.76953125,\n                    66.9609375,\n                    376.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/423\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[27]</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      376.76953125\n                    ],\n                    [\n                      61.9609375,\n                      376.76953125\n                    ],\n                    [\n                      61.9609375,\n                      377.76953125\n                    ],\n                    [\n                      60.9609375,\n                      377.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    376.76953125,\n                    61.9609375,\n                    377.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/424\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.70</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      376.76953125\n                    ],\n                    [\n                      62.9609375,\n                      376.76953125\n                    ],\n                    [\n                      62.9609375,\n                      377.76953125\n                    ],\n                    [\n                      61.9609375,\n                      377.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    376.76953125,\n                    62.9609375,\n                    377.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/425\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.26</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      376.76953125\n                    ],\n                    [\n                      63.9609375,\n                      376.76953125\n                    ],\n                    [\n                      63.9609375,\n                      377.76953125\n                    ],\n                    [\n                      62.9609375,\n                      377.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    376.76953125,\n                    63.9609375,\n                    377.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/426\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.59</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      376.76953125\n                    ],\n                    [\n                      64.9609375,\n                      376.76953125\n                    ],\n                    [\n                      64.9609375,\n                      377.76953125\n                    ],\n                    [\n                      63.9609375,\n                      377.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    376.76953125,\n                    64.9609375,\n                    377.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/427\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.52</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      376.76953125\n                    ],\n                    [\n                      65.9609375,\n                      376.76953125\n                    ],\n                    [\n                      65.9609375,\n                      377.76953125\n                    ],\n                    [\n                      64.9609375,\n                      377.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    376.76953125,\n                    65.9609375,\n                    377.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/428\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.60</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      376.76953125\n                    ],\n                    [\n                      66.9609375,\n                      376.76953125\n                    ],\n                    [\n                      66.9609375,\n                      377.76953125\n                    ],\n                    [\n                      65.9609375,\n                      377.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    376.76953125,\n                    66.9609375,\n                    377.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/429\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[28]</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      377.76953125\n                    ],\n                    [\n                      61.9609375,\n                      377.76953125\n                    ],\n                    [\n                      61.9609375,\n                      378.76953125\n                    ],\n                    [\n                      60.9609375,\n                      378.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    377.76953125,\n                    61.9609375,\n                    378.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/430\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      377.76953125\n                    ],\n                    [\n                      62.9609375,\n                      377.76953125\n                    ],\n                    [\n                      62.9609375,\n                      378.76953125\n                    ],\n                    [\n                      61.9609375,\n                      378.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    377.76953125,\n                    62.9609375,\n                    378.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/431\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      377.76953125\n                    ],\n                    [\n                      63.9609375,\n                      377.76953125\n                    ],\n                    [\n                      63.9609375,\n                      378.76953125\n                    ],\n                    [\n                      62.9609375,\n                      378.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    377.76953125,\n                    63.9609375,\n                    378.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/432\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      377.76953125\n                    ],\n                    [\n                      64.9609375,\n                      377.76953125\n                    ],\n                    [\n                      64.9609375,\n                      378.76953125\n                    ],\n                    [\n                      63.9609375,\n                      378.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    377.76953125,\n                    64.9609375,\n                    378.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/433\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      377.76953125\n                    ],\n                    [\n                      65.9609375,\n                      377.76953125\n                    ],\n                    [\n                      65.9609375,\n                      378.76953125\n                    ],\n                    [\n                      64.9609375,\n                      378.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    377.76953125,\n                    65.9609375,\n                    378.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/434\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.07</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      377.76953125\n                    ],\n                    [\n                      66.9609375,\n                      377.76953125\n                    ],\n                    [\n                      66.9609375,\n                      378.76953125\n                    ],\n                    [\n                      65.9609375,\n                      378.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    377.76953125,\n                    66.9609375,\n                    378.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/435\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[1,28]</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      378.76953125\n                    ],\n                    [\n                      61.9609375,\n                      378.76953125\n                    ],\n                    [\n                      61.9609375,\n                      379.76953125\n                    ],\n                    [\n                      60.9609375,\n                      379.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    378.76953125,\n                    61.9609375,\n                    379.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/436\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      378.76953125\n                    ],\n                    [\n                      62.9609375,\n                      378.76953125\n                    ],\n                    [\n                      62.9609375,\n                      379.76953125\n                    ],\n                    [\n                      61.9609375,\n                      379.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    378.76953125,\n                    62.9609375,\n                    379.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/437\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      378.76953125\n                    ],\n                    [\n                      63.9609375,\n                      378.76953125\n                    ],\n                    [\n                      63.9609375,\n                      379.76953125\n                    ],\n                    [\n                      62.9609375,\n                      379.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    378.76953125,\n                    63.9609375,\n                    379.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/438\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      378.76953125\n                    ],\n                    [\n                      64.9609375,\n                      378.76953125\n                    ],\n                    [\n                      64.9609375,\n                      379.76953125\n                    ],\n                    [\n                      63.9609375,\n                      379.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    378.76953125,\n                    64.9609375,\n                    379.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/439\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      378.76953125\n                    ],\n                    [\n                      65.9609375,\n                      378.76953125\n                    ],\n                    [\n                      65.9609375,\n                      379.76953125\n                    ],\n                    [\n                      64.9609375,\n                      379.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    378.76953125,\n                    65.9609375,\n                    379.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/440\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>2.16</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      378.76953125\n                    ],\n                    [\n                      66.9609375,\n                      378.76953125\n                    ],\n                    [\n                      66.9609375,\n                      379.76953125\n                    ],\n                    [\n                      65.9609375,\n                      379.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    378.76953125,\n                    66.9609375,\n                    379.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/441\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[7]</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      379.76953125\n                    ],\n                    [\n                      61.9609375,\n                      379.76953125\n                    ],\n                    [\n                      61.9609375,\n                      380.76953125\n                    ],\n                    [\n                      60.9609375,\n                      380.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    379.76953125,\n                    61.9609375,\n                    380.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/442\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      379.76953125\n                    ],\n                    [\n                      62.9609375,\n                      379.76953125\n                    ],\n                    [\n                      62.9609375,\n                      380.76953125\n                    ],\n                    [\n                      61.9609375,\n                      380.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    379.76953125,\n                    62.9609375,\n                    380.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/443\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      379.76953125\n                    ],\n                    [\n                      63.9609375,\n                      379.76953125\n                    ],\n                    [\n                      63.9609375,\n                      380.76953125\n                    ],\n                    [\n                      62.9609375,\n                      380.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    379.76953125,\n                    63.9609375,\n                    380.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/444\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      379.76953125\n                    ],\n                    [\n                      64.9609375,\n                      379.76953125\n                    ],\n                    [\n                      64.9609375,\n                      380.76953125\n                    ],\n                    [\n                      63.9609375,\n                      380.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    379.76953125,\n                    64.9609375,\n                    380.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/445\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      379.76953125\n                    ],\n                    [\n                      65.9609375,\n                      379.76953125\n                    ],\n                    [\n                      65.9609375,\n                      380.76953125\n                    ],\n                    [\n                      64.9609375,\n                      380.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    379.76953125,\n                    65.9609375,\n                    380.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/446\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>2.25</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      379.76953125\n                    ],\n                    [\n                      66.9609375,\n                      379.76953125\n                    ],\n                    [\n                      66.9609375,\n                      380.76953125\n                    ],\n                    [\n                      65.9609375,\n                      380.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    379.76953125,\n                    66.9609375,\n                    380.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/447\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[5]</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      380.76953125\n                    ],\n                    [\n                      61.9609375,\n                      380.76953125\n                    ],\n                    [\n                      61.9609375,\n                      381.76953125\n                    ],\n                    [\n                      60.9609375,\n                      381.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    380.76953125,\n                    61.9609375,\n                    381.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/448\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      380.76953125\n                    ],\n                    [\n                      62.9609375,\n                      380.76953125\n                    ],\n                    [\n                      62.9609375,\n                      381.76953125\n                    ],\n                    [\n                      61.9609375,\n                      381.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    380.76953125,\n                    62.9609375,\n                    381.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/449\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      380.76953125\n                    ],\n                    [\n                      63.9609375,\n                      380.76953125\n                    ],\n                    [\n                      63.9609375,\n                      381.76953125\n                    ],\n                    [\n                      62.9609375,\n                      381.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    380.76953125,\n                    63.9609375,\n                    381.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/450\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      380.76953125\n                    ],\n                    [\n                      64.9609375,\n                      380.76953125\n                    ],\n                    [\n                      64.9609375,\n                      381.76953125\n                    ],\n                    [\n                      63.9609375,\n                      381.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    380.76953125,\n                    64.9609375,\n                    381.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/451\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      380.76953125\n                    ],\n                    [\n                      65.9609375,\n                      380.76953125\n                    ],\n                    [\n                      65.9609375,\n                      381.76953125\n                    ],\n                    [\n                      64.9609375,\n                      381.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    380.76953125,\n                    65.9609375,\n                    381.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/452\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>2.24</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      380.76953125\n                    ],\n                    [\n                      66.9609375,\n                      380.76953125\n                    ],\n                    [\n                      66.9609375,\n                      381.76953125\n                    ],\n                    [\n                      65.9609375,\n                      381.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    380.76953125,\n                    66.9609375,\n                    381.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/453\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[6]</td>\",\n                  \"polygon\": [\n                    [\n                      60.9609375,\n                      381.76953125\n                    ],\n                    [\n                      61.9609375,\n                      381.76953125\n                    ],\n                    [\n                      61.9609375,\n                      382.76953125\n                    ],\n                    [\n                      60.9609375,\n                      382.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    60.9609375,\n                    381.76953125,\n                    61.9609375,\n                    382.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/454\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      61.9609375,\n                      381.76953125\n                    ],\n                    [\n                      62.9609375,\n                      381.76953125\n                    ],\n                    [\n                      62.9609375,\n                      382.76953125\n                    ],\n                    [\n                      61.9609375,\n                      382.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    61.9609375,\n                    381.76953125,\n                    62.9609375,\n                    382.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/455\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      62.9609375,\n                      381.76953125\n                    ],\n                    [\n                      63.9609375,\n                      381.76953125\n                    ],\n                    [\n                      63.9609375,\n                      382.76953125\n                    ],\n                    [\n                      62.9609375,\n                      382.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    62.9609375,\n                    381.76953125,\n                    63.9609375,\n                    382.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/456\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      63.9609375,\n                      381.76953125\n                    ],\n                    [\n                      64.9609375,\n                      381.76953125\n                    ],\n                    [\n                      64.9609375,\n                      382.76953125\n                    ],\n                    [\n                      63.9609375,\n                      382.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    63.9609375,\n                    381.76953125,\n                    64.9609375,\n                    382.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/457\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-</td>\",\n                  \"polygon\": [\n                    [\n                      64.9609375,\n                      381.76953125\n                    ],\n                    [\n                      65.9609375,\n                      381.76953125\n                    ],\n                    [\n                      65.9609375,\n                      382.76953125\n                    ],\n                    [\n                      64.9609375,\n                      382.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    64.9609375,\n                    381.76953125,\n                    65.9609375,\n                    382.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/6/TableCell/458\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>2.07</td>\",\n                  \"polygon\": [\n                    [\n                      65.9609375,\n                      381.76953125\n                    ],\n                    [\n                      66.9609375,\n                      381.76953125\n                    ],\n                    [\n                      66.9609375,\n                      382.76953125\n                    ],\n                    [\n                      65.9609375,\n                      382.76953125\n                    ]\n                  ],\n                  \"bbox\": [\n                    65.9609375,\n                    381.76953125,\n                    66.9609375,\n                    382.76953125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/5/SectionHeader/3\",\n                    \"2\": \"/page/5/SectionHeader/16\"\n                  },\n                  \"images\": {}\n                }\n              ],\n              \"section_hierarchy\": {\n                \"1\": \"/page/5/SectionHeader/3\",\n                \"2\": \"/page/5/SectionHeader/16\"\n              },\n              \"images\": null\n            },\n            {\n              \"id\": \"/page/6/Caption/5\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-6-0\\\"></span>Table 3. Mean absolute error of various methods on UCSD crowds</p>\",\n              \"polygon\": [\n                [\n                  177.205078125,\n                  566.9296875\n                ],\n                [\n                  417.1847839355469,\n                  566.9296875\n                ],\n                [\n                  417.1847839355469,\n                  575.984375\n                ],\n                [\n                  177.205078125,\n                  575.984375\n                ]\n              ],\n              \"bbox\": [\n                177.205078125,\n                566.9296875,\n                417.1847839355469,\n                575.984375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/5/SectionHeader/3\",\n                \"2\": \"/page/5/SectionHeader/16\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/5/SectionHeader/3\",\n            \"2\": \"/page/5/SectionHeader/16\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/6/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>5. Conclusion</h1>\",\n          \"polygon\": [\n            [\n              48.5595703125,\n              594.6561584472656\n            ],\n            [\n              119.20110321044922,\n              594.6561584472656\n            ],\n            [\n              119.20110321044922,\n              607.1484375\n            ],\n            [\n              48.5595703125,\n              607.1484375\n            ]\n          ],\n          \"bbox\": [\n            48.5595703125,\n            594.6561584472656,\n            119.20110321044922,\n            607.1484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/6/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2>5.1. Summary</h2>\",\n          \"polygon\": [\n            [\n              49.194580078125,\n              619.6148376464844\n            ],\n            [\n              115.55853271484375,\n              619.6148376464844\n            ],\n            [\n              115.55853271484375,\n              630.73828125\n            ],\n            [\n              49.194580078125,\n              630.73828125\n            ]\n          ],\n          \"bbox\": [\n            49.194580078125,\n            619.6148376464844,\n            115.55853271484375,\n            630.73828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/6/SectionHeader/6\",\n            \"2\": \"/page/6/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">We have proposed the use of aggregated multicolumn dilated convolutions, the AMDCN, as an alternative to the HydraCNN <a href=\\\"#page-8-4\\\">[18]</a> or multicolumn CNN <a href=\\\"#page-9-0\\\">[28]</a> for the vision task of counting objects in images. Inspired by the multicolumn approach to multiscale problems, we also employ dilations to increase the receptive field of our columns. We</p>\",\n          \"polygon\": [\n            [\n              49.53076171875,\n              643.11328125\n            ],\n            [\n              286.3651123046875,\n              643.11328125\n            ],\n            [\n              286.3651123046875,\n              713.49609375\n            ],\n            [\n              49.53076171875,\n              713.49609375\n            ]\n          ],\n          \"bbox\": [\n            49.53076171875,\n            643.11328125,\n            286.3651123046875,\n            713.49609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/6/SectionHeader/6\",\n            \"2\": \"/page/6/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">then aggregate this multiscale information using another series of dilated convolutions to enable a wide network and detect features at more scales. This method takes advantage of the ability of dilated convolutions to provide exponentially increasing receptive fields. We have performed experiments on the challenging UCF crowd counting dataset, the TRANCOS traffic dataset, multiple splits of the UCSD crowd counting dataset, and the WorldExpo crowd counting dataset.</p>\",\n          \"polygon\": [\n            [\n              308.689453125,\n              596.2764739990234\n            ],\n            [\n              545.958984375,\n              596.2764739990234\n            ],\n            [\n              545.958984375,\n              701.89453125\n            ],\n            [\n              308.689453125,\n              701.89453125\n            ]\n          ],\n          \"bbox\": [\n            308.689453125,\n            596.2764739990234,\n            545.958984375,\n            701.89453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/6/SectionHeader/6\",\n            \"2\": \"/page/6/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/6/SectionHeader/6\",\n        \"2\": \"/page/6/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/7/Page/267\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/7/FigureGroup/228'></content-ref><content-ref src='/page/7/TableGroup/229'></content-ref><content-ref src='/page/7/Text/4'></content-ref><content-ref src='/page/7/SectionHeader/5'></content-ref><content-ref src='/page/7/Text/6'></content-ref><content-ref src='/page/7/Text/7'></content-ref><content-ref src='/page/7/Text/8'></content-ref><content-ref src='/page/7/SectionHeader/9'></content-ref><content-ref src='/page/7/Text/10'></content-ref><content-ref src='/page/7/SectionHeader/11'></content-ref><content-ref src='/page/7/ListGroup/230'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/7/FigureGroup/228\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/7/Figure/0'></content-ref><content-ref src='/page/7/Caption/1'></content-ref>\",\n          \"polygon\": [\n            [\n              48.111328125,\n              89.18701171875\n            ],\n            [\n              545.110595703125,\n              89.18701171875\n            ],\n            [\n              545.110595703125,\n              284.431640625\n            ],\n            [\n              48.111328125,\n              284.431640625\n            ]\n          ],\n          \"bbox\": [\n            48.111328125,\n            89.18701171875,\n            545.110595703125,\n            284.431640625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/7/Figure/0\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  61.259765625,\n                  89.18701171875\n                ],\n                [\n                  527.431640625,\n                  89.18701171875\n                ],\n                [\n                  527.431640625,\n                  257.16796875\n                ],\n                [\n                  61.259765625,\n                  257.16796875\n                ]\n              ],\n              \"bbox\": [\n                61.259765625,\n                89.18701171875,\n                527.431640625,\n                257.16796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/6/SectionHeader/6\",\n                \"2\": \"/page/6/SectionHeader/7\"\n              },\n              \"images\": {\n                \"/page/7/Figure/0\": \"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igAoorC8Rwz3M+i28Ut1HDLf7bg28jITH5EpwWUggbgv4474oA25Y0mieKRdyOpVge4PWqOm6HpmkEmwtEgyoQhScYHQcmuTstQvdLukW9l1A2qpqFvEXEkhZluAIgTyS2wHaTyRnk1RSHV7rSGuZbvVluorXTfK2zyLhm2iUlc4YnJzuBxQB6LJcQxTQwySqskxIjUnlyBk4/Dmpa86vbcW+uJBfTamNNtdUkEcommZkja0Rv8AWAl9u9mGc+3Sqdzc635MAu7i9itfssps5GedJHbzpAhbyxlpPKEJCv1yeCc0Aeo0VzHh22vpdY1K81G4vGljMMccbSOsQzbxFyI87eX3euDn3rKllu31Z0M+pDVjqoQQq8oh+x7wCdo+Tb5WTu67++eKAOzstQtNRWVrO4SZYpDE7IcgMOoz3qzXHaXa32m/DW4TTluRfiGdold2dw+WxtDk89CB0z9apSz2wlgWzvNcbRjOn26Z5ZiF/dyYAc/vF+YJvwcDK9MtQB2tybO5ZtNufKkM8TM0DjO+PgNx3HzAfjSWOnWmmxulpCIw7bnOSWY4xkk8ngAc9hXnkjartkuof7QZIrS7FrMwczGEXEJXJPzE7Q2M8kDvWlcXd1rGtsttcagNOkv7dN8RkiDR+TIX2nghSwAJHf3oA7uivOvI1SzsEnhudVeZpdSgO+eV8Rp5wh4Jxn5Ew3U56nNSXkF/ZQSxRX2ppHNYW00ssjzTYk835+jbkBXhthGByBxQB6DRWB4Qnmn0Z/OSYbJ3RHkmeUSLwdyM4DFeSBuyeDyRg1v0AFFFFABUVvbw2kCwwRrHEucKvQZOT+pqWigAooooAKKKKACiiigCrfabaalGiXcIkCNvQ5IZTgjII5HBI47Gpre3htbeO3t4kihjUKiIMBQOgAqSigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigDA8Wa5Jo1hbR2u37dqF1HZ2u4ZCu5+8R3CgE/hUs+q2ehTWGklrm7vroOYYgwaSXaMuxLEAfiR1wKxfiDayeZ4b1UAmDTdWiluP9mNsoWPsCwpfFWqX9p4q0a2+w3zaTNHKZ7qxtmlkEnG2PKglFPcjH1ABoA1odQg8VaA13pNxLDMjusbEFWimQkFXHQjIwRyCPzqTwtryeJfDlpqip5byArLHn7kikqy/gQa5r4aNJpugaxBf2d5ZG31G5mb7VEyjYzFgQx4bjuCau/DCwnsfBEDXCMjXc812qMMFVkcsv6EH8aAMa9Mvh74xWKXF7fPpOuWzxxRSXchjhuF67QWwMj9TxVbwPqYsPiZ4m0C4v725hJ8+wkurmSQBAcSIu4kYVuM+xrb+KmgXmteE1uNKRjq2m3Ed5abBltynkD8D+lYXizwLqQ07wtPpEjDVLSX7LdzoOWjnyJnP/AiT+NAG9oOoWul251Caa+uLjW7uRrC0M7ysYh90IrthRtG4k4A3dela0fjTSjFqZuFura40td93ayQkyxrjIbCbtykd1JFYniPS7rSfF3hbXLO1mn0zTopbO4igjLtCjqArhRyQMDO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xtEkgi3nAIPHIxyB61uUUAQ2kUsFpFFNKssiKFLomwHHtk4/OpqKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqra2EFnNPJAGRZ23vGD8u7uwHYnv69euatUUAFVbOwgsfNMQJkmffLK5y0jepP04A6AdKtUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVVjsIIr+W8iDJJKoEoU/LIR0JHqBxn0+gq1RQAhGVIBIyOo7VXsbC30+AxW6kBmLuzHLOx6sx7k1ZooAKKKKACiiigAooooAKKKKACiiigArl38J30GuX2o6X4ju7KO/cSXFu0Ecy7woXKlhleAOORXUUUAVbCxSwgZBJJNI7b5ZpSC8jdMnAA6ADAAHFWqKKACiiigAooooA5xPDM6eOZfEo1BCZLUWhtvs/AjDbvvbvvZ74x7V0dFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAH//2Q==\"\n              }\n            },\n            {\n              \"id\": \"/page/7/Caption/1\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-7-2\\\"></span>Figure 4. Ablation studies on various datasets in which the number of columns is varied and the aggregator is included or not included. The results generally support the use of more columns and an aggregator module.</p>\",\n              \"polygon\": [\n                [\n                  48.111328125,\n                  263.935546875\n                ],\n                [\n                  545.110595703125,\n                  263.935546875\n                ],\n                [\n                  545.110595703125,\n                  284.431640625\n                ],\n                [\n                  48.111328125,\n                  284.431640625\n                ]\n              ],\n              \"bbox\": [\n                48.111328125,\n                263.935546875,\n                545.110595703125,\n                284.431640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/6/SectionHeader/6\",\n                \"2\": \"/page/6/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/6/SectionHeader/6\",\n            \"2\": \"/page/6/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/7/TableGroup/229\",\n          \"block_type\": \"TableGroup\",\n          \"html\": \"<content-ref src='/page/7/Table/2'></content-ref><content-ref src='/page/7/Caption/3'></content-ref>\",\n          \"polygon\": [\n            [\n              48.93310546875,\n              301.833984375\n            ],\n            [\n              286.3586730957031,\n              301.833984375\n            ],\n            [\n              286.3586730957031,\n              456.2474060058594\n            ],\n            [\n              48.93310546875,\n              456.2474060058594\n            ]\n          ],\n          \"bbox\": [\n            48.93310546875,\n            301.833984375,\n            286.3586730957031,\n            456.2474060058594\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/7/Table/2\",\n              \"block_type\": \"Table\",\n              \"html\": \"<table><tbody><tr><th>Method</th><th>MAE</th></tr><tr><td>AMDCN (without perspective information)</td><td>16.6</td></tr><tr><td>AMDCN (with perspective information)</td><td>14.9</td></tr><tr><td>LBP+RR [28] (with perspective information)</td><td>31.0</td></tr><tr><td>MCNN [28] (with perspective information)</td><td>11.6</td></tr><tr><td>[27] (with perspective information)</td><td>12.9</td></tr></tbody></table>\",\n              \"polygon\": [\n                [\n                  66.4892578125,\n                  301.833984375\n                ],\n                [\n                  270.2900390625,\n                  301.833984375\n                ],\n                [\n                  270.2900390625,\n                  426.9375\n                ],\n                [\n                  66.4892578125,\n                  426.9375\n                ]\n              ],\n              \"bbox\": [\n                66.4892578125,\n                301.833984375,\n                270.2900390625,\n                426.9375\n              ],\n              \"children\": [\n                {\n                  \"id\": \"/page/7/TableCell/251\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>Method</th>\",\n                  \"polygon\": [\n                    [\n                      66.4892578125,\n                      301.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      301.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      302.833984375\n                    ],\n                    [\n                      66.4892578125,\n                      302.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    66.4892578125,\n                    301.833984375,\n                    67.4892578125,\n                    302.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/7/TableCell/252\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>MAE</th>\",\n                  \"polygon\": [\n                    [\n                      67.4892578125,\n                      301.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      301.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      302.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      302.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    67.4892578125,\n                    301.833984375,\n                    68.4892578125,\n                    302.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/7/TableCell/253\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>AMDCN (without perspective information)</td>\",\n                  \"polygon\": [\n                    [\n                      66.4892578125,\n                      302.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      302.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      303.833984375\n                    ],\n                    [\n                      66.4892578125,\n                      303.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    66.4892578125,\n                    302.833984375,\n                    67.4892578125,\n                    303.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/7/TableCell/254\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>16.6</td>\",\n                  \"polygon\": [\n                    [\n                      67.4892578125,\n                      302.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      302.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      303.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      303.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    67.4892578125,\n                    302.833984375,\n                    68.4892578125,\n                    303.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/7/TableCell/255\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>AMDCN (with perspective information)</td>\",\n                  \"polygon\": [\n                    [\n                      66.4892578125,\n                      303.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      303.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      304.833984375\n                    ],\n                    [\n                      66.4892578125,\n                      304.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    66.4892578125,\n                    303.833984375,\n                    67.4892578125,\n                    304.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/7/TableCell/256\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>14.9</td>\",\n                  \"polygon\": [\n                    [\n                      67.4892578125,\n                      303.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      303.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      304.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      304.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    67.4892578125,\n                    303.833984375,\n                    68.4892578125,\n                    304.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/7/TableCell/257\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>LBP+RR [28] (with perspective information)</td>\",\n                  \"polygon\": [\n                    [\n                      66.4892578125,\n                      304.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      304.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      305.833984375\n                    ],\n                    [\n                      66.4892578125,\n                      305.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    66.4892578125,\n                    304.833984375,\n                    67.4892578125,\n                    305.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/7/TableCell/258\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>31.0</td>\",\n                  \"polygon\": [\n                    [\n                      67.4892578125,\n                      304.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      304.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      305.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      305.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    67.4892578125,\n                    304.833984375,\n                    68.4892578125,\n                    305.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/7/TableCell/259\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>MCNN [28] (with perspective information)</td>\",\n                  \"polygon\": [\n                    [\n                      66.4892578125,\n                      305.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      305.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      306.833984375\n                    ],\n                    [\n                      66.4892578125,\n                      306.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    66.4892578125,\n                    305.833984375,\n                    67.4892578125,\n                    306.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/7/TableCell/260\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>11.6</td>\",\n                  \"polygon\": [\n                    [\n                      67.4892578125,\n                      305.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      305.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      306.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      306.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    67.4892578125,\n                    305.833984375,\n                    68.4892578125,\n                    306.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/7/TableCell/261\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[27] (with perspective information)</td>\",\n                  \"polygon\": [\n                    [\n                      66.4892578125,\n                      306.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      306.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      307.833984375\n                    ],\n                    [\n                      66.4892578125,\n                      307.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    66.4892578125,\n                    306.833984375,\n                    67.4892578125,\n                    307.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/7/TableCell/262\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>12.9</td>\",\n                  \"polygon\": [\n                    [\n                      67.4892578125,\n                      306.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      306.833984375\n                    ],\n                    [\n                      68.4892578125,\n                      307.833984375\n                    ],\n                    [\n                      67.4892578125,\n                      307.833984375\n                    ]\n                  ],\n                  \"bbox\": [\n                    67.4892578125,\n                    306.833984375,\n                    68.4892578125,\n                    307.833984375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/6/SectionHeader/6\",\n                    \"2\": \"/page/6/SectionHeader/7\"\n                  },\n                  \"images\": {}\n                }\n              ],\n              \"section_hierarchy\": {\n                \"1\": \"/page/6/SectionHeader/6\",\n                \"2\": \"/page/6/SectionHeader/7\"\n              },\n              \"images\": null\n            },\n            {\n              \"id\": \"/page/7/Caption/3\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-7-1\\\"></span>Table 4. Mean absolute error of various methods on WorldExpo crowds</p>\",\n              \"polygon\": [\n                [\n                  48.93310546875,\n                  436.322998046875\n                ],\n                [\n                  286.3586730957031,\n                  436.322998046875\n                ],\n                [\n                  286.3586730957031,\n                  456.2474060058594\n                ],\n                [\n                  48.93310546875,\n                  456.2474060058594\n                ]\n              ],\n              \"bbox\": [\n                48.93310546875,\n                436.322998046875,\n                286.3586730957031,\n                456.2474060058594\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/6/SectionHeader/6\",\n                \"2\": \"/page/6/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/6/SectionHeader/6\",\n            \"2\": \"/page/6/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/7/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We obtain superior or comparable results in most of these datasets. The AMDCN is capable of outperforming these approaches completely especially when perspective information is not provided, as in UCF and TRANCOS. These results show that the AMDCN performs surprisingly well and is also robust to scale effects. Further, our ablation study of removing the aggregator network shows that using more columns and an aggregator provides the best accuracy for counting — especially so when there is no perspective information.</p>\",\n          \"polygon\": [\n            [\n              49.53076171875,\n              479.53125\n            ],\n            [\n              286.3651123046875,\n              479.53125\n            ],\n            [\n              286.3651123046875,\n              597.3380432128906\n            ],\n            [\n              49.53076171875,\n              597.3380432128906\n            ]\n          ],\n          \"bbox\": [\n            49.53076171875,\n            479.53125,\n            286.3651123046875,\n            597.3380432128906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/6/SectionHeader/6\",\n            \"2\": \"/page/6/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2>5.2. Future Work</h2>\",\n          \"polygon\": [\n            [\n              49.306640625,\n              611.3048095703125\n            ],\n            [\n              130.67086791992188,\n              611.3048095703125\n            ],\n            [\n              130.67086791992188,\n              622.2637023925781\n            ],\n            [\n              49.306640625,\n              622.2637023925781\n            ]\n          ],\n          \"bbox\": [\n            49.306640625,\n            611.3048095703125,\n            130.67086791992188,\n            622.2637023925781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/6/SectionHeader/6\",\n            \"2\": \"/page/7/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">In addition to an analysis of performance on counting, a density regressor can also be used to locate objects in the image. As mentioned previously, if the regressor is accurate and precise enough, the resulting density map can be used to locate the objects in the image. We expect that in order to do this, one must regress each object to a single point rather than a region specified by a Gaussian. Perhaps this might be</p>\",\n          \"polygon\": [\n            [\n              49.38134765625,\n              631.7134399414062\n            ],\n            [\n              286.576171875,\n              631.7134399414062\n            ],\n            [\n              286.576171875,\n              713.4070510864258\n            ],\n            [\n              49.38134765625,\n              713.4070510864258\n            ]\n          ],\n          \"bbox\": [\n            49.38134765625,\n            631.7134399414062,\n            286.576171875,\n            713.4070510864258\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/6/SectionHeader/6\",\n            \"2\": \"/page/7/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">accomplished by applying non-maxima suppression to the final layer activations.</p>\",\n          \"polygon\": [\n            [\n              307.1953125,\n              306.11444091796875\n            ],\n            [\n              545.1151123046875,\n              306.11444091796875\n            ],\n            [\n              545.1151123046875,\n              328.130859375\n            ],\n            [\n              307.1953125,\n              328.130859375\n            ]\n          ],\n          \"bbox\": [\n            307.1953125,\n            306.11444091796875,\n            545.1151123046875,\n            328.130859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/6/SectionHeader/6\",\n            \"2\": \"/page/7/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Indeed, the method of applying dilated filters to a multicolumn convolutional network in order to enable extracting features of a large number of scales can be applied to various other dense prediction tasks, such as object segmentation at multiple scales or single image depth map prediction. Though we have only conducted experiments on counting and used 5 columns, the architecture presented can be extended and adapted to a variety of tasks that require information at multiple scales.</p>\",\n          \"polygon\": [\n            [\n              307.79296875,\n              330.0254211425781\n            ],\n            [\n              545.1151733398438,\n              330.0254211425781\n            ],\n            [\n              545.1151733398438,\n              435.6289367675781\n            ],\n            [\n              307.79296875,\n              435.6289367675781\n            ]\n          ],\n          \"bbox\": [\n            307.79296875,\n            330.0254211425781,\n            545.1151733398438,\n            435.6289367675781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/6/SectionHeader/6\",\n            \"2\": \"/page/7/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>Acknowledgment</h1>\",\n          \"polygon\": [\n            [\n              308.86199951171875,\n              446.23602294921875\n            ],\n            [\n              398.0390625,\n              446.23602294921875\n            ],\n            [\n              398.0390625,\n              458.19122314453125\n            ],\n            [\n              308.86199951171875,\n              458.19122314453125\n            ]\n          ],\n          \"bbox\": [\n            308.86199951171875,\n            446.23602294921875,\n            398.0390625,\n            458.19122314453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/7/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This material is based upon work supported by the National Science Foundation under Grant No. 1359275 and 1659788. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of the National Science Foundation. Furthermore, we acknowledge Kyle Yee and Sridhama Prakhya for their helpful conversations and insights during the research process.</p>\",\n          \"polygon\": [\n            [\n              308.091796875,\n              466.3828125\n            ],\n            [\n              545.1151733398438,\n              466.3828125\n            ],\n            [\n              545.1151733398438,\n              560.7421875\n            ],\n            [\n              308.091796875,\n              560.7421875\n            ]\n          ],\n          \"bbox\": [\n            308.091796875,\n            466.3828125,\n            545.1151733398438,\n            560.7421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/7/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>References</h1>\",\n          \"polygon\": [\n            [\n              308.86199951171875,\n              571.0409851074219\n            ],\n            [\n              365.16796875,\n              571.0409851074219\n            ],\n            [\n              365.16796875,\n              583.171875\n            ],\n            [\n              308.86199951171875,\n              583.171875\n            ]\n          ],\n          \"bbox\": [\n            308.86199951171875,\n            571.0409851074219,\n            365.16796875,\n            583.171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/7/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/ListGroup/230\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/7/ListItem/12'></content-ref><content-ref src='/page/7/ListItem/13'></content-ref><content-ref src='/page/7/ListItem/14'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              313.171875,\n              591.5903015136719\n            ],\n            [\n              545.1151123046875,\n              591.5903015136719\n            ],\n            [\n              545.1151123046875,\n              713.8828125\n            ],\n            [\n              313.171875,\n              713.8828125\n            ]\n          ],\n          \"bbox\": [\n            313.171875,\n            591.5903015136719,\n            545.1151123046875,\n            713.8828125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/7/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-7-4\\\"></span>[1] S. An, W. Liu, and S. Venkatesh. Face recognition using kernel ridge regression. In <i>Computer Vision and</i> <i>Pattern Recognition, 2007. CVPR'07. IEEE Confer</i><i>ence on</i>, pages 1–7. IEEE, 2007.</li>\",\n              \"polygon\": [\n                [\n                  313.171875,\n                  591.5903015136719\n                ],\n                [\n                  545.1150512695312,\n                  591.5903015136719\n                ],\n                [\n                  545.1150512695312,\n                  637.4188995361328\n                ],\n                [\n                  313.171875,\n                  637.4188995361328\n                ]\n              ],\n              \"bbox\": [\n                313.171875,\n                591.5903015136719,\n                545.1150512695312,\n                637.4188995361328\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-7-3\\\"></span>[2] C. Arteta, V. Lempitsky, J. A. Noble, and A. Zisserman. Interactive object counting. In <i>European Con</i><i>ference on Computer Vision</i>, pages 504–518. Springer, 2014.</li>\",\n              \"polygon\": [\n                [\n                  313.470703125,\n                  641.5402984619141\n                ],\n                [\n                  545.11474609375,\n                  641.5402984619141\n                ],\n                [\n                  545.11474609375,\n                  687.97265625\n                ],\n                [\n                  313.470703125,\n                  687.97265625\n                ]\n              ],\n              \"bbox\": [\n                313.470703125,\n                641.5402984619141,\n                545.11474609375,\n                687.97265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-7-0\\\"></span>[3] D. Babu Sam, S. Surya, and R. Venkatesh Babu. Switching convolutional neural network for crowd</li>\",\n              \"polygon\": [\n                [\n                  313.171875,\n                  691.4893035888672\n                ],\n                [\n                  545.1151123046875,\n                  691.4893035888672\n                ],\n                [\n                  545.1151123046875,\n                  713.8828125\n                ],\n                [\n                  313.171875,\n                  713.8828125\n                ]\n              ],\n              \"bbox\": [\n                313.171875,\n                691.4893035888672,\n                545.1151123046875,\n                713.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/7/SectionHeader/11\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/7/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/8/Page/463\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/8/Text/0'></content-ref><content-ref src='/page/8/ListGroup/438'></content-ref><content-ref src='/page/8/ListGroup/439'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/8/Text/0\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">counting. In <i>Proceedings of the IEEE Conference</i> <i>on Computer Vision and Pattern Recognition</i>, pages 5744–5752, 2017.</p>\",\n          \"polygon\": [\n            [\n              70.14990234375,\n              74.23095703125\n            ],\n            [\n              286.3601989746094,\n              74.23095703125\n            ],\n            [\n              286.3601989746094,\n              108.280029296875\n            ],\n            [\n              70.14990234375,\n              108.280029296875\n            ]\n          ],\n          \"bbox\": [\n            70.14990234375,\n            74.23095703125,\n            286.3601989746094,\n            108.280029296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/7/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/8/ListGroup/438\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/8/ListItem/1'></content-ref><content-ref src='/page/8/ListItem/2'></content-ref><content-ref src='/page/8/ListItem/3'></content-ref><content-ref src='/page/8/ListItem/4'></content-ref><content-ref src='/page/8/ListItem/5'></content-ref><content-ref src='/page/8/ListItem/6'></content-ref><content-ref src='/page/8/ListItem/7'></content-ref><content-ref src='/page/8/ListItem/8'></content-ref><content-ref src='/page/8/ListItem/9'></content-ref><content-ref src='/page/8/ListItem/10'></content-ref><content-ref src='/page/8/ListItem/11'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              49.08251953125,\n              113.116455078125\n            ],\n            [\n              286.576171875,\n              113.116455078125\n            ],\n            [\n              286.576171875,\n              714.26953125\n            ],\n            [\n              49.08251953125,\n              714.26953125\n            ]\n          ],\n          \"bbox\": [\n            49.08251953125,\n            113.116455078125,\n            286.576171875,\n            714.26953125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/8/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-16\\\"></span>[4] L. Boominathan, S. S. Kruthiventi, and R. V. Babu. Crowdnet: A deep convolutional network for dense crowd counting. In <i>Proceedings of the 2016 ACM on</i> <i>Multimedia Conference</i>, pages 640–644. ACM, 2016.</li>\",\n              \"polygon\": [\n                [\n                  54.16259765625,\n                  113.116455078125\n                ],\n                [\n                  286.3651123046875,\n                  113.116455078125\n                ],\n                [\n                  286.3651123046875,\n                  158.944091796875\n                ],\n                [\n                  54.16259765625,\n                  158.944091796875\n                ]\n              ],\n              \"bbox\": [\n                54.16259765625,\n                113.116455078125,\n                286.3651123046875,\n                158.944091796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-17\\\"></span>[5] A. B. Chan, Z.-S. J. Liang, and N. Vasconcelos. Privacy preserving crowd monitoring: Counting people without people models or tracking. In <i>Computer</i> <i>Vision and Pattern Recognition, 2008. CVPR 2008.</i> <i>IEEE Conference on</i>, pages 1–7. IEEE, 2008.</li>\",\n              \"polygon\": [\n                [\n                  54.685546875,\n                  163.775390625\n                ],\n                [\n                  286.576171875,\n                  163.775390625\n                ],\n                [\n                  286.576171875,\n                  221.783203125\n                ],\n                [\n                  54.685546875,\n                  221.783203125\n                ]\n              ],\n              \"bbox\": [\n                54.685546875,\n                163.775390625,\n                286.576171875,\n                221.783203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-23\\\"></span>[6] K. Chen, S. Gong, T. Xiang, and C. Change Loy. Cumulative attribute space for age and crowd density estimation. In <i>Proceedings of the IEEE conference on</i> <i>computer vision and pattern recognition</i>, pages 2467– 2474, 2013.</li>\",\n              \"polygon\": [\n                [\n                  54.685546875,\n                  226.3995361328125\n                ],\n                [\n                  286.36639404296875,\n                  226.3995361328125\n                ],\n                [\n                  286.36639404296875,\n                  284.18316650390625\n                ],\n                [\n                  54.685546875,\n                  284.18316650390625\n                ]\n              ],\n              \"bbox\": [\n                54.685546875,\n                226.3995361328125,\n                286.36639404296875,\n                284.18316650390625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-22\\\"></span>[7] K. Chen, C. C. Loy, S. Gong, and T. Xiang. Feature mining for localised crowd counting.</li>\",\n              \"polygon\": [\n                [\n                  54.46142578125,\n                  289.0195617675781\n                ],\n                [\n                  286.3647766113281,\n                  289.0195617675781\n                ],\n                [\n                  286.3647766113281,\n                  310.9371643066406\n                ],\n                [\n                  54.46142578125,\n                  310.9371643066406\n                ]\n              ],\n              \"bbox\": [\n                54.46142578125,\n                289.0195617675781,\n                286.3647766113281,\n                310.9371643066406\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-13\\\"></span>[8] L.-C. Chen, G. Papandreou, I. Kokkinos, K. Murphy, and A. L. Yuille. Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected crfs. <i>IEEE Transactions on Pat</i><i>tern Analysis and Machine Intelligence</i>, 2017.</li>\",\n              \"polygon\": [\n                [\n                  54.087890625,\n                  315.7735595703125\n                ],\n                [\n                  286.36614990234375,\n                  315.7735595703125\n                ],\n                [\n                  286.36614990234375,\n                  373.5561218261719\n                ],\n                [\n                  54.087890625,\n                  373.5561218261719\n                ]\n              ],\n              \"bbox\": [\n                54.087890625,\n                315.7735595703125,\n                286.36614990234375,\n                373.5561218261719\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-10\\\"></span>[9] L.-C. Chen, Y. Yang, J. Wang, W. Xu, and A. L. Yuille. Attention to scale: Scale-aware semantic image segmentation. In <i>Proceedings of the IEEE Conference</i> <i>on Computer Vision and Pattern Recognition</i>, pages 3640–3649, 2016.</li>\",\n              \"polygon\": [\n                [\n                  52.96728515625,\n                  378.39251708984375\n                ],\n                [\n                  286.36627197265625,\n                  378.39251708984375\n                ],\n                [\n                  286.36627197265625,\n                  436.17608642578125\n                ],\n                [\n                  52.96728515625,\n                  436.17608642578125\n                ]\n              ],\n              \"bbox\": [\n                52.96728515625,\n                378.39251708984375,\n                286.36627197265625,\n                436.17608642578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-18\\\"></span>[10] F. Chollet et al. Keras. <a href=\\\"https://github.com/fchollet/keras\\\">https://github.com/</a> <a href=\\\"https://github.com/fchollet/keras\\\">fchollet/keras</a>, 2015.</li>\",\n              \"polygon\": [\n                [\n                  49.7548828125,\n                  440.5014343261719\n                ],\n                [\n                  286.3616638183594,\n                  440.5014343261719\n                ],\n                [\n                  286.3616638183594,\n                  462.9300842285156\n                ],\n                [\n                  49.7548828125,\n                  462.9300842285156\n                ]\n              ],\n              \"bbox\": [\n                49.7548828125,\n                440.5014343261719,\n                286.3616638183594,\n                462.9300842285156\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-8\\\"></span>[11] A. Dosovitskiy, P. Fischer, E. Ilg, P. Hausser, C. Hazirbas, V. Golkov, P. van der Smagt, D. Cremers, and T. Brox. Flownet: Learning optical flow with convolutional networks. In <i>Proceedings of the IEEE Interna</i><i>tional Conference on Computer Vision</i>, pages 2758– 2766, 2015.</li>\",\n              \"polygon\": [\n                [\n                  49.306640625,\n                  467.7654724121094\n                ],\n                [\n                  286.3651123046875,\n                  467.7654724121094\n                ],\n                [\n                  286.3651123046875,\n                  537.5040283203125\n                ],\n                [\n                  49.306640625,\n                  537.5040283203125\n                ]\n              ],\n              \"bbox\": [\n                49.306640625,\n                467.7654724121094,\n                286.3651123046875,\n                537.5040283203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-11\\\"></span>[12] C. Farabet, C. Couprie, L. Najman, and Y. Le-Cun. Learning hierarchical features for scene labeling. <i>IEEE transactions on pattern analysis and ma</i><i>chine intelligence</i>, 35(8):1915–1929, 2013.</li>\",\n              \"polygon\": [\n                [\n                  49.08251953125,\n                  542.3404235839844\n                ],\n                [\n                  286.3651428222656,\n                  542.3404235839844\n                ],\n                [\n                  286.3651428222656,\n                  588.19921875\n                ],\n                [\n                  49.08251953125,\n                  588.19921875\n                ]\n              ],\n              \"bbox\": [\n                49.08251953125,\n                542.3404235839844,\n                286.3651428222656,\n                588.19921875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-20\\\"></span>[13] L. Fiaschi, U. Kothe, R. Nair, and F. A. Hamprecht. ¨ Learning to count with regression forest and structured labels. In <i>Pattern Recognition (ICPR), 2012 21st In</i><i>ternational Conference on</i>, pages 2685–2688. IEEE, 2012.</li>\",\n              \"polygon\": [\n                [\n                  49.306640625,\n                  592.9544219970703\n                ],\n                [\n                  286.3651123046875,\n                  592.9544219970703\n                ],\n                [\n                  286.3651123046875,\n                  650.84765625\n                ],\n                [\n                  49.306640625,\n                  650.84765625\n                ]\n              ],\n              \"bbox\": [\n                49.306640625,\n                592.9544219970703,\n                286.3651123046875,\n                650.84765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-1\\\"></span>[14] R. Guerrero-Gomez-Olmedo, B. Torre-Jim ´ enez, S. M. ´ Lopez-Sastre, Roberto Basc ´ on, and D. O ´ noro Rubio. ˜ Extremely overlapping vehicle counting. In <i>Iberian</i> <i>Conference on Pattern Recognition and Image Analy</i><i>sis (IbPRIA)</i>, 2015.</li>\",\n              \"polygon\": [\n                [\n                  49.23193359375,\n                  655.5744323730469\n                ],\n                [\n                  286.3657531738281,\n                  655.5744323730469\n                ],\n                [\n                  286.3657531738281,\n                  714.26953125\n                ],\n                [\n                  49.23193359375,\n                  714.26953125\n                ]\n              ],\n              \"bbox\": [\n                49.23193359375,\n                655.5744323730469,\n                286.3657531738281,\n                714.26953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/7/SectionHeader/11\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/8/ListGroup/439\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/8/ListItem/12'></content-ref><content-ref src='/page/8/ListItem/13'></content-ref><content-ref src='/page/8/ListItem/14'></content-ref><content-ref src='/page/8/ListItem/15'></content-ref><content-ref src='/page/8/ListItem/16'></content-ref><content-ref src='/page/8/ListItem/17'></content-ref><content-ref src='/page/8/ListItem/18'></content-ref><content-ref src='/page/8/ListItem/19'></content-ref><content-ref src='/page/8/ListItem/20'></content-ref><content-ref src='/page/8/ListItem/21'></content-ref><content-ref src='/page/8/ListItem/22'></content-ref><content-ref src='/page/8/ListItem/23'></content-ref><content-ref src='/page/8/ListItem/24'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              308.091796875,\n              74.4073486328125\n            ],\n            [\n              545.958984375,\n              74.4073486328125\n            ],\n            [\n              545.958984375,\n              713.49609375\n            ],\n            [\n              308.091796875,\n              713.49609375\n            ]\n          ],\n          \"bbox\": [\n            308.091796875,\n            74.4073486328125,\n            545.958984375,\n            713.49609375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/8/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-3\\\"></span>[15] V. Lempitsky and A. Zisserman. Learning to count objects in images. In <i>Advances in Neural Information</i> <i>Processing Systems</i>, pages 1324–1332, 2010.</li>\",\n              \"polygon\": [\n                [\n                  308.390625,\n                  74.4073486328125\n                ],\n                [\n                  545.1150512695312,\n                  74.4073486328125\n                ],\n                [\n                  545.1150512695312,\n                  108.27996826171875\n                ],\n                [\n                  308.390625,\n                  108.27996826171875\n                ]\n              ],\n              \"bbox\": [\n                308.390625,\n                74.4073486328125,\n                545.1150512695312,\n                108.27996826171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-12\\\"></span>[16] G. Lin, C. Shen, A. van den Hengel, and I. Reid. Efficient piecewise training of deep structured models for semantic segmentation. In <i>Proceedings of the IEEE</i> <i>Conference on Computer Vision and Pattern Recogni</i><i>tion</i>, pages 3194–3203, 2016.</li>\",\n              \"polygon\": [\n                [\n                  308.689453125,\n                  113.8753662109375\n                ],\n                [\n                  545.1151733398438,\n                  113.8753662109375\n                ],\n                [\n                  545.1151733398438,\n                  171.65899658203125\n                ],\n                [\n                  308.689453125,\n                  171.65899658203125\n                ]\n              ],\n              \"bbox\": [\n                308.689453125,\n                113.8753662109375,\n                545.1151733398438,\n                171.65899658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-9\\\"></span>[17] H. Noh, S. Hong, and B. Han. Learning deconvolution network for semantic segmentation. In <i>Proceedings of</i> <i>the IEEE International Conference on Computer Vi</i><i>sion</i>, pages 1520–1528, 2015.</li>\",\n              \"polygon\": [\n                [\n                  308.390625,\n                  177.25439453125\n                ],\n                [\n                  545.1151123046875,\n                  177.25439453125\n                ],\n                [\n                  545.1151123046875,\n                  223.08203125\n                ],\n                [\n                  308.390625,\n                  223.08203125\n                ]\n              ],\n              \"bbox\": [\n                308.390625,\n                177.25439453125,\n                545.1151123046875,\n                223.08203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-4\\\"></span>[18] D. Onoro-Rubio and R. J. Lopez-Sastre. Towards ´ perspective-free object counting with deep learning. In <i>European Conference on Computer Vision</i>, pages 615–629. Springer, 2016.</li>\",\n              \"polygon\": [\n                [\n                  308.8620300292969,\n                  228.62841796875\n                ],\n                [\n                  545.1151123046875,\n                  228.62841796875\n                ],\n                [\n                  545.1151123046875,\n                  274.50604248046875\n                ],\n                [\n                  308.8620300292969,\n                  274.50604248046875\n                ]\n              ],\n              \"bbox\": [\n                308.8620300292969,\n                228.62841796875,\n                545.1151123046875,\n                274.50604248046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-21\\\"></span>[19] V.-Q. Pham, T. Kozakaya, O. Yamaguchi, and R. Okada. Count forest: Co-voting uncertain number of targets using random forest for crowd density estimation. In <i>Proceedings of the IEEE International</i> <i>Conference on Computer Vision</i>, pages 3253–3261, 2015.</li>\",\n              \"polygon\": [\n                [\n                  308.091796875,\n                  280.1014709472656\n                ],\n                [\n                  545.361328125,\n                  280.1014709472656\n                ],\n                [\n                  545.361328125,\n                  349.84002685546875\n                ],\n                [\n                  308.091796875,\n                  349.84002685546875\n                ]\n              ],\n              \"bbox\": [\n                308.091796875,\n                280.1014709472656,\n                545.361328125,\n                349.84002685546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-0\\\"></span>[20] D. Ryan, S. Denman, C. Fookes, and S. Sridharan. Crowd counting using multiple local features. In <i>Dig</i><i>ital Image Computing: Techniques and Applications,</i> <i>2009. DICTA'09.</i>, pages 81–88. IEEE, 2009.</li>\",\n              \"polygon\": [\n                [\n                  308.86199951171875,\n                  355.4354248046875\n                ],\n                [\n                  545.1151123046875,\n                  355.4354248046875\n                ],\n                [\n                  545.1151123046875,\n                  401.80078125\n                ],\n                [\n                  308.86199951171875,\n                  401.80078125\n                ]\n              ],\n              \"bbox\": [\n                308.86199951171875,\n                355.4354248046875,\n                545.1151123046875,\n                401.80078125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-14\\\"></span>[21] S. Segu´ı, O. Pujol, and J. Vitria. Learning to count with deep object features. In <i>Proceedings of the IEEE</i> <i>Conference on Computer Vision and Pattern Recogni</i><i>tion Workshops</i>, pages 90–96, 2015.</li>\",\n              \"polygon\": [\n                [\n                  308.8620300292969,\n                  406.80938720703125\n                ],\n                [\n                  545.1151123046875,\n                  406.80938720703125\n                ],\n                [\n                  545.1151123046875,\n                  452.6869812011719\n                ],\n                [\n                  308.8620300292969,\n                  452.6869812011719\n                ]\n              ],\n              \"bbox\": [\n                308.8620300292969,\n                406.80938720703125,\n                545.1151123046875,\n                452.6869812011719\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/19\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-2\\\"></span>[22] J. Selinummi, O. Yli-Harja, and J. A. Puhakka. Software for quantification of labeled bacteria from digital microscope images by automated image analysis. <i>Biotechniques</i>, 39(6):859, 2005.</li>\",\n              \"polygon\": [\n                [\n                  308.8620300292969,\n                  458.2823791503906\n                ],\n                [\n                  545.1151733398438,\n                  458.2823791503906\n                ],\n                [\n                  545.1151733398438,\n                  504.1099548339844\n                ],\n                [\n                  308.8620300292969,\n                  504.1099548339844\n                ]\n              ],\n              \"bbox\": [\n                308.8620300292969,\n                458.2823791503906,\n                545.1151733398438,\n                504.1099548339844\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-19\\\"></span>[23] V. A. Sindagi and V. M. Patel. Generating high-quality crowd density maps using contextual pyramid cnns. In <i>Proceedings of the IEEE Conference on Computer</i> <i>Vision and Pattern Recognition</i>, pages 1861–1870, 2017.</li>\",\n              \"polygon\": [\n                [\n                  308.8620300292969,\n                  509.7053527832031\n                ],\n                [\n                  545.1151733398438,\n                  509.7053527832031\n                ],\n                [\n                  545.1151733398438,\n                  567.703125\n                ],\n                [\n                  308.8620300292969,\n                  567.703125\n                ]\n              ],\n              \"bbox\": [\n                308.8620300292969,\n                509.7053527832031,\n                545.1151733398438,\n                567.703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/21\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-15\\\"></span>[24] E. Walach and L. Wolf. Learning to count with cnn boosting. In <i>European Conference on Computer Vi</i><i>sion</i>, pages 660–676. Springer, 2016.</li>\",\n              \"polygon\": [\n                [\n                  308.8620300292969,\n                  573.0843658447266\n                ],\n                [\n                  545.361328125,\n                  573.0843658447266\n                ],\n                [\n                  545.361328125,\n                  606.9579620361328\n                ],\n                [\n                  308.8620300292969,\n                  606.9579620361328\n                ]\n              ],\n              \"bbox\": [\n                308.8620300292969,\n                573.0843658447266,\n                545.361328125,\n                606.9579620361328\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/22\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-5\\\"></span>[25] F. Yu and V. Koltun. Multi-scale context aggregation by dilated convolutions. <i>arXiv preprint</i> <i>arXiv:1511.07122</i>, 2015.</li>\",\n              \"polygon\": [\n                [\n                  308.8620300292969,\n                  612.5533599853516\n                ],\n                [\n                  545.361328125,\n                  612.5533599853516\n                ],\n                [\n                  545.361328125,\n                  646.59375\n                ],\n                [\n                  308.8620300292969,\n                  646.59375\n                ]\n              ],\n              \"bbox\": [\n                308.8620300292969,\n                612.5533599853516,\n                545.361328125,\n                646.59375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/23\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-6\\\"></span>[26] F. Yu, V. Koltun, and T. Funkhouser. Dilated residual networks. <i>arXiv preprint arXiv:1705.09914</i>, 2017.</li>\",\n              \"polygon\": [\n                [\n                  308.390625,\n                  652.0078125\n                ],\n                [\n                  545.1151733398438,\n                  652.0078125\n                ],\n                [\n                  545.1151733398438,\n                  673.93896484375\n                ],\n                [\n                  308.390625,\n                  673.93896484375\n                ]\n              ],\n              \"bbox\": [\n                308.390625,\n                652.0078125,\n                545.1151733398438,\n                673.93896484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/24\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-7\\\"></span>[27] C. Zhang, H. Li, X. Wang, and X. Yang. Crossscene crowd counting via deep convolutional neural networks. In <i>Proceedings of the IEEE Conference on</i></li>\",\n              \"polygon\": [\n                [\n                  308.8620910644531,\n                  679.5343627929688\n                ],\n                [\n                  545.958984375,\n                  679.5343627929688\n                ],\n                [\n                  545.958984375,\n                  713.49609375\n                ],\n                [\n                  308.8620910644531,\n                  713.49609375\n                ]\n              ],\n              \"bbox\": [\n                308.8620910644531,\n                679.5343627929688,\n                545.958984375,\n                713.49609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/7/SectionHeader/11\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/7/SectionHeader/11\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/7/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/9/Page/26\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/9/Text/0'></content-ref><content-ref src='/page/9/ListItem/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/9/Text/0\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Computer Vision and Pattern Recognition</i>, pages 833– 841, 2015.</p>\",\n          \"polygon\": [\n            [\n              71.12109375,\n              74.23095703125\n            ],\n            [\n              287.771484375,\n              74.23095703125\n            ],\n            [\n              287.771484375,\n              96.32501220703125\n            ],\n            [\n              71.12109375,\n              96.32501220703125\n            ]\n          ],\n          \"bbox\": [\n            71.12109375,\n            74.23095703125,\n            287.771484375,\n            96.32501220703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/7/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/9/ListItem/1\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-9-0\\\"></span>[28] Y. Zhang, D. Zhou, S. Chen, S. Gao, and Y. Ma. Single-image crowd counting via multi-column convolutional neural network. In <i>Proceedings of the IEEE</i> <i>Conference on Computer Vision and Pattern Recogni</i><i>tion</i>, pages 589–597, 2016.</li>\",\n          \"polygon\": [\n            [\n              48.48486328125,\n              101.306396484375\n            ],\n            [\n              286.576171875,\n              101.306396484375\n            ],\n            [\n              286.576171875,\n              159.08905029296875\n            ],\n            [\n              48.48486328125,\n              159.08905029296875\n            ]\n          ],\n          \"bbox\": [\n            48.48486328125,\n            101.306396484375,\n            286.576171875,\n            159.08905029296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/7/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/7/SectionHeader/11\"\n      },\n      \"images\": null\n    }\n  ],\n  \"block_type\": \"Document\"\n}"
  },
  {
    "path": "data/examples/json/switch_trans.json",
    "content": "{\n  \"children\": [\n    {\n      \"id\": \"/page/0/Page/164\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/0/PageHeader/0'></content-ref><content-ref src='/page/0/PageHeader/1'></content-ref><content-ref src='/page/0/PageHeader/18'></content-ref><content-ref src='/page/0/SectionHeader/2'></content-ref><content-ref src='/page/0/SectionHeader/3'></content-ref><content-ref src='/page/0/Text/4'></content-ref><content-ref src='/page/0/SectionHeader/5'></content-ref><content-ref src='/page/0/Text/6'></content-ref><content-ref src='/page/0/SectionHeader/7'></content-ref><content-ref src='/page/0/Text/8'></content-ref><content-ref src='/page/0/Text/9'></content-ref><content-ref src='/page/0/SectionHeader/10'></content-ref><content-ref src='/page/0/Text/11'></content-ref><content-ref src='/page/0/Text/12'></content-ref><content-ref src='/page/0/Text/16'></content-ref><content-ref src='/page/0/PageFooter/17'></content-ref><content-ref src='/page/0/Footnote/13'></content-ref><content-ref src='/page/0/Footnote/14'></content-ref><content-ref src='/page/0/Footnote/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/0/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              90.0,\n              41.72613525390625\n            ],\n            [\n              521.8120727539062,\n              41.72613525390625\n            ],\n            [\n              521.8120727539062,\n              49.83837890625\n            ],\n            [\n              90.0,\n              49.83837890625\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            41.72613525390625,\n            521.8120727539062,\n            49.83837890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {},\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/PageHeader/1\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              348.43359375,\n              42.369873046875\n            ],\n            [\n              521.15625,\n              42.369873046875\n            ],\n            [\n              521.15625,\n              49.74169921875\n            ],\n            [\n              348.43359375,\n              49.74169921875\n            ]\n          ],\n          \"bbox\": [\n            348.43359375,\n            42.369873046875,\n            521.15625,\n            49.74169921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {},\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              17.5001220703125,\n              215.3199462890625\n            ],\n            [\n              35.959999084472656,\n              215.3199462890625\n            ],\n            [\n              35.959999084472656,\n              559.2799987792969\n            ],\n            [\n              17.5001220703125,\n              559.2799987792969\n            ]\n          ],\n          \"bbox\": [\n            17.5001220703125,\n            215.3199462890625,\n            35.959999084472656,\n            559.2799987792969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {},\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>Switch Transformers: Scaling to Trillion Parameter Models with Simple and Efficient Sparsity</h1>\",\n          \"polygon\": [\n            [\n              93.0849609375,\n              101.5679931640625\n            ],\n            [\n              515.77734375,\n              101.5679931640625\n            ],\n            [\n              515.77734375,\n              133.84625244140625\n            ],\n            [\n              93.0849609375,\n              133.84625244140625\n            ]\n          ],\n          \"bbox\": [\n            93.0849609375,\n            101.5679931640625,\n            515.77734375,\n            133.84625244140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3>William Fedus∗</h3>\",\n          \"polygon\": [\n            [\n              89.12548828125,\n              151.53192138671875\n            ],\n            [\n              174.515625,\n              151.53192138671875\n            ],\n            [\n              174.515625,\n              164.20635986328125\n            ],\n            [\n              89.12548828125,\n              164.20635986328125\n            ]\n          ],\n          \"bbox\": [\n            89.12548828125,\n            151.53192138671875,\n            174.515625,\n            164.20635986328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">liamfedus@google.com</p>\",\n          \"polygon\": [\n            [\n              89.72314453125,\n              163.81549072265625\n            ],\n            [\n              207.087890625,\n              163.81549072265625\n            ],\n            [\n              207.087890625,\n              175.95703125\n            ],\n            [\n              89.72314453125,\n              175.95703125\n            ]\n          ],\n          \"bbox\": [\n            89.72314453125,\n            163.81549072265625,\n            207.087890625,\n            175.95703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3>Barret Zoph∗</h3>\",\n          \"polygon\": [\n            [\n              90.00000762939453,\n              181.7108154296875\n            ],\n            [\n              165.849609375,\n              181.7108154296875\n            ],\n            [\n              165.849609375,\n              193.87738037109375\n            ],\n            [\n              90.00000762939453,\n              193.87738037109375\n            ]\n          ],\n          \"bbox\": [\n            90.00000762939453,\n            181.7108154296875,\n            165.849609375,\n            193.87738037109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">barretzoph@google.com</p>\",\n          \"polygon\": [\n            [\n              90.00001525878906,\n              193.48651123046875\n            ],\n            [\n              216.3515625,\n              193.48651123046875\n            ],\n            [\n              216.3515625,\n              207.087890625\n            ],\n            [\n              90.00001525878906,\n              207.087890625\n            ]\n          ],\n          \"bbox\": [\n            90.00001525878906,\n            193.48651123046875,\n            216.3515625,\n            207.087890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4>Noam Shazeer</h4>\",\n          \"polygon\": [\n            [\n              90.00001525878906,\n              214.2322998046875\n            ],\n            [\n              169.0691680908203,\n              214.2322998046875\n            ],\n            [\n              169.0691680908203,\n              225.14141845703125\n            ],\n            [\n              90.00001525878906,\n              225.14141845703125\n            ]\n          ],\n          \"bbox\": [\n            90.00001525878906,\n            214.2322998046875,\n            169.0691680908203,\n            225.14141845703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/5\",\n            \"4\": \"/page/0/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">noam@google.com Google, Mountain View, CA 94043, USA</p>\",\n          \"polygon\": [\n            [\n              90.00001525878906,\n              226.34454345703125\n            ],\n            [\n              269.9912109375,\n              226.34454345703125\n            ],\n            [\n              269.9912109375,\n              253.107421875\n            ],\n            [\n              90.00001525878906,\n              253.107421875\n            ]\n          ],\n          \"bbox\": [\n            90.00001525878906,\n            226.34454345703125,\n            269.9912109375,\n            253.107421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/5\",\n            \"4\": \"/page/0/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Editor: Alexander Clark</p>\",\n          \"polygon\": [\n            [\n              90.00001525878906,\n              277.22003173828125\n            ],\n            [\n              200.63999938964844,\n              277.22003173828125\n            ],\n            [\n              200.63999938964844,\n              287.1826477050781\n            ],\n            [\n              90.00001525878906,\n              287.1826477050781\n            ]\n          ],\n          \"bbox\": [\n            90.00001525878906,\n            277.22003173828125,\n            200.63999938964844,\n            287.1826477050781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/5\",\n            \"4\": \"/page/0/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3>Abstract</h3>\",\n          \"polygon\": [\n            [\n              280.29803466796875,\n              310.811767578125\n            ],\n            [\n              331.6575927734375,\n              310.811767578125\n            ],\n            [\n              331.6575927734375,\n              322.7669677734375\n            ],\n            [\n              280.29803466796875,\n              322.7669677734375\n            ]\n          ],\n          \"bbox\": [\n            280.29803466796875,\n            310.811767578125,\n            331.6575927734375,\n            322.7669677734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In deep learning, models typically reuse the same parameters for all inputs. Mixture of Experts (MoE) models defy this and instead select different parameters for each incoming example. The result is a sparsely-activated model—with an outrageous number of parameters—but a constant computational cost. However, despite several notable successes of MoE, widespread adoption has been hindered by complexity, communication costs, and training instability. We address these with the introduction of the Switch Transformer. We simplify the MoE routing algorithm and design intuitive improved models with reduced communication and computational costs. Our proposed training techniques mitigate the instabilities, and we show large sparse models may be trained, for the first time, with lower precision (bfloat16) formats. We design models based off T5-Base and T5-Large <a href=\\\"#page-37-0\\\">(Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.,</a> <a href=\\\"#page-37-0\\\">2019)</a> to obtain up to 7x increases in pre-training speed with the same computational resources. These improvements extend into multilingual settings where we measure gains over the mT5-Base version across all 101 languages. Finally, we advance the current scale of language models by pre-training up to trillion parameter models on the \\\"Colossal Clean Crawled Corpus\\\", and achieve a 4x speedup over the T5-XXL model.<a href=\\\"#page-0-0\\\">1</a><a href=\\\"#page-0-1\\\">2</a></p>\",\n          \"polygon\": [\n            [\n              108.474609375,\n              327.612060546875\n            ],\n            [\n              502.330078125,\n              327.612060546875\n            ],\n            [\n              502.330078125,\n              504.9474792480469\n            ],\n            [\n              108.474609375,\n              504.9474792480469\n            ]\n          ],\n          \"bbox\": [\n            108.474609375,\n            327.612060546875,\n            502.330078125,\n            504.9474792480469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Keywords: mixture-of-experts, natural language processing, sparsity, large-scale machine learning, distributed computing</p>\",\n          \"polygon\": [\n            [\n              108.9228515625,\n              508.1138916015625\n            ],\n            [\n              502.62890625,\n              508.1138916015625\n            ],\n            [\n              502.62890625,\n              530.19140625\n            ],\n            [\n              108.9228515625,\n              530.19140625\n            ]\n          ],\n          \"bbox\": [\n            108.9228515625,\n            508.1138916015625,\n            502.62890625,\n            530.19140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">©2022 William Fedus, Barret Zoph and Noam Shazeer.</p>\",\n          \"polygon\": [\n            [\n              89.99998474121094,\n              726.5211181640625\n            ],\n            [\n              299.126953125,\n              726.5211181640625\n            ],\n            [\n              299.126953125,\n              734.7773704528809\n            ],\n            [\n              89.99998474121094,\n              734.7773704528809\n            ]\n          ],\n          \"bbox\": [\n            89.99998474121094,\n            726.5211181640625,\n            299.126953125,\n            734.7773704528809\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/PageFooter/17\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              88.6025390625,\n              740.953125\n            ],\n            [\n              517.5703125,\n              740.953125\n            ],\n            [\n              517.5703125,\n              758.7840843200684\n            ],\n            [\n              88.6025390625,\n              758.7840843200684\n            ]\n          ],\n          \"bbox\": [\n            88.6025390625,\n            740.953125,\n            517.5703125,\n            758.7840843200684\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Footnote/13\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><sup>∗</sup>. Equal contribution.</p>\",\n          \"polygon\": [\n            [\n              92.4873046875,\n              652.0184783935547\n            ],\n            [\n              183.35220336914062,\n              652.0184783935547\n            ],\n            [\n              183.35220336914062,\n              661.3192291259766\n            ],\n            [\n              92.4873046875,\n              661.3192291259766\n            ]\n          ],\n          \"bbox\": [\n            92.4873046875,\n            652.0184783935547,\n            183.35220336914062,\n            661.3192291259766\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Footnote/14\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-0-0\\\"></span><sup>1. </sup>JAX code for Switch Transformer and all model checkpoints are available at <a href=\\\"https://github.com/google-research/t5x\\\">https://github.com/</a> <a href=\\\"https://github.com/google-research/t5x\\\">google-research/t5x</a></p>\",\n          \"polygon\": [\n            [\n              93.234375,\n              662.9774780273438\n            ],\n            [\n              522.0007934570312,\n              662.9774780273438\n            ],\n            [\n              522.0007934570312,\n              683.3336029052734\n            ],\n            [\n              93.234375,\n              683.3336029052734\n            ]\n          ],\n          \"bbox\": [\n            93.234375,\n            662.9774780273438,\n            522.0007934570312,\n            683.3336029052734\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Footnote/15\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-0-1\\\"></span><sup>2. </sup>Tensorflow code for Switch Transformer is available at <a href=\\\"https://github.com/tensorflow/mesh/blob/master/mesh_tensorflow/transformer/moe.py\\\">https://github.com/tensorflow/mesh/blob/</a> <a href=\\\"https://github.com/tensorflow/mesh/blob/master/mesh_tensorflow/transformer/moe.py\\\">master/mesh_tensorflow/transformer/moe.py</a></p>\",\n          \"polygon\": [\n            [\n              92.63671875,\n              684.8954772949219\n            ],\n            [\n              522.0023803710938,\n              684.8954772949219\n            ],\n            [\n              522.0023803710938,\n              705.2516021728516\n            ],\n            [\n              92.63671875,\n              705.2516021728516\n            ]\n          ],\n          \"bbox\": [\n            92.63671875,\n            684.8954772949219,\n            522.0023803710938,\n            705.2516021728516\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"3\": \"/page/0/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/1/Page/503\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/1/PageHeader/0'></content-ref><content-ref src='/page/1/SectionHeader/1'></content-ref><content-ref src='/page/1/TableOfContents/2'></content-ref><content-ref src='/page/1/PageFooter/3'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/1/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.8095703125,\n              37.992431640625\n            ],\n            [\n              368.455078125,\n              37.992431640625\n            ],\n            [\n              368.455078125,\n              50.3701171875\n            ],\n            [\n              239.8095703125,\n              50.3701171875\n            ]\n          ],\n          \"bbox\": [\n            239.8095703125,\n            37.992431640625,\n            368.455078125,\n            50.3701171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"3\": \"/page/0/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/1/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2>Contents</h2>\",\n          \"polygon\": [\n            [\n              90.0,\n              91.70068359375\n            ],\n            [\n              144.4833984375,\n              91.70068359375\n            ],\n            [\n              144.4833984375,\n              104.80078125\n            ],\n            [\n              90.0,\n              104.80078125\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            91.70068359375,\n            144.4833984375,\n            104.80078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/1/TableOfContents/2\",\n          \"block_type\": \"TableOfContents\",\n          \"html\": \"<table><tbody><tr><th>1</th><th>Introduction</th><th>3</th></tr><tr><th>2</th><th>Switch Transformer<br/>2.1 Simplifying Sparse Routing<br/>2.2 Efficient Sparse Routing<br/>2.3 Putting It All Together: The Switch Transformer<br/>2.4 Improved Training and Fine-Tuning Techniques</th><th>4<br/>5<br/>6<br/>8</th></tr><tr><th>3</th><th>Scaling Properties<br/>3.1 Scaling Results on a Step-Basis<br/>3.2 Scaling Results on a Time-Basis<br/>3.3 Scaling Versus a Larger Dense Model</th><th>11<br/>12<br/>13<br/>13</th></tr><tr><th>4</th><th>Downstream Results<br/>4.1 Fine-Tuning<br/>4.2 Distillation<br/>4.3 Multilingual Learning</th><th>14<br/>14<br/>16<br/>17</th></tr><tr><th>5</th><th>Designing Models with Data, Model, and Expert-Parallelism<br/>5.1 Data Parallelism<br/>5.2 Model Parallelism<br/>5.3 Model and Data Parallelism<br/>5.4 Expert and Data Parallelism<br/>5.5 Expert, Model and Data Parallelism<br/>5.6 Towards Trillion Parameter Models</th><th>18<br/>20<br/>21<br/>22<br/>22<br/>22<br/>24</th></tr><tr><th>6</th><th>Related Work</th><th>24</th></tr><tr><th>7</th><th>Discussion</th><th>25</th></tr><tr><th>8</th><th>Future Work</th><th>26</th></tr><tr><th>9</th><th>Conclusion</th><th>27</th></tr><tr><th>A</th><th colspan=2>Switch for Attention</th><th>27</th></tr><tr><th>B</th><th>Preventing Token Dropping with No-Token-Left-Behind</th><th>29</th></tr><tr><th>C</th><th>Encouraging Exploration Across Experts</th><th>29</th></tr><tr><th>D</th><th colspan=2>Switch Transformers in Lower Compute Regimes</th><th>29</th></tr><tr><th>E</th><th colspan=2>Relation of Upstream to Downstream Model Performance</th><th>32</th></tr><tr><th>F</th><th>Pseudo Code for Switch Transformers</th><th>33</th></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              116.982421875\n            ],\n            [\n              524.443359375,\n              116.982421875\n            ],\n            [\n              524.443359375,\n              688.359375\n            ],\n            [\n              86.361328125,\n              688.359375\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            116.982421875,\n            524.443359375,\n            688.359375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/1/TableCell/459\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>1</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  116.982421875\n                ],\n                [\n                  87.361328125,\n                  116.982421875\n                ],\n                [\n                  87.361328125,\n                  117.982421875\n                ],\n                [\n                  86.361328125,\n                  117.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                116.982421875,\n                87.361328125,\n                117.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/460\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Introduction</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  116.982421875\n                ],\n                [\n                  88.361328125,\n                  116.982421875\n                ],\n                [\n                  88.361328125,\n                  117.982421875\n                ],\n                [\n                  87.361328125,\n                  117.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                116.982421875,\n                88.361328125,\n                117.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/461\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>3</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  116.982421875\n                ],\n                [\n                  89.361328125,\n                  116.982421875\n                ],\n                [\n                  89.361328125,\n                  117.982421875\n                ],\n                [\n                  88.361328125,\n                  117.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                116.982421875,\n                89.361328125,\n                117.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/462\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>2</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  117.982421875\n                ],\n                [\n                  87.361328125,\n                  117.982421875\n                ],\n                [\n                  87.361328125,\n                  118.982421875\n                ],\n                [\n                  86.361328125,\n                  118.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                117.982421875,\n                87.361328125,\n                118.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/463\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Switch Transformer<br/>2.1 Simplifying Sparse Routing<br/>2.2 Efficient Sparse Routing<br/>2.3 Putting It All Together: The Switch Transformer<br/>2.4 Improved Training and Fine-Tuning Techniques</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  117.982421875\n                ],\n                [\n                  88.361328125,\n                  117.982421875\n                ],\n                [\n                  88.361328125,\n                  118.982421875\n                ],\n                [\n                  87.361328125,\n                  118.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                117.982421875,\n                88.361328125,\n                118.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/464\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>4<br/>5<br/>6<br/>8</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  117.982421875\n                ],\n                [\n                  89.361328125,\n                  117.982421875\n                ],\n                [\n                  89.361328125,\n                  118.982421875\n                ],\n                [\n                  88.361328125,\n                  118.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                117.982421875,\n                89.361328125,\n                118.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/465\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>3</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  118.982421875\n                ],\n                [\n                  87.361328125,\n                  118.982421875\n                ],\n                [\n                  87.361328125,\n                  119.982421875\n                ],\n                [\n                  86.361328125,\n                  119.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                118.982421875,\n                87.361328125,\n                119.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/466\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Scaling Properties<br/>3.1 Scaling Results on a Step-Basis<br/>3.2 Scaling Results on a Time-Basis<br/>3.3 Scaling Versus a Larger Dense Model</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  118.982421875\n                ],\n                [\n                  88.361328125,\n                  118.982421875\n                ],\n                [\n                  88.361328125,\n                  119.982421875\n                ],\n                [\n                  87.361328125,\n                  119.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                118.982421875,\n                88.361328125,\n                119.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/467\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>11<br/>12<br/>13<br/>13</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  118.982421875\n                ],\n                [\n                  89.361328125,\n                  118.982421875\n                ],\n                [\n                  89.361328125,\n                  119.982421875\n                ],\n                [\n                  88.361328125,\n                  119.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                118.982421875,\n                89.361328125,\n                119.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/468\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>4</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  119.982421875\n                ],\n                [\n                  87.361328125,\n                  119.982421875\n                ],\n                [\n                  87.361328125,\n                  120.982421875\n                ],\n                [\n                  86.361328125,\n                  120.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                119.982421875,\n                87.361328125,\n                120.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/469\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Downstream Results<br/>4.1 Fine-Tuning<br/>4.2 Distillation<br/>4.3 Multilingual Learning</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  119.982421875\n                ],\n                [\n                  88.361328125,\n                  119.982421875\n                ],\n                [\n                  88.361328125,\n                  120.982421875\n                ],\n                [\n                  87.361328125,\n                  120.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                119.982421875,\n                88.361328125,\n                120.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/470\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>14<br/>14<br/>16<br/>17</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  119.982421875\n                ],\n                [\n                  89.361328125,\n                  119.982421875\n                ],\n                [\n                  89.361328125,\n                  120.982421875\n                ],\n                [\n                  88.361328125,\n                  120.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                119.982421875,\n                89.361328125,\n                120.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/471\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>5</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  120.982421875\n                ],\n                [\n                  87.361328125,\n                  120.982421875\n                ],\n                [\n                  87.361328125,\n                  121.982421875\n                ],\n                [\n                  86.361328125,\n                  121.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                120.982421875,\n                87.361328125,\n                121.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/472\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Designing Models with Data, Model, and Expert-Parallelism<br/>5.1 Data Parallelism<br/>5.2 Model Parallelism<br/>5.3 Model and Data Parallelism<br/>5.4 Expert and Data Parallelism<br/>5.5 Expert, Model and Data Parallelism<br/>5.6 Towards Trillion Parameter Models</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  120.982421875\n                ],\n                [\n                  88.361328125,\n                  120.982421875\n                ],\n                [\n                  88.361328125,\n                  121.982421875\n                ],\n                [\n                  87.361328125,\n                  121.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                120.982421875,\n                88.361328125,\n                121.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/473\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>18<br/>20<br/>21<br/>22<br/>22<br/>22<br/>24</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  120.982421875\n                ],\n                [\n                  89.361328125,\n                  120.982421875\n                ],\n                [\n                  89.361328125,\n                  121.982421875\n                ],\n                [\n                  88.361328125,\n                  121.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                120.982421875,\n                89.361328125,\n                121.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/474\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>6</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  121.982421875\n                ],\n                [\n                  87.361328125,\n                  121.982421875\n                ],\n                [\n                  87.361328125,\n                  122.982421875\n                ],\n                [\n                  86.361328125,\n                  122.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                121.982421875,\n                87.361328125,\n                122.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/475\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Related Work</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  121.982421875\n                ],\n                [\n                  88.361328125,\n                  121.982421875\n                ],\n                [\n                  88.361328125,\n                  122.982421875\n                ],\n                [\n                  87.361328125,\n                  122.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                121.982421875,\n                88.361328125,\n                122.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/476\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>24</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  121.982421875\n                ],\n                [\n                  89.361328125,\n                  121.982421875\n                ],\n                [\n                  89.361328125,\n                  122.982421875\n                ],\n                [\n                  88.361328125,\n                  122.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                121.982421875,\n                89.361328125,\n                122.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/477\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>7</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  122.982421875\n                ],\n                [\n                  87.361328125,\n                  122.982421875\n                ],\n                [\n                  87.361328125,\n                  123.982421875\n                ],\n                [\n                  86.361328125,\n                  123.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                122.982421875,\n                87.361328125,\n                123.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/478\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Discussion</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  122.982421875\n                ],\n                [\n                  88.361328125,\n                  122.982421875\n                ],\n                [\n                  88.361328125,\n                  123.982421875\n                ],\n                [\n                  87.361328125,\n                  123.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                122.982421875,\n                88.361328125,\n                123.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/479\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>25</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  122.982421875\n                ],\n                [\n                  89.361328125,\n                  122.982421875\n                ],\n                [\n                  89.361328125,\n                  123.982421875\n                ],\n                [\n                  88.361328125,\n                  123.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                122.982421875,\n                89.361328125,\n                123.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/480\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>8</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  123.982421875\n                ],\n                [\n                  87.361328125,\n                  123.982421875\n                ],\n                [\n                  87.361328125,\n                  124.982421875\n                ],\n                [\n                  86.361328125,\n                  124.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                123.982421875,\n                87.361328125,\n                124.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/481\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Future Work</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  123.982421875\n                ],\n                [\n                  88.361328125,\n                  123.982421875\n                ],\n                [\n                  88.361328125,\n                  124.982421875\n                ],\n                [\n                  87.361328125,\n                  124.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                123.982421875,\n                88.361328125,\n                124.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/482\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>26</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  123.982421875\n                ],\n                [\n                  89.361328125,\n                  123.982421875\n                ],\n                [\n                  89.361328125,\n                  124.982421875\n                ],\n                [\n                  88.361328125,\n                  124.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                123.982421875,\n                89.361328125,\n                124.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/483\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>9</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  124.982421875\n                ],\n                [\n                  87.361328125,\n                  124.982421875\n                ],\n                [\n                  87.361328125,\n                  125.982421875\n                ],\n                [\n                  86.361328125,\n                  125.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                124.982421875,\n                87.361328125,\n                125.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/484\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Conclusion</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  124.982421875\n                ],\n                [\n                  88.361328125,\n                  124.982421875\n                ],\n                [\n                  88.361328125,\n                  125.982421875\n                ],\n                [\n                  87.361328125,\n                  125.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                124.982421875,\n                88.361328125,\n                125.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/485\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>27</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  124.982421875\n                ],\n                [\n                  89.361328125,\n                  124.982421875\n                ],\n                [\n                  89.361328125,\n                  125.982421875\n                ],\n                [\n                  88.361328125,\n                  125.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                124.982421875,\n                89.361328125,\n                125.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/486\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>A</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  125.982421875\n                ],\n                [\n                  87.361328125,\n                  125.982421875\n                ],\n                [\n                  87.361328125,\n                  126.982421875\n                ],\n                [\n                  86.361328125,\n                  126.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                125.982421875,\n                87.361328125,\n                126.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/487\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th colspan=\\\"2\\\">Switch for Attention</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  125.982421875\n                ],\n                [\n                  89.361328125,\n                  125.982421875\n                ],\n                [\n                  89.361328125,\n                  126.982421875\n                ],\n                [\n                  87.361328125,\n                  126.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                125.982421875,\n                89.361328125,\n                126.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/488\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>27</th>\",\n              \"polygon\": [\n                [\n                  89.361328125,\n                  125.982421875\n                ],\n                [\n                  90.361328125,\n                  125.982421875\n                ],\n                [\n                  90.361328125,\n                  126.982421875\n                ],\n                [\n                  89.361328125,\n                  126.982421875\n                ]\n              ],\n              \"bbox\": [\n                89.361328125,\n                125.982421875,\n                90.361328125,\n                126.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/489\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>B</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  126.982421875\n                ],\n                [\n                  87.361328125,\n                  126.982421875\n                ],\n                [\n                  87.361328125,\n                  127.982421875\n                ],\n                [\n                  86.361328125,\n                  127.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                126.982421875,\n                87.361328125,\n                127.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/490\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Preventing Token Dropping with No-Token-Left-Behind</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  126.982421875\n                ],\n                [\n                  88.361328125,\n                  126.982421875\n                ],\n                [\n                  88.361328125,\n                  127.982421875\n                ],\n                [\n                  87.361328125,\n                  127.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                126.982421875,\n                88.361328125,\n                127.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/491\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>29</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  126.982421875\n                ],\n                [\n                  89.361328125,\n                  126.982421875\n                ],\n                [\n                  89.361328125,\n                  127.982421875\n                ],\n                [\n                  88.361328125,\n                  127.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                126.982421875,\n                89.361328125,\n                127.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/492\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>C</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  127.982421875\n                ],\n                [\n                  87.361328125,\n                  127.982421875\n                ],\n                [\n                  87.361328125,\n                  128.982421875\n                ],\n                [\n                  86.361328125,\n                  128.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                127.982421875,\n                87.361328125,\n                128.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/493\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Encouraging Exploration Across Experts</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  127.982421875\n                ],\n                [\n                  88.361328125,\n                  127.982421875\n                ],\n                [\n                  88.361328125,\n                  128.982421875\n                ],\n                [\n                  87.361328125,\n                  128.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                127.982421875,\n                88.361328125,\n                128.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/494\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>29</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  127.982421875\n                ],\n                [\n                  89.361328125,\n                  127.982421875\n                ],\n                [\n                  89.361328125,\n                  128.982421875\n                ],\n                [\n                  88.361328125,\n                  128.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                127.982421875,\n                89.361328125,\n                128.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/495\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>D</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  128.982421875\n                ],\n                [\n                  87.361328125,\n                  128.982421875\n                ],\n                [\n                  87.361328125,\n                  129.982421875\n                ],\n                [\n                  86.361328125,\n                  129.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                128.982421875,\n                87.361328125,\n                129.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/496\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th colspan=\\\"2\\\">Switch Transformers in Lower Compute Regimes</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  128.982421875\n                ],\n                [\n                  89.361328125,\n                  128.982421875\n                ],\n                [\n                  89.361328125,\n                  129.982421875\n                ],\n                [\n                  87.361328125,\n                  129.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                128.982421875,\n                89.361328125,\n                129.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/497\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>29</th>\",\n              \"polygon\": [\n                [\n                  89.361328125,\n                  128.982421875\n                ],\n                [\n                  90.361328125,\n                  128.982421875\n                ],\n                [\n                  90.361328125,\n                  129.982421875\n                ],\n                [\n                  89.361328125,\n                  129.982421875\n                ]\n              ],\n              \"bbox\": [\n                89.361328125,\n                128.982421875,\n                90.361328125,\n                129.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/498\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>E</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  129.982421875\n                ],\n                [\n                  87.361328125,\n                  129.982421875\n                ],\n                [\n                  87.361328125,\n                  130.982421875\n                ],\n                [\n                  86.361328125,\n                  130.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                129.982421875,\n                87.361328125,\n                130.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/499\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th colspan=\\\"2\\\">Relation of Upstream to Downstream Model Performance</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  129.982421875\n                ],\n                [\n                  89.361328125,\n                  129.982421875\n                ],\n                [\n                  89.361328125,\n                  130.982421875\n                ],\n                [\n                  87.361328125,\n                  130.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                129.982421875,\n                89.361328125,\n                130.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/500\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>32</th>\",\n              \"polygon\": [\n                [\n                  89.361328125,\n                  129.982421875\n                ],\n                [\n                  90.361328125,\n                  129.982421875\n                ],\n                [\n                  90.361328125,\n                  130.982421875\n                ],\n                [\n                  89.361328125,\n                  130.982421875\n                ]\n              ],\n              \"bbox\": [\n                89.361328125,\n                129.982421875,\n                90.361328125,\n                130.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/501\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>F</th>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  130.982421875\n                ],\n                [\n                  87.361328125,\n                  130.982421875\n                ],\n                [\n                  87.361328125,\n                  131.982421875\n                ],\n                [\n                  86.361328125,\n                  131.982421875\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                130.982421875,\n                87.361328125,\n                131.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/502\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Pseudo Code for Switch Transformers</th>\",\n              \"polygon\": [\n                [\n                  87.361328125,\n                  130.982421875\n                ],\n                [\n                  88.361328125,\n                  130.982421875\n                ],\n                [\n                  88.361328125,\n                  131.982421875\n                ],\n                [\n                  87.361328125,\n                  131.982421875\n                ]\n              ],\n              \"bbox\": [\n                87.361328125,\n                130.982421875,\n                88.361328125,\n                131.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/1/TableCell/503\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>33</th>\",\n              \"polygon\": [\n                [\n                  88.361328125,\n                  130.982421875\n                ],\n                [\n                  89.361328125,\n                  130.982421875\n                ],\n                [\n                  89.361328125,\n                  131.982421875\n                ],\n                [\n                  88.361328125,\n                  131.982421875\n                ]\n              ],\n              \"bbox\": [\n                88.361328125,\n                130.982421875,\n                89.361328125,\n                131.982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/1/PageFooter/3\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              302.8623046875,\n              723.9375\n            ],\n            [\n              309.287109375,\n              723.9375\n            ],\n            [\n              309.287109375,\n              735.5390625\n            ],\n            [\n              302.8623046875,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            302.8623046875,\n            723.9375,\n            309.287109375,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/1/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/2/Page/363\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/2/PageHeader/0'></content-ref><content-ref src='/page/2/SectionHeader/1'></content-ref><content-ref src='/page/2/Text/2'></content-ref><content-ref src='/page/2/FigureGroup/362'></content-ref><content-ref src='/page/2/Text/5'></content-ref><content-ref src='/page/2/Text/6'></content-ref><content-ref src='/page/2/PageFooter/7'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/2/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.4296875,\n              37.992431640625\n            ],\n            [\n              360.087890625,\n              37.992431640625\n            ],\n            [\n              360.087890625,\n              50.12841796875\n            ],\n            [\n              247.4296875,\n              50.12841796875\n            ]\n          ],\n          \"bbox\": [\n            247.4296875,\n            37.992431640625,\n            360.087890625,\n            50.12841796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-2-0\\\"></span>1. Introduction</h3>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              92.4776611328125\n            ],\n            [\n              180.24981689453125,\n              92.4776611328125\n            ],\n            [\n              180.24981689453125,\n              104.432861328125\n            ],\n            [\n              89.349609375,\n              104.432861328125\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            92.4776611328125,\n            180.24981689453125,\n            104.432861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\",\n            \"3\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Large scale training has been an effective path towards flexible and powerful neural language models <a href=\\\"#page-37-1\\\">(Radford</a> <a href=\\\"#page-37-1\\\">et</a> <a href=\\\"#page-37-1\\\">al.,</a> <a href=\\\"#page-37-1\\\">2018;</a> <a href=\\\"#page-36-0\\\">Kaplan</a> <a href=\\\"#page-36-0\\\">et</a> <a href=\\\"#page-36-0\\\">al.,</a> <a href=\\\"#page-36-0\\\">2020;</a> <a href=\\\"#page-35-0\\\">Brown</a> <a href=\\\"#page-35-0\\\">et</a> <a href=\\\"#page-35-0\\\">al.,</a> <a href=\\\"#page-35-0\\\">2020)</a>. Simple architectures backed by a generous computational budget, data set size and parameter count—surpass more complicated algorithms <a href=\\\"#page-38-0\\\">(Sutton,</a> <a href=\\\"#page-38-0\\\">2019)</a>. An approach followed in <a href=\\\"#page-37-1\\\">Radford</a> <a href=\\\"#page-37-1\\\">et</a> <a href=\\\"#page-37-1\\\">al.</a> <a href=\\\"#page-37-1\\\">(2018)</a>; <a href=\\\"#page-37-0\\\">Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.</a> <a href=\\\"#page-37-0\\\">(2019)</a>; <a href=\\\"#page-35-0\\\">Brown</a> <a href=\\\"#page-35-0\\\">et</a> <a href=\\\"#page-35-0\\\">al.</a> <a href=\\\"#page-35-0\\\">(2020)</a> expands the model size of a densely-activated Transformer <a href=\\\"#page-39-1\\\">(Vaswani</a> <a href=\\\"#page-39-1\\\">et</a> <a href=\\\"#page-39-1\\\">al.,</a> <a href=\\\"#page-39-1\\\">2017)</a>. While effective, it is also extremely computationally intensive <a href=\\\"#page-38-1\\\">(Strubell</a> <a href=\\\"#page-38-1\\\">et</a> <a href=\\\"#page-38-1\\\">al.,</a> <a href=\\\"#page-38-1\\\">2019)</a>. Inspired by the success of model scale, but seeking greater computational efficiency, we instead propose a sparsely-activated expert model: the Switch Transformer. In our case the sparsity comes from activating a subset of the neural network weights for each incoming example.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              115.435546875\n            ],\n            [\n              522.3515625,\n              115.435546875\n            ],\n            [\n              522.3515625,\n              248.466796875\n            ],\n            [\n              89.4990234375,\n              248.466796875\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            115.435546875,\n            522.3515625,\n            248.466796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\",\n            \"3\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/FigureGroup/362\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/2/Figure/3'></content-ref><content-ref src='/page/2/Caption/4'></content-ref>\",\n          \"polygon\": [\n            [\n              90.0,\n              277.27734375\n            ],\n            [\n              521.6661376953125,\n              277.27734375\n            ],\n            [\n              521.6661376953125,\n              501.1875\n            ],\n            [\n              90.0,\n              501.1875\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            277.27734375,\n            521.6661376953125,\n            501.1875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/2/Figure/3\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  99.2109375,\n                  277.27734375\n                ],\n                [\n                  506.1792297363281,\n                  277.27734375\n                ],\n                [\n                  506.1792297363281,\n                  428.87109375\n                ],\n                [\n                  99.2109375,\n                  428.87109375\n                ]\n              ],\n              \"bbox\": [\n                99.2109375,\n                277.27734375,\n                506.1792297363281,\n                428.87109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\",\n                \"3\": \"/page/2/SectionHeader/1\"\n              },\n              \"images\": {\n                \"/page/2/Figure/3\": \"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kxjcSsZPUopOFzk9AOprSoAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAwtT/5G7Qf9y5/9BWs+4uLldQ8R3k+rT29rpxHkoi7lQm3QlmXq+CchcjnPqMdPJawS3MNw8YaaEMI3PVd3X88CmPp1nIt2j28bref8fCsMiX5QvI/3QBQBxN3eahpczpH/aVuJdMu5D9uulldpI1Uq6qGYIRk9MDnp6XbaG71WTW3m1S9jFt5Qt1hlKCNjbxuW4+9y2cNkdeOa218L6MpybPzG2lN8sru20qVK7mJO3BPHSr8Vjawed5UKr5+DJj+LChRn/gKgfhQBxC6tqeofZgL6WA3J04sYsfKJEYvjPTOKtX9xd6Vqd3pdvf3K20v2HEs0hkeDzpZI32s2TyEUDOcFvwrp49G06Ly9lpGvl+XsxnjywQn5Amo9V0pb22ujCluLmeNI3M8XmJIisWCMvodzD1G7NAGZaLJYeNU06PULia2bTnnNvPKZCjeYihtzZbB5xk8YOKfdwTy+JrifSL+CLUI7WKO5t7qBnR490hjIIKlTkyDIyPUcUuieH3sdUk1CWCztm8nyUhtSz9SCzM7AFidqgDHAHetK/0XT9SljmuoMzRgqk0btHIAe25SDj2zQBx94q6hNFBPA1hewa1Gt0LO4bZI7xghwcA527eCARz65Lrm/wBVuI9Yv449SWW0nmS3kW6hjtoliJA3ozjIONzFhnDcY4rq/wCwNKGn/YRZotv5nm4UkN5mc79wO7d75zSXHh/S7q6a4mtAzuVaQb2CSEYwXUHa5GBywPQUAYmnxT6zLrctxq93A1tdtHCsM+1bceWjZIHD8sfvZGO3XO9oV7NqXh7Tb64QJNc2scrqBgBmUE/zqhF4UsZLrUJ72JZmurgyEK7KGQqoCOAQHGQeDkc1vABVCqAABgAdqAFooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACjqMGiigDnLOL7L4i18WUEauLW3ZEVQAWxLjpXOaN5qQaDfothHdXEiebcJdySXF0SpMiunljJ+8cE4QjtivRAiB2cKodgAzAcnHSoY7CzhunuorSBLiT78yxgO31OMmgDj7U2+n6Ro13pOr3dxLPcQxCCWXPnKzgSKY+isqlmOACCpyTzXcVXjsLOK7e6jtIEuZOHmWMB2+pxk1YoAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA/9k=\"\n              }\n            },\n            {\n              \"id\": \"/page/2/Caption/4\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p>Figure 1: Scaling and sample efficiency of Switch Transformers. Left Plot: Scaling properties for increasingly sparse (more experts) Switch Transformers. Right Plot: Negative log perplexity comparing Switch Transformers to T5 <a href=\\\"#page-37-0\\\">(Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.,</a> <a href=\\\"#page-37-0\\\">2019)</a> models using the same compute budget.</p>\",\n              \"polygon\": [\n                [\n                  90.0,\n                  449.2771911621094\n                ],\n                [\n                  521.6661376953125,\n                  449.2771911621094\n                ],\n                [\n                  521.6661376953125,\n                  501.1875\n                ],\n                [\n                  90.0,\n                  501.1875\n                ]\n              ],\n              \"bbox\": [\n                90.0,\n                449.2771911621094,\n                521.6661376953125,\n                501.1875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\",\n                \"3\": \"/page/2/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\",\n            \"3\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/2/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Sparse training is an active area of research and engineering <a href=\\\"#page-35-1\\\">(Gray</a> <a href=\\\"#page-35-1\\\">et</a> <a href=\\\"#page-35-1\\\">al.,</a> <a href=\\\"#page-35-1\\\">2017;</a> <a href=\\\"#page-35-2\\\">Gale</a> <a href=\\\"#page-35-2\\\">et</a> <a href=\\\"#page-35-2\\\">al.,</a> <a href=\\\"#page-35-2\\\">2020)</a>, but as of today, machine learning libraries and hardware accelerators still cater to dense matrix multiplications. To have an efficient sparse algorithm, we start with the Mixture-of-Expert (MoE) paradigm <a href=\\\"#page-36-1\\\">(Jacobs</a> <a href=\\\"#page-36-1\\\">et</a> <a href=\\\"#page-36-1\\\">al.,</a> <a href=\\\"#page-36-1\\\">1991;</a> <a href=\\\"#page-36-2\\\">Jordan</a> <a href=\\\"#page-36-2\\\">and</a> <a href=\\\"#page-36-2\\\">Jacobs,</a> <a href=\\\"#page-36-2\\\">1994;</a> <a href=\\\"#page-38-2\\\">Shazeer</a> <a href=\\\"#page-38-2\\\">et</a> <a href=\\\"#page-38-2\\\">al.,</a> <a href=\\\"#page-38-2\\\">2017)</a>, and simplify it to yield training stability and computational benefits. MoE models have had notable successes in machine translation <a href=\\\"#page-38-2\\\">(Shazeer</a> <a href=\\\"#page-38-2\\\">et</a> <a href=\\\"#page-38-2\\\">al.,</a> <a href=\\\"#page-38-2\\\">2017,</a> <a href=\\\"#page-38-3\\\">2018;</a> <a href=\\\"#page-37-2\\\">Lep</a><a href=\\\"#page-37-2\\\">ikhin</a> <a href=\\\"#page-37-2\\\">et</a> <a href=\\\"#page-37-2\\\">al.,</a> <a href=\\\"#page-37-2\\\">2020)</a>, however, widespread adoption is hindered by complexity, communication costs, and training instabilities.</p>\",\n          \"polygon\": [\n            [\n              89.2001953125,\n              530.292236328125\n            ],\n            [\n              521.640380859375,\n              530.292236328125\n            ],\n            [\n              521.640380859375,\n              636.0453186035156\n            ],\n            [\n              89.2001953125,\n              636.0453186035156\n            ]\n          ],\n          \"bbox\": [\n            89.2001953125,\n            530.292236328125,\n            521.640380859375,\n            636.0453186035156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\",\n            \"3\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">We address these issues, and then go beyond translation, to find that these class of algorithms are broadly valuable in natural language. We measure superior scaling on a diverse set of natural language tasks and across three regimes in NLP: pre-training, finetuning and multi-task training. While this work focuses on scale, we also show that the Switch Transformer architecture not only excels in the domain of supercomputers, but is</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              640.1392211914062\n            ],\n            [\n              521.6403198242188,\n              640.1392211914062\n            ],\n            [\n              521.6403198242188,\n              705.375\n            ],\n            [\n              89.6484375,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            640.1392211914062,\n            521.6403198242188,\n            705.375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\",\n            \"3\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/PageFooter/7\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              302.5634765625,\n              724.9639282226562\n            ],\n            [\n              308.49029541015625,\n              724.9639282226562\n            ],\n            [\n              308.49029541015625,\n              735.5390625\n            ],\n            [\n              302.5634765625,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            302.5634765625,\n            724.9639282226562,\n            308.49029541015625,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\",\n            \"3\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/1/SectionHeader/1\",\n        \"3\": \"/page/2/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/3/Page/208\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/3/PageHeader/0'></content-ref><content-ref src='/page/3/Text/1'></content-ref><content-ref src='/page/3/ListGroup/207'></content-ref><content-ref src='/page/3/SectionHeader/8'></content-ref><content-ref src='/page/3/Text/9'></content-ref><content-ref src='/page/3/Text/10'></content-ref><content-ref src='/page/3/PageFooter/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/3/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.5107421875,\n              37.992431640625\n            ],\n            [\n              369.3515625,\n              37.992431640625\n            ],\n            [\n              369.3515625,\n              50.1767578125\n            ],\n            [\n              239.5107421875,\n              50.1767578125\n            ]\n          ],\n          \"bbox\": [\n            239.5107421875,\n            37.992431640625,\n            369.3515625,\n            50.1767578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\",\n            \"3\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">beneficial even with only a few computational cores. Further, our large sparse models can be distilled <a href=\\\"#page-36-3\\\">(Hinton</a> <a href=\\\"#page-36-3\\\">et</a> <a href=\\\"#page-36-3\\\">al.,</a> <a href=\\\"#page-36-3\\\">2015)</a> into small dense versions while preserving 30% of the sparse model quality gain. Our contributions are the following:</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              92.619140625\n            ],\n            [\n              523.845703125,\n              92.619140625\n            ],\n            [\n              523.845703125,\n              131.484375\n            ],\n            [\n              89.349609375,\n              131.484375\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            92.619140625,\n            523.845703125,\n            131.484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\",\n            \"3\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/ListGroup/207\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/3/ListItem/2'></content-ref><content-ref src='/page/3/ListItem/3'></content-ref><content-ref src='/page/3/ListItem/4'></content-ref><content-ref src='/page/3/ListItem/5'></content-ref><content-ref src='/page/3/ListItem/6'></content-ref><content-ref src='/page/3/ListItem/7'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              105.3369140625,\n              140.4755859375\n            ],\n            [\n              524.443359375,\n              140.4755859375\n            ],\n            [\n              524.443359375,\n              450.140625\n            ],\n            [\n              105.3369140625,\n              450.140625\n            ]\n          ],\n          \"bbox\": [\n            105.3369140625,\n            140.4755859375,\n            524.443359375,\n            450.140625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/3/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> The Switch Transformer architecture, which simplifies and improves over Mixture of Experts.</li>\",\n              \"polygon\": [\n                [\n                  105.486328125,\n                  140.4755859375\n                ],\n                [\n                  524.443359375,\n                  140.4755859375\n                ],\n                [\n                  524.443359375,\n                  166.96435546875\n                ],\n                [\n                  105.486328125,\n                  166.96435546875\n                ]\n              ],\n              \"bbox\": [\n                105.486328125,\n                140.4755859375,\n                524.443359375,\n                166.96435546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\",\n                \"3\": \"/page/2/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/3/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Scaling properties and a benchmark against the strongly tuned T5 model <a href=\\\"#page-37-0\\\">(Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.,</a> <a href=\\\"#page-37-0\\\">2019)</a> where we measure 7x+ pre-training speedups while still using the same FLOPS per token. We further show the improvements hold even with limited computational resources, using as few as two experts.</li>\",\n              \"polygon\": [\n                [\n                  105.3369140625,\n                  175.8603515625\n                ],\n                [\n                  524.14453125,\n                  175.8603515625\n                ],\n                [\n                  524.14453125,\n                  228.99737548828125\n                ],\n                [\n                  105.3369140625,\n                  228.99737548828125\n                ]\n              ],\n              \"bbox\": [\n                105.3369140625,\n                175.8603515625,\n                524.14453125,\n                228.99737548828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\",\n                \"3\": \"/page/2/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/3/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Successful distillation of sparse pre-trained and specialized fine-tuned models into small dense models. We reduce the model size by up to 99% while preserving 30% of the quality gains of the large sparse teacher.</li>\",\n              \"polygon\": [\n                [\n                  106.2333984375,\n                  238.412109375\n                ],\n                [\n                  523.546875,\n                  238.412109375\n                ],\n                [\n                  523.546875,\n                  277.857421875\n                ],\n                [\n                  106.2333984375,\n                  277.857421875\n                ]\n              ],\n              \"bbox\": [\n                106.2333984375,\n                238.412109375,\n                523.546875,\n                277.857421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\",\n                \"3\": \"/page/2/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/3/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Improved pre-training and fine-tuning techniques: (1) selective precision training that enables training with lower bfloat16 precision (2) an initialization scheme that allows for scaling to a larger number of experts and (3) increased expert regularization that improves sparse model fine-tuning and multi-task training.</li>\",\n              \"polygon\": [\n                [\n                  106.2333984375,\n                  285.978515625\n                ],\n                [\n                  523.546875,\n                  285.978515625\n                ],\n                [\n                  523.546875,\n                  339.513427734375\n                ],\n                [\n                  106.2333984375,\n                  339.513427734375\n                ]\n              ],\n              \"bbox\": [\n                106.2333984375,\n                285.978515625,\n                523.546875,\n                339.513427734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\",\n                \"3\": \"/page/2/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/3/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> A measurement of the pre-training benefits on multilingual data where we find a universal improvement across all 101 languages and with 91% of languages benefiting from 4x+ speedups over the mT5 baseline <a href=\\\"#page-39-2\\\">(Xue</a> <a href=\\\"#page-39-2\\\">et</a> <a href=\\\"#page-39-2\\\">al.,</a> <a href=\\\"#page-39-2\\\">2020)</a>.</li>\",\n              \"polygon\": [\n                [\n                  106.083984375,\n                  348.8203125\n                ],\n                [\n                  523.845703125,\n                  348.8203125\n                ],\n                [\n                  523.845703125,\n                  387.9964599609375\n                ],\n                [\n                  106.083984375,\n                  387.9964599609375\n                ]\n              ],\n              \"bbox\": [\n                106.083984375,\n                348.8203125,\n                523.845703125,\n                387.9964599609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\",\n                \"3\": \"/page/2/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/3/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> An increase in the scale of neural language models achieved by efficiently combining data, model, and expert-parallelism to create models with up to a trillion parameters. These models improve the pre-training speed of a strongly tuned T5-XXL baseline by 4x.</li>\",\n              \"polygon\": [\n                [\n                  105.6357421875,\n                  397.546875\n                ],\n                [\n                  522.94921875,\n                  397.546875\n                ],\n                [\n                  522.94921875,\n                  450.140625\n                ],\n                [\n                  105.6357421875,\n                  450.140625\n                ]\n              ],\n              \"bbox\": [\n                105.6357421875,\n                397.546875,\n                522.94921875,\n                450.140625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/1/SectionHeader/1\",\n                \"3\": \"/page/2/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/1/SectionHeader/1\",\n            \"3\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/3/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-3-0\\\"></span>2. Switch Transformer</h2>\",\n          \"polygon\": [\n            [\n              89.27490234375,\n              468.31640625\n            ],\n            [\n              223.224609375,\n              468.31640625\n            ],\n            [\n              223.224609375,\n              481.48602294921875\n            ],\n            [\n              89.27490234375,\n              481.48602294921875\n            ]\n          ],\n          \"bbox\": [\n            89.27490234375,\n            468.31640625,\n            223.224609375,\n            481.48602294921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The guiding design principle for Switch Transformers is to maximize the parameter count of a Transformer model <a href=\\\"#page-39-1\\\">(Vaswani</a> <a href=\\\"#page-39-1\\\">et</a> <a href=\\\"#page-39-1\\\">al.,</a> <a href=\\\"#page-39-1\\\">2017)</a> in a simple and computationally efficient way. The benefit of scale was exhaustively studied in <a href=\\\"#page-36-0\\\">Kaplan</a> <a href=\\\"#page-36-0\\\">et</a> <a href=\\\"#page-36-0\\\">al.</a> <a href=\\\"#page-36-0\\\">(2020)</a> which uncovered powerlaw scaling with model size, data set size and computational budget. Importantly, this work advocates training large models on relatively small amounts of data as the computationally optimal approach.</p>\",\n          \"polygon\": [\n            [\n              88.9013671875,\n              489.97265625\n            ],\n            [\n              523.546875,\n              489.97265625\n            ],\n            [\n              523.546875,\n              569.7534942626953\n            ],\n            [\n              88.9013671875,\n              569.7534942626953\n            ]\n          ],\n          \"bbox\": [\n            88.9013671875,\n            489.97265625,\n            523.546875,\n            569.7534942626953\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Heeding these results, we investigate a fourth axis: increase the parameter count while keeping the floating point operations (FLOPs) per example constant. Our hypothesis is that the parameter count, independent of total computation performed, is a separately important axis on which to scale. We achieve this by designing a sparsely activated model that efficiently uses hardware designed for dense matrix multiplications such as GPUs and TPUs. Our work here focuses on TPU architectures, but these class of models may be similarly trained on GPU clusters. In our distributed training setup, our sparsely activated layers split unique weights on different devices. Therefore, the weights of the model increase with the number of devices, all while maintaining a manageable memory and computational footprint on each device.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              572.34375\n            ],\n            [\n              523.248046875,\n              572.34375\n            ],\n            [\n              523.248046875,\n              705.375\n            ],\n            [\n              89.349609375,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            572.34375,\n            523.248046875,\n            705.375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/PageFooter/11\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              302.712890625,\n              724.7109375\n            ],\n            [\n              309.287109375,\n              724.7109375\n            ],\n            [\n              309.287109375,\n              735.5390625\n            ],\n            [\n              302.712890625,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            302.712890625,\n            724.7109375,\n            309.287109375,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/4/Page/368\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/4/PageHeader/0'></content-ref><content-ref src='/page/4/FigureGroup/336'></content-ref><content-ref src='/page/4/SectionHeader/3'></content-ref><content-ref src='/page/4/TextInlineMath/4'></content-ref><content-ref src='/page/4/Equation/5'></content-ref><content-ref src='/page/4/Text/6'></content-ref><content-ref src='/page/4/Equation/7'></content-ref><content-ref src='/page/4/Text/8'></content-ref><content-ref src='/page/4/PageFooter/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/4/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              246.83203125,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              49.9833984375\n            ],\n            [\n              246.83203125,\n              49.9833984375\n            ]\n          ],\n          \"bbox\": [\n            246.83203125,\n            37.992431640625,\n            360.38671875,\n            49.9833984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/FigureGroup/336\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/4/Figure/1'></content-ref><content-ref src='/page/4/Caption/335'></content-ref>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              90.2021484375\n            ],\n            [\n              521.9130859375,\n              90.2021484375\n            ],\n            [\n              521.9130859375,\n              396.7734375\n            ],\n            [\n              89.7978515625,\n              396.7734375\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            90.2021484375,\n            521.9130859375,\n            396.7734375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/4/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  110.7158203125,\n                  90.2021484375\n                ],\n                [\n                  499.640625,\n                  90.2021484375\n                ],\n                [\n                  499.640625,\n                  286.55859375\n                ],\n                [\n                  110.7158203125,\n                  286.55859375\n                ]\n              ],\n              \"bbox\": [\n                110.7158203125,\n                90.2021484375,\n                499.640625,\n                286.55859375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\"\n              },\n              \"images\": {\n                \"/page/4/Figure/1\": \"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/wDE1w/gn4o+EtG8V+Mr6+1GSO31K+Wa1YW8jb0AbnAGR1HWgD3H+ydN/wCgfaf9+V/wrzfwvp9k/wAb/HUTWlu0aQ2e1DGCFzEucDHFX/8Ahefw/wD+gxL/AOAcv/xNcPoHxR8JWPxV8Wa5cajIun6hFbLbSC3kJcpGFbgDI5HegD3H+ydN/wCgfaf9+V/wrz74SIseq+PERQqL4iuAqqMADceBVj/hefw//wCgxL/4By//ABNUPgvfW+qTeNNQtHL211rs08TEEbkY7lODyOCKAPVKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAGSQxS48yNHx03KDimfY7b/n3h/74FTUUAQ/Y7b/n3h/74FH2O2/594f++BU1FAEP2O2/594f++BR9jtv+feH/vgV5RZajd6Z8bdUuJLmVtOubmPTnjZyUR2hV4yB0GSrD8ae+pXWo/HDT7wXMi6bbyXOnpGHIR2jgLyMR0OGcD/gNAHqRsbMsGNrAWHQ+WMinfY7b/n3h/74FcK3xC1P+y38RJ4eVvDKOQbn7Xi4MYbaZRFtxt9t2cc1d/4Te7m8T3+mWmjq9jpwjlu9Qe5CokTJvyF25LYzx7de1AHW/Y7b/n3h/wC+BR9jtv8An3h/74FefwfE+ZktNSuNLtYtFu5kjjkXUFe5RXOFd4dvAORwGJGa9GoAh+x23/PvD/3wKPsdt/z7w/8AfAqaigCNLeGNt0cMat6qoBqSiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAContoJGLPDGzHqSoJqWuK+LEzQfDbVJEkeMjyssjEEDzFzyOelAHX/AGO2/wCfeH/vgUfY7b/n3h/74FePXB8P/adK/wCEDfVzrZvIt21rsxeTn955vm/Ltxn9K7DxD411jRZNQuI9Bt/7NsPvzXl99nkuABkmFChDAdMkjJoA7H7Hbf8APvD/AN8Cj7Hbf8+8P/fArkbnxvfTa9ZaTouhm9ku7CO/E0lyIljjZsHcMHkDHTqT+NQa/wCOtW0Q394+gQLpVi5Vnur4QzzgYy0UZUgj0yRnFAHa/Y7b/n3h/wC+BTRY2asWW1gBbqRGOa5O+8Z6o/iCbRtD0KO8ljsY73zp7vyUCPngjaTnjjHXnpis/T/iRqV5aaRq03h1bbRdRuUtBK14GmSRiVzsC4KbgRnOe+B0oA777Hbf8+8P/fAo+x23/PvD/wB8CuCvviXOkmo3On6ZaXOl6dK8U0kuorFPKU++Yo9pyBz1IzjiktfF2p3HxFbbEn/CPHRkvQzXONsZJPm7dv3v4duenOe1AHffY7b/AJ94f++BR9jtv+feH/vgV5/B8T5mS01K40u1i0W7mSOORdQV7lFc4V3h28A5HAYkZq43j+9+266U0BjpmiSSpd3f2gEvsTcAiYySe/YepoA7T7Hbf8+8P/fAp8cUcQIjjVAeoUYrkvDPi3VdaurX7Vo1utjeRGWG7sL37SkZAB2S/KNrYPuM8V2FABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAHA6n4F1C+/4SuSO4to59SuLe60+Tc37qWJRtL8cfMO2eDTtM8CXlk/hZpp7eRtP+1yag4ZszSzoQxTjn5mPXHFd5RQB5oPCHiseFz4LD6X/AGKSYv7Q81/P+zls7fK24344zuxXQWHhJ4NT8TGd4/sOrRQwxKjEuqrEYzuyMDrxgmurooA8s0v4d6naJp+mSaN4Vigs5EMmrJaJJczxqeBsaPCuQAC249yOa9ToooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACue8caDdeJfCV5pNlJDHPMYyrTEhRtdWOSAT0HpXQ0UANRSsaqeoAFeV6n8OtYvLzxAv2HQbt9SkkeHVr0tJcW6MMCNU2kDHQEMPXB6V6tRQBxnhvw1qtjrljqmofZI/J0WPT3iilZz5ivnIJUDBAH4/nXK6j8Ndbu4tetfsOgXE+oSyyR6zdl3uVVuVjClflx93IbAHY167RQByGg+HdUtdfn1a+FrH5+lW9mYopWcrIhbPJUZXkYP6Vnw+B9Tj8DeH9EM9p9p07UIrqZw7bGVZWchTtyTg9wK7+igDyuX4c6hZzajZ2GjeGLyC8uJJ4dS1CAPPbBzkgoYyJMEnb8wHrW3ceENQHimKaH7I+kz6N/Zd1n91IgGTuRFXbznpwBXc0UAeWaX8O9TtE0/TJNG8KxQWciGTVktEkuZ41PA2NHhXIABbce5HNdPp/hvVbG28UCC9gt7nVLyS5tJkXzPKyigblYYPK8jkYrrKKAPONC8GarF4tsdYudK0TRvsqOLh9KkbN8WXHzLsVQufm5yc16PRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAH//2Q==\"\n              }\n            },\n            {\n              \"id\": \"/page/4/Caption/335\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p>Figure 2: Illustration of a Switch Transformer encoder block. We replace the dense feed forward network (FFN) layer present in the Transformer with a sparse Switch FFN layer (light blue). The layer operates independently on the tokens in the sequence. We diagram two tokens (x1 = \\\"More\\\" and x2 = \\\"Parameters\\\" below) being routed (solid lines) across four FFN experts, where the router independently routes each token. The switch FFN layer returns the output of the selected FFN multiplied by the router gate value (dotted-line).</p>\",\n              \"polygon\": [\n                [\n                  89.7978515625,\n                  304.0721740722656\n                ],\n                [\n                  521.9130859375,\n                  304.0721740722656\n                ],\n                [\n                  521.9130859375,\n                  396.7734375\n                ],\n                [\n                  89.7978515625,\n                  396.7734375\n                ]\n              ],\n              \"bbox\": [\n                89.7978515625,\n                304.0721740722656,\n                521.9130859375,\n                396.7734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/4/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-4-0\\\"></span>2.1 Simplifying Sparse Routing</h4>\",\n          \"polygon\": [\n            [\n              89.57373046875,\n              430.6282043457031\n            ],\n            [\n              262.7237243652344,\n              430.6282043457031\n            ],\n            [\n              262.7237243652344,\n              441.6328125\n            ],\n            [\n              89.57373046875,\n              441.6328125\n            ]\n          ],\n          \"bbox\": [\n            89.57373046875,\n            430.6282043457031,\n            262.7237243652344,\n            441.6328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/TextInlineMath/4\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">Mixture of Expert Routing. Shazeer et al. (2017) proposed a natural language Mixtureof-Experts (MoE) layer which takes as an input a token representation x and then routes this to the best determined top-<i>k</i> experts, selected from a set {<i>Ei</i>(<i>x</i>)}N of <i>N</i> experts. The router variable <i>Wr</i> produces logits <i>h</i>(<i>x</i>) = <i>Wr</i> \\n· <i>x</i> which are normalized via a softmax distribution over the available <i>N</i> experts at that layer. The gate-value for expert <i>i</i> is given by,</p>\",\n          \"polygon\": [\n            [\n              89.05078125,\n              449.93719482421875\n            ],\n            [\n              521.9562377929688,\n              449.93719482421875\n            ],\n            [\n              521.9562377929688,\n              528.64453125\n            ],\n            [\n              89.05078125,\n              528.64453125\n            ]\n          ],\n          \"bbox\": [\n            89.05078125,\n            449.93719482421875,\n            521.9562377929688,\n            528.64453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Equation/5\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">p_{i}(x) = \\\\frac{e^{h(x)_{i}}}{\\\\\\\\\\\\sum_{j}^{N}e^{h(x)_{j}}}.\\\\tag{1}</math></p>\",\n          \"polygon\": [\n            [\n              259.98046875,\n              529.0751647949219\n            ],\n            [\n              521.98095703125,\n              529.0751647949219\n            ],\n            [\n              521.98095703125,\n              561.12890625\n            ],\n            [\n              259.98046875,\n              561.12890625\n            ]\n          ],\n          \"bbox\": [\n            259.98046875,\n            529.0751647949219,\n            521.98095703125,\n            561.12890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The top-k gate values are selected for routing the token x. If T is the set of selected top-k indices then the output computation of the layer is the linearly weighted combination of each expert's computation on the token by the gate value,</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              566.8418273925781\n            ],\n            [\n              521.6497192382812,\n              566.8418273925781\n            ],\n            [\n              521.6497192382812,\n              604.9903106689453\n            ],\n            [\n              89.349609375,\n              604.9903106689453\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            566.8418273925781,\n            521.6497192382812,\n            604.9903106689453\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Equation/7\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<span id=\\\"page-4-1\\\"></span><p block-type=\\\"Equation\\\"><math display=\\\"block\\\">y = \\\\sum_{i \\\\in T} p_i(x) E_i(x) \\\\quad (2)</math></p>\",\n          \"polygon\": [\n            [\n              257.1416015625,\n              615.65625\n            ],\n            [\n              521.9810180664062,\n              615.65625\n            ],\n            [\n              521.9810180664062,\n              644.2734375\n            ],\n            [\n              257.1416015625,\n              644.2734375\n            ]\n          ],\n          \"bbox\": [\n            257.1416015625,\n            615.65625,\n            521.9810180664062,\n            644.2734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">Switch Routing: Rethinking Mixture-of-Experts. <a href=\\\"#page-38-2\\\">Shazeer</a> <a href=\\\"#page-38-2\\\">et</a> <a href=\\\"#page-38-2\\\">al.</a> <a href=\\\"#page-38-2\\\">(2017)</a> conjectured that routing to k &gt; 1 experts was necessary in order to have non-trivial gradients to the routing functions. The authors intuited that learning to route would not work without the ability to compare at least two experts. <a href=\\\"#page-37-3\\\">Ramachandran</a> <a href=\\\"#page-37-3\\\">and</a> <a href=\\\"#page-37-3\\\">Le</a> <a href=\\\"#page-37-3\\\">(2018)</a> went further to</p>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              653.6882171630859\n            ],\n            [\n              521.88720703125,\n              653.6882171630859\n            ],\n            [\n              521.88720703125,\n              705.2453079223633\n            ],\n            [\n              89.7978515625,\n              705.2453079223633\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            653.6882171630859,\n            521.88720703125,\n            705.2453079223633\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/PageFooter/9\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              303.01171875,\n              724.9639282226562\n            ],\n            [\n              308.4903869628906,\n              724.9639282226562\n            ],\n            [\n              308.4903869628906,\n              735.5390625\n            ],\n            [\n              303.01171875,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            303.01171875,\n            724.9639282226562,\n            308.4903869628906,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"4\": \"/page/4/SectionHeader/3\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/5/Page/269\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/5/PageHeader/0'></content-ref><content-ref src='/page/5/Text/1'></content-ref><content-ref src='/page/5/Text/2'></content-ref><content-ref src='/page/5/Figure/3'></content-ref><content-ref src='/page/5/ListItem/4'></content-ref><content-ref src='/page/5/SectionHeader/5'></content-ref><content-ref src='/page/5/Text/6'></content-ref><content-ref src='/page/5/PageFooter/8'></content-ref><content-ref src='/page/5/Footnote/7'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/5/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.8095703125,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              50.080078125\n            ],\n            [\n              239.8095703125,\n              50.080078125\n            ]\n          ],\n          \"bbox\": [\n            239.8095703125,\n            37.992431640625,\n            368.75390625,\n            50.080078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">study the top-k decision and found that higher k-values in lower layers in the model were important for models with many routing layers. Contrary to these ideas, we instead use a simplified strategy where we route to only a single expert. We show this simplification preserves model quality, reduces routing computation and performs better. This k = 1 routing strategy is later referred to as a Switch layer. Note that for both MoE and Switch Routing, the gate value pi(x) in Equation <a href=\\\"#page-4-1\\\">2</a> permits differentiability of the router.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              93.29522705078125\n            ],\n            [\n              522.3515625,\n              93.29522705078125\n            ],\n            [\n              522.3515625,\n              172.94427490234375\n            ],\n            [\n              89.4990234375,\n              172.94427490234375\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            93.29522705078125,\n            522.3515625,\n            172.94427490234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The benefits for the Switch layer are three-fold: (1) The router computation is reduced as we are only routing a token to a single expert. (2) The batch size (expert capacity) of each expert can be at least halved since each token is only being routed to a single expert.<a href=\\\"#page-5-1\\\">3</a> (3) The routing implementation is simplified and communication costs are reduced. Figure <a href=\\\"#page-5-2\\\">3</a> shows an example of routing with different expert capacity factors.</p>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              174.41015625\n            ],\n            [\n              521.8433837890625,\n              174.41015625\n            ],\n            [\n              521.8433837890625,\n              239.6964111328125\n            ],\n            [\n              89.7978515625,\n              239.6964111328125\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            174.41015625,\n            521.8433837890625,\n            239.6964111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Figure/3\",\n          \"block_type\": \"Figure\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              95.1767578125,\n              249.43359375\n            ],\n            [\n              526.9485473632812,\n              249.43359375\n            ],\n            [\n              526.9485473632812,\n              414.94921875\n            ],\n            [\n              95.1767578125,\n              414.94921875\n            ]\n          ],\n          \"bbox\": [\n            95.1767578125,\n            249.43359375,\n            526.9485473632812,\n            414.94921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {\n            \"/page/5/Figure/3\": \"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\"\n          }\n        },\n        {\n          \"id\": \"/page/5/ListItem/4\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-5-2\\\"></span>Figure 3: Illustration of token routing dynamics. Each expert processes a fixed batch-size of tokens modulated by the capacity factor. Each token is routed to the expert with the highest router probability, but each expert has a fixed batch size of (total tokens / num experts) × capacity factor. If the tokens are unevenly dispatched then certain experts will overflow (denoted by dotted red lines), resulting in these tokens not being processed by this layer. A larger capacity factor alleviates this overflow issue, but also increases computation and communication costs (depicted by padded white/empty slots).</li>\",\n          \"polygon\": [\n            [\n              90.0,\n              428.6001892089844\n            ],\n            [\n              521.8234252929688,\n              428.6001892089844\n            ],\n            [\n              521.8234252929688,\n              534.3533325195312\n            ],\n            [\n              90.0,\n              534.3533325195312\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            428.6001892089844,\n            521.8234252929688,\n            534.3533325195312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"4\": \"/page/4/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-5-0\\\"></span>2.2 Efficient Sparse Routing</h3>\",\n          \"polygon\": [\n            [\n              88.82666015625,\n              574.9432220458984\n            ],\n            [\n              245.73831176757812,\n              574.9432220458984\n            ],\n            [\n              245.73831176757812,\n              586.265625\n            ],\n            [\n              88.82666015625,\n              586.265625\n            ]\n          ],\n          \"bbox\": [\n            88.82666015625,\n            574.9432220458984,\n            245.73831176757812,\n            586.265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We use Mesh-Tensorflow (MTF) <a href=\\\"#page-38-3\\\">(Shazeer</a> <a href=\\\"#page-38-3\\\">et</a> <a href=\\\"#page-38-3\\\">al.,</a> <a href=\\\"#page-38-3\\\">2018)</a> which is a library, with similar semantics and API to Tensorflow <a href=\\\"#page-35-3\\\">(Abadi</a> <a href=\\\"#page-35-3\\\">et</a> <a href=\\\"#page-35-3\\\">al.,</a> <a href=\\\"#page-35-3\\\">2016)</a> that facilitates efficient distributed data and model parallel architectures. It does so by abstracting the physical set of cores to a logical mesh of processors. Tensors and computations may then be sharded per named dimensions, facilitating easy partitioning of models across dimensions. We design our model with TPUs in mind, which require statically declared sizes. Below we describe our distributed Switch Transformer implementation.</p>\",\n          \"polygon\": [\n            [\n              89.05078125,\n              594.2522277832031\n            ],\n            [\n              521.75390625,\n              594.2522277832031\n            ],\n            [\n              521.75390625,\n              686.4563064575195\n            ],\n            [\n              89.05078125,\n              686.4563064575195\n            ]\n          ],\n          \"bbox\": [\n            89.05078125,\n            594.2522277832031,\n            521.75390625,\n            686.4563064575195\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/PageFooter/8\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              302.712890625,\n              724.9639129638672\n            ],\n            [\n              308.49029541015625,\n              724.9639129638672\n            ],\n            [\n              308.49029541015625,\n              735.15234375\n            ],\n            [\n              302.712890625,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            302.712890625,\n            724.9639129638672,\n            308.49029541015625,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Footnote/7\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-5-1\\\"></span><sup>3. </sup>See Section <a href=\\\"#page-5-0\\\">2.2</a> for a technical description.</p>\",\n          \"polygon\": [\n            [\n              90.3955078125,\n              695.8544769287109\n            ],\n            [\n              276.5654296875,\n              695.8544769287109\n            ],\n            [\n              276.5654296875,\n              705.375\n            ],\n            [\n              90.3955078125,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            90.3955078125,\n            695.8544769287109,\n            276.5654296875,\n            705.375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/5/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/6/Page/372\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/6/PageHeader/0'></content-ref><content-ref src='/page/6/Text/1'></content-ref><content-ref src='/page/6/Equation/2'></content-ref><content-ref src='/page/6/Text/3'></content-ref><content-ref src='/page/6/Text/4'></content-ref><content-ref src='/page/6/Equation/5'></content-ref><content-ref src='/page/6/Text/6'></content-ref><content-ref src='/page/6/Equation/7'></content-ref><content-ref src='/page/6/Text/8'></content-ref><content-ref src='/page/6/Equation/9'></content-ref><content-ref src='/page/6/Text/10'></content-ref><content-ref src='/page/6/PageFooter/12'></content-ref><content-ref src='/page/6/Footnote/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/6/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.4296875,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              50.03173828125\n            ],\n            [\n              247.4296875,\n              50.03173828125\n            ]\n          ],\n          \"bbox\": [\n            247.4296875,\n            37.992431640625,\n            359.7890625,\n            50.03173828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Distributed Switch Implementation. All of our tensor shapes are statically determined at compilation time, but our computation is dynamic due to the routing decisions at training and inference. Because of this, one important technical consideration is how to set the expert capacity. The expert capacity—the number of tokens each expert computes—is set by evenly dividing the number of tokens in the batch across the number of experts, and then further expanding by a capacity factor,</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              93.29522705078125\n            ],\n            [\n              521.85107421875,\n              93.29522705078125\n            ],\n            [\n              521.85107421875,\n              172.1865234375\n            ],\n            [\n              89.4990234375,\n              172.1865234375\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            93.29522705078125,\n            521.85107421875,\n            172.1865234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Equation/2\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">\\\\text{expert capacity} = \\\\left(\\\\frac{\\\\text{tokens per batch}}{\\\\text{number of experts}}\\\\right) \\\\times \\\\text{capacity factor}. \\\\tag{3}</math></p>\",\n          \"polygon\": [\n            [\n              165.7001953125,\n              182.8212890625\n            ],\n            [\n              521.9810180664062,\n              182.8212890625\n            ],\n            [\n              521.9810180664062,\n              209.794921875\n            ],\n            [\n              165.7001953125,\n              209.794921875\n            ]\n          ],\n          \"bbox\": [\n            165.7001953125,\n            182.8212890625,\n            521.9810180664062,\n            209.794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A capacity factor greater than 1.0 creates additional buffer to accommodate for when tokens are not perfectly balanced across experts. If too many tokens are routed to an expert (referred to later as dropped tokens), computation is skipped and the token representation is passed directly to the next layer through the residual connection. Increasing the expert capacity is not without drawbacks, however, since high values will result in wasted computation and memory. This trade-off is explained in Figure <a href=\\\"#page-5-2\\\">3.</a> Empirically we find ensuring lower rates of dropped tokens are important for the scaling of sparse expert-models. Throughout our experiments we didn't notice any dependency on the number of experts for the number of tokens dropped (typically &lt; 1%). Using the auxiliary load balancing loss (next section) with a high enough coefficient ensured good load balancing. We study the impact that these design decisions have on model quality and speed in Table <a href=\\\"#page-8-0\\\">1.</a></p>\",\n          \"polygon\": [\n            [\n              89.947265625,\n              220.13818359375\n            ],\n            [\n              521.8017578125,\n              220.13818359375\n            ],\n            [\n              521.8017578125,\n              366.53936767578125\n            ],\n            [\n              89.947265625,\n              366.53936767578125\n            ]\n          ],\n          \"bbox\": [\n            89.947265625,\n            220.13818359375,\n            521.8017578125,\n            366.53936767578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A Differentiable Load Balancing Loss. To encourage a balanced load across experts we add an auxiliary loss <a href=\\\"#page-38-2\\\">(Shazeer</a> <a href=\\\"#page-38-2\\\">et</a> <a href=\\\"#page-38-2\\\">al.,</a> <a href=\\\"#page-38-2\\\">2017,</a> <a href=\\\"#page-38-3\\\">2018;</a> <a href=\\\"#page-37-2\\\">Lepikhin</a> <a href=\\\"#page-37-2\\\">et</a> <a href=\\\"#page-37-2\\\">al.,</a> <a href=\\\"#page-37-2\\\">2020)</a>. As in <a href=\\\"#page-38-3\\\">Shazeer</a> <a href=\\\"#page-38-3\\\">et</a> <a href=\\\"#page-38-3\\\">al.</a> <a href=\\\"#page-38-3\\\">(2018)</a>; <a href=\\\"#page-37-2\\\">Lepikhin</a> <a href=\\\"#page-37-2\\\">et</a> <a href=\\\"#page-37-2\\\">al.</a> <a href=\\\"#page-37-2\\\">(2020)</a>, Switch Transformers simplifies the original design in <a href=\\\"#page-38-2\\\">Shazeer</a> <a href=\\\"#page-38-2\\\">et</a> <a href=\\\"#page-38-2\\\">al.</a> <a href=\\\"#page-38-2\\\">(2017)</a> which had separate load-balancing and importance-weighting losses. For each Switch layer, this auxiliary loss is added to the total model loss during training. Given N experts indexed by i = 1 to N and a batch B with T tokens, the auxiliary loss is computed as the scaled dot-product between vectors f and P,</p>\",\n          \"polygon\": [\n            [\n              89.947265625,\n              368.9296875\n            ],\n            [\n              521.8467407226562,\n              368.9296875\n            ],\n            [\n              521.8467407226562,\n              461.3834228515625\n            ],\n            [\n              89.947265625,\n              461.3834228515625\n            ]\n          ],\n          \"bbox\": [\n            89.947265625,\n            368.9296875,\n            521.8467407226562,\n            461.3834228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Equation/5\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">\\\\text{loss} = \\\\alpha \\\\cdot N \\\\cdot \\\\sum_{i=1}^{N} f_i \\\\cdot P_i \\\\tag{4}</math></p>\",\n          \"polygon\": [\n            [\n              250.2685546875,\n              473.73046875\n            ],\n            [\n              521.9810791015625,\n              473.73046875\n            ],\n            [\n              521.9810791015625,\n              508.54736328125\n            ],\n            [\n              250.2685546875,\n              508.54736328125\n            ]\n          ],\n          \"bbox\": [\n            250.2685546875,\n            473.73046875,\n            521.9810791015625,\n            508.54736328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-6-1\\\"></span>where fi is the fraction of tokens dispatched to expert i,</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              514.246337890625\n            ],\n            [\n              358.892578125,\n              514.246337890625\n            ],\n            [\n              358.892578125,\n              526.1493530273438\n            ],\n            [\n              89.6484375,\n              526.1493530273438\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            514.246337890625,\n            358.892578125,\n            526.1493530273438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Equation/7\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">f_{i} = \\\\frac{1}{T} \\\\sum_{x \\\\in \\\\mathcal{B}} \\\\mathbb{1} \\\\left\\\\{ \\\\operatorname*{argmax} p(x) = i \\\\right\\\\} \\\\tag{5}</math></p>\",\n          \"polygon\": [\n            [\n              231.890625,\n              535.8223266601562\n            ],\n            [\n              521.98095703125,\n              535.8223266601562\n            ],\n            [\n              521.98095703125,\n              567.31640625\n            ],\n            [\n              231.890625,\n              567.31640625\n            ]\n          ],\n          \"bbox\": [\n            231.890625,\n            535.8223266601562,\n            521.98095703125,\n            567.31640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">and Pi is the fraction of the router probability allocated for expert i, <a href=\\\"#page-6-0\\\">2</a></p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              572.7931213378906\n            ],\n            [\n              427.32421875,\n              572.7931213378906\n            ],\n            [\n              427.32421875,\n              586.3582153320312\n            ],\n            [\n              89.6484375,\n              586.3582153320312\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            572.7931213378906,\n            427.32421875,\n            586.3582153320312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Equation/9\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">P_{i}=<br/>\\\\frac{1}{T}<br/>\\\\sum_{x\\\\in\\\\mathcal{B}}p_{i}(x).<br/>\\\\tag{6}</math></p>\",\n          \"polygon\": [\n            [\n              264.0146484375,\n              595.2151947021484\n            ],\n            [\n              521.9810180664062,\n              595.2151947021484\n            ],\n            [\n              521.9810180664062,\n              627.64453125\n            ],\n            [\n              264.0146484375,\n              627.64453125\n            ]\n          ],\n          \"bbox\": [\n            264.0146484375,\n            595.2151947021484,\n            521.9810180664062,\n            627.64453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since we seek uniform routing of the batch of tokens across the N experts, we desire both vectors to have values of 1/N. The auxiliary loss of Equation <a href=\\\"#page-6-1\\\">4</a> encourages uniform routing since it is minimized under a uniform distribution. The objective can also be differentiated as</p>\",\n          \"polygon\": [\n            [\n              89.947265625,\n              636.6392059326172\n            ],\n            [\n              521.880859375,\n              636.6392059326172\n            ],\n            [\n              521.880859375,\n              674.6462936401367\n            ],\n            [\n              89.947265625,\n              674.6462936401367\n            ]\n          ],\n          \"bbox\": [\n            89.947265625,\n            636.6392059326172,\n            521.880859375,\n            674.6462936401367\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/PageFooter/12\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              303.310546875,\n              724.9639129638672\n            ],\n            [\n              308.4903564453125,\n              724.9639129638672\n            ],\n            [\n              308.4903564453125,\n              735.5390625\n            ],\n            [\n              303.310546875,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            303.310546875,\n            724.9639129638672,\n            308.4903564453125,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Footnote/11\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-6-0\\\"></span><sup>2. </sup>A potential source of confusion: pi(x) is the probability of routing token x to expert i. Pi is the probability fraction to expert i across all tokens in the batch B.</p>\",\n          \"polygon\": [\n            [\n              90.6943359375,\n              684.87890625\n            ],\n            [\n              521.9830932617188,\n              684.87890625\n            ],\n            [\n              521.9830932617188,\n              704.98828125\n            ],\n            [\n              90.6943359375,\n              704.98828125\n            ]\n          ],\n          \"bbox\": [\n            90.6943359375,\n            684.87890625,\n            521.9830932617188,\n            704.98828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/5/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/7/Page/311\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/7/PageHeader/0'></content-ref><content-ref src='/page/7/TextInlineMath/1'></content-ref><content-ref src='/page/7/SectionHeader/2'></content-ref><content-ref src='/page/7/Text/3'></content-ref><content-ref src='/page/7/Text/4'></content-ref><content-ref src='/page/7/Text/5'></content-ref><content-ref src='/page/7/SectionHeader/6'></content-ref><content-ref src='/page/7/Text/7'></content-ref><content-ref src='/page/7/PageFooter/10'></content-ref><content-ref src='/page/7/Footnote/8'></content-ref><content-ref src='/page/7/Footnote/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/7/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.958984375,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              50.2734375\n            ],\n            [\n              239.958984375,\n              50.2734375\n            ]\n          ],\n          \"bbox\": [\n            239.958984375,\n            37.992431640625,\n            368.75390625,\n            50.2734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/TextInlineMath/1\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">the P-vector is differentiable, but the f-vector is not. The final loss is multiplied by expert count N to keep the loss constant as the number of experts varies since under uniform routing PN i=1(fi · Pi) = PN i=1( 1 N · 1 N ) = 1 N . Finally, a hyper-parameter α is a multiplicative coefficient for these auxiliary losses; throughout this work we use an α = 10−2 which was sufficiently large to ensure load balancing while small enough to not to overwhelm the primary cross-entropy objective. We swept hyper-parameter ranges of α from 10−1 to 10−5 in powers of 10 and found 10−2 balanced load quickly without interfering with training loss.</p>\",\n          \"polygon\": [\n            [\n              88.6025390625,\n              93.005859375\n            ],\n            [\n              522.3515625,\n              93.005859375\n            ],\n            [\n              522.3515625,\n              185.625\n            ],\n            [\n              88.6025390625,\n              185.625\n            ]\n          ],\n          \"bbox\": [\n            88.6025390625,\n            93.005859375,\n            522.3515625,\n            185.625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-7-0\\\"></span>2.3 Putting It All Together: The Switch Transformer</h4>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              204.51019287109375\n            ],\n            [\n              384.890625,\n              204.51019287109375\n            ],\n            [\n              384.890625,\n              215.595703125\n            ],\n            [\n              89.7978515625,\n              215.595703125\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            204.51019287109375,\n            384.890625,\n            215.595703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Our first test of the Switch Transformer starts with pre-training on the \\\"Colossal Clean Crawled Corpus\\\" (C4), introduced in <a href=\\\"#page-37-0\\\">(Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.,</a> <a href=\\\"#page-37-0\\\">2019)</a>. For our pre-training objective, we use a masked language modeling task <a href=\\\"#page-38-4\\\">(Taylor,</a> <a href=\\\"#page-38-4\\\">1953;</a> <a href=\\\"#page-35-4\\\">Fedus</a> <a href=\\\"#page-35-4\\\">et</a> <a href=\\\"#page-35-4\\\">al.,</a> <a href=\\\"#page-35-4\\\">2018;</a> <a href=\\\"#page-35-5\\\">Devlin</a> <a href=\\\"#page-35-5\\\">et</a> <a href=\\\"#page-35-5\\\">al.,</a> <a href=\\\"#page-35-5\\\">2018)</a> where the model is trained to predict missing tokens. In our pre-training setting, as determined in <a href=\\\"#page-37-0\\\">Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.</a> <a href=\\\"#page-37-0\\\">(2019)</a> to be optimal, we drop out 15% of tokens and then replace the masked sequence with a single sentinel token. To compare our models, we record the negative log perplexity.<a href=\\\"#page-7-2\\\">4</a> Throughout all tables in the paper, ↑ indicates that a higher value for that metric is better and vice-versa for ↓. A comparison of all the models studied in this work are in Table <a href=\\\"#page-22-0\\\">9.</a></p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              225.79119873046875\n            ],\n            [\n              521.8588256835938,\n              225.79119873046875\n            ],\n            [\n              521.8588256835938,\n              345.0933837890625\n            ],\n            [\n              89.6484375,\n              345.0933837890625\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            225.79119873046875,\n            521.8588256835938,\n            345.0933837890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A head-to-head comparison of the Switch Transformer and the MoE Transformer is presented in Table <a href=\\\"#page-8-0\\\">1.</a> Our Switch Transformer model is FLOP-matched to 'T5-Base' <a href=\\\"#page-37-0\\\">(Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.,</a> <a href=\\\"#page-37-0\\\">2019)</a> (same amount of computation per token is applied). The MoE Transformer, using top-2 routing, has two experts which each apply a separate FFN to each token and thus its FLOPS are larger. All models were trained for the same number of steps on identical hardware. Note that the MoE model going from capacity factor 2.0 to 1.25 actually slows down (840 to 790) in the above experiment setup, which is unexpected.<a href=\\\"#page-7-3\\\">5</a></p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              349.70526123046875\n            ],\n            [\n              521.67822265625,\n              349.70526123046875\n            ],\n            [\n              521.67822265625,\n              442.01953125\n            ],\n            [\n              89.6484375,\n              442.01953125\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            349.70526123046875,\n            521.67822265625,\n            442.01953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We highlight three key findings from Table <a href=\\\"#page-8-0\\\">1:</a> (1) Switch Transformers outperform both carefully tuned dense models and MoE Transformers on a speed-quality basis. For a fixed amount of computation and wall-clock time, Switch Transformers achieve the best result. (2) The Switch Transformer has a smaller computational footprint than the MoE counterpart. If we increase its size to match the training speed of the MoE Transformer, we find this outperforms all MoE and Dense models on a per step basis as well. (3) Switch Transformers perform better at lower capacity factors (1.0, 1.25). Smaller expert capacities are indicative of the scenario in the large model regime where model memory is very scarce and the capacity factor will want to be made as small as possible.</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              446.5202941894531\n            ],\n            [\n              521.960205078125,\n              446.5202941894531\n            ],\n            [\n              521.960205078125,\n              565.8234405517578\n            ],\n            [\n              89.6484375,\n              565.8234405517578\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            446.5202941894531,\n            521.960205078125,\n            565.8234405517578\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-7-1\\\"></span>2.4 Improved Training and Fine-Tuning Techniques</h4>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              584.8343353271484\n            ],\n            [\n              374.24749755859375,\n              584.8343353271484\n            ],\n            [\n              374.24749755859375,\n              595.93359375\n            ],\n            [\n              89.6484375,\n              595.93359375\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            584.8343353271484,\n            374.24749755859375,\n            595.93359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Sparse expert models may introduce training difficulties over a vanilla Transformer. Instability can result because of the hard-switching (routing) decisions at each of these layers. Further, low precision formats like bfloat16 <a href=\\\"#page-39-3\\\">(Wang</a> <a href=\\\"#page-39-3\\\">and</a> <a href=\\\"#page-39-3\\\">Kanwar,</a> <a href=\\\"#page-39-3\\\">2019)</a> can exacerbate issues</p>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              606.1153411865234\n            ],\n            [\n              521.6184692382812,\n              606.1153411865234\n            ],\n            [\n              521.6184692382812,\n              644.1224365234375\n            ],\n            [\n              89.7978515625,\n              644.1224365234375\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            606.1153411865234,\n            521.6184692382812,\n            644.1224365234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/PageFooter/10\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              302.8623046875,\n              724.9639129638672\n            ],\n            [\n              308.49029541015625,\n              724.9639129638672\n            ],\n            [\n              308.49029541015625,\n              735.5390625\n            ],\n            [\n              302.8623046875,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            302.8623046875,\n            724.9639129638672,\n            308.49029541015625,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/Footnote/8\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-7-2\\\"></span><sup>4. </sup>We use log base-e for this metric so the units are nats.</p>\",\n          \"polygon\": [\n            [\n              92.11376953125,\n              662.44921875\n            ],\n            [\n              326.3203125,\n              662.44921875\n            ],\n            [\n              326.3203125,\n              671.9438781738281\n            ],\n            [\n              92.11376953125,\n              671.9438781738281\n            ]\n          ],\n          \"bbox\": [\n            92.11376953125,\n            662.44921875,\n            326.3203125,\n            671.9438781738281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/Footnote/9\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-7-3\\\"></span><sup>5. </sup>Note that speed measurements are both a function of the algorithm and the implementation details. Switch Transformer reduces the necessary computation relative to MoE (algorithm), but the final speed differences are impacted by low-level optimizations (implementation).</p>\",\n          \"polygon\": [\n            [\n              92.4873046875,\n              673.9364776611328\n            ],\n            [\n              521.6932983398438,\n              673.9364776611328\n            ],\n            [\n              521.6932983398438,\n              705.375\n            ],\n            [\n              92.4873046875,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            92.4873046875,\n            673.9364776611328,\n            521.6932983398438,\n            705.375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/5/SectionHeader/5\",\n        \"4\": \"/page/7/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/8/Page/301\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/8/PageHeader/0'></content-ref><content-ref src='/page/8/Table/1'></content-ref><content-ref src='/page/8/ListItem/2'></content-ref><content-ref src='/page/8/Text/3'></content-ref><content-ref src='/page/8/Text/4'></content-ref><content-ref src='/page/8/Text/5'></content-ref><content-ref src='/page/8/PageFooter/6'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/8/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              246.9814453125,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              50.61181640625\n            ],\n            [\n              246.9814453125,\n              50.61181640625\n            ]\n          ],\n          \"bbox\": [\n            246.9814453125,\n            37.992431640625,\n            359.7890625,\n            50.61181640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/8/Table/1\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Model</th><th>Capacity<br/>Factor</th><th>Quality after<br/>100k steps (↑)<br/>(Neg. Log Perp.)</th><th>Time to Quality<br/>Threshold (↓)<br/>(hours)</th><th>Speed (↑)<br/>(examples/sec)</th></tr><tr><td>T5-Base</td><td>—</td><td>-1.731</td><td>Not achieved†</td><td>1600</td></tr><tr><td>T5-Large</td><td>—</td><td>-1.550</td><td>131.1</td><td>470</td></tr><tr><td>MoE-Base</td><td>2.0</td><td>-1.547</td><td>68.7</td><td>840</td></tr><tr><td>Switch-Base</td><td>2.0</td><td>-1.554</td><td>72.8</td><td>860</td></tr><tr><td>MoE-Base</td><td>1.25</td><td>-1.559</td><td>80.7</td><td>790</td></tr><tr><td>Switch-Base</td><td>1.25</td><td>-1.553</td><td>65.0</td><td>910</td></tr><tr><td>MoE-Base</td><td>1.0</td><td>-1.572</td><td>80.1</td><td>860</td></tr><tr><td>Switch-Base</td><td>1.0</td><td>-1.561</td><td>62.8</td><td>1000</td></tr><tr><td>Switch-Base+</td><td>1.0</td><td>-1.534</td><td>67.6</td><td>780</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              102.498046875,\n              90.63720703125\n            ],\n            [\n              507.111328125,\n              90.63720703125\n            ],\n            [\n              507.111328125,\n              261.03515625\n            ],\n            [\n              102.498046875,\n              261.03515625\n            ]\n          ],\n          \"bbox\": [\n            102.498046875,\n            90.63720703125,\n            507.111328125,\n            261.03515625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/8/TableCell/251\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Model</th>\",\n              \"polygon\": [\n                [\n                  102.498046875,\n                  90.63720703125\n                ],\n                [\n                  103.498046875,\n                  90.63720703125\n                ],\n                [\n                  103.498046875,\n                  91.63720703125\n                ],\n                [\n                  102.498046875,\n                  91.63720703125\n                ]\n              ],\n              \"bbox\": [\n                102.498046875,\n                90.63720703125,\n                103.498046875,\n                91.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/252\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Capacity<br/>Factor</th>\",\n              \"polygon\": [\n                [\n                  103.498046875,\n                  90.63720703125\n                ],\n                [\n                  104.498046875,\n                  90.63720703125\n                ],\n                [\n                  104.498046875,\n                  91.63720703125\n                ],\n                [\n                  103.498046875,\n                  91.63720703125\n                ]\n              ],\n              \"bbox\": [\n                103.498046875,\n                90.63720703125,\n                104.498046875,\n                91.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/253\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Quality after<br/>100k steps (↑)<br/>(Neg. Log Perp.)</th>\",\n              \"polygon\": [\n                [\n                  104.498046875,\n                  90.63720703125\n                ],\n                [\n                  105.498046875,\n                  90.63720703125\n                ],\n                [\n                  105.498046875,\n                  91.63720703125\n                ],\n                [\n                  104.498046875,\n                  91.63720703125\n                ]\n              ],\n              \"bbox\": [\n                104.498046875,\n                90.63720703125,\n                105.498046875,\n                91.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/254\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Time to Quality<br/>Threshold (↓)<br/>(hours)</th>\",\n              \"polygon\": [\n                [\n                  105.498046875,\n                  90.63720703125\n                ],\n                [\n                  106.498046875,\n                  90.63720703125\n                ],\n                [\n                  106.498046875,\n                  91.63720703125\n                ],\n                [\n                  105.498046875,\n                  91.63720703125\n                ]\n              ],\n              \"bbox\": [\n                105.498046875,\n                90.63720703125,\n                106.498046875,\n                91.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/255\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Speed (↑)<br/>(examples/sec)</th>\",\n              \"polygon\": [\n                [\n                  106.498046875,\n                  90.63720703125\n                ],\n                [\n                  107.498046875,\n                  90.63720703125\n                ],\n                [\n                  107.498046875,\n                  91.63720703125\n                ],\n                [\n                  106.498046875,\n                  91.63720703125\n                ]\n              ],\n              \"bbox\": [\n                106.498046875,\n                90.63720703125,\n                107.498046875,\n                91.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/256\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Base</td>\",\n              \"polygon\": [\n                [\n                  102.498046875,\n                  91.63720703125\n                ],\n                [\n                  103.498046875,\n                  91.63720703125\n                ],\n                [\n                  103.498046875,\n                  92.63720703125\n                ],\n                [\n                  102.498046875,\n                  92.63720703125\n                ]\n              ],\n              \"bbox\": [\n                102.498046875,\n                91.63720703125,\n                103.498046875,\n                92.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/257\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>—</td>\",\n              \"polygon\": [\n                [\n                  103.498046875,\n                  91.63720703125\n                ],\n                [\n                  104.498046875,\n                  91.63720703125\n                ],\n                [\n                  104.498046875,\n                  92.63720703125\n                ],\n                [\n                  103.498046875,\n                  92.63720703125\n                ]\n              ],\n              \"bbox\": [\n                103.498046875,\n                91.63720703125,\n                104.498046875,\n                92.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/258\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.731</td>\",\n              \"polygon\": [\n                [\n                  104.498046875,\n                  91.63720703125\n                ],\n                [\n                  105.498046875,\n                  91.63720703125\n                ],\n                [\n                  105.498046875,\n                  92.63720703125\n                ],\n                [\n                  104.498046875,\n                  92.63720703125\n                ]\n              ],\n              \"bbox\": [\n                104.498046875,\n                91.63720703125,\n                105.498046875,\n                92.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/259\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Not achieved†</td>\",\n              \"polygon\": [\n                [\n                  105.498046875,\n                  91.63720703125\n                ],\n                [\n                  106.498046875,\n                  91.63720703125\n                ],\n                [\n                  106.498046875,\n                  92.63720703125\n                ],\n                [\n                  105.498046875,\n                  92.63720703125\n                ]\n              ],\n              \"bbox\": [\n                105.498046875,\n                91.63720703125,\n                106.498046875,\n                92.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/260\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1600</td>\",\n              \"polygon\": [\n                [\n                  106.498046875,\n                  91.63720703125\n                ],\n                [\n                  107.498046875,\n                  91.63720703125\n                ],\n                [\n                  107.498046875,\n                  92.63720703125\n                ],\n                [\n                  106.498046875,\n                  92.63720703125\n                ]\n              ],\n              \"bbox\": [\n                106.498046875,\n                91.63720703125,\n                107.498046875,\n                92.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/261\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Large</td>\",\n              \"polygon\": [\n                [\n                  102.498046875,\n                  92.63720703125\n                ],\n                [\n                  103.498046875,\n                  92.63720703125\n                ],\n                [\n                  103.498046875,\n                  93.63720703125\n                ],\n                [\n                  102.498046875,\n                  93.63720703125\n                ]\n              ],\n              \"bbox\": [\n                102.498046875,\n                92.63720703125,\n                103.498046875,\n                93.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/262\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>—</td>\",\n              \"polygon\": [\n                [\n                  103.498046875,\n                  92.63720703125\n                ],\n                [\n                  104.498046875,\n                  92.63720703125\n                ],\n                [\n                  104.498046875,\n                  93.63720703125\n                ],\n                [\n                  103.498046875,\n                  93.63720703125\n                ]\n              ],\n              \"bbox\": [\n                103.498046875,\n                92.63720703125,\n                104.498046875,\n                93.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/263\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.550</td>\",\n              \"polygon\": [\n                [\n                  104.498046875,\n                  92.63720703125\n                ],\n                [\n                  105.498046875,\n                  92.63720703125\n                ],\n                [\n                  105.498046875,\n                  93.63720703125\n                ],\n                [\n                  104.498046875,\n                  93.63720703125\n                ]\n              ],\n              \"bbox\": [\n                104.498046875,\n                92.63720703125,\n                105.498046875,\n                93.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/264\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>131.1</td>\",\n              \"polygon\": [\n                [\n                  105.498046875,\n                  92.63720703125\n                ],\n                [\n                  106.498046875,\n                  92.63720703125\n                ],\n                [\n                  106.498046875,\n                  93.63720703125\n                ],\n                [\n                  105.498046875,\n                  93.63720703125\n                ]\n              ],\n              \"bbox\": [\n                105.498046875,\n                92.63720703125,\n                106.498046875,\n                93.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/265\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>470</td>\",\n              \"polygon\": [\n                [\n                  106.498046875,\n                  92.63720703125\n                ],\n                [\n                  107.498046875,\n                  92.63720703125\n                ],\n                [\n                  107.498046875,\n                  93.63720703125\n                ],\n                [\n                  106.498046875,\n                  93.63720703125\n                ]\n              ],\n              \"bbox\": [\n                106.498046875,\n                92.63720703125,\n                107.498046875,\n                93.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/266\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>MoE-Base</td>\",\n              \"polygon\": [\n                [\n                  102.498046875,\n                  93.63720703125\n                ],\n                [\n                  103.498046875,\n                  93.63720703125\n                ],\n                [\n                  103.498046875,\n                  94.63720703125\n                ],\n                [\n                  102.498046875,\n                  94.63720703125\n                ]\n              ],\n              \"bbox\": [\n                102.498046875,\n                93.63720703125,\n                103.498046875,\n                94.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/267\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.0</td>\",\n              \"polygon\": [\n                [\n                  103.498046875,\n                  93.63720703125\n                ],\n                [\n                  104.498046875,\n                  93.63720703125\n                ],\n                [\n                  104.498046875,\n                  94.63720703125\n                ],\n                [\n                  103.498046875,\n                  94.63720703125\n                ]\n              ],\n              \"bbox\": [\n                103.498046875,\n                93.63720703125,\n                104.498046875,\n                94.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/268\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.547</td>\",\n              \"polygon\": [\n                [\n                  104.498046875,\n                  93.63720703125\n                ],\n                [\n                  105.498046875,\n                  93.63720703125\n                ],\n                [\n                  105.498046875,\n                  94.63720703125\n                ],\n                [\n                  104.498046875,\n                  94.63720703125\n                ]\n              ],\n              \"bbox\": [\n                104.498046875,\n                93.63720703125,\n                105.498046875,\n                94.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/269\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>68.7</td>\",\n              \"polygon\": [\n                [\n                  105.498046875,\n                  93.63720703125\n                ],\n                [\n                  106.498046875,\n                  93.63720703125\n                ],\n                [\n                  106.498046875,\n                  94.63720703125\n                ],\n                [\n                  105.498046875,\n                  94.63720703125\n                ]\n              ],\n              \"bbox\": [\n                105.498046875,\n                93.63720703125,\n                106.498046875,\n                94.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/270\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>840</td>\",\n              \"polygon\": [\n                [\n                  106.498046875,\n                  93.63720703125\n                ],\n                [\n                  107.498046875,\n                  93.63720703125\n                ],\n                [\n                  107.498046875,\n                  94.63720703125\n                ],\n                [\n                  106.498046875,\n                  94.63720703125\n                ]\n              ],\n              \"bbox\": [\n                106.498046875,\n                93.63720703125,\n                107.498046875,\n                94.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/271\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base</td>\",\n              \"polygon\": [\n                [\n                  102.498046875,\n                  94.63720703125\n                ],\n                [\n                  103.498046875,\n                  94.63720703125\n                ],\n                [\n                  103.498046875,\n                  95.63720703125\n                ],\n                [\n                  102.498046875,\n                  95.63720703125\n                ]\n              ],\n              \"bbox\": [\n                102.498046875,\n                94.63720703125,\n                103.498046875,\n                95.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/272\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.0</td>\",\n              \"polygon\": [\n                [\n                  103.498046875,\n                  94.63720703125\n                ],\n                [\n                  104.498046875,\n                  94.63720703125\n                ],\n                [\n                  104.498046875,\n                  95.63720703125\n                ],\n                [\n                  103.498046875,\n                  95.63720703125\n                ]\n              ],\n              \"bbox\": [\n                103.498046875,\n                94.63720703125,\n                104.498046875,\n                95.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/273\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.554</td>\",\n              \"polygon\": [\n                [\n                  104.498046875,\n                  94.63720703125\n                ],\n                [\n                  105.498046875,\n                  94.63720703125\n                ],\n                [\n                  105.498046875,\n                  95.63720703125\n                ],\n                [\n                  104.498046875,\n                  95.63720703125\n                ]\n              ],\n              \"bbox\": [\n                104.498046875,\n                94.63720703125,\n                105.498046875,\n                95.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/274\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>72.8</td>\",\n              \"polygon\": [\n                [\n                  105.498046875,\n                  94.63720703125\n                ],\n                [\n                  106.498046875,\n                  94.63720703125\n                ],\n                [\n                  106.498046875,\n                  95.63720703125\n                ],\n                [\n                  105.498046875,\n                  95.63720703125\n                ]\n              ],\n              \"bbox\": [\n                105.498046875,\n                94.63720703125,\n                106.498046875,\n                95.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/275\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>860</td>\",\n              \"polygon\": [\n                [\n                  106.498046875,\n                  94.63720703125\n                ],\n                [\n                  107.498046875,\n                  94.63720703125\n                ],\n                [\n                  107.498046875,\n                  95.63720703125\n                ],\n                [\n                  106.498046875,\n                  95.63720703125\n                ]\n              ],\n              \"bbox\": [\n                106.498046875,\n                94.63720703125,\n                107.498046875,\n                95.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/276\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>MoE-Base</td>\",\n              \"polygon\": [\n                [\n                  102.498046875,\n                  95.63720703125\n                ],\n                [\n                  103.498046875,\n                  95.63720703125\n                ],\n                [\n                  103.498046875,\n                  96.63720703125\n                ],\n                [\n                  102.498046875,\n                  96.63720703125\n                ]\n              ],\n              \"bbox\": [\n                102.498046875,\n                95.63720703125,\n                103.498046875,\n                96.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/277\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.25</td>\",\n              \"polygon\": [\n                [\n                  103.498046875,\n                  95.63720703125\n                ],\n                [\n                  104.498046875,\n                  95.63720703125\n                ],\n                [\n                  104.498046875,\n                  96.63720703125\n                ],\n                [\n                  103.498046875,\n                  96.63720703125\n                ]\n              ],\n              \"bbox\": [\n                103.498046875,\n                95.63720703125,\n                104.498046875,\n                96.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/278\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.559</td>\",\n              \"polygon\": [\n                [\n                  104.498046875,\n                  95.63720703125\n                ],\n                [\n                  105.498046875,\n                  95.63720703125\n                ],\n                [\n                  105.498046875,\n                  96.63720703125\n                ],\n                [\n                  104.498046875,\n                  96.63720703125\n                ]\n              ],\n              \"bbox\": [\n                104.498046875,\n                95.63720703125,\n                105.498046875,\n                96.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/279\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>80.7</td>\",\n              \"polygon\": [\n                [\n                  105.498046875,\n                  95.63720703125\n                ],\n                [\n                  106.498046875,\n                  95.63720703125\n                ],\n                [\n                  106.498046875,\n                  96.63720703125\n                ],\n                [\n                  105.498046875,\n                  96.63720703125\n                ]\n              ],\n              \"bbox\": [\n                105.498046875,\n                95.63720703125,\n                106.498046875,\n                96.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/280\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>790</td>\",\n              \"polygon\": [\n                [\n                  106.498046875,\n                  95.63720703125\n                ],\n                [\n                  107.498046875,\n                  95.63720703125\n                ],\n                [\n                  107.498046875,\n                  96.63720703125\n                ],\n                [\n                  106.498046875,\n                  96.63720703125\n                ]\n              ],\n              \"bbox\": [\n                106.498046875,\n                95.63720703125,\n                107.498046875,\n                96.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/281\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base</td>\",\n              \"polygon\": [\n                [\n                  102.498046875,\n                  96.63720703125\n                ],\n                [\n                  103.498046875,\n                  96.63720703125\n                ],\n                [\n                  103.498046875,\n                  97.63720703125\n                ],\n                [\n                  102.498046875,\n                  97.63720703125\n                ]\n              ],\n              \"bbox\": [\n                102.498046875,\n                96.63720703125,\n                103.498046875,\n                97.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/282\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.25</td>\",\n              \"polygon\": [\n                [\n                  103.498046875,\n                  96.63720703125\n                ],\n                [\n                  104.498046875,\n                  96.63720703125\n                ],\n                [\n                  104.498046875,\n                  97.63720703125\n                ],\n                [\n                  103.498046875,\n                  97.63720703125\n                ]\n              ],\n              \"bbox\": [\n                103.498046875,\n                96.63720703125,\n                104.498046875,\n                97.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/283\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.553</td>\",\n              \"polygon\": [\n                [\n                  104.498046875,\n                  96.63720703125\n                ],\n                [\n                  105.498046875,\n                  96.63720703125\n                ],\n                [\n                  105.498046875,\n                  97.63720703125\n                ],\n                [\n                  104.498046875,\n                  97.63720703125\n                ]\n              ],\n              \"bbox\": [\n                104.498046875,\n                96.63720703125,\n                105.498046875,\n                97.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/284\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>65.0</td>\",\n              \"polygon\": [\n                [\n                  105.498046875,\n                  96.63720703125\n                ],\n                [\n                  106.498046875,\n                  96.63720703125\n                ],\n                [\n                  106.498046875,\n                  97.63720703125\n                ],\n                [\n                  105.498046875,\n                  97.63720703125\n                ]\n              ],\n              \"bbox\": [\n                105.498046875,\n                96.63720703125,\n                106.498046875,\n                97.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/285\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>910</td>\",\n              \"polygon\": [\n                [\n                  106.498046875,\n                  96.63720703125\n                ],\n                [\n                  107.498046875,\n                  96.63720703125\n                ],\n                [\n                  107.498046875,\n                  97.63720703125\n                ],\n                [\n                  106.498046875,\n                  97.63720703125\n                ]\n              ],\n              \"bbox\": [\n                106.498046875,\n                96.63720703125,\n                107.498046875,\n                97.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/286\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>MoE-Base</td>\",\n              \"polygon\": [\n                [\n                  102.498046875,\n                  97.63720703125\n                ],\n                [\n                  103.498046875,\n                  97.63720703125\n                ],\n                [\n                  103.498046875,\n                  98.63720703125\n                ],\n                [\n                  102.498046875,\n                  98.63720703125\n                ]\n              ],\n              \"bbox\": [\n                102.498046875,\n                97.63720703125,\n                103.498046875,\n                98.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/287\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.0</td>\",\n              \"polygon\": [\n                [\n                  103.498046875,\n                  97.63720703125\n                ],\n                [\n                  104.498046875,\n                  97.63720703125\n                ],\n                [\n                  104.498046875,\n                  98.63720703125\n                ],\n                [\n                  103.498046875,\n                  98.63720703125\n                ]\n              ],\n              \"bbox\": [\n                103.498046875,\n                97.63720703125,\n                104.498046875,\n                98.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/288\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.572</td>\",\n              \"polygon\": [\n                [\n                  104.498046875,\n                  97.63720703125\n                ],\n                [\n                  105.498046875,\n                  97.63720703125\n                ],\n                [\n                  105.498046875,\n                  98.63720703125\n                ],\n                [\n                  104.498046875,\n                  98.63720703125\n                ]\n              ],\n              \"bbox\": [\n                104.498046875,\n                97.63720703125,\n                105.498046875,\n                98.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/289\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>80.1</td>\",\n              \"polygon\": [\n                [\n                  105.498046875,\n                  97.63720703125\n                ],\n                [\n                  106.498046875,\n                  97.63720703125\n                ],\n                [\n                  106.498046875,\n                  98.63720703125\n                ],\n                [\n                  105.498046875,\n                  98.63720703125\n                ]\n              ],\n              \"bbox\": [\n                105.498046875,\n                97.63720703125,\n                106.498046875,\n                98.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/290\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>860</td>\",\n              \"polygon\": [\n                [\n                  106.498046875,\n                  97.63720703125\n                ],\n                [\n                  107.498046875,\n                  97.63720703125\n                ],\n                [\n                  107.498046875,\n                  98.63720703125\n                ],\n                [\n                  106.498046875,\n                  98.63720703125\n                ]\n              ],\n              \"bbox\": [\n                106.498046875,\n                97.63720703125,\n                107.498046875,\n                98.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/291\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base</td>\",\n              \"polygon\": [\n                [\n                  102.498046875,\n                  98.63720703125\n                ],\n                [\n                  103.498046875,\n                  98.63720703125\n                ],\n                [\n                  103.498046875,\n                  99.63720703125\n                ],\n                [\n                  102.498046875,\n                  99.63720703125\n                ]\n              ],\n              \"bbox\": [\n                102.498046875,\n                98.63720703125,\n                103.498046875,\n                99.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/292\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.0</td>\",\n              \"polygon\": [\n                [\n                  103.498046875,\n                  98.63720703125\n                ],\n                [\n                  104.498046875,\n                  98.63720703125\n                ],\n                [\n                  104.498046875,\n                  99.63720703125\n                ],\n                [\n                  103.498046875,\n                  99.63720703125\n                ]\n              ],\n              \"bbox\": [\n                103.498046875,\n                98.63720703125,\n                104.498046875,\n                99.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/293\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.561</td>\",\n              \"polygon\": [\n                [\n                  104.498046875,\n                  98.63720703125\n                ],\n                [\n                  105.498046875,\n                  98.63720703125\n                ],\n                [\n                  105.498046875,\n                  99.63720703125\n                ],\n                [\n                  104.498046875,\n                  99.63720703125\n                ]\n              ],\n              \"bbox\": [\n                104.498046875,\n                98.63720703125,\n                105.498046875,\n                99.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/294\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>62.8</td>\",\n              \"polygon\": [\n                [\n                  105.498046875,\n                  98.63720703125\n                ],\n                [\n                  106.498046875,\n                  98.63720703125\n                ],\n                [\n                  106.498046875,\n                  99.63720703125\n                ],\n                [\n                  105.498046875,\n                  99.63720703125\n                ]\n              ],\n              \"bbox\": [\n                105.498046875,\n                98.63720703125,\n                106.498046875,\n                99.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/295\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1000</td>\",\n              \"polygon\": [\n                [\n                  106.498046875,\n                  98.63720703125\n                ],\n                [\n                  107.498046875,\n                  98.63720703125\n                ],\n                [\n                  107.498046875,\n                  99.63720703125\n                ],\n                [\n                  106.498046875,\n                  99.63720703125\n                ]\n              ],\n              \"bbox\": [\n                106.498046875,\n                98.63720703125,\n                107.498046875,\n                99.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/296\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base+</td>\",\n              \"polygon\": [\n                [\n                  102.498046875,\n                  99.63720703125\n                ],\n                [\n                  103.498046875,\n                  99.63720703125\n                ],\n                [\n                  103.498046875,\n                  100.63720703125\n                ],\n                [\n                  102.498046875,\n                  100.63720703125\n                ]\n              ],\n              \"bbox\": [\n                102.498046875,\n                99.63720703125,\n                103.498046875,\n                100.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/297\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.0</td>\",\n              \"polygon\": [\n                [\n                  103.498046875,\n                  99.63720703125\n                ],\n                [\n                  104.498046875,\n                  99.63720703125\n                ],\n                [\n                  104.498046875,\n                  100.63720703125\n                ],\n                [\n                  103.498046875,\n                  100.63720703125\n                ]\n              ],\n              \"bbox\": [\n                103.498046875,\n                99.63720703125,\n                104.498046875,\n                100.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/298\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.534</td>\",\n              \"polygon\": [\n                [\n                  104.498046875,\n                  99.63720703125\n                ],\n                [\n                  105.498046875,\n                  99.63720703125\n                ],\n                [\n                  105.498046875,\n                  100.63720703125\n                ],\n                [\n                  104.498046875,\n                  100.63720703125\n                ]\n              ],\n              \"bbox\": [\n                104.498046875,\n                99.63720703125,\n                105.498046875,\n                100.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/299\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>67.6</td>\",\n              \"polygon\": [\n                [\n                  105.498046875,\n                  99.63720703125\n                ],\n                [\n                  106.498046875,\n                  99.63720703125\n                ],\n                [\n                  106.498046875,\n                  100.63720703125\n                ],\n                [\n                  105.498046875,\n                  100.63720703125\n                ]\n              ],\n              \"bbox\": [\n                105.498046875,\n                99.63720703125,\n                106.498046875,\n                100.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/TableCell/300\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>780</td>\",\n              \"polygon\": [\n                [\n                  106.498046875,\n                  99.63720703125\n                ],\n                [\n                  107.498046875,\n                  99.63720703125\n                ],\n                [\n                  107.498046875,\n                  100.63720703125\n                ],\n                [\n                  106.498046875,\n                  100.63720703125\n                ]\n              ],\n              \"bbox\": [\n                106.498046875,\n                99.63720703125,\n                107.498046875,\n                100.63720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/8/ListItem/2\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-8-0\\\"></span>Table 1: Benchmarking Switch versus MoE. Head-to-head comparison measuring per step and per time benefits of the Switch Transformer over the MoE Transformer and T5 dense baselines. We measure quality by the negative log perplexity and the time to reach an arbitrary chosen quality threshold of Neg. Log Perp.=-1.50. All MoE and Switch Transformer models use 128 experts, with experts at every other feed-forward layer. For Switch-Base+, we increase the model size until it matches the speed of the MoE model by increasing the model hidden-size from 768 to 896 and the number of heads from 14 to 16. All models are trained with the same amount of computation (32 cores) and on the same hardware (TPUv3). Further note that all our models required pre-training beyond 100k steps to achieve our level threshold of -1.50. † T5-Base did not achieve this negative log perplexity in the 100k steps the models were trained.</li>\",\n          \"polygon\": [\n            [\n              90.0,\n              273.73419189453125\n            ],\n            [\n              521.75390625,\n              273.73419189453125\n            ],\n            [\n              521.75390625,\n              433.6843566894531\n            ],\n            [\n              90.0,\n              433.6843566894531\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            273.73419189453125,\n            521.75390625,\n            433.6843566894531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/8/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">in the softmax computation for our router. We describe training difficulties here and the methods we use to overcome them to achieve stable and scalable training.</p>\",\n          \"polygon\": [\n            [\n              88.751953125,\n              472.6422424316406\n            ],\n            [\n              521.5747680664062,\n              472.6422424316406\n            ],\n            [\n              521.5747680664062,\n              497.3203125\n            ],\n            [\n              88.751953125,\n              497.3203125\n            ]\n          ],\n          \"bbox\": [\n            88.751953125,\n            472.6422424316406,\n            521.5747680664062,\n            497.3203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/8/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Selective precision with large sparse models. Model instability hinders the ability to train using efficient bfloat16 precision, and as a result, <a href=\\\"#page-37-2\\\">Lepikhin</a> <a href=\\\"#page-37-2\\\">et</a> <a href=\\\"#page-37-2\\\">al.</a> <a href=\\\"#page-37-2\\\">(2020)</a> trains with float32 precision throughout their MoE Transformer. However, we show that by instead selectively casting to float32 precision within a localized part of the model, stability may be achieved, without incurring expensive communication cost of float32 tensors. This technique is inline with modern mixed precision training strategies where certain parts of the model and gradient updates are done in higher precision <a href=\\\"#page-37-4\\\">Micikevicius</a> <a href=\\\"#page-37-4\\\">et</a> <a href=\\\"#page-37-4\\\">al.</a> <a href=\\\"#page-37-4\\\">(2017)</a>. Table <a href=\\\"#page-9-0\\\">2</a> shows that our approach permits nearly equal speed to bfloat16 training while conferring the training stability of float32.</p>\",\n          \"polygon\": [\n            [\n              89.2001953125,\n              501.9609375\n            ],\n            [\n              521.7731323242188,\n              501.9609375\n            ],\n            [\n              521.7731323242188,\n              621.4963531494141\n            ],\n            [\n              89.2001953125,\n              621.4963531494141\n            ]\n          ],\n          \"bbox\": [\n            89.2001953125,\n            501.9609375,\n            521.7731323242188,\n            621.4963531494141\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/8/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To achieve this, we cast the router input to float32 precision. The router function takes the tokens as input and produces the dispatch and combine tensors used for the selection and recombination of expert computation (refer to Code Block <a href=\\\"#page-33-0\\\">15</a> in the Appendix for details). Importantly, the float32 precision is only used within the body of the router function—on computations local to that device. Because the resulting dispatch and combine tensors are recast to bfloat16 precision at the end of the function, no expensive float32 tensors</p>\",\n          \"polygon\": [\n            [\n              89.05078125,\n              626.5902557373047\n            ],\n            [\n              521.83740234375,\n              626.5902557373047\n            ],\n            [\n              521.83740234375,\n              705.2453384399414\n            ],\n            [\n              89.05078125,\n              705.2453384399414\n            ]\n          ],\n          \"bbox\": [\n            89.05078125,\n            626.5902557373047,\n            521.83740234375,\n            705.2453384399414\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/8/PageFooter/6\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              302.712890625,\n              724.9639587402344\n            ],\n            [\n              308.49029541015625,\n              724.9639587402344\n            ],\n            [\n              308.49029541015625,\n              735.5390625\n            ],\n            [\n              302.712890625,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            302.712890625,\n            724.9639587402344,\n            308.49029541015625,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/5/SectionHeader/5\",\n        \"4\": \"/page/7/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/9/Page/232\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/9/PageHeader/0'></content-ref><content-ref src='/page/9/TableGroup/178'></content-ref><content-ref src='/page/9/Text/3'></content-ref><content-ref src='/page/9/TextInlineMath/4'></content-ref><content-ref src='/page/9/Text/5'></content-ref><content-ref src='/page/9/Table/6'></content-ref><content-ref src='/page/9/ListItem/7'></content-ref><content-ref src='/page/9/Text/8'></content-ref><content-ref src='/page/9/PageFooter/10'></content-ref><content-ref src='/page/9/Footnote/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/9/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.2119140625,\n              37.992431640625\n            ],\n            [\n              367.8744812011719,\n              37.992431640625\n            ],\n            [\n              367.8744812011719,\n              50.41845703125\n            ],\n            [\n              239.2119140625,\n              50.41845703125\n            ]\n          ],\n          \"bbox\": [\n            239.2119140625,\n            37.992431640625,\n            367.8744812011719,\n            50.41845703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/9/TableGroup/178\",\n          \"block_type\": \"TableGroup\",\n          \"html\": \"<content-ref src='/page/9/Table/1'></content-ref><content-ref src='/page/9/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              90.0,\n              91.072265625\n            ],\n            [\n              521.6375122070312,\n              91.072265625\n            ],\n            [\n              521.6375122070312,\n              256.78125\n            ],\n            [\n              90.0,\n              256.78125\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            91.072265625,\n            521.6375122070312,\n            256.78125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/9/Table/1\",\n              \"block_type\": \"Table\",\n              \"html\": \"<table><tbody><tr><th>Model</th><th>Quality</th><th>Speed</th></tr><tr><td>(precision)</td><td>(Neg. Log Perp.) (↑)</td><td>(Examples/sec) (↑)</td></tr><tr><td>Switch-Base (float32)</td><td>-1.718</td><td>1160</td></tr><tr><td>Switch-Base (bfloat16)</td><td>-3.780 [diverged]</td><td>1390</td></tr><tr><td>Switch-Base (Selective precision)</td><td>-1.716</td><td>1390</td></tr></tbody></table>\",\n              \"polygon\": [\n                [\n                  108.0263671875,\n                  91.072265625\n                ],\n                [\n                  500.23828125,\n                  91.072265625\n                ],\n                [\n                  500.23828125,\n                  164.548828125\n                ],\n                [\n                  108.0263671875,\n                  164.548828125\n                ]\n              ],\n              \"bbox\": [\n                108.0263671875,\n                91.072265625,\n                500.23828125,\n                164.548828125\n              ],\n              \"children\": [\n                {\n                  \"id\": \"/page/9/TableCell/206\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>Model</th>\",\n                  \"polygon\": [\n                    [\n                      108.0263671875,\n                      91.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      91.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      92.072265625\n                    ],\n                    [\n                      108.0263671875,\n                      92.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    108.0263671875,\n                    91.072265625,\n                    109.0263671875,\n                    92.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/207\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>Quality</th>\",\n                  \"polygon\": [\n                    [\n                      109.0263671875,\n                      91.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      91.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      92.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      92.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    109.0263671875,\n                    91.072265625,\n                    110.0263671875,\n                    92.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/208\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>Speed</th>\",\n                  \"polygon\": [\n                    [\n                      110.0263671875,\n                      91.072265625\n                    ],\n                    [\n                      111.0263671875,\n                      91.072265625\n                    ],\n                    [\n                      111.0263671875,\n                      92.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      92.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    110.0263671875,\n                    91.072265625,\n                    111.0263671875,\n                    92.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/209\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>(precision)</td>\",\n                  \"polygon\": [\n                    [\n                      108.0263671875,\n                      92.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      92.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      93.072265625\n                    ],\n                    [\n                      108.0263671875,\n                      93.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    108.0263671875,\n                    92.072265625,\n                    109.0263671875,\n                    93.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/210\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>(Neg. Log Perp.) (↑)</td>\",\n                  \"polygon\": [\n                    [\n                      109.0263671875,\n                      92.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      92.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      93.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      93.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    109.0263671875,\n                    92.072265625,\n                    110.0263671875,\n                    93.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/211\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>(Examples/sec) (↑)</td>\",\n                  \"polygon\": [\n                    [\n                      110.0263671875,\n                      92.072265625\n                    ],\n                    [\n                      111.0263671875,\n                      92.072265625\n                    ],\n                    [\n                      111.0263671875,\n                      93.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      93.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    110.0263671875,\n                    92.072265625,\n                    111.0263671875,\n                    93.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/212\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Switch-Base (float32)</td>\",\n                  \"polygon\": [\n                    [\n                      108.0263671875,\n                      93.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      93.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      94.072265625\n                    ],\n                    [\n                      108.0263671875,\n                      94.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    108.0263671875,\n                    93.072265625,\n                    109.0263671875,\n                    94.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/213\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.718</td>\",\n                  \"polygon\": [\n                    [\n                      109.0263671875,\n                      93.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      93.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      94.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      94.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    109.0263671875,\n                    93.072265625,\n                    110.0263671875,\n                    94.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/214\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1160</td>\",\n                  \"polygon\": [\n                    [\n                      110.0263671875,\n                      93.072265625\n                    ],\n                    [\n                      111.0263671875,\n                      93.072265625\n                    ],\n                    [\n                      111.0263671875,\n                      94.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      94.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    110.0263671875,\n                    93.072265625,\n                    111.0263671875,\n                    94.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/215\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Switch-Base (bfloat16)</td>\",\n                  \"polygon\": [\n                    [\n                      108.0263671875,\n                      94.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      94.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      95.072265625\n                    ],\n                    [\n                      108.0263671875,\n                      95.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    108.0263671875,\n                    94.072265625,\n                    109.0263671875,\n                    95.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/216\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-3.780 [diverged]</td>\",\n                  \"polygon\": [\n                    [\n                      109.0263671875,\n                      94.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      94.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      95.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      95.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    109.0263671875,\n                    94.072265625,\n                    110.0263671875,\n                    95.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/217\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1390</td>\",\n                  \"polygon\": [\n                    [\n                      110.0263671875,\n                      94.072265625\n                    ],\n                    [\n                      111.0263671875,\n                      94.072265625\n                    ],\n                    [\n                      111.0263671875,\n                      95.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      95.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    110.0263671875,\n                    94.072265625,\n                    111.0263671875,\n                    95.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/218\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Switch-Base (Selective precision)</td>\",\n                  \"polygon\": [\n                    [\n                      108.0263671875,\n                      95.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      95.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      96.072265625\n                    ],\n                    [\n                      108.0263671875,\n                      96.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    108.0263671875,\n                    95.072265625,\n                    109.0263671875,\n                    96.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/219\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.716</td>\",\n                  \"polygon\": [\n                    [\n                      109.0263671875,\n                      95.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      95.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      96.072265625\n                    ],\n                    [\n                      109.0263671875,\n                      96.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    109.0263671875,\n                    95.072265625,\n                    110.0263671875,\n                    96.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/9/TableCell/220\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1390</td>\",\n                  \"polygon\": [\n                    [\n                      110.0263671875,\n                      95.072265625\n                    ],\n                    [\n                      111.0263671875,\n                      95.072265625\n                    ],\n                    [\n                      111.0263671875,\n                      96.072265625\n                    ],\n                    [\n                      110.0263671875,\n                      96.072265625\n                    ]\n                  ],\n                  \"bbox\": [\n                    110.0263671875,\n                    95.072265625,\n                    111.0263671875,\n                    96.072265625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                }\n              ],\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": null\n            },\n            {\n              \"id\": \"/page/9/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-9-0\\\"></span>Table 2: Selective precision. We cast the local routing operations to float32 while preserving bfloat16 precision elsewhere to stabilize our model while achieving nearly equal speed to (unstable) bfloat16-precision training. We measure the quality of a 32 expert model after a fixed step count early in training its speed performance. For both Switch-Base in float32 and with Selective prevision we notice similar learning dynamics.</p>\",\n              \"polygon\": [\n                [\n                  90.0,\n                  177.6851806640625\n                ],\n                [\n                  521.6375122070312,\n                  177.6851806640625\n                ],\n                [\n                  521.6375122070312,\n                  256.78125\n                ],\n                [\n                  90.0,\n                  256.78125\n                ]\n              ],\n              \"bbox\": [\n                90.0,\n                177.6851806640625,\n                521.6375122070312,\n                256.78125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/9/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">are broadcast through all-to-all communication operations, but we still benefit from the increased stability of float32.</p>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              291.45220947265625\n            ],\n            [\n              521.5967407226562,\n              291.45220947265625\n            ],\n            [\n              521.5967407226562,\n              315.91033935546875\n            ],\n            [\n              89.7978515625,\n              315.91033935546875\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            291.45220947265625,\n            521.5967407226562,\n            315.91033935546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/9/TextInlineMath/4\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">Smaller parameter initialization for stability. Appropriate initialization is critical to successful training in deep learning and we especially observe this to be true for Switch Transformer. We initialize our weight matrices by drawing elements from a truncated normal distribution with mean µ = 0 and standard deviation σ = p s/n where s is a scale hyper-parameter and n is the number of input units in the weight tensor (e.g. fan-in).<a href=\\\"#page-9-1\\\">6</a></p>\",\n          \"polygon\": [\n            [\n              90.0,\n              319.0802307128906\n            ],\n            [\n              521.9596557617188,\n              319.0802307128906\n            ],\n            [\n              521.9596557617188,\n              384.186279296875\n            ],\n            [\n              90.0,\n              384.186279296875\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            319.0802307128906,\n            521.9596557617188,\n            384.186279296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/9/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As an additional remedy to the instability, we recommend reducing the default Transformer initialization scale s = 1.0 by a factor of 10. This both improves quality and reduces the likelihood of destabilized training in our experiments. Table <a href=\\\"#page-9-2\\\">3</a> measures the improvement of the model quality and reduction of the variance early in training. We find that</p>\",\n          \"polygon\": [\n            [\n              89.947265625,\n              387.298828125\n            ],\n            [\n              521.7499389648438,\n              387.298828125\n            ],\n            [\n              521.7499389648438,\n              439.69921875\n            ],\n            [\n              89.947265625,\n              439.69921875\n            ]\n          ],\n          \"bbox\": [\n            89.947265625,\n            387.298828125,\n            521.7499389648438,\n            439.69921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/9/Table/6\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Model (Initialization scale)</th><th>Average Quality<br/>(Neg. Log Perp.)</th><th>Std. Dev. of Quality<br/>(Neg. Log Perp.)</th></tr><tr><td>Switch-Base (0.1x-init)</td><td>-2.72</td><td>0.01</td></tr><tr><td>Switch-Base (1.0x-init)</td><td>-3.60</td><td>0.68</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              131.783203125,\n              452.07421875\n            ],\n            [\n              482.009765625,\n              452.07421875\n            ],\n            [\n              482.009765625,\n              512.40234375\n            ],\n            [\n              131.783203125,\n              512.40234375\n            ]\n          ],\n          \"bbox\": [\n            131.783203125,\n            452.07421875,\n            482.009765625,\n            512.40234375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/9/TableCell/221\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Model (Initialization scale)</th>\",\n              \"polygon\": [\n                [\n                  131.783203125,\n                  452.07421875\n                ],\n                [\n                  132.783203125,\n                  452.07421875\n                ],\n                [\n                  132.783203125,\n                  453.07421875\n                ],\n                [\n                  131.783203125,\n                  453.07421875\n                ]\n              ],\n              \"bbox\": [\n                131.783203125,\n                452.07421875,\n                132.783203125,\n                453.07421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/TableCell/222\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Average Quality<br/>(Neg. Log Perp.)</th>\",\n              \"polygon\": [\n                [\n                  132.783203125,\n                  452.07421875\n                ],\n                [\n                  133.783203125,\n                  452.07421875\n                ],\n                [\n                  133.783203125,\n                  453.07421875\n                ],\n                [\n                  132.783203125,\n                  453.07421875\n                ]\n              ],\n              \"bbox\": [\n                132.783203125,\n                452.07421875,\n                133.783203125,\n                453.07421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/TableCell/223\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Std. Dev. of Quality<br/>(Neg. Log Perp.)</th>\",\n              \"polygon\": [\n                [\n                  133.783203125,\n                  452.07421875\n                ],\n                [\n                  134.783203125,\n                  452.07421875\n                ],\n                [\n                  134.783203125,\n                  453.07421875\n                ],\n                [\n                  133.783203125,\n                  453.07421875\n                ]\n              ],\n              \"bbox\": [\n                133.783203125,\n                452.07421875,\n                134.783203125,\n                453.07421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/TableCell/224\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base (0.1x-init)</td>\",\n              \"polygon\": [\n                [\n                  131.783203125,\n                  453.07421875\n                ],\n                [\n                  132.783203125,\n                  453.07421875\n                ],\n                [\n                  132.783203125,\n                  454.07421875\n                ],\n                [\n                  131.783203125,\n                  454.07421875\n                ]\n              ],\n              \"bbox\": [\n                131.783203125,\n                453.07421875,\n                132.783203125,\n                454.07421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/TableCell/225\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-2.72</td>\",\n              \"polygon\": [\n                [\n                  132.783203125,\n                  453.07421875\n                ],\n                [\n                  133.783203125,\n                  453.07421875\n                ],\n                [\n                  133.783203125,\n                  454.07421875\n                ],\n                [\n                  132.783203125,\n                  454.07421875\n                ]\n              ],\n              \"bbox\": [\n                132.783203125,\n                453.07421875,\n                133.783203125,\n                454.07421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/TableCell/226\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>0.01</td>\",\n              \"polygon\": [\n                [\n                  133.783203125,\n                  453.07421875\n                ],\n                [\n                  134.783203125,\n                  453.07421875\n                ],\n                [\n                  134.783203125,\n                  454.07421875\n                ],\n                [\n                  133.783203125,\n                  454.07421875\n                ]\n              ],\n              \"bbox\": [\n                133.783203125,\n                453.07421875,\n                134.783203125,\n                454.07421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/TableCell/227\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base (1.0x-init)</td>\",\n              \"polygon\": [\n                [\n                  131.783203125,\n                  454.07421875\n                ],\n                [\n                  132.783203125,\n                  454.07421875\n                ],\n                [\n                  132.783203125,\n                  455.07421875\n                ],\n                [\n                  131.783203125,\n                  455.07421875\n                ]\n              ],\n              \"bbox\": [\n                131.783203125,\n                454.07421875,\n                132.783203125,\n                455.07421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/TableCell/228\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-3.60</td>\",\n              \"polygon\": [\n                [\n                  132.783203125,\n                  454.07421875\n                ],\n                [\n                  133.783203125,\n                  454.07421875\n                ],\n                [\n                  133.783203125,\n                  455.07421875\n                ],\n                [\n                  132.783203125,\n                  455.07421875\n                ]\n              ],\n              \"bbox\": [\n                132.783203125,\n                454.07421875,\n                133.783203125,\n                455.07421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/TableCell/229\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>0.68</td>\",\n              \"polygon\": [\n                [\n                  133.783203125,\n                  454.07421875\n                ],\n                [\n                  134.783203125,\n                  454.07421875\n                ],\n                [\n                  134.783203125,\n                  455.07421875\n                ],\n                [\n                  133.783203125,\n                  455.07421875\n                ]\n              ],\n              \"bbox\": [\n                133.783203125,\n                454.07421875,\n                134.783203125,\n                455.07421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/9/ListItem/7\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-9-2\\\"></span>Table 3: Reduced initialization scale improves stability. Reducing the initialization scale results in better model quality and more stable training of Switch Transformer. Here we record the average and standard deviation of model quality, measured by the negative log perplexity, of a 32 expert model after 3.5k steps (3 random seeds each).</li>\",\n          \"polygon\": [\n            [\n              90.0,\n              524.940185546875\n            ],\n            [\n              521.6483154296875,\n              524.940185546875\n            ],\n            [\n              521.6483154296875,\n              590.1328125\n            ],\n            [\n              90.0,\n              590.1328125\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            524.940185546875,\n            521.6483154296875,\n            590.1328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/9/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">the average model quality, as measured by the Neg. Log Perp., is dramatically improved and there is a far reduced variance across runs. Further, this same initialization scheme is broadly effective for models spanning several orders of magnitude. We use the same approach to stably train models as small as our 223M parameter baseline to enormous models in excess of one trillion parameters.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              618.2631988525391\n            ],\n            [\n              521.6511840820312,\n              618.2631988525391\n            ],\n            [\n              521.6511840820312,\n              683.3692855834961\n            ],\n            [\n              89.4990234375,\n              683.3692855834961\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            618.2631988525391,\n            521.6511840820312,\n            683.3692855834961\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/9/PageFooter/10\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.62109375,\n              724.9639129638672\n            ],\n            [\n              310.9815673828125,\n              724.9639129638672\n            ],\n            [\n              310.9815673828125,\n              735.5390625\n            ],\n            [\n              300.62109375,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.62109375,\n            724.9639129638672,\n            310.9815673828125,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/9/Footnote/9\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-9-1\\\"></span><sup>6. </sup>Values greater than two standard deviations from the mean are resampled.</p>\",\n          \"polygon\": [\n            [\n              91.2919921875,\n              695.8544769287109\n            ],\n            [\n              407.1282958984375,\n              695.8544769287109\n            ],\n            [\n              407.1282958984375,\n              705.375\n            ],\n            [\n              91.2919921875,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            91.2919921875,\n            695.8544769287109,\n            407.1282958984375,\n            705.375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/5/SectionHeader/5\",\n        \"4\": \"/page/7/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/10/Page/267\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/10/PageHeader/0'></content-ref><content-ref src='/page/10/Text/1'></content-ref><content-ref src='/page/10/TableGroup/196'></content-ref><content-ref src='/page/10/Text/4'></content-ref><content-ref src='/page/10/SectionHeader/5'></content-ref><content-ref src='/page/10/Text/6'></content-ref><content-ref src='/page/10/TextInlineMath/7'></content-ref><content-ref src='/page/10/PageFooter/8'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/10/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.8779296875,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              50.12841796875\n            ],\n            [\n              247.8779296875,\n              50.12841796875\n            ]\n          ],\n          \"bbox\": [\n            247.8779296875,\n            37.992431640625,\n            359.7890625,\n            50.12841796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/10/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Regularizing large sparse models. Our paper considers the common NLP approach of pre-training on a large corpus followed by fine-tuning on smaller downstream tasks such as summarization or question answering. One issue that naturally arises is overfitting since many fine-tuning tasks have very few examples. During fine-tuning of standard Transformers, <a href=\\\"#page-37-0\\\">Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.</a> <a href=\\\"#page-37-0\\\">(2019)</a> use dropout <a href=\\\"#page-38-5\\\">(Srivastava</a> <a href=\\\"#page-38-5\\\">et</a> <a href=\\\"#page-38-5\\\">al.,</a> <a href=\\\"#page-38-5\\\">2014)</a> at each layer to prevent overfitting. Our Switch Transformers have significantly more parameters than the FLOP matched dense baseline, which can lead to more severe overfitting on these smaller downstream tasks.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              93.29522705078125\n            ],\n            [\n              521.8348388671875,\n              93.29522705078125\n            ],\n            [\n              521.8348388671875,\n              199.04840087890625\n            ],\n            [\n              89.349609375,\n              199.04840087890625\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            93.29522705078125,\n            521.8348388671875,\n            199.04840087890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/10/TableGroup/196\",\n          \"block_type\": \"TableGroup\",\n          \"html\": \"<content-ref src='/page/10/Table/2'></content-ref><content-ref src='/page/10/Caption/3'></content-ref>\",\n          \"polygon\": [\n            [\n              90.0,\n              211.53515625\n            ],\n            [\n              521.6702270507812,\n              211.53515625\n            ],\n            [\n              521.6702270507812,\n              377.82421875\n            ],\n            [\n              90.0,\n              377.82421875\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            211.53515625,\n            521.6702270507812,\n            377.82421875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/10/Table/2\",\n              \"block_type\": \"Table\",\n              \"html\": \"<table><tbody><tr><th>Model (dropout)</th><th>GLUE</th><th>CNNDM</th><th>SQuAD</th><th>SuperGLUE</th></tr><tr><td>T5-Base (d=0.1)</td><td>82.9</td><td>19.6</td><td>83.5</td><td>72.4</td></tr><tr><td>Switch-Base (d=0.1)</td><td>84.7</td><td>19.1</td><td>83.7</td><td>73.0</td></tr><tr><td>Switch-Base (d=0.2)</td><td>84.4</td><td>19.2</td><td>83.9</td><td>73.2</td></tr><tr><td>Switch-Base (d=0.3)</td><td>83.9</td><td>19.6</td><td>83.4</td><td>70.7</td></tr><tr><td>Switch-Base (d=0.1, ed=0.4)</td><td>85.2</td><td>19.6</td><td>83.7</td><td>73.0</td></tr></tbody></table>\",\n              \"polygon\": [\n                [\n                  119.9794921875,\n                  211.53515625\n                ],\n                [\n                  488.8828125,\n                  211.53515625\n                ],\n                [\n                  488.8828125,\n                  298.546875\n                ],\n                [\n                  119.9794921875,\n                  298.546875\n                ]\n              ],\n              \"bbox\": [\n                119.9794921875,\n                211.53515625,\n                488.8828125,\n                298.546875\n              ],\n              \"children\": [\n                {\n                  \"id\": \"/page/10/TableCell/227\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>Model (dropout)</th>\",\n                  \"polygon\": [\n                    [\n                      119.9794921875,\n                      211.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      211.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      119.9794921875,\n                      212.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    119.9794921875,\n                    211.53515625,\n                    120.9794921875,\n                    212.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/228\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>GLUE</th>\",\n                  \"polygon\": [\n                    [\n                      120.9794921875,\n                      211.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      211.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      212.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    120.9794921875,\n                    211.53515625,\n                    121.9794921875,\n                    212.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/229\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>CNNDM</th>\",\n                  \"polygon\": [\n                    [\n                      121.9794921875,\n                      211.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      211.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      212.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    121.9794921875,\n                    211.53515625,\n                    122.9794921875,\n                    212.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/230\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>SQuAD</th>\",\n                  \"polygon\": [\n                    [\n                      122.9794921875,\n                      211.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      211.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      212.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    122.9794921875,\n                    211.53515625,\n                    123.9794921875,\n                    212.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/231\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>SuperGLUE</th>\",\n                  \"polygon\": [\n                    [\n                      123.9794921875,\n                      211.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      211.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      212.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    123.9794921875,\n                    211.53515625,\n                    124.9794921875,\n                    212.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/232\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>T5-Base (d=0.1)</td>\",\n                  \"polygon\": [\n                    [\n                      119.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      119.9794921875,\n                      213.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    119.9794921875,\n                    212.53515625,\n                    120.9794921875,\n                    213.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/233\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>82.9</td>\",\n                  \"polygon\": [\n                    [\n                      120.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      213.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    120.9794921875,\n                    212.53515625,\n                    121.9794921875,\n                    213.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/234\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>19.6</td>\",\n                  \"polygon\": [\n                    [\n                      121.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      213.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    121.9794921875,\n                    212.53515625,\n                    122.9794921875,\n                    213.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/235\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>83.5</td>\",\n                  \"polygon\": [\n                    [\n                      122.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      213.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    122.9794921875,\n                    212.53515625,\n                    123.9794921875,\n                    213.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/236\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>72.4</td>\",\n                  \"polygon\": [\n                    [\n                      123.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      212.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      213.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    123.9794921875,\n                    212.53515625,\n                    124.9794921875,\n                    213.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/237\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Switch-Base (d=0.1)</td>\",\n                  \"polygon\": [\n                    [\n                      119.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      119.9794921875,\n                      214.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    119.9794921875,\n                    213.53515625,\n                    120.9794921875,\n                    214.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/238\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>84.7</td>\",\n                  \"polygon\": [\n                    [\n                      120.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      214.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    120.9794921875,\n                    213.53515625,\n                    121.9794921875,\n                    214.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/239\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>19.1</td>\",\n                  \"polygon\": [\n                    [\n                      121.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      214.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    121.9794921875,\n                    213.53515625,\n                    122.9794921875,\n                    214.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/240\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>83.7</td>\",\n                  \"polygon\": [\n                    [\n                      122.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      214.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    122.9794921875,\n                    213.53515625,\n                    123.9794921875,\n                    214.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/241\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>73.0</td>\",\n                  \"polygon\": [\n                    [\n                      123.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      213.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      214.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    123.9794921875,\n                    213.53515625,\n                    124.9794921875,\n                    214.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/242\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Switch-Base (d=0.2)</td>\",\n                  \"polygon\": [\n                    [\n                      119.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      119.9794921875,\n                      215.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    119.9794921875,\n                    214.53515625,\n                    120.9794921875,\n                    215.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/243\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>84.4</td>\",\n                  \"polygon\": [\n                    [\n                      120.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      215.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    120.9794921875,\n                    214.53515625,\n                    121.9794921875,\n                    215.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/244\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>19.2</td>\",\n                  \"polygon\": [\n                    [\n                      121.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      215.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    121.9794921875,\n                    214.53515625,\n                    122.9794921875,\n                    215.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/245\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>83.9</td>\",\n                  \"polygon\": [\n                    [\n                      122.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      215.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    122.9794921875,\n                    214.53515625,\n                    123.9794921875,\n                    215.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/246\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>73.2</td>\",\n                  \"polygon\": [\n                    [\n                      123.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      214.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      215.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    123.9794921875,\n                    214.53515625,\n                    124.9794921875,\n                    215.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/247\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Switch-Base (d=0.3)</td>\",\n                  \"polygon\": [\n                    [\n                      119.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      119.9794921875,\n                      216.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    119.9794921875,\n                    215.53515625,\n                    120.9794921875,\n                    216.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/248\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>83.9</td>\",\n                  \"polygon\": [\n                    [\n                      120.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      216.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    120.9794921875,\n                    215.53515625,\n                    121.9794921875,\n                    216.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/249\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>19.6</td>\",\n                  \"polygon\": [\n                    [\n                      121.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      216.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    121.9794921875,\n                    215.53515625,\n                    122.9794921875,\n                    216.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/250\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>83.4</td>\",\n                  \"polygon\": [\n                    [\n                      122.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      216.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    122.9794921875,\n                    215.53515625,\n                    123.9794921875,\n                    216.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/251\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>70.7</td>\",\n                  \"polygon\": [\n                    [\n                      123.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      215.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      216.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    123.9794921875,\n                    215.53515625,\n                    124.9794921875,\n                    216.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/252\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Switch-Base (d=0.1, ed=0.4)</td>\",\n                  \"polygon\": [\n                    [\n                      119.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      217.53515625\n                    ],\n                    [\n                      119.9794921875,\n                      217.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    119.9794921875,\n                    216.53515625,\n                    120.9794921875,\n                    217.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/253\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>85.2</td>\",\n                  \"polygon\": [\n                    [\n                      120.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      217.53515625\n                    ],\n                    [\n                      120.9794921875,\n                      217.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    120.9794921875,\n                    216.53515625,\n                    121.9794921875,\n                    217.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/254\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>19.6</td>\",\n                  \"polygon\": [\n                    [\n                      121.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      217.53515625\n                    ],\n                    [\n                      121.9794921875,\n                      217.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    121.9794921875,\n                    216.53515625,\n                    122.9794921875,\n                    217.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/255\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>83.7</td>\",\n                  \"polygon\": [\n                    [\n                      122.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      217.53515625\n                    ],\n                    [\n                      122.9794921875,\n                      217.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    122.9794921875,\n                    216.53515625,\n                    123.9794921875,\n                    217.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/10/TableCell/256\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>73.0</td>\",\n                  \"polygon\": [\n                    [\n                      123.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      216.53515625\n                    ],\n                    [\n                      124.9794921875,\n                      217.53515625\n                    ],\n                    [\n                      123.9794921875,\n                      217.53515625\n                    ]\n                  ],\n                  \"bbox\": [\n                    123.9794921875,\n                    216.53515625,\n                    124.9794921875,\n                    217.53515625\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/5/SectionHeader/5\",\n                    \"4\": \"/page/7/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                }\n              ],\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": null\n            },\n            {\n              \"id\": \"/page/10/Caption/3\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-10-1\\\"></span>Table 4: Fine-tuning regularization results. A sweep of dropout rates while fine-tuning Switch Transformer models pre-trained on 34B tokens of the C4 data set (higher numbers are better). We observe that using a lower standard dropout rate at all non-expert layer, with a much larger dropout rate on the expert feed-forward layers, to perform the best.</p>\",\n              \"polygon\": [\n                [\n                  90.0,\n                  312.0912170410156\n                ],\n                [\n                  521.6702270507812,\n                  312.0912170410156\n                ],\n                [\n                  521.6702270507812,\n                  377.82421875\n                ],\n                [\n                  90.0,\n                  377.82421875\n                ]\n              ],\n              \"bbox\": [\n                90.0,\n                312.0912170410156,\n                521.6702270507812,\n                377.82421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/5/SectionHeader/5\",\n                \"4\": \"/page/7/SectionHeader/6\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/10/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We thus propose a simple way to alleviate this issue during fine-tuning: increase the dropout inside the experts, which we name as expert dropout. During fine-tuning we simply increase the dropout rate by a significant amount only at the interim feed-forward computation at each expert layer. Table <a href=\\\"#page-10-1\\\">4</a> has the results for our expert dropout protocol. We observe that simply increasing the dropout across all layers leads to worse performance. However, setting a smaller dropout rate (0.1) at non-expert layers and a much larger dropout rate (0.4) at expert layers leads to performance improvements on four smaller downstream tasks.</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              420.9232482910156\n            ],\n            [\n              521.8413696289062,\n              420.9232482910156\n            ],\n            [\n              521.8413696289062,\n              526.6764221191406\n            ],\n            [\n              89.6484375,\n              526.6764221191406\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            420.9232482910156,\n            521.8413696289062,\n            526.6764221191406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/5/SectionHeader/5\",\n            \"4\": \"/page/7/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/10/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-10-0\\\"></span>3. Scaling Properties</h3>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              547.7267608642578\n            ],\n            [\n              214.4091796875,\n              547.7267608642578\n            ],\n            [\n              214.4091796875,\n              559.6819610595703\n            ],\n            [\n              89.349609375,\n              559.6819610595703\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            547.7267608642578,\n            214.4091796875,\n            559.6819610595703\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/10/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We present a study of the scaling properties of the Switch Transformer architecture during pre-training. Per <a href=\\\"#page-36-0\\\">Kaplan</a> <a href=\\\"#page-36-0\\\">et</a> <a href=\\\"#page-36-0\\\">al.</a> <a href=\\\"#page-36-0\\\">(2020)</a>, we consider a regime where the model is not bottlenecked by either the computational budget or amount of data. To avoid the data bottleneck, we use the large C4 corpus with over 180B target tokens <a href=\\\"#page-37-0\\\">(Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.,</a> <a href=\\\"#page-37-0\\\">2019)</a> and we train until diminishing returns are observed.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              570.8443298339844\n            ],\n            [\n              521.782958984375,\n              570.8443298339844\n            ],\n            [\n              521.782958984375,\n              636.15234375\n            ],\n            [\n              89.349609375,\n              636.15234375\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            570.8443298339844,\n            521.782958984375,\n            636.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/10/TextInlineMath/7\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\" class=\\\"has-continuation\\\">The number of experts is the most efficient dimension for scaling our model. Increasing the experts keeps the computational cost approximately fixed since the model only selects one expert per token, regardless of the number of experts to choose from. The router must compute a probability distribution over more experts, however, this is a lightweight computation of cost <math display=\\\"inline\\\">O(d_{model} \\\\times \\\\text{num experts})</math> where <math display=\\\"inline\\\">d_{model}</math> is the embedding dimension of</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              640.1393127441406\n            ],\n            [\n              521.8645629882812,\n              640.1393127441406\n            ],\n            [\n              521.8645629882812,\n              706.3803253173828\n            ],\n            [\n              89.349609375,\n              706.3803253173828\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            640.1393127441406,\n            521.8645629882812,\n            706.3803253173828\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/10/PageFooter/8\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.1728515625,\n              724.9640197753906\n            ],\n            [\n              310.9815673828125,\n              724.9640197753906\n            ],\n            [\n              310.9815673828125,\n              735.5390625\n            ],\n            [\n              300.1728515625,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.1728515625,\n            724.9640197753906,\n            310.9815673828125,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/10/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/11/Page/233\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/11/PageHeader/0'></content-ref><content-ref src='/page/11/Text/1'></content-ref><content-ref src='/page/11/SectionHeader/2'></content-ref><content-ref src='/page/11/Text/3'></content-ref><content-ref src='/page/11/FigureGroup/231'></content-ref><content-ref src='/page/11/PageFooter/6'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/11/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.8095703125,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              50.080078125\n            ],\n            [\n              239.8095703125,\n              50.080078125\n            ]\n          ],\n          \"bbox\": [\n            239.8095703125,\n            37.992431640625,\n            368.75390625,\n            50.080078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/11/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">tokens passed between the layers. In this section, we consider the scaling properties on a step-basis and a time-basis with a fixed computational budget.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              93.29522705078125\n            ],\n            [\n              522.3515625,\n              93.29522705078125\n            ],\n            [\n              522.3515625,\n              118.0458984375\n            ],\n            [\n              89.4990234375,\n              118.0458984375\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            93.29522705078125,\n            522.3515625,\n            118.0458984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/11/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-11-0\\\"></span>3.1 Scaling Results on a Step-Basis</h4>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              142.49920654296875\n            ],\n            [\n              284.6510925292969,\n              142.49920654296875\n            ],\n            [\n              284.6510925292969,\n              153.4083251953125\n            ],\n            [\n              89.4990234375,\n              153.4083251953125\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            142.49920654296875,\n            284.6510925292969,\n            153.4083251953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/11/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/11/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-11-1\\\">4</a> demonstrates consistent scaling benefits with the number of experts when training all models for a fixed number of steps. We observe a clear trend: when keeping the FLOPS per token fixed, having more parameters (experts) speeds up training. The left Figure demonstrates consistent scaling properties (with fixed FLOPS per token) between sparse model parameters and test loss. This reveals the advantage of scaling along this additional axis of sparse model parameters. Our right Figure measures sample efficiency of a dense model variant and four FLOP-matched sparse variants. We find that increasing the number of experts leads to more sample efficient models. Our Switch-Base 64 expert model achieves the same performance of the T5-Base model at step 60k at step 450k, which is a 7.5x speedup in terms of step time. In addition, consistent with the findings of <a href=\\\"#page-36-0\\\">Kaplan</a> <a href=\\\"#page-36-0\\\">et</a> <a href=\\\"#page-36-0\\\">al.</a> <a href=\\\"#page-36-0\\\">(2020)</a>, we find that larger models are also more sample efficient—learning more quickly for a fixed number of observed tokens.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              169.51519775390625\n            ],\n            [\n              521.88916015625,\n              169.51519775390625\n            ],\n            [\n              521.88916015625,\n              329.87109375\n            ],\n            [\n              89.4990234375,\n              329.87109375\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            169.51519775390625,\n            521.88916015625,\n            329.87109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/11/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/11/FigureGroup/231\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/11/Figure/4'></content-ref><content-ref src='/page/11/Caption/5'></content-ref>\",\n          \"polygon\": [\n            [\n              90.0,\n              370.283203125\n            ],\n            [\n              521.6661987304688,\n              370.283203125\n            ],\n            [\n              521.6661987304688,\n              673.6282730102539\n            ],\n            [\n              90.0,\n              673.6282730102539\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            370.283203125,\n            521.6661987304688,\n            673.6282730102539\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/11/Figure/4\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  99.3603515625,\n                  370.283203125\n                ],\n                [\n                  506.1792297363281,\n                  370.283203125\n                ],\n                [\n                  506.1792297363281,\n                  520.13671875\n                ],\n                [\n                  99.3603515625,\n                  520.13671875\n                ]\n              ],\n              \"bbox\": [\n                99.3603515625,\n                370.283203125,\n                506.1792297363281,\n                520.13671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/10/SectionHeader/5\",\n                \"4\": \"/page/11/SectionHeader/2\"\n              },\n              \"images\": {\n                \"/page/11/Figure/4\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/11/Caption/5\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-11-1\\\"></span>Figure 4: Scaling properties of the Switch Transformer. Left Plot: We measure the quality improvement, as measured by perplexity, as the parameters increase by scaling the number of experts. The top-left point corresponds to the T5-Base model with 223M parameters. Moving from top-left to bottom-right, we double the number of experts from 2, 4, 8 and so on until the bottom-right point of a 256 expert model with 14.7B parameters. Despite all models using an equal computational budget, we observe consistent improvements scaling the number of experts. Right Plot: Negative log perplexity per step sweeping over the number of experts. The dense baseline is shown with the purple line and we note improved sample efficiency of our Switch-Base models.</p>\",\n              \"polygon\": [\n                [\n                  90.0,\n                  540.7761993408203\n                ],\n                [\n                  521.6661987304688,\n                  540.7761993408203\n                ],\n                [\n                  521.6661987304688,\n                  673.6282730102539\n                ],\n                [\n                  90.0,\n                  673.6282730102539\n                ]\n              ],\n              \"bbox\": [\n                90.0,\n                540.7761993408203,\n                521.6661987304688,\n                673.6282730102539\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/10/SectionHeader/5\",\n                \"4\": \"/page/11/SectionHeader/2\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/11/SectionHeader/2\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/11/PageFooter/6\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.4716796875,\n              724.9638977050781\n            ],\n            [\n              311.080078125,\n              724.9638977050781\n            ],\n            [\n              311.080078125,\n              735.15234375\n            ],\n            [\n              300.4716796875,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.4716796875,\n            724.9638977050781,\n            311.080078125,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/11/SectionHeader/2\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/10/SectionHeader/5\",\n        \"4\": \"/page/11/SectionHeader/2\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/12/Page/181\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/12/PageHeader/0'></content-ref><content-ref src='/page/12/SectionHeader/1'></content-ref><content-ref src='/page/12/Text/2'></content-ref><content-ref src='/page/12/Text/3'></content-ref><content-ref src='/page/12/FigureGroup/178'></content-ref><content-ref src='/page/12/Text/6'></content-ref><content-ref src='/page/12/SectionHeader/7'></content-ref><content-ref src='/page/12/Text/8'></content-ref><content-ref src='/page/12/PageFooter/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/12/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.5791015625,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              50.03173828125\n            ],\n            [\n              247.5791015625,\n              50.03173828125\n            ]\n          ],\n          \"bbox\": [\n            247.5791015625,\n            37.992431640625,\n            359.7890625,\n            50.03173828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/11/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/12/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-12-0\\\"></span>3.2 Scaling Results on a Time-Basis</h4>\",\n          \"polygon\": [\n            [\n              88.9013671875,\n              93.29522705078125\n            ],\n            [\n              288.8173828125,\n              93.29522705078125\n            ],\n            [\n              288.8173828125,\n              104.204345703125\n            ],\n            [\n              88.9013671875,\n              104.204345703125\n            ]\n          ],\n          \"bbox\": [\n            88.9013671875,\n            93.29522705078125,\n            288.8173828125,\n            104.204345703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/12/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/12/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-11-1\\\">4</a> demonstrates that on a step basis, as we increase the number of experts, the performance consistently improves. While our models have roughly the same amount of FLOPS per token as the baseline, our Switch Transformers incurs additional communication costs across devices as well as the extra computation of the routing mechanism. Therefore, the increased sample efficiency observed on a step-basis doesn't necessarily translate to a better model quality as measured by wall-clock. This raises the question:</p>\",\n          \"polygon\": [\n            [\n              88.9013671875,\n              112.9112548828125\n            ],\n            [\n              522.3515625,\n              112.9112548828125\n            ],\n            [\n              522.3515625,\n              191.619140625\n            ],\n            [\n              88.9013671875,\n              191.619140625\n            ]\n          ],\n          \"bbox\": [\n            88.9013671875,\n            112.9112548828125,\n            522.3515625,\n            191.619140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/12/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/12/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For a fixed training duration and computational budget, should one train a dense or a sparse model?</p>\",\n          \"polygon\": [\n            [\n              88.751953125,\n              194.5142822265625\n            ],\n            [\n              521.765625,\n              194.5142822265625\n            ],\n            [\n              521.765625,\n              219.849609375\n            ],\n            [\n              88.751953125,\n              219.849609375\n            ]\n          ],\n          \"bbox\": [\n            88.751953125,\n            194.5142822265625,\n            521.765625,\n            219.849609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/12/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/12/FigureGroup/178\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/12/Figure/4'></content-ref><content-ref src='/page/12/Caption/5'></content-ref>\",\n          \"polygon\": [\n            [\n              88.9013671875,\n              253.30078125\n            ],\n            [\n              521.972900390625,\n              253.30078125\n            ],\n            [\n              521.972900390625,\n              538.0033264160156\n            ],\n            [\n              88.9013671875,\n              538.0033264160156\n            ]\n          ],\n          \"bbox\": [\n            88.9013671875,\n            253.30078125,\n            521.972900390625,\n            538.0033264160156\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/12/Figure/4\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  167.94140625,\n                  253.30078125\n                ],\n                [\n                  431.60650634765625,\n                  253.30078125\n                ],\n                [\n                  431.60650634765625,\n                  447.8203125\n                ],\n                [\n                  167.94140625,\n                  447.8203125\n                ]\n              ],\n              \"bbox\": [\n                167.94140625,\n                253.30078125,\n                431.60650634765625,\n                447.8203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/10/SectionHeader/5\",\n                \"4\": \"/page/12/SectionHeader/1\"\n              },\n              \"images\": {\n                \"/page/12/Figure/4\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/12/Caption/5\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-12-2\\\"></span>Figure 5: Speed advantage of Switch Transformer. All models trained on 32 TPUv3 cores with equal FLOPs per example. For a fixed amount of computation and training time, Switch Transformers significantly outperform the dense Transformer baseline. Our 64 expert Switch-Base model achieves the same quality in one-seventh the time of the T5-Base and continues to improve.</p>\",\n              \"polygon\": [\n                [\n                  88.9013671875,\n                  472.8971862792969\n                ],\n                [\n                  521.972900390625,\n                  472.8971862792969\n                ],\n                [\n                  521.972900390625,\n                  538.0033264160156\n                ],\n                [\n                  88.9013671875,\n                  538.0033264160156\n                ]\n              ],\n              \"bbox\": [\n                88.9013671875,\n                472.8971862792969,\n                521.972900390625,\n                538.0033264160156\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/10/SectionHeader/5\",\n                \"4\": \"/page/12/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/12/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/12/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figures <a href=\\\"#page-12-2\\\">5</a> and <a href=\\\"#page-13-2\\\">6</a> address this question. Figure <a href=\\\"#page-12-2\\\">5</a> measures the pre-training model quality as a function of time. For a fixed training duration and computational budget, Switch Transformers yield a substantial speed-up. In this setting, our Switch-Base 64 expert model trains in one-seventh the time that it would take the T5-Base to get similar perplexity.</p>\",\n          \"polygon\": [\n            [\n              88.9013671875,\n              565.1682281494141\n            ],\n            [\n              521.6076049804688,\n              565.1682281494141\n            ],\n            [\n              521.6076049804688,\n              617.203125\n            ],\n            [\n              88.9013671875,\n              617.203125\n            ]\n          ],\n          \"bbox\": [\n            88.9013671875,\n            565.1682281494141,\n            521.6076049804688,\n            617.203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/12/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/12/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-12-1\\\"></span>3.3 Scaling Versus a Larger Dense Model</h4>\",\n          \"polygon\": [\n            [\n              88.751953125,\n              634.0722198486328\n            ],\n            [\n              318.0220031738281,\n              634.0722198486328\n            ],\n            [\n              318.0220031738281,\n              645.046875\n            ],\n            [\n              88.751953125,\n              645.046875\n            ]\n          ],\n          \"bbox\": [\n            88.751953125,\n            634.0722198486328,\n            318.0220031738281,\n            645.046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/12/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/12/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">The above analysis shows that a computationally-matched dense model is outpaced by its Switch counterpart. Figure <a href=\\\"#page-13-2\\\">6</a> considers a different scenario: what if we instead had allocated our resources to a larger dense model? We do so now, measuring Switch-Base against the next strong baseline, T5-Large. But despite T5-Large applying 3.5x more FLOPs per token,</p>\",\n          \"polygon\": [\n            [\n              89.05078125,\n              653.6882171630859\n            ],\n            [\n              521.7426147460938,\n              653.6882171630859\n            ],\n            [\n              521.7426147460938,\n              705.375\n            ],\n            [\n              89.05078125,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            89.05078125,\n            653.6882171630859,\n            521.7426147460938,\n            705.375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/12/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/12/PageFooter/9\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.62109375,\n              724.9639282226562\n            ],\n            [\n              310.9815673828125,\n              724.9639282226562\n            ],\n            [\n              310.9815673828125,\n              735.5390625\n            ],\n            [\n              300.62109375,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.62109375,\n            724.9639282226562,\n            310.9815673828125,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/12/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/10/SectionHeader/5\",\n        \"4\": \"/page/12/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/13/Page/255\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/13/PageHeader/0'></content-ref><content-ref src='/page/13/Text/1'></content-ref><content-ref src='/page/13/FigureGroup/251'></content-ref><content-ref src='/page/13/SectionHeader/4'></content-ref><content-ref src='/page/13/Text/5'></content-ref><content-ref src='/page/13/SectionHeader/6'></content-ref><content-ref src='/page/13/Text/7'></content-ref><content-ref src='/page/13/PageFooter/9'></content-ref><content-ref src='/page/13/Footnote/8'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/13/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.5107421875,\n              37.992431640625\n            ],\n            [\n              369.3515625,\n              37.992431640625\n            ],\n            [\n              369.3515625,\n              50.22509765625\n            ],\n            [\n              239.5107421875,\n              50.22509765625\n            ]\n          ],\n          \"bbox\": [\n            239.5107421875,\n            37.992431640625,\n            369.3515625,\n            50.22509765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/12/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/13/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Switch-Base is still more sample efficient and yields a 2.5x speedup. Furthermore, more gains can be had simply by designing a new, larger sparse version, Switch-Large, which is FLOP-matched to T5-Large. We do this and demonstrate superior scaling and fine-tuning in the following section.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              93.29522705078125\n            ],\n            [\n              522.3515625,\n              93.29522705078125\n            ],\n            [\n              522.3515625,\n              145.212890625\n            ],\n            [\n              89.349609375,\n              145.212890625\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            93.29522705078125,\n            522.3515625,\n            145.212890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/12/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/13/FigureGroup/251\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/13/Figure/2'></content-ref><content-ref src='/page/13/Caption/3'></content-ref>\",\n          \"polygon\": [\n            [\n              90.0,\n              173.63671875\n            ],\n            [\n              521.75390625,\n              173.63671875\n            ],\n            [\n              521.75390625,\n              408.9443359375\n            ],\n            [\n              90.0,\n              408.9443359375\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            173.63671875,\n            521.75390625,\n            408.9443359375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/13/Figure/2\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  95.02734375,\n                  173.63671875\n                ],\n                [\n                  511.08245849609375,\n                  173.63671875\n                ],\n                [\n                  511.08245849609375,\n                  321.36328125\n                ],\n                [\n                  95.02734375,\n                  321.36328125\n                ]\n              ],\n              \"bbox\": [\n                95.02734375,\n                173.63671875,\n                511.08245849609375,\n                321.36328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/10/SectionHeader/5\",\n                \"4\": \"/page/12/SectionHeader/7\"\n              },\n              \"images\": {\n                \"/page/13/Figure/2\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/13/Caption/3\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-13-2\\\"></span>Figure 6: Scaling Transformer models with Switch layers or with standard dense model scaling. Left Plot: Switch-Base is more sample efficient than both the T5-Base, and T5-Large variant, which applies 3.5x more FLOPS per token. Right Plot: As before, on a wall-clock basis, we find that Switch-Base is still faster, and yields a 2.5x speedup over T5-Large.</p>\",\n              \"polygon\": [\n                [\n                  90.0,\n                  343.79296875\n                ],\n                [\n                  521.75390625,\n                  343.79296875\n                ],\n                [\n                  521.75390625,\n                  408.9443359375\n                ],\n                [\n                  90.0,\n                  408.9443359375\n                ]\n              ],\n              \"bbox\": [\n                90.0,\n                343.79296875,\n                521.75390625,\n                408.9443359375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/10/SectionHeader/5\",\n                \"4\": \"/page/12/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/10/SectionHeader/5\",\n            \"4\": \"/page/12/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/13/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-13-0\\\"></span>4. Downstream Results</h3>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              453.3246765136719\n            ],\n            [\n              228.3046875,\n              453.3246765136719\n            ],\n            [\n              228.3046875,\n              465.2798767089844\n            ],\n            [\n              89.6484375,\n              465.2798767089844\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            453.3246765136719,\n            228.3046875,\n            465.2798767089844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/13/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Section <a href=\\\"#page-10-0\\\">3</a> demonstrated the superior scaling properties while pre-training, but we now validate that these gains translate to improved language learning abilities on downstream tasks. We begin by fine-tuning on a diverse set of NLP tasks. Next we study reducing the memory footprint of our sparse models by over 90% by distilling into small—and easily deployed—dense baselines. Finally, we conclude this section measuring the improvements in a multi-task, multilingual setting, where we show that Switch Transformers are strong multi-task learners, improving over the multilingual T5-base model across all 101 languages.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              475.27734375\n            ],\n            [\n              521.6184692382812,\n              475.27734375\n            ],\n            [\n              521.6184692382812,\n              568.08984375\n            ],\n            [\n              89.349609375,\n              568.08984375\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            475.27734375,\n            521.6184692382812,\n            568.08984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/13/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-13-1\\\"></span>4.1 Fine-Tuning</h3>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              585.1042327880859\n            ],\n            [\n              180.0439453125,\n              585.1042327880859\n            ],\n            [\n              180.0439453125,\n              596.3203125\n            ],\n            [\n              89.6484375,\n              596.3203125\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            585.1042327880859,\n            180.0439453125,\n            596.3203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/13/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Baseline and Switch models used for fine-tuning. Our baselines are the highly-tuned 223M parameter T5-Base model and the 739M parameter T5-Large model <a href=\\\"#page-37-0\\\">(Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.,</a> <a href=\\\"#page-37-0\\\">2019)</a>. For both versions, we design a FLOP-matched Switch Transformer, with many more parameters, which is summarized in Table <a href=\\\"#page-22-0\\\">9.</a> <a href=\\\"#page-13-3\\\">7</a> Our baselines differ slightly from those in <a href=\\\"#page-37-0\\\">Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.</a> <a href=\\\"#page-37-0\\\">(2019)</a> because we pre-train on an improved C4 corpus which removes intraexample text duplication and thus increases the efficacy as a pre-training task <a href=\\\"#page-37-5\\\">Lee</a> <a href=\\\"#page-37-5\\\">et</a> <a href=\\\"#page-37-5\\\">al.</a></p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              604.8982391357422\n            ],\n            [\n              521.8226318359375,\n              604.8982391357422\n            ],\n            [\n              521.8226318359375,\n              683.5533218383789\n            ],\n            [\n              89.349609375,\n              683.5533218383789\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            604.8982391357422,\n            521.8226318359375,\n            683.5533218383789\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/13/PageFooter/9\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.62109375,\n              724.9639129638672\n            ],\n            [\n              311.080078125,\n              724.9639129638672\n            ],\n            [\n              311.080078125,\n              735.5390625\n            ],\n            [\n              300.62109375,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.62109375,\n            724.9639129638672,\n            311.080078125,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/13/Footnote/8\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-13-3\\\"></span><sup>7. </sup>FLOPS are calculated for the forward pass as done in <a href=\\\"#page-36-0\\\">Kaplan</a> <a href=\\\"#page-36-0\\\">et</a> <a href=\\\"#page-36-0\\\">al.</a> <a href=\\\"#page-36-0\\\">(2020)</a>.</p>\",\n          \"polygon\": [\n            [\n              90.6943359375,\n              695.70703125\n            ],\n            [\n              408.91265869140625,\n              695.70703125\n            ],\n            [\n              408.91265869140625,\n              704.98828125\n            ],\n            [\n              90.6943359375,\n              704.98828125\n            ]\n          ],\n          \"bbox\": [\n            90.6943359375,\n            695.70703125,\n            408.91265869140625,\n            704.98828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/13/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/14/Page/260\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/14/PageHeader/0'></content-ref><content-ref src='/page/14/Text/1'></content-ref><content-ref src='/page/14/Text/2'></content-ref><content-ref src='/page/14/Text/3'></content-ref><content-ref src='/page/14/Text/4'></content-ref><content-ref src='/page/14/PageFooter/6'></content-ref><content-ref src='/page/14/Footnote/5'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/14/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              248.02734375,\n              37.992431640625\n            ],\n            [\n              360.087890625,\n              37.992431640625\n            ],\n            [\n              360.087890625,\n              49.9833984375\n            ],\n            [\n              248.02734375,\n              49.9833984375\n            ]\n          ],\n          \"bbox\": [\n            248.02734375,\n            37.992431640625,\n            360.087890625,\n            49.9833984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/14/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><a href=\\\"#page-37-5\\\">(2021)</a>. In our protocol we pre-train with 220 (1,048,576) tokens per batch for 550k steps amounting to 576B total tokens. We then fine-tune across a diverse set of tasks using a dropout rate of 0.1 for all layers except the Switch layers, which use a dropout rate of 0.4 (see Table <a href=\\\"#page-10-1\\\">4)</a>. We fine-tune using a batch-size of 1M for 16k steps and for each task, we evaluate model quality every 200-steps and report the peak performance as computed on the validation set.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              91.6331787109375\n            ],\n            [\n              522.3515625,\n              91.6331787109375\n            ],\n            [\n              522.3515625,\n              171.95037841796875\n            ],\n            [\n              89.349609375,\n              171.95037841796875\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            91.6331787109375,\n            522.3515625,\n            171.95037841796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/14/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Fine-tuning tasks and data sets. We select tasks probing language capabilities including question answering, summarization and knowledge about the world. The language benchmarks GLUE <a href=\\\"#page-39-4\\\">(Wang</a> <a href=\\\"#page-39-4\\\">et</a> <a href=\\\"#page-39-4\\\">al.,</a> <a href=\\\"#page-39-4\\\">2018)</a> and SuperGLUE <a href=\\\"#page-39-5\\\">(Wang</a> <a href=\\\"#page-39-5\\\">et</a> <a href=\\\"#page-39-5\\\">al.,</a> <a href=\\\"#page-39-5\\\">2019)</a> are handled as composite mixtures with all the tasks blended in proportion to the amount of tokens present in each. These benchmarks consist of tasks requiring sentiment analysis (SST-2), word sense disambiguation (WIC), sentence similarty (MRPC, STS-B, QQP), natural language inference (MNLI, QNLI, RTE, CB), question answering (MultiRC, RECORD, BoolQ), coreference resolution (WNLI, WSC) and sentence completion (COPA) and sentence acceptability (CoLA). The CNNDM <a href=\\\"#page-36-4\\\">(Hermann</a> <a href=\\\"#page-36-4\\\">et</a> <a href=\\\"#page-36-4\\\">al.,</a> <a href=\\\"#page-36-4\\\">2015)</a> and BBC XSum <a href=\\\"#page-37-6\\\">(Narayan</a> <a href=\\\"#page-37-6\\\">et</a> <a href=\\\"#page-37-6\\\">al.,</a> <a href=\\\"#page-37-6\\\">2018)</a> data sets are used to measure the ability to summarize articles. Question answering is probed with the SQuAD data set <a href=\\\"#page-37-7\\\">(Rajpurkar</a> <a href=\\\"#page-37-7\\\">et</a> <a href=\\\"#page-37-7\\\">al.,</a> <a href=\\\"#page-37-7\\\">2016)</a> and the ARC Reasoning Challenge <a href=\\\"#page-35-6\\\">(Clark</a> <a href=\\\"#page-35-6\\\">et</a> <a href=\\\"#page-35-6\\\">al.,</a> <a href=\\\"#page-35-6\\\">2018)</a>. And as in <a href=\\\"#page-38-6\\\">Roberts</a> <a href=\\\"#page-38-6\\\">et</a> <a href=\\\"#page-38-6\\\">al.</a> <a href=\\\"#page-38-6\\\">(2020)</a>, we evaluate the knowledge of our models by fine-tuning on three closed-book question answering data sets: Natural Questions <a href=\\\"#page-36-5\\\">(Kwiatkowski</a> <a href=\\\"#page-36-5\\\">et</a> <a href=\\\"#page-36-5\\\">al.,</a> <a href=\\\"#page-36-5\\\">2019)</a>, Web Questions <a href=\\\"#page-35-7\\\">(Berant</a> <a href=\\\"#page-35-7\\\">et</a> <a href=\\\"#page-35-7\\\">al.,</a> <a href=\\\"#page-35-7\\\">2013)</a> and Trivia QA <a href=\\\"#page-36-6\\\">(Joshi</a> <a href=\\\"#page-36-6\\\">et</a> <a href=\\\"#page-36-6\\\">al.,</a> <a href=\\\"#page-36-6\\\">2017)</a>. Closed-book refers to questions posed with no supplemental reference or context material. To gauge the model's common sense reasoning we evaluate it on the Winogrande Schema Challenge <a href=\\\"#page-38-7\\\">(Sakaguchi</a> <a href=\\\"#page-38-7\\\">et</a> <a href=\\\"#page-38-7\\\">al.,</a> <a href=\\\"#page-38-7\\\">2020)</a>. And finally, we test our model's natural language inference capabilities on the Adversarial NLI Benchmark <a href=\\\"#page-37-8\\\">(Nie</a> <a href=\\\"#page-37-8\\\">et</a> <a href=\\\"#page-37-8\\\">al.,</a> <a href=\\\"#page-37-8\\\">2019)</a>.</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              178.6412353515625\n            ],\n            [\n              521.76953125,\n              178.6412353515625\n            ],\n            [\n              521.76953125,\n              420.36328125\n            ],\n            [\n              89.6484375,\n              420.36328125\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            178.6412353515625,\n            521.76953125,\n            420.36328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/14/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Fine-tuning metrics. The following evaluation metrics are used throughout the paper: We report the average scores across all subtasks for GLUE and SuperGLUE. The Rouge-2 metric is used both the CNNDM and XSum. In SQuAD and the closed book tasks (Web, Natural, and Trivia Questions) we report the percentage of answers exactly matching the target (refer to <a href=\\\"#page-38-6\\\">Roberts</a> <a href=\\\"#page-38-6\\\">et</a> <a href=\\\"#page-38-6\\\">al.</a> <a href=\\\"#page-38-6\\\">(2020)</a> for further details and deficiency of this measure). Finally, in ARC Easy, ARC Challenge, ANLI, and Winogrande we report the accuracy of the generated responses.</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              426.578369140625\n            ],\n            [\n              521.7088623046875,\n              426.578369140625\n            ],\n            [\n              521.7088623046875,\n              518.9765625\n            ],\n            [\n              89.6484375,\n              518.9765625\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            426.578369140625,\n            521.7088623046875,\n            518.9765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/14/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Fine-tuning results. We observe significant downstream improvements across many natural language tasks. Notable improvements come from SuperGLUE, where we find FLOP-matched Switch variants improve by 4.4 and 2 percentage points over the T5-Base and T5-Large baselines, respectively as well as large improvements in Winogrande, closed book Trivia QA, and XSum.<a href=\\\"#page-14-0\\\">8</a> In our fine-tuning study, the only tasks where we do not observe gains are on the AI2 Reasoning Challenge (ARC) data sets where the T5-Base outperforms Switch-Base on the challenge data set and T5-Large outperforms Switch-Large on the easy data set. Taken as a whole, we observe significant improvements spanning both reasoning and knowledge-heavy tasks. This validates our architecture, not just as one that pre-trains well, but can translate quality improvements to downstream tasks via fine-tuning.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              525.4744262695312\n            ],\n            [\n              521.7537231445312,\n              525.4744262695312\n            ],\n            [\n              521.7537231445312,\n              658.3255157470703\n            ],\n            [\n              89.4990234375,\n              658.3255157470703\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            525.4744262695312,\n            521.7537231445312,\n            658.3255157470703\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/14/PageFooter/6\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.322265625,\n              724.9639129638672\n            ],\n            [\n              310.9815673828125,\n              724.9639129638672\n            ],\n            [\n              310.9815673828125,\n              735.15234375\n            ],\n            [\n              300.322265625,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.322265625,\n            724.9639129638672,\n            310.9815673828125,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/14/Footnote/5\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-14-0\\\"></span><sup>8. </sup>Our T5 and Switch models were pre-trained with 220 tokens per batch for 550k steps on a revised C4 data set for fair comparisons.</p>\",\n          \"polygon\": [\n            [\n              90.0966796875,\n              683.4223175048828\n            ],\n            [\n              521.8600463867188,\n              683.4223175048828\n            ],\n            [\n              521.8600463867188,\n              704.98828125\n            ],\n            [\n              90.0966796875,\n              704.98828125\n            ]\n          ],\n          \"bbox\": [\n            90.0966796875,\n            683.4223175048828,\n            521.8600463867188,\n            704.98828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/13/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/15/Page/349\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/15/PageHeader/0'></content-ref><content-ref src='/page/15/Table/1'></content-ref><content-ref src='/page/15/Text/2'></content-ref><content-ref src='/page/15/SectionHeader/3'></content-ref><content-ref src='/page/15/Text/4'></content-ref><content-ref src='/page/15/TextInlineMath/5'></content-ref><content-ref src='/page/15/PageFooter/6'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/15/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              240.2578125,\n              37.992431640625\n            ],\n            [\n              367.8744812011719,\n              37.992431640625\n            ],\n            [\n              367.8744812011719,\n              50.466796875\n            ],\n            [\n              240.2578125,\n              50.466796875\n            ]\n          ],\n          \"bbox\": [\n            240.2578125,\n            37.992431640625,\n            367.8744812011719,\n            50.466796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/15/Table/1\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Model</th><th>GLUE</th><th>SQuAD</th><th>SuperGLUE</th><th>Winogrande (XL)</th></tr><tr><td>T5-Base</td><td>84.3</td><td>85.5</td><td>75.1</td><td>66.6</td></tr><tr><td>Switch-Base</td><td>86.7</td><td>87.2</td><td>79.5</td><td>73.3</td></tr><tr><td>T5-Large</td><td>87.8</td><td>88.1</td><td>82.7</td><td>79.1</td></tr><tr><td>Switch-Large</td><td>88.5</td><td>88.6</td><td>84.7</td><td>83.0</td></tr><tr><td colspan=5></td></tr><tr><th>Model</th><th>XSum</th><th>ANLI (R3)</th><th>ARC Easy</th><th>ARC Chal.</th></tr><tr><td>T5-Base</td><td>18.7</td><td>51.8</td><td>56.7</td><td>35.5</td></tr><tr><td>Switch-Base</td><td>20.3</td><td>54.0</td><td>61.3</td><td>32.8</td></tr><tr><td>T5-Large</td><td>20.9</td><td>56.6</td><td>68.8</td><td>35.5</td></tr><tr><td>Switch-Large</td><td>22.3</td><td>58.6</td><td>66.0</td><td>35.5</td></tr><tr><td colspan=5></td></tr><tr><th>Model</th><th>CB Web QA</th><th>CB Natural QA</th><th>CB Trivia QA</th></tr><tr><td>T5-Base</td><td>26.6</td><td>25.8</td><td>24.5</td></tr><tr><td>Switch-Base</td><td>27.4</td><td>26.8</td><td>30.7</td></tr><tr><td>T5-Large</td><td>27.7</td><td>27.6</td><td>29.5</td></tr><tr><td>Switch-Large</td><td>31.3</td><td>29.5</td><td>36.9</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              97.41796875,\n              90.5888671875\n            ],\n            [\n              513.984375,\n              90.5888671875\n            ],\n            [\n              513.984375,\n              339.15234375\n            ],\n            [\n              97.41796875,\n              339.15234375\n            ]\n          ],\n          \"bbox\": [\n            97.41796875,\n            90.5888671875,\n            513.984375,\n            339.15234375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/15/TableCell/265\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Model</th>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  90.5888671875\n                ],\n                [\n                  98.41796875,\n                  90.5888671875\n                ],\n                [\n                  98.41796875,\n                  91.5888671875\n                ],\n                [\n                  97.41796875,\n                  91.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                90.5888671875,\n                98.41796875,\n                91.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/266\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>GLUE</th>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  90.5888671875\n                ],\n                [\n                  99.41796875,\n                  90.5888671875\n                ],\n                [\n                  99.41796875,\n                  91.5888671875\n                ],\n                [\n                  98.41796875,\n                  91.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                90.5888671875,\n                99.41796875,\n                91.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/267\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>SQuAD</th>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  90.5888671875\n                ],\n                [\n                  100.41796875,\n                  90.5888671875\n                ],\n                [\n                  100.41796875,\n                  91.5888671875\n                ],\n                [\n                  99.41796875,\n                  91.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                90.5888671875,\n                100.41796875,\n                91.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/268\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>SuperGLUE</th>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  90.5888671875\n                ],\n                [\n                  101.41796875,\n                  90.5888671875\n                ],\n                [\n                  101.41796875,\n                  91.5888671875\n                ],\n                [\n                  100.41796875,\n                  91.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                90.5888671875,\n                101.41796875,\n                91.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/269\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Winogrande (XL)</th>\",\n              \"polygon\": [\n                [\n                  101.41796875,\n                  90.5888671875\n                ],\n                [\n                  102.41796875,\n                  90.5888671875\n                ],\n                [\n                  102.41796875,\n                  91.5888671875\n                ],\n                [\n                  101.41796875,\n                  91.5888671875\n                ]\n              ],\n              \"bbox\": [\n                101.41796875,\n                90.5888671875,\n                102.41796875,\n                91.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/270\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Base</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  91.5888671875\n                ],\n                [\n                  98.41796875,\n                  91.5888671875\n                ],\n                [\n                  98.41796875,\n                  92.5888671875\n                ],\n                [\n                  97.41796875,\n                  92.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                91.5888671875,\n                98.41796875,\n                92.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/271\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>84.3</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  91.5888671875\n                ],\n                [\n                  99.41796875,\n                  91.5888671875\n                ],\n                [\n                  99.41796875,\n                  92.5888671875\n                ],\n                [\n                  98.41796875,\n                  92.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                91.5888671875,\n                99.41796875,\n                92.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/272\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>85.5</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  91.5888671875\n                ],\n                [\n                  100.41796875,\n                  91.5888671875\n                ],\n                [\n                  100.41796875,\n                  92.5888671875\n                ],\n                [\n                  99.41796875,\n                  92.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                91.5888671875,\n                100.41796875,\n                92.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/273\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>75.1</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  91.5888671875\n                ],\n                [\n                  101.41796875,\n                  91.5888671875\n                ],\n                [\n                  101.41796875,\n                  92.5888671875\n                ],\n                [\n                  100.41796875,\n                  92.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                91.5888671875,\n                101.41796875,\n                92.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/274\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>66.6</td>\",\n              \"polygon\": [\n                [\n                  101.41796875,\n                  91.5888671875\n                ],\n                [\n                  102.41796875,\n                  91.5888671875\n                ],\n                [\n                  102.41796875,\n                  92.5888671875\n                ],\n                [\n                  101.41796875,\n                  92.5888671875\n                ]\n              ],\n              \"bbox\": [\n                101.41796875,\n                91.5888671875,\n                102.41796875,\n                92.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/275\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  92.5888671875\n                ],\n                [\n                  98.41796875,\n                  92.5888671875\n                ],\n                [\n                  98.41796875,\n                  93.5888671875\n                ],\n                [\n                  97.41796875,\n                  93.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                92.5888671875,\n                98.41796875,\n                93.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/276\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>86.7</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  92.5888671875\n                ],\n                [\n                  99.41796875,\n                  92.5888671875\n                ],\n                [\n                  99.41796875,\n                  93.5888671875\n                ],\n                [\n                  98.41796875,\n                  93.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                92.5888671875,\n                99.41796875,\n                93.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/277\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>87.2</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  92.5888671875\n                ],\n                [\n                  100.41796875,\n                  92.5888671875\n                ],\n                [\n                  100.41796875,\n                  93.5888671875\n                ],\n                [\n                  99.41796875,\n                  93.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                92.5888671875,\n                100.41796875,\n                93.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/278\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>79.5</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  92.5888671875\n                ],\n                [\n                  101.41796875,\n                  92.5888671875\n                ],\n                [\n                  101.41796875,\n                  93.5888671875\n                ],\n                [\n                  100.41796875,\n                  93.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                92.5888671875,\n                101.41796875,\n                93.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/279\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>73.3</td>\",\n              \"polygon\": [\n                [\n                  101.41796875,\n                  92.5888671875\n                ],\n                [\n                  102.41796875,\n                  92.5888671875\n                ],\n                [\n                  102.41796875,\n                  93.5888671875\n                ],\n                [\n                  101.41796875,\n                  93.5888671875\n                ]\n              ],\n              \"bbox\": [\n                101.41796875,\n                92.5888671875,\n                102.41796875,\n                93.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/280\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Large</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  93.5888671875\n                ],\n                [\n                  98.41796875,\n                  93.5888671875\n                ],\n                [\n                  98.41796875,\n                  94.5888671875\n                ],\n                [\n                  97.41796875,\n                  94.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                93.5888671875,\n                98.41796875,\n                94.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/281\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>87.8</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  93.5888671875\n                ],\n                [\n                  99.41796875,\n                  93.5888671875\n                ],\n                [\n                  99.41796875,\n                  94.5888671875\n                ],\n                [\n                  98.41796875,\n                  94.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                93.5888671875,\n                99.41796875,\n                94.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/282\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>88.1</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  93.5888671875\n                ],\n                [\n                  100.41796875,\n                  93.5888671875\n                ],\n                [\n                  100.41796875,\n                  94.5888671875\n                ],\n                [\n                  99.41796875,\n                  94.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                93.5888671875,\n                100.41796875,\n                94.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/283\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>82.7</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  93.5888671875\n                ],\n                [\n                  101.41796875,\n                  93.5888671875\n                ],\n                [\n                  101.41796875,\n                  94.5888671875\n                ],\n                [\n                  100.41796875,\n                  94.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                93.5888671875,\n                101.41796875,\n                94.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/284\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>79.1</td>\",\n              \"polygon\": [\n                [\n                  101.41796875,\n                  93.5888671875\n                ],\n                [\n                  102.41796875,\n                  93.5888671875\n                ],\n                [\n                  102.41796875,\n                  94.5888671875\n                ],\n                [\n                  101.41796875,\n                  94.5888671875\n                ]\n              ],\n              \"bbox\": [\n                101.41796875,\n                93.5888671875,\n                102.41796875,\n                94.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/285\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Large</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  94.5888671875\n                ],\n                [\n                  98.41796875,\n                  94.5888671875\n                ],\n                [\n                  98.41796875,\n                  95.5888671875\n                ],\n                [\n                  97.41796875,\n                  95.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                94.5888671875,\n                98.41796875,\n                95.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/286\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>88.5</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  94.5888671875\n                ],\n                [\n                  99.41796875,\n                  94.5888671875\n                ],\n                [\n                  99.41796875,\n                  95.5888671875\n                ],\n                [\n                  98.41796875,\n                  95.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                94.5888671875,\n                99.41796875,\n                95.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/287\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>88.6</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  94.5888671875\n                ],\n                [\n                  100.41796875,\n                  94.5888671875\n                ],\n                [\n                  100.41796875,\n                  95.5888671875\n                ],\n                [\n                  99.41796875,\n                  95.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                94.5888671875,\n                100.41796875,\n                95.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/288\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>84.7</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  94.5888671875\n                ],\n                [\n                  101.41796875,\n                  94.5888671875\n                ],\n                [\n                  101.41796875,\n                  95.5888671875\n                ],\n                [\n                  100.41796875,\n                  95.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                94.5888671875,\n                101.41796875,\n                95.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/289\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>83.0</td>\",\n              \"polygon\": [\n                [\n                  101.41796875,\n                  94.5888671875\n                ],\n                [\n                  102.41796875,\n                  94.5888671875\n                ],\n                [\n                  102.41796875,\n                  95.5888671875\n                ],\n                [\n                  101.41796875,\n                  95.5888671875\n                ]\n              ],\n              \"bbox\": [\n                101.41796875,\n                94.5888671875,\n                102.41796875,\n                95.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/290\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td colspan=\\\"5\\\"></td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  95.5888671875\n                ],\n                [\n                  102.41796875,\n                  95.5888671875\n                ],\n                [\n                  102.41796875,\n                  96.5888671875\n                ],\n                [\n                  97.41796875,\n                  96.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                95.5888671875,\n                102.41796875,\n                96.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/291\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Model</th>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  96.5888671875\n                ],\n                [\n                  98.41796875,\n                  96.5888671875\n                ],\n                [\n                  98.41796875,\n                  97.5888671875\n                ],\n                [\n                  97.41796875,\n                  97.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                96.5888671875,\n                98.41796875,\n                97.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/292\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>XSum</th>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  96.5888671875\n                ],\n                [\n                  99.41796875,\n                  96.5888671875\n                ],\n                [\n                  99.41796875,\n                  97.5888671875\n                ],\n                [\n                  98.41796875,\n                  97.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                96.5888671875,\n                99.41796875,\n                97.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/293\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>ANLI (R3)</th>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  96.5888671875\n                ],\n                [\n                  100.41796875,\n                  96.5888671875\n                ],\n                [\n                  100.41796875,\n                  97.5888671875\n                ],\n                [\n                  99.41796875,\n                  97.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                96.5888671875,\n                100.41796875,\n                97.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/294\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>ARC Easy</th>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  96.5888671875\n                ],\n                [\n                  101.41796875,\n                  96.5888671875\n                ],\n                [\n                  101.41796875,\n                  97.5888671875\n                ],\n                [\n                  100.41796875,\n                  97.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                96.5888671875,\n                101.41796875,\n                97.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/295\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>ARC Chal.</th>\",\n              \"polygon\": [\n                [\n                  101.41796875,\n                  96.5888671875\n                ],\n                [\n                  102.41796875,\n                  96.5888671875\n                ],\n                [\n                  102.41796875,\n                  97.5888671875\n                ],\n                [\n                  101.41796875,\n                  97.5888671875\n                ]\n              ],\n              \"bbox\": [\n                101.41796875,\n                96.5888671875,\n                102.41796875,\n                97.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/296\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Base</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  97.5888671875\n                ],\n                [\n                  98.41796875,\n                  97.5888671875\n                ],\n                [\n                  98.41796875,\n                  98.5888671875\n                ],\n                [\n                  97.41796875,\n                  98.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                97.5888671875,\n                98.41796875,\n                98.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/297\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.7</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  97.5888671875\n                ],\n                [\n                  99.41796875,\n                  97.5888671875\n                ],\n                [\n                  99.41796875,\n                  98.5888671875\n                ],\n                [\n                  98.41796875,\n                  98.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                97.5888671875,\n                99.41796875,\n                98.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/298\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>51.8</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  97.5888671875\n                ],\n                [\n                  100.41796875,\n                  97.5888671875\n                ],\n                [\n                  100.41796875,\n                  98.5888671875\n                ],\n                [\n                  99.41796875,\n                  98.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                97.5888671875,\n                100.41796875,\n                98.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/299\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>56.7</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  97.5888671875\n                ],\n                [\n                  101.41796875,\n                  97.5888671875\n                ],\n                [\n                  101.41796875,\n                  98.5888671875\n                ],\n                [\n                  100.41796875,\n                  98.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                97.5888671875,\n                101.41796875,\n                98.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/300\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>35.5</td>\",\n              \"polygon\": [\n                [\n                  101.41796875,\n                  97.5888671875\n                ],\n                [\n                  102.41796875,\n                  97.5888671875\n                ],\n                [\n                  102.41796875,\n                  98.5888671875\n                ],\n                [\n                  101.41796875,\n                  98.5888671875\n                ]\n              ],\n              \"bbox\": [\n                101.41796875,\n                97.5888671875,\n                102.41796875,\n                98.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/301\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  98.5888671875\n                ],\n                [\n                  98.41796875,\n                  98.5888671875\n                ],\n                [\n                  98.41796875,\n                  99.5888671875\n                ],\n                [\n                  97.41796875,\n                  99.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                98.5888671875,\n                98.41796875,\n                99.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/302\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>20.3</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  98.5888671875\n                ],\n                [\n                  99.41796875,\n                  98.5888671875\n                ],\n                [\n                  99.41796875,\n                  99.5888671875\n                ],\n                [\n                  98.41796875,\n                  99.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                98.5888671875,\n                99.41796875,\n                99.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/303\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>54.0</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  98.5888671875\n                ],\n                [\n                  100.41796875,\n                  98.5888671875\n                ],\n                [\n                  100.41796875,\n                  99.5888671875\n                ],\n                [\n                  99.41796875,\n                  99.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                98.5888671875,\n                100.41796875,\n                99.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/304\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>61.3</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  98.5888671875\n                ],\n                [\n                  101.41796875,\n                  98.5888671875\n                ],\n                [\n                  101.41796875,\n                  99.5888671875\n                ],\n                [\n                  100.41796875,\n                  99.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                98.5888671875,\n                101.41796875,\n                99.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/305\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>32.8</td>\",\n              \"polygon\": [\n                [\n                  101.41796875,\n                  98.5888671875\n                ],\n                [\n                  102.41796875,\n                  98.5888671875\n                ],\n                [\n                  102.41796875,\n                  99.5888671875\n                ],\n                [\n                  101.41796875,\n                  99.5888671875\n                ]\n              ],\n              \"bbox\": [\n                101.41796875,\n                98.5888671875,\n                102.41796875,\n                99.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/306\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Large</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  99.5888671875\n                ],\n                [\n                  98.41796875,\n                  99.5888671875\n                ],\n                [\n                  98.41796875,\n                  100.5888671875\n                ],\n                [\n                  97.41796875,\n                  100.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                99.5888671875,\n                98.41796875,\n                100.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/307\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>20.9</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  99.5888671875\n                ],\n                [\n                  99.41796875,\n                  99.5888671875\n                ],\n                [\n                  99.41796875,\n                  100.5888671875\n                ],\n                [\n                  98.41796875,\n                  100.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                99.5888671875,\n                99.41796875,\n                100.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/308\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>56.6</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  99.5888671875\n                ],\n                [\n                  100.41796875,\n                  99.5888671875\n                ],\n                [\n                  100.41796875,\n                  100.5888671875\n                ],\n                [\n                  99.41796875,\n                  100.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                99.5888671875,\n                100.41796875,\n                100.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/309\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>68.8</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  99.5888671875\n                ],\n                [\n                  101.41796875,\n                  99.5888671875\n                ],\n                [\n                  101.41796875,\n                  100.5888671875\n                ],\n                [\n                  100.41796875,\n                  100.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                99.5888671875,\n                101.41796875,\n                100.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/310\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>35.5</td>\",\n              \"polygon\": [\n                [\n                  101.41796875,\n                  99.5888671875\n                ],\n                [\n                  102.41796875,\n                  99.5888671875\n                ],\n                [\n                  102.41796875,\n                  100.5888671875\n                ],\n                [\n                  101.41796875,\n                  100.5888671875\n                ]\n              ],\n              \"bbox\": [\n                101.41796875,\n                99.5888671875,\n                102.41796875,\n                100.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/311\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Large</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  100.5888671875\n                ],\n                [\n                  98.41796875,\n                  100.5888671875\n                ],\n                [\n                  98.41796875,\n                  101.5888671875\n                ],\n                [\n                  97.41796875,\n                  101.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                100.5888671875,\n                98.41796875,\n                101.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/312\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>22.3</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  100.5888671875\n                ],\n                [\n                  99.41796875,\n                  100.5888671875\n                ],\n                [\n                  99.41796875,\n                  101.5888671875\n                ],\n                [\n                  98.41796875,\n                  101.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                100.5888671875,\n                99.41796875,\n                101.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/313\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>58.6</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  100.5888671875\n                ],\n                [\n                  100.41796875,\n                  100.5888671875\n                ],\n                [\n                  100.41796875,\n                  101.5888671875\n                ],\n                [\n                  99.41796875,\n                  101.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                100.5888671875,\n                100.41796875,\n                101.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/314\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>66.0</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  100.5888671875\n                ],\n                [\n                  101.41796875,\n                  100.5888671875\n                ],\n                [\n                  101.41796875,\n                  101.5888671875\n                ],\n                [\n                  100.41796875,\n                  101.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                100.5888671875,\n                101.41796875,\n                101.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/315\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>35.5</td>\",\n              \"polygon\": [\n                [\n                  101.41796875,\n                  100.5888671875\n                ],\n                [\n                  102.41796875,\n                  100.5888671875\n                ],\n                [\n                  102.41796875,\n                  101.5888671875\n                ],\n                [\n                  101.41796875,\n                  101.5888671875\n                ]\n              ],\n              \"bbox\": [\n                101.41796875,\n                100.5888671875,\n                102.41796875,\n                101.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/316\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td colspan=\\\"5\\\"></td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  101.5888671875\n                ],\n                [\n                  102.41796875,\n                  101.5888671875\n                ],\n                [\n                  102.41796875,\n                  102.5888671875\n                ],\n                [\n                  97.41796875,\n                  102.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                101.5888671875,\n                102.41796875,\n                102.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/317\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Model</th>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  102.5888671875\n                ],\n                [\n                  98.41796875,\n                  102.5888671875\n                ],\n                [\n                  98.41796875,\n                  103.5888671875\n                ],\n                [\n                  97.41796875,\n                  103.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                102.5888671875,\n                98.41796875,\n                103.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/318\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>CB Web QA</th>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  102.5888671875\n                ],\n                [\n                  99.41796875,\n                  102.5888671875\n                ],\n                [\n                  99.41796875,\n                  103.5888671875\n                ],\n                [\n                  98.41796875,\n                  103.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                102.5888671875,\n                99.41796875,\n                103.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/319\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>CB Natural QA</th>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  102.5888671875\n                ],\n                [\n                  100.41796875,\n                  102.5888671875\n                ],\n                [\n                  100.41796875,\n                  103.5888671875\n                ],\n                [\n                  99.41796875,\n                  103.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                102.5888671875,\n                100.41796875,\n                103.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/320\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>CB Trivia QA</th>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  102.5888671875\n                ],\n                [\n                  101.41796875,\n                  102.5888671875\n                ],\n                [\n                  101.41796875,\n                  103.5888671875\n                ],\n                [\n                  100.41796875,\n                  103.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                102.5888671875,\n                101.41796875,\n                103.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/321\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Base</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  103.5888671875\n                ],\n                [\n                  98.41796875,\n                  103.5888671875\n                ],\n                [\n                  98.41796875,\n                  104.5888671875\n                ],\n                [\n                  97.41796875,\n                  104.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                103.5888671875,\n                98.41796875,\n                104.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/322\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>26.6</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  103.5888671875\n                ],\n                [\n                  99.41796875,\n                  103.5888671875\n                ],\n                [\n                  99.41796875,\n                  104.5888671875\n                ],\n                [\n                  98.41796875,\n                  104.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                103.5888671875,\n                99.41796875,\n                104.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/323\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>25.8</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  103.5888671875\n                ],\n                [\n                  100.41796875,\n                  103.5888671875\n                ],\n                [\n                  100.41796875,\n                  104.5888671875\n                ],\n                [\n                  99.41796875,\n                  104.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                103.5888671875,\n                100.41796875,\n                104.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/324\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>24.5</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  103.5888671875\n                ],\n                [\n                  101.41796875,\n                  103.5888671875\n                ],\n                [\n                  101.41796875,\n                  104.5888671875\n                ],\n                [\n                  100.41796875,\n                  104.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                103.5888671875,\n                101.41796875,\n                104.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/325\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  104.5888671875\n                ],\n                [\n                  98.41796875,\n                  104.5888671875\n                ],\n                [\n                  98.41796875,\n                  105.5888671875\n                ],\n                [\n                  97.41796875,\n                  105.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                104.5888671875,\n                98.41796875,\n                105.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/326\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>27.4</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  104.5888671875\n                ],\n                [\n                  99.41796875,\n                  104.5888671875\n                ],\n                [\n                  99.41796875,\n                  105.5888671875\n                ],\n                [\n                  98.41796875,\n                  105.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                104.5888671875,\n                99.41796875,\n                105.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/327\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>26.8</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  104.5888671875\n                ],\n                [\n                  100.41796875,\n                  104.5888671875\n                ],\n                [\n                  100.41796875,\n                  105.5888671875\n                ],\n                [\n                  99.41796875,\n                  105.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                104.5888671875,\n                100.41796875,\n                105.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/328\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>30.7</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  104.5888671875\n                ],\n                [\n                  101.41796875,\n                  104.5888671875\n                ],\n                [\n                  101.41796875,\n                  105.5888671875\n                ],\n                [\n                  100.41796875,\n                  105.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                104.5888671875,\n                101.41796875,\n                105.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/329\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Large</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  105.5888671875\n                ],\n                [\n                  98.41796875,\n                  105.5888671875\n                ],\n                [\n                  98.41796875,\n                  106.5888671875\n                ],\n                [\n                  97.41796875,\n                  106.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                105.5888671875,\n                98.41796875,\n                106.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/330\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>27.7</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  105.5888671875\n                ],\n                [\n                  99.41796875,\n                  105.5888671875\n                ],\n                [\n                  99.41796875,\n                  106.5888671875\n                ],\n                [\n                  98.41796875,\n                  106.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                105.5888671875,\n                99.41796875,\n                106.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/331\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>27.6</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  105.5888671875\n                ],\n                [\n                  100.41796875,\n                  105.5888671875\n                ],\n                [\n                  100.41796875,\n                  106.5888671875\n                ],\n                [\n                  99.41796875,\n                  106.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                105.5888671875,\n                100.41796875,\n                106.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/332\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>29.5</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  105.5888671875\n                ],\n                [\n                  101.41796875,\n                  105.5888671875\n                ],\n                [\n                  101.41796875,\n                  106.5888671875\n                ],\n                [\n                  100.41796875,\n                  106.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                105.5888671875,\n                101.41796875,\n                106.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/333\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Large</td>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  106.5888671875\n                ],\n                [\n                  98.41796875,\n                  106.5888671875\n                ],\n                [\n                  98.41796875,\n                  107.5888671875\n                ],\n                [\n                  97.41796875,\n                  107.5888671875\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                106.5888671875,\n                98.41796875,\n                107.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/334\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>31.3</td>\",\n              \"polygon\": [\n                [\n                  98.41796875,\n                  106.5888671875\n                ],\n                [\n                  99.41796875,\n                  106.5888671875\n                ],\n                [\n                  99.41796875,\n                  107.5888671875\n                ],\n                [\n                  98.41796875,\n                  107.5888671875\n                ]\n              ],\n              \"bbox\": [\n                98.41796875,\n                106.5888671875,\n                99.41796875,\n                107.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/335\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>29.5</td>\",\n              \"polygon\": [\n                [\n                  99.41796875,\n                  106.5888671875\n                ],\n                [\n                  100.41796875,\n                  106.5888671875\n                ],\n                [\n                  100.41796875,\n                  107.5888671875\n                ],\n                [\n                  99.41796875,\n                  107.5888671875\n                ]\n              ],\n              \"bbox\": [\n                99.41796875,\n                106.5888671875,\n                100.41796875,\n                107.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/336\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>36.9</td>\",\n              \"polygon\": [\n                [\n                  100.41796875,\n                  106.5888671875\n                ],\n                [\n                  101.41796875,\n                  106.5888671875\n                ],\n                [\n                  101.41796875,\n                  107.5888671875\n                ],\n                [\n                  100.41796875,\n                  107.5888671875\n                ]\n              ],\n              \"bbox\": [\n                100.41796875,\n                106.5888671875,\n                101.41796875,\n                107.5888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/15/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Table 5: Fine-tuning results. Fine-tuning results of T5 baselines and Switch models across a diverse set of natural language tests (validation sets; higher numbers are better). We compare FLOP-matched Switch models to the T5-Base and T5-Large baselines. For most tasks considered, we find significant improvements of the Switchvariants. We observe gains across both model sizes and across both reasoning and knowledge-heavy language tasks.</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              354.4261779785156\n            ],\n            [\n              521.7356567382812,\n              354.4261779785156\n            ],\n            [\n              521.7356567382812,\n              433.0813293457031\n            ],\n            [\n              89.6484375,\n              433.0813293457031\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            354.4261779785156,\n            521.7356567382812,\n            433.0813293457031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/15/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-15-0\\\"></span>4.2 Distillation</h4>\",\n          \"polygon\": [\n            [\n              89.2001953125,\n              488.9872131347656\n            ],\n            [\n              173.33460998535156,\n              488.9872131347656\n            ],\n            [\n              173.33460998535156,\n              499.8963317871094\n            ],\n            [\n              89.2001953125,\n              499.8963317871094\n            ]\n          ],\n          \"bbox\": [\n            89.2001953125,\n            488.9872131347656,\n            173.33460998535156,\n            499.8963317871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/15/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/15/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Deploying massive neural networks with billions, or trillions, of parameters is inconvenient. To alleviate this, we study distilling <a href=\\\"#page-36-3\\\">(Hinton</a> <a href=\\\"#page-36-3\\\">et</a> <a href=\\\"#page-36-3\\\">al.,</a> <a href=\\\"#page-36-3\\\">2015)</a> large sparse models into small dense models. Future work could additionally study distilling large models into smaller sparse models.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              513.2462158203125\n            ],\n            [\n              521.574951171875,\n              513.2462158203125\n            ],\n            [\n              521.574951171875,\n              564.99609375\n            ],\n            [\n              89.4990234375,\n              564.99609375\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            513.2462158203125,\n            521.574951171875,\n            564.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/15/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/15/TextInlineMath/5\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">Distillation techniques. In Table 6 we study a variety of distillation techniques. These techniques are built off of Sanh et al. (2019), who study distillation methods for BERT models. We find that initializing the dense model with the non-expert weights yields a modest improvement. This is possible since all models are FLOP matched, so non-expert layers will have the same dimensions. Since expert layers are usually only added at every or every other FFN layer in a Transformer, this allows for many of the weights to be initialized with trained parameters. Furthermore, we observe a distillation improvement using a mixture of 0.25 for the teacher probabilities and 0.75 for the ground truth label. By combining both techniques we preserve ≈ 30% of the quality gains from the larger sparse models with only ≈ 1/20th of the parameters. The quality gain refers to the percent of</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              572.3932037353516\n            ],\n            [\n              521.8011474609375,\n              572.3932037353516\n            ],\n            [\n              521.8011474609375,\n              705.2452774047852\n            ],\n            [\n              89.6484375,\n              705.2452774047852\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            572.3932037353516,\n            521.8011474609375,\n            705.2452774047852\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/15/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/15/PageFooter/6\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.7705078125,\n              724.9638977050781\n            ],\n            [\n              310.9815673828125,\n              724.9638977050781\n            ],\n            [\n              310.9815673828125,\n              735.5390625\n            ],\n            [\n              300.7705078125,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.7705078125,\n            724.9638977050781,\n            310.9815673828125,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/15/SectionHeader/3\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/13/SectionHeader/6\",\n        \"4\": \"/page/15/SectionHeader/3\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/16/Page/216\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/16/PageHeader/0'></content-ref><content-ref src='/page/16/Table/1'></content-ref><content-ref src='/page/16/Text/2'></content-ref><content-ref src='/page/16/ListItem/3'></content-ref><content-ref src='/page/16/Text/4'></content-ref><content-ref src='/page/16/Text/5'></content-ref><content-ref src='/page/16/SectionHeader/6'></content-ref><content-ref src='/page/16/Text/7'></content-ref><content-ref src='/page/16/Text/8'></content-ref><content-ref src='/page/16/PageFooter/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/16/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.728515625,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              50.080078125\n            ],\n            [\n              247.728515625,\n              50.080078125\n            ]\n          ],\n          \"bbox\": [\n            247.728515625,\n            37.992431640625,\n            360.38671875,\n            50.080078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/15/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/16/Table/1\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Technique</th><th>Parameters</th><th>Quality (↑)</th></tr><tr><td>T5-Base</td><td>223M</td><td>-1.636</td></tr><tr><td>Switch-Base</td><td>3,800M</td><td>-1.444</td></tr><tr><td>Distillation</td><td>223M</td><td>(3%) -1.631</td></tr><tr><td>+ Init. non-expert weights from teacher</td><td>223M</td><td>(20%) -1.598</td></tr><tr><td>+ 0.75 mix of hard and soft loss</td><td>223M</td><td>(29%) -1.580</td></tr><tr><td>Initialization Baseline (no distillation)</td><td></td><td></td></tr><tr><td>Init. non-expert weights from teacher</td><td>223M</td><td>-1.639</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              132.380859375,\n              144.9228515625\n            ],\n            [\n              479.3203125,\n              144.9228515625\n            ],\n            [\n              479.3203125,\n              256.78125\n            ],\n            [\n              132.380859375,\n              256.78125\n            ]\n          ],\n          \"bbox\": [\n            132.380859375,\n            144.9228515625,\n            479.3203125,\n            256.78125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/16/TableCell/191\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Technique</th>\",\n              \"polygon\": [\n                [\n                  132.380859375,\n                  144.9228515625\n                ],\n                [\n                  133.380859375,\n                  144.9228515625\n                ],\n                [\n                  133.380859375,\n                  145.9228515625\n                ],\n                [\n                  132.380859375,\n                  145.9228515625\n                ]\n              ],\n              \"bbox\": [\n                132.380859375,\n                144.9228515625,\n                133.380859375,\n                145.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/192\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Parameters</th>\",\n              \"polygon\": [\n                [\n                  133.380859375,\n                  144.9228515625\n                ],\n                [\n                  134.380859375,\n                  144.9228515625\n                ],\n                [\n                  134.380859375,\n                  145.9228515625\n                ],\n                [\n                  133.380859375,\n                  145.9228515625\n                ]\n              ],\n              \"bbox\": [\n                133.380859375,\n                144.9228515625,\n                134.380859375,\n                145.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/193\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Quality (↑)</th>\",\n              \"polygon\": [\n                [\n                  134.380859375,\n                  144.9228515625\n                ],\n                [\n                  135.380859375,\n                  144.9228515625\n                ],\n                [\n                  135.380859375,\n                  145.9228515625\n                ],\n                [\n                  134.380859375,\n                  145.9228515625\n                ]\n              ],\n              \"bbox\": [\n                134.380859375,\n                144.9228515625,\n                135.380859375,\n                145.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/194\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Base</td>\",\n              \"polygon\": [\n                [\n                  132.380859375,\n                  145.9228515625\n                ],\n                [\n                  133.380859375,\n                  145.9228515625\n                ],\n                [\n                  133.380859375,\n                  146.9228515625\n                ],\n                [\n                  132.380859375,\n                  146.9228515625\n                ]\n              ],\n              \"bbox\": [\n                132.380859375,\n                145.9228515625,\n                133.380859375,\n                146.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/195\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>223M</td>\",\n              \"polygon\": [\n                [\n                  133.380859375,\n                  145.9228515625\n                ],\n                [\n                  134.380859375,\n                  145.9228515625\n                ],\n                [\n                  134.380859375,\n                  146.9228515625\n                ],\n                [\n                  133.380859375,\n                  146.9228515625\n                ]\n              ],\n              \"bbox\": [\n                133.380859375,\n                145.9228515625,\n                134.380859375,\n                146.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/196\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.636</td>\",\n              \"polygon\": [\n                [\n                  134.380859375,\n                  145.9228515625\n                ],\n                [\n                  135.380859375,\n                  145.9228515625\n                ],\n                [\n                  135.380859375,\n                  146.9228515625\n                ],\n                [\n                  134.380859375,\n                  146.9228515625\n                ]\n              ],\n              \"bbox\": [\n                134.380859375,\n                145.9228515625,\n                135.380859375,\n                146.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/197\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base</td>\",\n              \"polygon\": [\n                [\n                  132.380859375,\n                  146.9228515625\n                ],\n                [\n                  133.380859375,\n                  146.9228515625\n                ],\n                [\n                  133.380859375,\n                  147.9228515625\n                ],\n                [\n                  132.380859375,\n                  147.9228515625\n                ]\n              ],\n              \"bbox\": [\n                132.380859375,\n                146.9228515625,\n                133.380859375,\n                147.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/198\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3,800M</td>\",\n              \"polygon\": [\n                [\n                  133.380859375,\n                  146.9228515625\n                ],\n                [\n                  134.380859375,\n                  146.9228515625\n                ],\n                [\n                  134.380859375,\n                  147.9228515625\n                ],\n                [\n                  133.380859375,\n                  147.9228515625\n                ]\n              ],\n              \"bbox\": [\n                133.380859375,\n                146.9228515625,\n                134.380859375,\n                147.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/199\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.444</td>\",\n              \"polygon\": [\n                [\n                  134.380859375,\n                  146.9228515625\n                ],\n                [\n                  135.380859375,\n                  146.9228515625\n                ],\n                [\n                  135.380859375,\n                  147.9228515625\n                ],\n                [\n                  134.380859375,\n                  147.9228515625\n                ]\n              ],\n              \"bbox\": [\n                134.380859375,\n                146.9228515625,\n                135.380859375,\n                147.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/200\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Distillation</td>\",\n              \"polygon\": [\n                [\n                  132.380859375,\n                  147.9228515625\n                ],\n                [\n                  133.380859375,\n                  147.9228515625\n                ],\n                [\n                  133.380859375,\n                  148.9228515625\n                ],\n                [\n                  132.380859375,\n                  148.9228515625\n                ]\n              ],\n              \"bbox\": [\n                132.380859375,\n                147.9228515625,\n                133.380859375,\n                148.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/201\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>223M</td>\",\n              \"polygon\": [\n                [\n                  133.380859375,\n                  147.9228515625\n                ],\n                [\n                  134.380859375,\n                  147.9228515625\n                ],\n                [\n                  134.380859375,\n                  148.9228515625\n                ],\n                [\n                  133.380859375,\n                  148.9228515625\n                ]\n              ],\n              \"bbox\": [\n                133.380859375,\n                147.9228515625,\n                134.380859375,\n                148.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/202\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>(3%) -1.631</td>\",\n              \"polygon\": [\n                [\n                  134.380859375,\n                  147.9228515625\n                ],\n                [\n                  135.380859375,\n                  147.9228515625\n                ],\n                [\n                  135.380859375,\n                  148.9228515625\n                ],\n                [\n                  134.380859375,\n                  148.9228515625\n                ]\n              ],\n              \"bbox\": [\n                134.380859375,\n                147.9228515625,\n                135.380859375,\n                148.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/203\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>+ Init. non-expert weights from teacher</td>\",\n              \"polygon\": [\n                [\n                  132.380859375,\n                  148.9228515625\n                ],\n                [\n                  133.380859375,\n                  148.9228515625\n                ],\n                [\n                  133.380859375,\n                  149.9228515625\n                ],\n                [\n                  132.380859375,\n                  149.9228515625\n                ]\n              ],\n              \"bbox\": [\n                132.380859375,\n                148.9228515625,\n                133.380859375,\n                149.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/204\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>223M</td>\",\n              \"polygon\": [\n                [\n                  133.380859375,\n                  148.9228515625\n                ],\n                [\n                  134.380859375,\n                  148.9228515625\n                ],\n                [\n                  134.380859375,\n                  149.9228515625\n                ],\n                [\n                  133.380859375,\n                  149.9228515625\n                ]\n              ],\n              \"bbox\": [\n                133.380859375,\n                148.9228515625,\n                134.380859375,\n                149.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/205\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>(20%) -1.598</td>\",\n              \"polygon\": [\n                [\n                  134.380859375,\n                  148.9228515625\n                ],\n                [\n                  135.380859375,\n                  148.9228515625\n                ],\n                [\n                  135.380859375,\n                  149.9228515625\n                ],\n                [\n                  134.380859375,\n                  149.9228515625\n                ]\n              ],\n              \"bbox\": [\n                134.380859375,\n                148.9228515625,\n                135.380859375,\n                149.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/206\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>+ 0.75 mix of hard and soft loss</td>\",\n              \"polygon\": [\n                [\n                  132.380859375,\n                  149.9228515625\n                ],\n                [\n                  133.380859375,\n                  149.9228515625\n                ],\n                [\n                  133.380859375,\n                  150.9228515625\n                ],\n                [\n                  132.380859375,\n                  150.9228515625\n                ]\n              ],\n              \"bbox\": [\n                132.380859375,\n                149.9228515625,\n                133.380859375,\n                150.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/207\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>223M</td>\",\n              \"polygon\": [\n                [\n                  133.380859375,\n                  149.9228515625\n                ],\n                [\n                  134.380859375,\n                  149.9228515625\n                ],\n                [\n                  134.380859375,\n                  150.9228515625\n                ],\n                [\n                  133.380859375,\n                  150.9228515625\n                ]\n              ],\n              \"bbox\": [\n                133.380859375,\n                149.9228515625,\n                134.380859375,\n                150.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/208\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>(29%) -1.580</td>\",\n              \"polygon\": [\n                [\n                  134.380859375,\n                  149.9228515625\n                ],\n                [\n                  135.380859375,\n                  149.9228515625\n                ],\n                [\n                  135.380859375,\n                  150.9228515625\n                ],\n                [\n                  134.380859375,\n                  150.9228515625\n                ]\n              ],\n              \"bbox\": [\n                134.380859375,\n                149.9228515625,\n                135.380859375,\n                150.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/209\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Initialization Baseline (no distillation)</td>\",\n              \"polygon\": [\n                [\n                  132.380859375,\n                  150.9228515625\n                ],\n                [\n                  133.380859375,\n                  150.9228515625\n                ],\n                [\n                  133.380859375,\n                  151.9228515625\n                ],\n                [\n                  132.380859375,\n                  151.9228515625\n                ]\n              ],\n              \"bbox\": [\n                132.380859375,\n                150.9228515625,\n                133.380859375,\n                151.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/210\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  133.380859375,\n                  150.9228515625\n                ],\n                [\n                  134.380859375,\n                  150.9228515625\n                ],\n                [\n                  134.380859375,\n                  151.9228515625\n                ],\n                [\n                  133.380859375,\n                  151.9228515625\n                ]\n              ],\n              \"bbox\": [\n                133.380859375,\n                150.9228515625,\n                134.380859375,\n                151.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/211\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  134.380859375,\n                  150.9228515625\n                ],\n                [\n                  135.380859375,\n                  150.9228515625\n                ],\n                [\n                  135.380859375,\n                  151.9228515625\n                ],\n                [\n                  134.380859375,\n                  151.9228515625\n                ]\n              ],\n              \"bbox\": [\n                134.380859375,\n                150.9228515625,\n                135.380859375,\n                151.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/212\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Init. non-expert weights from teacher</td>\",\n              \"polygon\": [\n                [\n                  132.380859375,\n                  151.9228515625\n                ],\n                [\n                  133.380859375,\n                  151.9228515625\n                ],\n                [\n                  133.380859375,\n                  152.9228515625\n                ],\n                [\n                  132.380859375,\n                  152.9228515625\n                ]\n              ],\n              \"bbox\": [\n                132.380859375,\n                151.9228515625,\n                133.380859375,\n                152.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/213\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>223M</td>\",\n              \"polygon\": [\n                [\n                  133.380859375,\n                  151.9228515625\n                ],\n                [\n                  134.380859375,\n                  151.9228515625\n                ],\n                [\n                  134.380859375,\n                  152.9228515625\n                ],\n                [\n                  133.380859375,\n                  152.9228515625\n                ]\n              ],\n              \"bbox\": [\n                133.380859375,\n                151.9228515625,\n                134.380859375,\n                152.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/214\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.639</td>\",\n              \"polygon\": [\n                [\n                  134.380859375,\n                  151.9228515625\n                ],\n                [\n                  135.380859375,\n                  151.9228515625\n                ],\n                [\n                  135.380859375,\n                  152.9228515625\n                ],\n                [\n                  134.380859375,\n                  152.9228515625\n                ]\n              ],\n              \"bbox\": [\n                134.380859375,\n                151.9228515625,\n                135.380859375,\n                152.9228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/15/SectionHeader/3\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/15/SectionHeader/3\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/16/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">the quality difference between Switch-Base (Teacher) and T5-Base (Student). Therefore, a quality gain of 100% implies the Student equals the performance of the Teacher.</p>\",\n          \"polygon\": [\n            [\n              90.0,\n              93.19921875\n            ],\n            [\n              522.650390625,\n              93.19921875\n            ],\n            [\n              522.650390625,\n              117.75335693359375\n            ],\n            [\n              90.0,\n              117.75335693359375\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            93.19921875,\n            522.650390625,\n            117.75335693359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/15/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/16/ListItem/3\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-16-1\\\"></span>Table 6: Distilling Switch Transformers for Language Modeling. Initializing T5-Base with the non-expert weights from Switch-Base and using a loss from a mixture of teacher and ground-truth labels obtains the best performance. We can distill 30% of the performance improvement of a large sparse model with 100x more parameters back into a small dense model. For a final baseline, we find no improvement of T5-Base initialized with the expert weights, but trained normally without distillation.</li>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              268.9991455078125\n            ],\n            [\n              521.6920776367188,\n              268.9991455078125\n            ],\n            [\n              521.6920776367188,\n              347.654296875\n            ],\n            [\n              89.7978515625,\n              347.654296875\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            268.9991455078125,\n            521.6920776367188,\n            347.654296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/15/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/16/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Achievable compression rates. Using our best distillation technique described in Table <a href=\\\"#page-16-1\\\">6,</a> we distill a wide variety of sparse models into dense models. We distill Switch-Base versions, sweeping over an increasing number of experts, which corresponds to varying between 1.1B to 14.7B parameters. Through distillation, we can preserve 37% of the quality gain of the 1.1B parameter model while compressing 82%. At the extreme, where we compress the model 99%, we are still able to maintain 28% of the teacher's model quality improvement.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              375.3381652832031\n            ],\n            [\n              521.7330932617188,\n              375.3381652832031\n            ],\n            [\n              521.7330932617188,\n              467.54296875\n            ],\n            [\n              89.4990234375,\n              467.54296875\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            375.3381652832031,\n            521.7330932617188,\n            467.54296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/15/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/16/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Distilling a fine-tuned model. We conclude this with a study of distilling a finetuned sparse model into a dense model. Table <a href=\\\"#page-17-1\\\">8</a> shows results of distilling a 7.4B parameter Switch-Base model, fine-tuned on the SuperGLUE task, into the 223M T5-Base. Similar to our pre-training results, we find we are able to preserve 30% of the gains of the sparse model when distilling into a FLOP matched dense variant. One potential future avenue, not considered here, may examine the specific experts being used for fine-tuning tasks and extracting them to achieve better model compression.</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              470.3712158203125\n            ],\n            [\n              521.7572631835938,\n              470.3712158203125\n            ],\n            [\n              521.7572631835938,\n              562.5753479003906\n            ],\n            [\n              89.6484375,\n              562.5753479003906\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            470.3712158203125,\n            521.7572631835938,\n            562.5753479003906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/15/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/16/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-16-0\\\"></span>4.3 Multilingual Learning</h4>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              579.69140625\n            ],\n            [\n              232.48828125,\n              579.69140625\n            ],\n            [\n              232.48828125,\n              590.7133483886719\n            ],\n            [\n              89.349609375,\n              590.7133483886719\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            579.69140625,\n            232.48828125,\n            590.7133483886719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/16/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/16/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In our final set of downstream experiments, we measure the model quality and speed tradeoffs while pre-training on a mixture of 101 different languages. We build and benchmark off the recent work of mT5 <a href=\\\"#page-39-2\\\">(Xue</a> <a href=\\\"#page-39-2\\\">et</a> <a href=\\\"#page-39-2\\\">al.,</a> <a href=\\\"#page-39-2\\\">2020)</a>, a multilingual extension to T5. We pre-train on the multilingual variant of the Common Crawl data set (mC4) spanning 101 languages introduced in mT5, but due to script variants within certain languages, the mixture contains 107 tasks.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              599.30224609375\n            ],\n            [\n              521.6513061523438,\n              599.30224609375\n            ],\n            [\n              521.6513061523438,\n              677.9573287963867\n            ],\n            [\n              89.4990234375,\n              677.9573287963867\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            599.30224609375,\n            521.6513061523438,\n            677.9573287963867\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/16/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/16/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In Figure <a href=\\\"#page-18-0\\\">7</a> we plot the quality improvement in negative log perplexity for all languages of a FLOP-matched Switch model, mSwitch-Base to the T5 base variant, mT5-Base. After</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              680.7862319946289\n            ],\n            [\n              521.6512451171875,\n              680.7862319946289\n            ],\n            [\n              521.6512451171875,\n              705.2453308105469\n            ],\n            [\n              89.4990234375,\n              705.2453308105469\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            680.7862319946289,\n            521.6512451171875,\n            705.2453308105469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/16/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/16/PageFooter/9\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.62109375,\n              724.9639511108398\n            ],\n            [\n              310.9815673828125,\n              724.9639511108398\n            ],\n            [\n              310.9815673828125,\n              735.5390625\n            ],\n            [\n              300.62109375,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.62109375,\n            724.9639511108398,\n            310.9815673828125,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/16/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/13/SectionHeader/6\",\n        \"4\": \"/page/16/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/17/Page/296\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/17/PageHeader/0'></content-ref><content-ref src='/page/17/TableGroup/181'></content-ref><content-ref src='/page/17/Table/3'></content-ref><content-ref src='/page/17/ListItem/4'></content-ref><content-ref src='/page/17/Text/5'></content-ref><content-ref src='/page/17/SectionHeader/6'></content-ref><content-ref src='/page/17/Text/7'></content-ref><content-ref src='/page/17/PageFooter/9'></content-ref><content-ref src='/page/17/Footnote/8'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/17/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.5107421875,\n              37.992431640625\n            ],\n            [\n              368.455078125,\n              37.992431640625\n            ],\n            [\n              368.455078125,\n              50.41845703125\n            ],\n            [\n              239.5107421875,\n              50.41845703125\n            ]\n          ],\n          \"bbox\": [\n            239.5107421875,\n            37.992431640625,\n            368.455078125,\n            50.41845703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/16/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/17/TableGroup/181\",\n          \"block_type\": \"TableGroup\",\n          \"html\": \"<content-ref src='/page/17/Table/1'></content-ref><content-ref src='/page/17/Caption/180'></content-ref>\",\n          \"polygon\": [\n            [\n              89.947265625,\n              92.1357421875\n            ],\n            [\n              522.052734375,\n              92.1357421875\n            ],\n            [\n              522.052734375,\n              310.935302734375\n            ],\n            [\n              89.947265625,\n              310.935302734375\n            ]\n          ],\n          \"bbox\": [\n            89.947265625,\n            92.1357421875,\n            522.052734375,\n            310.935302734375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/17/Table/1\",\n              \"block_type\": \"Table\",\n              \"html\": \"<table><tbody><tr><th></th><th>Dense</th><th colspan=5>Sparse</th></tr><tr><td>Parameters</td><td>223M</td><td>1.1B</td><td>2.0B</td><td>3.8B</td><td>7.4B</td><td>14.7B</td></tr><tr><td>Pre-trained Neg. Log Perp. (↑)</td><td>-1.636</td><td>-1.505</td><td>-1.474</td><td>-1.444</td><td>-1.432</td><td>-1.427</td></tr><tr><td>Distilled Neg. Log Perp. (↑)</td><td>—</td><td>-1.587</td><td>-1.585</td><td>-1.579</td><td>-1.582</td><td>-1.578</td></tr><tr><td>Percent of Teacher Performance</td><td>—</td><td>37%</td><td>32%</td><td>30 %</td><td>27 %</td><td>28 %</td></tr><tr><td>Compression Percent</td><td>—</td><td>82 %</td><td>90 %</td><td>95 %</td><td>97 %</td><td>99 %</td></tr></tbody></table>\",\n              \"polygon\": [\n                [\n                  100.8544921875,\n                  92.1357421875\n                ],\n                [\n                  508.60546875,\n                  92.1357421875\n                ],\n                [\n                  508.60546875,\n                  177.0205078125\n                ],\n                [\n                  100.8544921875,\n                  177.0205078125\n                ]\n              ],\n              \"bbox\": [\n                100.8544921875,\n                92.1357421875,\n                508.60546875,\n                177.0205078125\n              ],\n              \"children\": [\n                {\n                  \"id\": \"/page/17/TableCell/240\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th></th>\",\n                  \"polygon\": [\n                    [\n                      100.8544921875,\n                      92.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      92.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      100.8544921875,\n                      93.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    100.8544921875,\n                    92.1357421875,\n                    101.8544921875,\n                    93.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/241\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>Dense</th>\",\n                  \"polygon\": [\n                    [\n                      101.8544921875,\n                      92.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      92.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      93.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    101.8544921875,\n                    92.1357421875,\n                    102.8544921875,\n                    93.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/242\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th colspan=\\\"5\\\">Sparse</th>\",\n                  \"polygon\": [\n                    [\n                      102.8544921875,\n                      92.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      92.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      93.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    102.8544921875,\n                    92.1357421875,\n                    107.8544921875,\n                    93.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/243\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Parameters</td>\",\n                  \"polygon\": [\n                    [\n                      100.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      100.8544921875,\n                      94.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    100.8544921875,\n                    93.1357421875,\n                    101.8544921875,\n                    94.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/244\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>223M</td>\",\n                  \"polygon\": [\n                    [\n                      101.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      94.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    101.8544921875,\n                    93.1357421875,\n                    102.8544921875,\n                    94.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/245\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>1.1B</td>\",\n                  \"polygon\": [\n                    [\n                      102.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      94.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    102.8544921875,\n                    93.1357421875,\n                    103.8544921875,\n                    94.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/246\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>2.0B</td>\",\n                  \"polygon\": [\n                    [\n                      103.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      94.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    103.8544921875,\n                    93.1357421875,\n                    104.8544921875,\n                    94.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/247\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>3.8B</td>\",\n                  \"polygon\": [\n                    [\n                      104.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      94.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    104.8544921875,\n                    93.1357421875,\n                    105.8544921875,\n                    94.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/248\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>7.4B</td>\",\n                  \"polygon\": [\n                    [\n                      105.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      94.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    105.8544921875,\n                    93.1357421875,\n                    106.8544921875,\n                    94.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/249\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>14.7B</td>\",\n                  \"polygon\": [\n                    [\n                      106.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      93.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      94.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    106.8544921875,\n                    93.1357421875,\n                    107.8544921875,\n                    94.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/250\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Pre-trained Neg. Log Perp. (↑)</td>\",\n                  \"polygon\": [\n                    [\n                      100.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      100.8544921875,\n                      95.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    100.8544921875,\n                    94.1357421875,\n                    101.8544921875,\n                    95.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/251\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.636</td>\",\n                  \"polygon\": [\n                    [\n                      101.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      95.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    101.8544921875,\n                    94.1357421875,\n                    102.8544921875,\n                    95.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/252\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.505</td>\",\n                  \"polygon\": [\n                    [\n                      102.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      95.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    102.8544921875,\n                    94.1357421875,\n                    103.8544921875,\n                    95.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/253\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.474</td>\",\n                  \"polygon\": [\n                    [\n                      103.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      95.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    103.8544921875,\n                    94.1357421875,\n                    104.8544921875,\n                    95.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/254\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.444</td>\",\n                  \"polygon\": [\n                    [\n                      104.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      95.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    104.8544921875,\n                    94.1357421875,\n                    105.8544921875,\n                    95.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/255\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.432</td>\",\n                  \"polygon\": [\n                    [\n                      105.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      95.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    105.8544921875,\n                    94.1357421875,\n                    106.8544921875,\n                    95.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/256\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.427</td>\",\n                  \"polygon\": [\n                    [\n                      106.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      94.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      95.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    106.8544921875,\n                    94.1357421875,\n                    107.8544921875,\n                    95.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/257\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Distilled Neg. Log Perp. (↑)</td>\",\n                  \"polygon\": [\n                    [\n                      100.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      100.8544921875,\n                      96.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    100.8544921875,\n                    95.1357421875,\n                    101.8544921875,\n                    96.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/258\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>—</td>\",\n                  \"polygon\": [\n                    [\n                      101.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      96.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    101.8544921875,\n                    95.1357421875,\n                    102.8544921875,\n                    96.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/259\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.587</td>\",\n                  \"polygon\": [\n                    [\n                      102.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      96.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    102.8544921875,\n                    95.1357421875,\n                    103.8544921875,\n                    96.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/260\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.585</td>\",\n                  \"polygon\": [\n                    [\n                      103.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      96.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    103.8544921875,\n                    95.1357421875,\n                    104.8544921875,\n                    96.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/261\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.579</td>\",\n                  \"polygon\": [\n                    [\n                      104.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      96.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    104.8544921875,\n                    95.1357421875,\n                    105.8544921875,\n                    96.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/262\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.582</td>\",\n                  \"polygon\": [\n                    [\n                      105.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      96.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    105.8544921875,\n                    95.1357421875,\n                    106.8544921875,\n                    96.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/263\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>-1.578</td>\",\n                  \"polygon\": [\n                    [\n                      106.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      95.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      96.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    106.8544921875,\n                    95.1357421875,\n                    107.8544921875,\n                    96.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/264\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Percent of Teacher Performance</td>\",\n                  \"polygon\": [\n                    [\n                      100.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      100.8544921875,\n                      97.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    100.8544921875,\n                    96.1357421875,\n                    101.8544921875,\n                    97.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/265\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>—</td>\",\n                  \"polygon\": [\n                    [\n                      101.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      97.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    101.8544921875,\n                    96.1357421875,\n                    102.8544921875,\n                    97.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/266\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>37%</td>\",\n                  \"polygon\": [\n                    [\n                      102.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      97.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    102.8544921875,\n                    96.1357421875,\n                    103.8544921875,\n                    97.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/267\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>32%</td>\",\n                  \"polygon\": [\n                    [\n                      103.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      97.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    103.8544921875,\n                    96.1357421875,\n                    104.8544921875,\n                    97.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/268\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>30 %</td>\",\n                  \"polygon\": [\n                    [\n                      104.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      97.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    104.8544921875,\n                    96.1357421875,\n                    105.8544921875,\n                    97.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/269\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>27 %</td>\",\n                  \"polygon\": [\n                    [\n                      105.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      97.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    105.8544921875,\n                    96.1357421875,\n                    106.8544921875,\n                    97.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/270\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>28 %</td>\",\n                  \"polygon\": [\n                    [\n                      106.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      96.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      97.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    106.8544921875,\n                    96.1357421875,\n                    107.8544921875,\n                    97.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/271\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>Compression Percent</td>\",\n                  \"polygon\": [\n                    [\n                      100.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      98.1357421875\n                    ],\n                    [\n                      100.8544921875,\n                      98.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    100.8544921875,\n                    97.1357421875,\n                    101.8544921875,\n                    98.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/272\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>—</td>\",\n                  \"polygon\": [\n                    [\n                      101.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      98.1357421875\n                    ],\n                    [\n                      101.8544921875,\n                      98.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    101.8544921875,\n                    97.1357421875,\n                    102.8544921875,\n                    98.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/273\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>82 %</td>\",\n                  \"polygon\": [\n                    [\n                      102.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      98.1357421875\n                    ],\n                    [\n                      102.8544921875,\n                      98.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    102.8544921875,\n                    97.1357421875,\n                    103.8544921875,\n                    98.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/274\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>90 %</td>\",\n                  \"polygon\": [\n                    [\n                      103.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      98.1357421875\n                    ],\n                    [\n                      103.8544921875,\n                      98.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    103.8544921875,\n                    97.1357421875,\n                    104.8544921875,\n                    98.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/275\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>95 %</td>\",\n                  \"polygon\": [\n                    [\n                      104.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      98.1357421875\n                    ],\n                    [\n                      104.8544921875,\n                      98.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    104.8544921875,\n                    97.1357421875,\n                    105.8544921875,\n                    98.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/276\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>97 %</td>\",\n                  \"polygon\": [\n                    [\n                      105.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      98.1357421875\n                    ],\n                    [\n                      105.8544921875,\n                      98.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    105.8544921875,\n                    97.1357421875,\n                    106.8544921875,\n                    98.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/17/TableCell/277\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>99 %</td>\",\n                  \"polygon\": [\n                    [\n                      106.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      97.1357421875\n                    ],\n                    [\n                      107.8544921875,\n                      98.1357421875\n                    ],\n                    [\n                      106.8544921875,\n                      98.1357421875\n                    ]\n                  ],\n                  \"bbox\": [\n                    106.8544921875,\n                    97.1357421875,\n                    107.8544921875,\n                    98.1357421875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/0/SectionHeader/2\",\n                    \"2\": \"/page/3/SectionHeader/8\",\n                    \"3\": \"/page/13/SectionHeader/6\",\n                    \"4\": \"/page/16/SectionHeader/6\"\n                  },\n                  \"images\": {}\n                }\n              ],\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": null\n            },\n            {\n              \"id\": \"/page/17/Caption/180\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p>Table 7: Distillation compression rates. We measure the quality when distilling large sparse models into a dense baseline. Our baseline, T5-Base, has a -1.636 Neg. Log Perp. quality. In the right columns, we then distill increasingly large sparse models into this same architecture. Through a combination of weight-initialization and a mixture of hard and soft losses, we can shrink our sparse teachers by 95%+ while preserving 30% of the quality gain. However, for significantly better and larger pre-trained teachers, we expect larger student models would be necessary to achieve these compression rates.</p>\",\n              \"polygon\": [\n                [\n                  89.947265625,\n                  204.9609375\n                ],\n                [\n                  522.052734375,\n                  204.9609375\n                ],\n                [\n                  522.052734375,\n                  310.935302734375\n                ],\n                [\n                  89.947265625,\n                  310.935302734375\n                ]\n              ],\n              \"bbox\": [\n                89.947265625,\n                204.9609375,\n                522.052734375,\n                310.935302734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/16/SectionHeader/6\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/17/Table/3\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Model</th><th>Parameters</th><th>FLOPS</th><th>SuperGLUE (↑)</th></tr><tr><td>T5-Base</td><td>223M</td><td>124B</td><td>74.6</td></tr><tr><td>Switch-Base</td><td>7410M</td><td>124B</td><td>81.3</td></tr><tr><td>Distilled T5-Base</td><td>223M</td><td>124B</td><td>(30%) 76.6</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              153.896484375,\n              336.251953125\n            ],\n            [\n              454.517578125,\n              336.251953125\n            ],\n            [\n              454.517578125,\n              397.16015625\n            ],\n            [\n              153.896484375,\n              397.16015625\n            ]\n          ],\n          \"bbox\": [\n            153.896484375,\n            336.251953125,\n            454.517578125,\n            397.16015625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/17/TableCell/278\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Model</th>\",\n              \"polygon\": [\n                [\n                  153.896484375,\n                  336.251953125\n                ],\n                [\n                  154.896484375,\n                  336.251953125\n                ],\n                [\n                  154.896484375,\n                  337.251953125\n                ],\n                [\n                  153.896484375,\n                  337.251953125\n                ]\n              ],\n              \"bbox\": [\n                153.896484375,\n                336.251953125,\n                154.896484375,\n                337.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/279\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Parameters</th>\",\n              \"polygon\": [\n                [\n                  154.896484375,\n                  336.251953125\n                ],\n                [\n                  155.896484375,\n                  336.251953125\n                ],\n                [\n                  155.896484375,\n                  337.251953125\n                ],\n                [\n                  154.896484375,\n                  337.251953125\n                ]\n              ],\n              \"bbox\": [\n                154.896484375,\n                336.251953125,\n                155.896484375,\n                337.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/280\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>FLOPS</th>\",\n              \"polygon\": [\n                [\n                  155.896484375,\n                  336.251953125\n                ],\n                [\n                  156.896484375,\n                  336.251953125\n                ],\n                [\n                  156.896484375,\n                  337.251953125\n                ],\n                [\n                  155.896484375,\n                  337.251953125\n                ]\n              ],\n              \"bbox\": [\n                155.896484375,\n                336.251953125,\n                156.896484375,\n                337.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/281\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>SuperGLUE (↑)</th>\",\n              \"polygon\": [\n                [\n                  156.896484375,\n                  336.251953125\n                ],\n                [\n                  157.896484375,\n                  336.251953125\n                ],\n                [\n                  157.896484375,\n                  337.251953125\n                ],\n                [\n                  156.896484375,\n                  337.251953125\n                ]\n              ],\n              \"bbox\": [\n                156.896484375,\n                336.251953125,\n                157.896484375,\n                337.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/282\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Base</td>\",\n              \"polygon\": [\n                [\n                  153.896484375,\n                  337.251953125\n                ],\n                [\n                  154.896484375,\n                  337.251953125\n                ],\n                [\n                  154.896484375,\n                  338.251953125\n                ],\n                [\n                  153.896484375,\n                  338.251953125\n                ]\n              ],\n              \"bbox\": [\n                153.896484375,\n                337.251953125,\n                154.896484375,\n                338.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/283\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>223M</td>\",\n              \"polygon\": [\n                [\n                  154.896484375,\n                  337.251953125\n                ],\n                [\n                  155.896484375,\n                  337.251953125\n                ],\n                [\n                  155.896484375,\n                  338.251953125\n                ],\n                [\n                  154.896484375,\n                  338.251953125\n                ]\n              ],\n              \"bbox\": [\n                154.896484375,\n                337.251953125,\n                155.896484375,\n                338.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/284\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>124B</td>\",\n              \"polygon\": [\n                [\n                  155.896484375,\n                  337.251953125\n                ],\n                [\n                  156.896484375,\n                  337.251953125\n                ],\n                [\n                  156.896484375,\n                  338.251953125\n                ],\n                [\n                  155.896484375,\n                  338.251953125\n                ]\n              ],\n              \"bbox\": [\n                155.896484375,\n                337.251953125,\n                156.896484375,\n                338.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/285\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>74.6</td>\",\n              \"polygon\": [\n                [\n                  156.896484375,\n                  337.251953125\n                ],\n                [\n                  157.896484375,\n                  337.251953125\n                ],\n                [\n                  157.896484375,\n                  338.251953125\n                ],\n                [\n                  156.896484375,\n                  338.251953125\n                ]\n              ],\n              \"bbox\": [\n                156.896484375,\n                337.251953125,\n                157.896484375,\n                338.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/286\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base</td>\",\n              \"polygon\": [\n                [\n                  153.896484375,\n                  338.251953125\n                ],\n                [\n                  154.896484375,\n                  338.251953125\n                ],\n                [\n                  154.896484375,\n                  339.251953125\n                ],\n                [\n                  153.896484375,\n                  339.251953125\n                ]\n              ],\n              \"bbox\": [\n                153.896484375,\n                338.251953125,\n                154.896484375,\n                339.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/287\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7410M</td>\",\n              \"polygon\": [\n                [\n                  154.896484375,\n                  338.251953125\n                ],\n                [\n                  155.896484375,\n                  338.251953125\n                ],\n                [\n                  155.896484375,\n                  339.251953125\n                ],\n                [\n                  154.896484375,\n                  339.251953125\n                ]\n              ],\n              \"bbox\": [\n                154.896484375,\n                338.251953125,\n                155.896484375,\n                339.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/288\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>124B</td>\",\n              \"polygon\": [\n                [\n                  155.896484375,\n                  338.251953125\n                ],\n                [\n                  156.896484375,\n                  338.251953125\n                ],\n                [\n                  156.896484375,\n                  339.251953125\n                ],\n                [\n                  155.896484375,\n                  339.251953125\n                ]\n              ],\n              \"bbox\": [\n                155.896484375,\n                338.251953125,\n                156.896484375,\n                339.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/289\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>81.3</td>\",\n              \"polygon\": [\n                [\n                  156.896484375,\n                  338.251953125\n                ],\n                [\n                  157.896484375,\n                  338.251953125\n                ],\n                [\n                  157.896484375,\n                  339.251953125\n                ],\n                [\n                  156.896484375,\n                  339.251953125\n                ]\n              ],\n              \"bbox\": [\n                156.896484375,\n                338.251953125,\n                157.896484375,\n                339.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/290\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Distilled T5-Base</td>\",\n              \"polygon\": [\n                [\n                  153.896484375,\n                  339.251953125\n                ],\n                [\n                  154.896484375,\n                  339.251953125\n                ],\n                [\n                  154.896484375,\n                  340.251953125\n                ],\n                [\n                  153.896484375,\n                  340.251953125\n                ]\n              ],\n              \"bbox\": [\n                153.896484375,\n                339.251953125,\n                154.896484375,\n                340.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/291\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>223M</td>\",\n              \"polygon\": [\n                [\n                  154.896484375,\n                  339.251953125\n                ],\n                [\n                  155.896484375,\n                  339.251953125\n                ],\n                [\n                  155.896484375,\n                  340.251953125\n                ],\n                [\n                  154.896484375,\n                  340.251953125\n                ]\n              ],\n              \"bbox\": [\n                154.896484375,\n                339.251953125,\n                155.896484375,\n                340.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/292\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>124B</td>\",\n              \"polygon\": [\n                [\n                  155.896484375,\n                  339.251953125\n                ],\n                [\n                  156.896484375,\n                  339.251953125\n                ],\n                [\n                  156.896484375,\n                  340.251953125\n                ],\n                [\n                  155.896484375,\n                  340.251953125\n                ]\n              ],\n              \"bbox\": [\n                155.896484375,\n                339.251953125,\n                156.896484375,\n                340.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/293\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>(30%) 76.6</td>\",\n              \"polygon\": [\n                [\n                  156.896484375,\n                  339.251953125\n                ],\n                [\n                  157.896484375,\n                  339.251953125\n                ],\n                [\n                  157.896484375,\n                  340.251953125\n                ],\n                [\n                  156.896484375,\n                  340.251953125\n                ]\n              ],\n              \"bbox\": [\n                156.896484375,\n                339.251953125,\n                157.896484375,\n                340.251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/13/SectionHeader/6\",\n                \"4\": \"/page/16/SectionHeader/6\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/16/SectionHeader/6\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/17/ListItem/4\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-17-1\\\"></span>Table 8: Distilling a fine-tuned SuperGLUE model. We distill a Switch-Base model finetuned on the SuperGLUE tasks into a T5-Base model. We observe that on smaller data sets our large sparse model can be an effective teacher for distillation. We find that we again achieve 30% of the teacher's performance on a 97% compressed model.</li>\",\n          \"polygon\": [\n            [\n              90.0,\n              409.9971923828125\n            ],\n            [\n              521.75390625,\n              409.9971923828125\n            ],\n            [\n              521.75390625,\n              475.27734375\n            ],\n            [\n              90.0,\n              475.27734375\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            409.9971923828125,\n            521.75390625,\n            475.27734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/16/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/17/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">pre-training both versions for 1M steps, we find that on all 101 languages considered, Switch Transformer increases the final negative log perplexity over the baseline. In Figure <a href=\\\"#page-18-1\\\">8,</a> we present a different view and now histogram the per step speed-up of using Switch Transformer over the mT5-Base.<a href=\\\"#page-17-2\\\">9</a> We find a mean speed-up over mT5-Base of 5x and that 91% of languages achieve at least a 4x speedup. This presents evidence that Switch Transformers are effective multi-task and multi-lingual learners.</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              508.921875\n            ],\n            [\n              522.3515625,\n              508.921875\n            ],\n            [\n              522.3515625,\n              587.8283081054688\n            ],\n            [\n              89.6484375,\n              587.8283081054688\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            508.921875,\n            522.3515625,\n            587.8283081054688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/13/SectionHeader/6\",\n            \"4\": \"/page/16/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/17/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-17-0\\\"></span>5. Designing Models with Data, Model, and Expert-Parallelism</h3>\",\n          \"polygon\": [\n            [\n              89.947265625,\n              608.30859375\n            ],\n            [\n              464.9765625,\n              608.30859375\n            ],\n            [\n              464.9765625,\n              620.68359375\n            ],\n            [\n              89.947265625,\n              620.68359375\n            ]\n          ],\n          \"bbox\": [\n            89.947265625,\n            608.30859375,\n            464.9765625,\n            620.68359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/17/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Arbitrarily increasing the number of experts is subject to diminishing returns (Figure <a href=\\\"#page-11-1\\\">4)</a>. Here we describe complementary scaling strategies. The common way to scale a Transformer is to increase dimensions in tandem, like dmodel or df f . This increases both the parameters</p>\",\n          \"polygon\": [\n            [\n              90.00001525878906,\n              630.73828125\n            ],\n            [\n              521.8306274414062,\n              630.73828125\n            ],\n            [\n              521.8306274414062,\n              670.1802215576172\n            ],\n            [\n              90.00001525878906,\n              670.1802215576172\n            ]\n          ],\n          \"bbox\": [\n            90.00001525878906,\n            630.73828125,\n            521.8306274414062,\n            670.1802215576172\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/17/PageFooter/9\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.4716796875,\n              724.9639129638672\n            ],\n            [\n              311.080078125,\n              724.9639129638672\n            ],\n            [\n              311.080078125,\n              735.92578125\n            ],\n            [\n              300.4716796875,\n              735.92578125\n            ]\n          ],\n          \"bbox\": [\n            300.4716796875,\n            724.9639129638672,\n            311.080078125,\n            735.92578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/17/Footnote/8\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-17-2\\\"></span><sup>9. </sup>The speedup on a step basis is computed as the ratio of the number of steps for the baseline divided by the number of steps required by our model to reach that same quality.</p>\",\n          \"polygon\": [\n            [\n              90.544921875,\n              684.10546875\n            ],\n            [\n              521.7457885742188,\n              684.10546875\n            ],\n            [\n              521.7457885742188,\n              704.98828125\n            ],\n            [\n              90.544921875,\n              704.98828125\n            ]\n          ],\n          \"bbox\": [\n            90.544921875,\n            684.10546875,\n            521.7457885742188,\n            704.98828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/17/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/18/Page/579\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/18/PageHeader/0'></content-ref><content-ref src='/page/18/FigureGroup/576'></content-ref><content-ref src='/page/18/FigureGroup/577'></content-ref><content-ref src='/page/18/Text/5'></content-ref><content-ref src='/page/18/Text/6'></content-ref><content-ref src='/page/18/PageFooter/7'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/18/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.8779296875,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              49.83837890625\n            ],\n            [\n              247.8779296875,\n              49.83837890625\n            ]\n          ],\n          \"bbox\": [\n            247.8779296875,\n            37.992431640625,\n            360.38671875,\n            49.83837890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/18/FigureGroup/576\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/18/Figure/1'></content-ref><content-ref src='/page/18/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              88.154296875,\n              91.265625\n            ],\n            [\n              522.4712524414062,\n              91.265625\n            ],\n            [\n              522.4712524414062,\n              291.19921875\n            ],\n            [\n              88.154296875,\n              291.19921875\n            ]\n          ],\n          \"bbox\": [\n            88.154296875,\n            91.265625,\n            522.4712524414062,\n            291.19921875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/18/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  88.154296875,\n                  91.265625\n                ],\n                [\n                  522.4712524414062,\n                  91.265625\n                ],\n                [\n                  522.4712524414062,\n                  222.169921875\n                ],\n                [\n                  88.154296875,\n                  222.169921875\n                ]\n              ],\n              \"bbox\": [\n                88.154296875,\n                91.265625,\n                522.4712524414062,\n                222.169921875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {\n                \"/page/18/Figure/1\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAFdBIYDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD3+iiigAooooAKKKKACmxyJLGskbq6OAyspyCD0INKfun6VjeDv+RI0D/sG2//AKLWgDaopiEl5MjgNx78Cgk+agA4wcn8qAH0UyUkJ8oycj+dPoAKKZESY1LDB9KFJ8xwRxxg0APopjE+YmBxk5/KiUkRMVGTjgUAPoopkRJT5hg5P86AH0UwE+cwx8u0YP50OSGjwMgtz7DBoAfRTZCRE5UZODgUo6CgBaKZGSQ24Y+Y4+lGW87GPl29fegB9FMkJG3Az8wz9Kc2dpx1xQAtFNTJjUkYOBmkQkl8jHzcfTFAD6KYSfOUY+XaeffiiQsFG0ZO4flkUAPoopkRYwoWGG2jIoAfRTEJLyZHAIx78ChifNQAcYOTQA+imSlhGSoyeKfQAUUyIkxgsMH0oUnzXBHHGDQA+imMTvTA4JOfyolJETlRk44FAD6KKZGSUO4YO4/zNAD6KYCfOYY+XaMH35ockMmBn5ufyNAD6KbISI2IGTg4FKPujPpQAtFMjJIbIx8xx9KMnzsY+Xb1oAfRTJCQFwM/MM/SnH7px6UALRTYyTGpIwcDIpEJLPkY+bj8hQA+imEt5yjHy7Tk+/FEhIQbRk7h/MUAPoopkRJiQsMHHIoAfRTFJ3vkcZGPyoYnzUAHHOTQA+imSkiMlRk+lPoAKKZEWMYLDB5oUt5rgjjAwaAH0UxyQ8eBwSc+3BolLCFyoy204FAD6KKZGSVO4YO4/lk0APopgJ85hj5do59+aHJBTAz83P0xQA+imvkRsQMnBxSrnaM9cUALRTIyTuyMfMcfSjJ87GPl29fegB9FMkJAXaM/MM/SnHoaAFopsZJiQsMHAyKRCS0mRgBuPcYFAD6KYSfOUY+Xacn8qJSQnyjJyP50APoopkRJiUsMHHIoAfRTFJ8x8jjIx+VDE+YgA45yaAH0UyUkRsVGT6U+gAopkRJT5hg5P86AT5rgjjAwfzoAfRTHJDx4HBbn24NEpIhcqMttOBQA+iimRklTuGDuP5ZoAfRTAT5xGPl2jn35ockFMDPzc/SgB9FI+djY644oXOxc9cUALRTIyTvyMfMcfSjJ84DHy7evvQA+imSEgDaM/MPyzTz0oAKKZESYkLDDbRkUISXkyMANx78CgB9FMJPnKAPlwcn8qJSQnyjJyP50APoopkRJiUsMHHIoAfRTFJ8x8jjjFDE+YgA45yaAH0UyUkRMVGTjgU+gAopkRJT5hg5P86AT5rDHy4GD+dAD6KY5IaPAyC3PsMGllJETlRk7TgUAOooHSmRkkHcMfMfyzQA+imZPnEY+Xb196JCRswM/MM/SgB9FI2dhx1xSJkoueDjmgB1FMQkl8jHzcfSgk+cBj5dp59+KAH0UyQkKNoydw/LNPoAKKZESYULDDFRke9CE75MjgHj34FAD6KYSfNQAcYOT+VEpIjO0ZOR/OgB9FFMiJMYLDB9KAH0UxSfMcEccYNDE+YgA4JOfyoAfRTJSRExUZOOBT6ACimRElPmGDk/zoBbzmGPl2jB/OgB9FMckNHgZBbn2GDSyEiJyoycHAoAdRSDoKbGSQ24Y+Y4+lAD6KZk+djHy7evvRISNuBn5hn6UAPopGztOOuKRMmNSRg4GaAHUUxCSXyMfNx9MU+gAooooAKKKKACiisebWb+KeSNPDOqzKjFRIklqFcA9RumBwevIB9hQBr7l3bdw3YzjPOKWuNiggXSbTUVjjGqPqqq8wA8wsbnZIuepATeMdgvtV3xVd+bZPZbbk2ksEjzzQQPIGAGPLygOMnqT2BHfIAOkP3T9KxvB3/IkaB/2Dbf/ANFrRb3F/J4fsJNLt7eVmhXct47wYG302E/mBTPBpk/4QnQcqmP7Nt8fMf8AnmvtQBtJnfJnGN3H5Chs+cnTGDn9KYnmgyEhMk8DceOB7UN529DhM4PG447e1AD5c+WcYzkdfrT6hl80x8BAcjPzH/CnkyZGFTHf5j/hQARZ8pd2M+1C58184xximReaEUEIRjruOf5UJ5vnSEhdvGOT/hQA9s+ZHjGMnP5UTZ8l9uM44zTD5xdSQgIzwGPPH0ol80wMMIGx/eP+FAE1Mizs5xnJ6fU0Ey7RhUz3+Y/4UyPzQgACHk5JY+v0oAeM+c/TG0Y/Wh87o8Y+9z+Rpg83z2OF2lRxuPHX2ofzTInChQ3945PB9qAJJc+U+Ou04pR0FRv5picEIPlOCGPp9KVTLs5VM9vmP+FACx5w2cfeNHPn9sbf60xPNCHhC24/xH/Cg+d5uQE+7yCx/wAKAHyZ+TGPvDNOb7px1xUUnmlkxtC7hk5Of5U5vNIIwgGOu4/4UAOjz5a564GaSPOXzj73H5Cmx+aEAYJwBg7jz+lJH5o8zIQktwNx9PpQA8589emNp/mKJc7RjGdy9fqKYfO8xThM7TxuOOo9qJfNKLgIDuGfmPqPagCamQ58lN2M7RnFBMuRhUx3+Y/4UyLzRGgwhAUc7jk8fSgB6Z3yZxjIx+QobPmp0xg5/SmJ5olkzt2k8cnjge1B84yKSEGAeAx5/SgB8ufLO3GeOv1p9QyeaYTwgbPZj6j2p5Mu0YVM9/mP+FABFnyhnGfahc+a+cY4xTI/NEagBD6ksf8ACgeaJmOFKnH8R4/SgB758yPGMZOfyomz5L7cZwcZpjeaZU4UKCf4jzx9KJPNMTghF4OCGP8AhQBNTIs7DnGdzfzNAMu05VM9vmP+FMj80RdELbj/ABH1PtQA8Z89umNox+Zokzujxj73P5GmfvvNJAQ/KOCx46+1LJ5hkjwFChueT7+1AD5M+U+OuDilX7o+lRv5pVhhANp53HPT6Uq+b3VMY4O4/wCFACx5w2cfeNHPn9sbf60yLzQr5CE7jj5j/hR++8zOEzt6bjjr9KAHyZwuMfeFOb7p+lRSeaVTAQHcM/Mf8KcxlxwqYxzlj/hQA6PPlJnrgZpI87pM4+9x+QpqeaEQYQjaOdxz0+lEfmCSTO0qW45OR09qAHHPnr0xtP8AMUS52DGM7l/mKZ++84EhB8p4DHnp7USeaY+iBtw6MfUe1AE1Mhz5KbsZwM4oJl2jCpnv8x/wpkfmiJAAjcDJLH/CgB6Z8yTOMZGPyobPmpjGOc0xfNEr8KVJH8R44+lB80zIcKFAP8R5/SgB8ufKO3Gfen1DJ5pjYEIPQhj/AIU8GXacqme3zH/CgAiz5Y3Yzz0+tC58184xgY/WmR+aIRwhbP8AePr9KB5wkYgIcgcFjx+lAD3zvjxjGTn8jRNnyX24ztOM0x/NMseAuAeeTz19qJfNMbgBACp53HI4+lAE1MiztOcZ3N/M0AyZOVTHb5j/AIUyLzQjZCE7jj5j6n2oAeM+e3TG0fzNEmcpjH3ufyNMHneYxwmdo43HHU+1Enmny8BAQ3I3H39qAJJM+W2OuDilX7oz1xUcnmlCFCcjk7jx+lKvmjaMIRjruOf5UALHn584+8cUc+f2xt/rTI/NDPkKV3HByc/yoHm+dkhPu8AMf8KAHyZwuMfeFOPQ1E/mlBwgO4fxH/CnEy7OFTd/vH/CgB0WfKTPXaM0iZ3SZx97j8hTU80RIAEY7Rklj6fSkXzRI/ClS3945HA9qAHnPnJ0xtOf0olzs4xnI6/UUw+b56nC7dp43H29qJPNKkYQcjBDH1+lAE1Mhz5KbsZxzigGXByqZ7fMf8KZF5ogUYQtj+8f8KAHrnzJM4xkY/Khs+amMY5zTB5wdyAhJxwWPHH0ofzfNjIC45z8x/woAfLnym24z70+oZfNKMAEAx13HP8AKngybjlUx2+Y/wCFABFnyxnGcnp9aFz5z9MYGP1pkXmiPBCE5OPmPv7UL529zhM4HG44/lQA98748Yxu5/I0TZ8mTbjO04z9KY/mkxkBMg8jccHg+1E3mmJgoQZU87jx+lAE1MiztOcfeP8AOjMm7hU2/wC8c/ypkXmjcCFI3Hncc9fpQA8Z889MbR/M0SZymMfe5pi+b5zEhPu8AMff2ofziF4QEN03Hn9KAJHzsbHXBpUzsXPXFRv5piOAgbH94/4UDzQi4CE45yx/woAdHn584+8cUc+eOmNp/nTE80O3ClS3djkfpR+988HC7dvTcf8ACgB8udq4x94fzp56VC/mnHCAbhjDHnn6U7Mu05VM9sMf8KAFiz5Kbuu0ZxQmd8mcY3cfkKZH5ogQYQsAP4jz+lC+cC5AQkt0LHjge1ADznzk6Y2nP6US58v5cZyOv1pjeb5yEBcYORuPt7US+aVwAgGRzuOev0oAmpkOfKXdjOO1AMm45VNvY55/lTIfNEQDBCQODuPP6UAPXPmPnGOMUNnzI8YxzmmL525yQmTjA3HH8qH87dGQEyM5G44/lQA+XPlNtxnHen1DN5piIUIMjk7jx+lPJk3cKm3/AHjn+VABFny+cZyen1oGfOfpjaMfrTIvNAwQhGTzuOev0oXzfNckJjAwAx9/agB753x4xjdz+Rolz5L467TjNMbziUOEBDdNx54PtRL5pgcAIGIP8R4/SgCYdKZHnDZx94/zpCZdowqE98sf8KanmgkYUjcckscjn6UAP5889Mbf60SZ+TGPvDNMHm+eThdu3puP+FD+aWXhAA3Zjz+lAEr52NjrikTPlrnrgUw+aY2yqA44wx/woTzREvCFsf3j/hQA6POXzj73FBz549Np/mKYnnANwhJbux4/ShvN85SAuNpyCx9R7UAPlztGMfeH86fUMvmnAAQDcOdx9fpTwZNxyqbfXPP8qACHPkx7sZ2jOPpQmd8mcY3cfkKZD5ohUMEJCjB3Hnj6UJ5oMhIQkngbjgcD2oAe2fOTpjBz+lEufLOMZyOv1pjedvQgJnByNxx/KibzTHhQg6ZO4/4UATUyLPlLuxn2oJk3DCpt9d3P8qZF5oQAhCPXcc/yoAeufNfOMcYofPmR4xjJz+VMTzfNkJC44wNx/wAKG84shwgIJ43Hnj6UAPmz5L7cZxxmn1DL5pgYYQMR/ePH6U8mXAwqZ75Y/wCFABFnZzjO49PqaBnz36Y2jH60yPzQAMKRk5JY+p9qB5vnscLt2jjcff2oAe+d0eMfe5/I0sufKfHXacVG/mmROEChv7x54PtSv5phcEIDg4IY+n0oAkHQU2POGzj7xpAZdg+VN3+8f8KannBTwhO49WPH6UAP58/tjb/WiTPy4x94Zph83zgQExt5BY/4USeaWXAUDcP4j/hQBK33Tj0qhq091a6DdT2ib7qOAsgAzzj07/Srh807hhAMcHcc/wAqSPzRGAwTgcHcef0pp2dxPY8w8B67rV54lFvNcz3NvKrtMJGLBMDgj05wPxr1Sq0EJh85kihVnfJ28ZPHXj61Ou7HzAA+xzWlaoqkrpWJpxcVZu46iiisiwooooAKKKKAKi6ZYLfG9WytxdHkzCMb84xnPrjipo7a3igMEcEaQnOY1QBTkknjpySc/WpaKAGhVSMIihVUYAAwAKx/B3/IkaB/2Dbf/wBFrWyfun6VjeDv+RI0D/sG2/8A6LWgDXQAPJg9W59uBQwHnIc84PH5UJjfJjru5/IUNjzkz1wcfpQATAGMgnAyP50+mTY8s7umR/On0AMhAESgHI9aFA82Q55OMiiHHlLt6ULjzZMdeM0ADgGSMk8gnH5UTAGFwTgY60PjzI89cnH5UTY8l93THNAD6ZEAI+Dkbj/M0+mRY2fL03H+ZoAAB57nPO1ePzokALR5OMNx78GgY89/721c/rRJjdHnru4/I0AEoBhcE4G0804dBTZceS+7ptOacOgoAbEAA2Dn5j/OjA88nPO3p+NEWMNj+8c/nRx55/vbf60AEgB2ZOPmFOb7jZ9KbJj5M/3hj605sbGz0xQAkYAjQA5GBSRgAyYOctz+QpY8eWmOmBikjxmTH97n64FAAQPPU552nj8RRKAUGTj5l/mKDjz1/vbT+WRRLjYN3Tcv55FAD6ZCAIIwDkBRg0+mQ48iPb93aMUACACSQg8kjPtwKGA85DnnB4/KhMeZJjrkZ/IUNjzkz1wcfpQATAGIgnA4/nT6ZNjyju6cfzp9ADIQBEADkUKB5rnPJAyKIceUNvShcea+OuBmgAcAyRknkE4/KiYAwuCcDB5ofHmR565OPyomx5L7umDmgB9MiACHBz8zfzNPpkWNh29NzfzNAAAPPY552jj8TRIAWjycYbj8jQMee397aM/maJMbo8/3uPyNACyAGJwTgbTzSr90fSkkx5T56bTmlX7ox6UANiAAbBz8xowPPznnb0/GiLGGx/eOaOPP/wBrb/WgAlAIXJx8wpzfdP0psuMLn+8MU5vunPpQAkYAiQA5G0c0kYAaTBzlufyFLHjykx02jFJHjdJj+9z+QoACB56nPO08fiKJQCgycfMv8xQceev97acfTIolxsG7puX+YoAfTIQBCgByMDmn0yHHkpt6YGKABABJIQeSRn8qGA81DnkA4FCY8yTHXIz+VDY81M9cHFABMAYiCcD1p9Mmx5R3dKfQAyEARAA5HP8AOhQPOc55IGR+dEOPKG3pz/Ohcec+OuBn9aABwDJGSeQTj34NEwBgkBOAVOTQ+PMjz1ycfkaJseRJu+7tOaAH0yIAIcHPzN/M0+mRY2Hb03N+eTQAADz2Oedo4/E0SAEx5OMNx+RoGPPb+9tH5ZNEmMx5/vcfkaAFkAMbgnAwaVfuLj0pJMeW+emDmlXGxcdMUANjAG/Bz8xowPPznnb0/GiPHz4/vHNHHn/7W3+tABKAQuTj5h/OnHoabLjC5/vD+dOPQ0ANiAEKAHI2jmiMANJg5y3PtwKIseSm3ptGKI8bpMdd3P5CgAIHnoc87W4/KiUApycDcP5ig489P721sfpRLjy/m6bh/MUAPpkIAhQA5GOtPpkOPJTb0xxQAIAJJCDySM/lQwHmxnPIzihMeZJjrkZ/KhsebHnrzigAmAMTAnA9afTJseU27pT6AGQgCMAHIyf50KB5znPOBx+dEOPLG3pk/wA6Fx5z464Gf1oAHALx5PRuPfg0TAGCQE4BU5P4UPjfHnru4/I0TY8iTd93ac/lQA+mRABTg5+Zv50+mRY2nb/eb+dAAAPPJzztHH4miQAlMnGG4oGPPP8Ae2j+ZokxlM/3uKAFfmNgemDQnCLj0FD48ts9MGhMbFx0xQAkYA34OfmNGB54Oedp4/GiPHz4/vHP1o488f3tp/nQASgFVycfMP5089KZLjau7+8PzzTz0oAZCAIYwDkBRg/hQgAeXBzlufbgUQ48mPb02jH5UJjfLjru5/IUADAeehzztPH5UTAGPBOBkfzobHnp/e2nH6UTY8v5umR/OgB9MhAEKgHIx1p9Mhx5K7emOKABQBLIQeTjNDgGWMk8jOPyoTHmyY68ZofHmx5684/KgAmAMLAnAx1p9Mmx5LbumOafQAyIAR4ByMn+dAA89znnaOPzoix5fy9Mn+dC489/XaM/rQASAF4snGG49+DRMAYZATgFTk0SY3xZ67uPyNEuPJfd02nNADx0pkQAVsHPzH+dPHSmRY2tj+8f50AGB55Oedo4/GiQA7MnHzCjjzz/AHto/nRJj5M/3higBz8o2fSkTAjUDkYFK+NjZ6YpEx5a46YGKAEjABfBzluaCB54Oedp4/EUR4y+P73NBx54/vbT/MUAEoBUZOPmX+dPpkuNo3dNy/zp9ADIQBBGAcgKMH8KEADyYPVhn24FEOPIj2/d2jH5UJjfJjruGfyFAAwHnIc84PH5UTAGMgnAyP50Njzkz1wcfpRNjyzu6ZH86AH0yEARKAcj1p9Mhx5S7elAAoHmyHPJxkUOAZIyTyCcflQuPNkx14zQ+PMjz1ycflQATAGFwTgY60+mTY8l93THNPoAZEAI+Dkbj/M0ADz3Oedq8fiaIseX8vTcf5mgY89/721c/maACQAtHk4w3HvwaJQDC4JwNpyaJMbo89d3H1waJceS+7ptOaAHD7o+lNiAAbBz8xpw+6KbFjDY/vHNABgefnPO3p+NEoB2ZOPmFHHn/wC1t/TNEuPkz/eGPrQA5vuH6UkYAjQA5GBSt9w56YpEIESnOFCjr6UAJGADJg5y3P5Cn1Us76zupJUtrmKVg2WCsD6c/SrdJNPVDaa0YUUUUxBRRRQAUUVjzeLPDltPJBP4g0qKaNijxveRqyMDgggngg9qANiiuUjmuBp9trX2u4M8t+kTRGQ+X5bziIJs6AqGByBnK8nkirGtT3c+vW2mwR3DxfZnndYbgwbjuVRlxyAOeB1JGeBQB0R+6fpWN4O/5EjQP+wbb/8Aotaba6rJFoVtMtrqGoOS0T7Ej8xWUlWD/MBkEEEgnJFJ4Nc/8IToI8t+NNt+eOf3a0AbSEF5MDkNz78ChiPOQY5wefypiSMTITE4weB68ChpW3p+6foe3Pb3oAfMQIySMjI/nT6hlkYR5ETkkjinlyCB5bnPfjigAhIMSkDA9KFI82QY5GMmmRSsUUGJxx+FCSEzSDy2AGOfWgB7kCSMEcknH5UTECFyRkY6UwysXX90/fqPaiSQ+QzCJ846GgCamREFOBgbj/M0GQhQfLc+3FMjkbYMxPyT0+tADwR57jHO1efzokIDR5Gctx7cGmCQ+ey+W2No5/Oh5D5iL5bY3de3Q0APlIELkjI2nIpw6Co3kPlOfKfIU9e/FKJCUz5bj24oAWIghsDHzH+dGR5+Mc7ev40xJW2EmJ/vHigysJf9U5G3tQA+QgbMjPzCnN9xs+lRySEMgEbHLDnsKVpDgjy36deKAHRkGNSBgYFJGQTJgYw3P5CmxyFkGY3HFJHKx8wmJxhunrxQA8keeoxztPP4iiUgIMjPzL/MUwyt5i/un+6fr1FEsjBFIic5YcenIoAmpkJBgjIGAVGBQZCCB5bnPfjimRSMY0zE4yoPt0oAehBkkAHIIz78ChiPOQY5wcH8qakhMsimNgAeD69KTzWMi/unHB6j/wCvQA+YgREkZHH86fUMkjeSWET5z0P1p5kIUHy3+nFABCQYgQMChSPNcY5AGTTI5G8tcxPz6dqBIfOZfLbHHNAD3IEkYI5JOPyomIELkjIwcimNIfNRfLbGTz+FEkh8p8RPkA9e9AE1MiIKHAx8zfzNAkJUny3+nFMjkbytxifO48D6mgB4I89hjnaOfxNEhAaPIzluPyNM81hKf3TkbR0x7+9LJIQ8YEbHLcn060APkIETkjI2nilX7o+lRvIdrARv90n26UqyEj/VuMD2oAWIghsDHzGjI8/GOdvX8aZHISrkxOMMePWjzW8zPlP930560APlIAXIz8wpzfdP0qKSQhUIic5YcelOaQgf6tzkdsUAOjIMSEDA2jikjILSYGMNz+QpqSHagMb/AHR9OlEchMkimNgA3XselADiR56jHO08/iKJSAgyM/Mv8xTPNYyj904G0nn8KJJG8vIifO4cH6igCamQkGFCBgYGBQZDtB8t/pxTI5D5SExPkgcDtQA9CDJIAOQRn8qGI81Bjkg4NMWQ+a6+W2Mjn8KDIfOVfLbHPNAD5iBESRkU+oZJT5bYifj1708SEqT5bjHbigAhIMQIGBz/ADoUjznGOQBk/nTI5G8kMYnznp+NAlYSN+6foOgH+NAD3IEkYI5JOPbg0TECCQkZAU5FNeQiWMCNiCeT6daSWRhG+InPyk+3SgCamREFDgY+Zv5mgOSSPLcY78c0yKVijExOMMePXk0APBHnsMc7Rz+JokIBjyM5bj8jTBK3mN+6f7o7c9T70SSMPLIic5bp6daAJJCBG5IyMGlX7i49KjkkIQ4jc8UqyHgeW/TrxigBYyDvwMfMaMjz8Y529fxpkchLODGwwx57UCVjLjynA296AHykALkZ+Yfzpx6GonlbYCIn+8ODTjIdmfLf6cUALEQYUIGBtGBRGQWkwMYbn34FNSQiJD5T5KjgduKRZD5jr5bY3Yz26CgB5I89Bjna3P5USkCPkZG4fzFMMh89V8tsbTz+VEkh2nET8EdfrQBNTISDChAwMdKBISCfLcY7cUyKRvIVjE+cdKAHoQZJAByCM/lQxHmxjHJzimCVt7/un7dB7UPIRLGPLYg559KAHzECJiRkelPqGWRgjAROePwp4cliPLcY78UAEJBjBAwMn+dCkec4xzgc/nTIpC0eTE4IJ4/OhZW8x/3T8Aduf50APcgPHkcluPbg0TECCQkZAU5H4Ux5GBjIic5PI7jg0TSFYmxE5O00ATUyIgqcDHzN/OjzDux5b/XjFMikJ3AxsPmPPbrQA8EeeRjnaOfxNEhAKZGctxTFkYzMPKcAL379aHlbCnyn+90oAkfAjbPTBoTlFx6CmPIRET5bk46cUCQhFPlucjoMcUAOjIO/Ax8xzRkeeBjnaefxpiSHew8tvvYz2o8w+eF8tsbc5oAfKQFXIz8w/nTz0qF5Dx+6f7w6/WneYSpPluMdjigBYSDDGQMAqMD8KEILy4GMNz78CmRyEwIxicHA4oWVsufKf73YewoAexHnoMc7Tg/lRMQI8kZGR/OmNIRMg8tiCDz6dKJZWC4ETnkfTrQBNTISDCpAwMdKA5LEbGGO/GKZDIWiBMTg46UAPUjzZAByMZocjzYwRyc4/KmLKxZz5T8Y47mh5WDRnynOc/UUAPmIELEjIx0p9QzSFYjiJycU8yENjy3+vGKACIgx5AwMn+dAI89xjnaOfzpkUhIwY3HJ57daFkJlceWwAA59etAD5CA8WRnLce3BolIELkjICnIpjStlD5T/AHvT2PvRLIRA7CJycHigCYdKZEQVbAx8x/nSGQhQfLc57DHFNSQ5I8tvvHkdOtAD8jzyMc7Rz+NEhA2ZGfmFMEh88r5bY25zQ8h3KPKf73U0ASvwjZ6YpEwY1I4GBTDITGx8t+B0OOaEkPlK3lPnHTigB0ZBL4GMNzQSPPAxztPP4imJK2GPlP8Ae6AUNIRMo8tiCp59ORQA+UgKMjPzL/On1DLIRgCJz8w5/GnhyWI8tx78YoAISDBGQMAqMD8KEILyYHRhn34FMhkZoVJicHaOPwoSViZD5TjB6dzwKAHsR5yDHODz+VExAjJIyMj+dMaVg6HynOQfqKJpCseRE5zigCamQkGJSBgelBchseW/14xTIpCUAMTj+VAD1I82QY5GMmhyBJGCOSTj8qYkhMsg8thjHPrQ0rbk/dP1P8vrQA+YgQuSMjHSn1DLKwgZhE5OOlPMhAB8tznsMUAERBj4GBub+ZoBHnuMc7V5/E0yOQ4AMbck9O3JoEjeey+W2NoOfzoAfIQGjyM5bj8jRKQIXJGRtORTHkPmIPKfG7r+BpXkPlOfKfIB4PfigCQfdFNiIIbAx8xpBIdgPlv9OM01JW2k+U/3jwKAH5Hn4xzt6/jRKQNmRn5hTDIRNjynIK9RRJIQygRsfmHNAErfcP0qpe27XukzW8TbGliKqfTIqwZD8w8t+B14xSRyFowTE449qTV1ZjTad0cf4a8PahZ6wLm5URRxBgQHB3kjGOPrmu1qGORiJCYnGG6dz0qRW3DO0r9azpUo0o8sTWtWlWlzSHUUUVqYhRRRQAUUUUAZiaFaJdCUPOYlmNwtuX/dLKSSWx16knGcZOcZ5pZNFifyWW6u454d4WcS5fa5yyktkEZAxkcYGMVpUUAQWtpDY2aW1upWNAcZJJJPJJJ5JJJJJ6k1meDv+RI0D/sG2/8A6LWtk/dP0rG8Hf8AIkaB/wBg23/9FrQBrpnfJnpu4/IUNnzk9MHP6UIGDyZPBbj8hQQ3moQflwcj8qACXPlnHXI/nT6ZKGKfKcHI/nT6AGRZ8pc9fahc+a+enGKIgwjUMcnvQobzHJPHGKABs+ZHjpk5/KibPkvt644oYHzEweOc/lRKCYmCnBxwaAH0yLOznrk/zNPpkYYJ8xycn+dAAM+c/ptGP1ofO6PH97n8jQA3nMc/LtGB+dDhi0eDwG5+mDQAsufKfHXacUo6CkkBMThTg4ODSjoKAGx5w2f7xo58/wBtv9aIwwDbjn5jj6UYbzs5+Xb096ACTPyY/vDNOb7hx1xTZAx27Tj5hn6U5s7TjrigBI8+WueuBmkjzl8/3uPyFKmRGuTk4GaRAwL5Ofm4+mKAA589fTaf5iiXO0Y67l/mKCG85Tn5dp49+KJAxUbTg7h+WaAH0yHJhTdjO0ZxT6ZEGEKBjltoyaABM75M9MjH5Chs+anpg5/ShA2+TJ4J4/IUMG81CDxg5FABLnyzt68fzp9MlDGM7Tg8U+gBkWTEM9aFz5r56cYoiDCMBjk0KG8xyTxxgUAD58yPHTJz+VE2fJfb1wcZoYHemDxk5/KiUMYnCnDY4NAD6ZFnYc9dzfzNPpkYYIdxydx/maAAZ85vTaP5miTO6PH97n8jQA3nMc/LtGB780OGLJg/xc/TBoAWTPlPjrg4pV+6PpSSAmNgpwcHFKPujPpQA2POGz/eNHPn+23+tEYYBtxz8xx9KMN52c/Lt6e9ABJnC4/vCnN90/SmyBiF2nHzDP0px+6celACR58pM9cDNJHndJn+9x+QpYwRGoY5OBmkQMGfJ/i4+mBQAHPnr6bT/MUS52DHXcv8xQQ3nKc/LtOR78USBig2nB3D+YoAfTIcmFN3XAzin0yIMIkDHLY5NAAmfMkz0yMflQ2fNTHTnNCht75PGRj8qGDeYhB45yKACXPlHb1p9MlDGMhTg0+gBkWfLG7rz/Ohc+a+emBj9aIgwjG45PNChvNck8YGBQAPnfHjpk5/I0TZEL7cZ2nGaHDb48HgHn8jRKGMLhThtpwaAH0yLO0567m/mafTIwwU7jk7j+WaAAZ89vTaP5miTOUx/e5/I0AN5zHPy7Rx780OGJTBx83P0xQAsmfLbHXBxSr90Z64pHyY2AODg4pVztGeuKAGx5+fP944o58/22/1ojDDduOfmOPpRhvOzn5dvT3oAJM4XH94U49DTZAxC7Tj5hn6U49DQAkWfKTPXaM0iZ3SZ/vcfkKWMERIGOTgZNIgYNJk8FuPpgUABz5yem05/SiXOzjrkfzFBDecpz8u05Hvx/8AXokDFPlODkfzoAfTIc+Sm7rjmn0yIERKGOTjk0AC58yTPTIx+VDZ81MdOc0KD5j5PHGPyoYN5iEHjnNABLnymx196fTJQxjYKcHtT6AGRZ8sZ65P86Fz5z+mBj9aIgwT5jk5P86AG81iT8uBgfnQAPnfHjpu5/I0TZ8mTb12nGfpQ4YvHg8BufyNEoJhcKcNtOD70APpkWdpz/eP86fTIwwU7jk7j+WaAAZ88+m0fzNEmcpj+9zQA3nE5+XaOPehwxKYOPm5+lACvnY2OuDSpnYueuKHzsbHXHFC52LnrigBsefnz/eOKOfPHptP86Iww35OfmOPpRhvOBz8u3p70AEudq4/vD+dPPSmSBiBtOPmH5Zp56UAMiz5Kbuu0ZoTO+TPTdx+QpYgREgY5baMmkQMGkyeC3H0wKAA585PTac/pRLny+OuR/OghvNUg/Lg5H5UShinynByP50APpkOTEu7rin0yIMIlDHJxyaABc+Y+enGKGz5keOnOaFDeY5J44xQwbzEIPHOaACbPlNjrjvT6ZKGMTBTg44NPoAZFny+euT/ADoGfOf02jH60RBgnzHJyf50AN5rEn5cDA/OgAfO+PHTdz+Rolz5L467TihwxaPB4Dc+4waWUExOFOG2nBoAcOlMizhs/wB4/wA6eOlMjDAHcc/MfyzQAc+efTb/AFokz8mP7wzRhvOJz8u3p70SBjtwcfMM/SgBz52NjrikTPlrnrgUrZ2HHXFImQi5645oASPOXz/e4oOfPHptP8xQgYF8nPzcfSghvOBz8u08e/FABLnaMf3h/On0yQMVG04O4flmn0AMhz5Me7rtGcfShM75M9N3H5CiIMIUDHLbRk+9CBg8mTwTx+QoAGz5yemDn9KJc+Wcdcj+dBDeahB+XByPyolDGM7Tg5H86AH0yLPlLu60+mRBhGAxyaABc+a+enGKHz5keOmTn8qFDeY5J44xQwbzEweMnP5UAE2RC+3rjjNPpkoYxMFOGxwafQAyLOznruP8zQM+c/ptGP1ojDBPmOTk/wA6AG85jn5dowPfn/61AA+d0eP73P5Gllz5T467TikcMWjwcANz9MGlkBMThTg4ODQAo6Cmx5w2f7xpw6CmxhgG3HPzHH0oAOfP9tv9aJM/Lj+8M0Ybzs5+Xb096JAx27Tj5hn6UAZniDX7Tw9YC5ut7F22RogyWP8AhTPDniKz8RWTTWwdHiIWSNwMqex47Hn8qb4n8OQeJNPS3klaGSNt8cgXdg9wR3FM8LeGIPDVlLGkzTTTENJIV25x0AHbGT+dbfu/Z/3jP3+fyNuPOXz/AHuPyFPpiBgXyc/Nx9MU+sTQKKKKACiioZru2t5YopriKOSYkRq7gFyOwB60ATUUUUAFFc5HquoGCHVGkhNlNeC3FuIzuCNL5SNuz97JVjxjBI7ZqbXdWksL2zt/tSWkM0crtMYTK25duFCjthiSfbHGaANw/dP0rG8Hf8iRoH/YNt//AEWtEHiG1j0Gx1DVLiC2NzGGBz8rEjPHX647UzwbLGfBOgjcMjTbfP8A37WgDaQAPIc5y35cChgPOQ55APH5UyOWLMrBx97n8hSNLF5iMXHQ4/SgCSYAxkE45H86fUM0sXlfM4AJH86eZYwQCwyelABCAIlAOfehQBLIc9ccUyKWIIqhx0oSSMzSAN83GRQA9wDJGc9Cf5UTANC4JwCOtRmWJnQ7xwT/ACpZZYmgclxtxgmgCamRABMA5+Y/zNBmjCglxg9DTI5YlQAOOScfnQA8Aee5zyVXj86JAC0fOMNn68GmCSIXDDeNxUcfnQ8sRkjXeNwbgfgaAHyjMLgnAKnmnDoKieWJ4pBvGNpzj6U5Zo9mQ4wO9ACxAANg5+Yn9aMDzyc87cY/GmRyxBGYOMFjzSGWJZslwCV/SgCSQA7MnGGBpzcow9qilkj3IrNzuGB705pYyGXeM4oAdGMRoM5wBSRgAyc5y2f0FNiljKKFcHAFJHLF+8ZXGN3P5UAPIHnqc87SMfiKJQCgycfMp/UVGZYvNV94+6R+opZpYvLUs4ALKR+YoAmpkICwRgHICjmgyxggFhk9KZDLEIkUOPujH0xQA9ABJIc5yR+HAoYDzkOeQDx+VMSSPzZQGG7dyPwApDNE0qkOMgGgCSYBoiCcdOfxp9QyyxNCSXG3PX8RTzNGFDFxg96ACEARKAc+9CgCVznqBxTI5YliUbxg9M0CSITuN43HHFAD3AMkZz0J/HiiYBoXBOAQeaY0kRmQbxuBOB+FEksTwyDeMYOcUATUyIAIQDn5m/maBNGVLBxgd6ZHLEsWQ427jz+JoAeAPPY552gY/E0SAFo+cYbP14NR+dEszEuMlR+XNLJJH5kalhu3cD8xQBJIMxOCcZU80q/dH0qOSWIo6lx905+mKVJYyMBwcCgBYgAGwc/MTRgefnPO3GPxpkUsW1yrjG45pPNi83fvH3cfrQBJKAQuTj5gac33T9Killi2oWcY3AinPLGBguBkUAOjGIkAOcKOaSMANJznLZ+nApscsQRFDj7ox+VJHJH5kihhu3cj8BQA8geepzztIx+IolAKAE4+Zf5io/NiaYEOMhT+XFLJLE0WS42hhz+IoAmpkICwoAcgAc0GaMKG3jB70yOWJIYxvGMDGaAHoAJJDnqR+HFDAGVDnoDxTFkiEzjeNxI4/CgyRGdBvG4A8UAPmAaIgnHvT6hkliaNgXGB1xTxNGVJDjA6mgAhAWIAHPXn8aFAEznPJA4/OmRSxLCCHG3J5/GkEsSysd4yQKAJHAMkZzjBP48GiYBoJATgFTzTJJI/NiBYbs8D8CKJpYjE6s45U5+mKAJqZEAEODn5mP6mgSxkkBhkdaZDLFsYq4IDMT+ZoAeAPPY552gY/E0SAEx84w2f0NRiWLzWbePugH8zSySxfu2LjG7j8jQBJIMxuM4yDSrwij2qOWWIRkM4GQaVZYwFXeM46UALGAN+DnLE0YHn5zztxj8aZFJHudVYZ3HIoEsTTZDgkLQA+UAhcnHzA/rTj0NRSSxMgJcYDDn8ac00ezcXGD3oAWIYhQA5AUc0RgBpOc5bP04FMSWJIo/nGNoxn6UJJEJZF3jcW5HvgUAPIHnoc8hWGPxFEoBTBOPmH8xTDJEbhfnG4KePyokliZCC44YZ/MUATUyEBYUAOQB1oE0ZBIcYHWmRSxLApDjbjGaAHoAJJDnqR/KhgDLGc9M8VGssSu7bxyR/KleSMTR5YbucUAPmAMTAnHvT6hmliKMrOOlPEqFioYZHUUAEIAjABzyf50KB5znPJA4/OmQyxeV8rggE5/WkWaLzHYOOgz+tAEjgF4znGG/Pg0TANBICcAqRn8KZJLFmJi4xu4/I0TyxeS4ZwAVP8qAJqZEAFODn5mP60ebGG27hn0pkUkXzKrjO45H40APAHnk552gY/E0SAEpzjDZpiyxGZiHBIUZ/WkeWIhGLjAagCVxmNh7GhBhFHtTHmi8piXG0jGaBNEsa/OACOKAHRgDfg5yxNGB54OedpGPxpiSRK7KHG4t096PMiNwPnG7aePagB8oBVcnHzA/rTz0qGSWJgBvHDD+dO86MqSHGB1oAWEYhjAOQFHP4UIAHlOc5bP04FMiliFuhDjaFABpFliVpG3jlv6CgCRgPPQ55Cnj8qJgDHgnHI/nTGkiE8eXG7Bx+lE0sW3azjqD+tAE1MhAWFQDnjrQJULFQwyOopkMsXkja4IAoAegAlkOeuKHAMsZz0zx68VGksW+Rg47ZoeWLfGxcd8UASTANCwJxx1p9QzSxeUQzgAinmWMNtLDPpQARACPAOeT/ADoUDz3OeSo4/OmQyxbdquM5PH40LLEZnIcE7Rn9aAHuAXiOcYbP14NEwzDICcAqeajeaImNt44bj8jSyyxG3clxtKkZoAmHSmRABWwc/MT+tIZo1UEuAD0psckS5XeMljx75oAfgeeTnnaBj8aJADs5xhgaYJYvtB+cbtvT260PLEzKN4yGFAErjKMPakQYjUZzwKYZomjY7xjHNCSxCJSHG0DGaAHRgAvznLZoIHng552kY/EVGksS7zvGC1K0kQnXLjJU4/MUAPlAKjJx8yn9afUMssXCs4zuU/rTxKhYqGGR2oAIQFgjAOQFAz68UIAHkOc5YfhwKZBLF5CBXBCqP5UJLFmRg4xu5P4CgB7AechzyAePyomAMZBOOR/Oo2li8xGLjocUs0sXl/M4AOP6UATUyEARKAc+9BlQNtLDPpTIZYtgVXFAD1AEshz1xxQ4BkjOehP48UxJYjLJhxnjNI0sRdG3jgn+VAEkwDQuCcAjrT6hmliMDEuNpGM08zRgAlxg9KACEAR4Bz8zfzNAA89znkqox+JpkckSqFDjljjP1NAli+0MN43FRx7cmgB8gBaPnGGz9eDRKMwuCcAqeaY8sRkQbxuDdPfBoeWJ4ZPnG3ac4+lAEo+6KbEAA2Dn5iaQTR7A28bfWmRyxKpO8YLHmgCTA8/OeduMfjVa+vrKzMQu7yC3LNlfNkVd2PTJqYyxCfJcbivH515x478N6pqWvrd2afaIpEVAocAxkduT0PXPua1pQjOVpOxFSTirpXPSyQ0ZIIwR1ojGI0Gc4ArK0K3bTPD9rZXc6vNDFtc56e2fbp+FaMM0LRKUkDKFHIPtWbSTsilqrj4wAZOc5bP6Cn1DHLFiRg4xu5P5VIrq4ypBFIY6iiigArm/EOr2ouk0d57ZDLGzzG4tWmUKNvAUYBJ3d+Bjoa6Sub8SmPTxBdyPdujzFWS2uGWclgoAjUffHy5Kj3Iz0oAXw5Zwx5fTtRvpbWN2SRblfkkJUEGMYAQDOPlAHUY71bm8J+HLmeSefw/pUs0jF3kezjZnYnJJJHJJ703wxK9xpJuS7tHNIXiElwZnRcAbWPZsg5UcA8c9a2qAMRNBmUx27XqHTo7n7SsHk4fdv8xVL7sbQ+CPlzwBn1kfS78XUV5FqEP2tY3idpbbcjIW3L8oYEEdM557jpjXooAp6dYjTtPW2EhkILuzkY3MzFmOOwyTx2qj4O/5EjQP+wbb/wDota2T90/Ssbwd/wAiRoH/AGDbf/0WtAGuhG+TA53c/kKGI85BjnBwfyoQ5eQYxhvz4FDH98gx1B5/KgAmIEZ3DIyP50+mSnEZOM8j+dPoAZCQYl2jAoUjzZMDnjNEJzEpxj2oU5lcY6Y5oAHI8yPI5ycflRMQIXLDIxyKHOJIxjqT+HFExxC5xnA6UAPpkRBTgYG4/wAzT6ZEcpnGPmP8zQAAjz3GOdq5P50SEbo8j+Lj8jQD+/cY6KOfzokOGj4zlsfTg0AEuBC5IyNpzTh0FNlOInOM4U8U4dBQA2IghsDHzH+dGR55GOdvX8aIjkNxj5iP1oz+/wAY/hzn8aACQgbMjPzDFOb7jZ6Ypshxs4zlgKc3CH6UAJHgxpjgYGKSMgmTAx83P5CljOY1OMZApIzkycYw2P0FAASPPUY52nn8RRKQEGRkbl/mKCf36jH8JOfxFEpwg4z8yj9RQA+mQkGCMqMDaMCn0yE7oIzjGVHFAAhHmSYHORn8hQxHnICOcHB/KhDmSQYxgj8eBQx/fIMdQefyoAJiBEdwyOP50+mTHEZOM9OPxp9ADISDENowKFI818DnAzRCcxA4x7UKcyuMdAOaAByPMjyOcnH5UTECFywyMHIoc4kjGOpP4cUTHELnGcA8UAPpkRBQ4GBub+Zp9MiOUJxj5m/maAAEeewxztGT+JokI3R5H8XH5GgH9+wx/CDn8TRIcNHxnLY+nBoAWTAifIyNpzSr90fSkkOInOM4U8Uq/dH0oAbEQQ2Bj5jmjI8/GOdvX8aIzkNxj5iKM/v8Y/hzn8aACUgBcjPzDFOb7p+lNkOAvGfmApzfdP0oASPBiTAwNoxSRkbpMD+Ln8hSxnMSHGMqOKSM5aTjGGx9eBQAEjz1GOdp5/EUSkBBkZG5f5ign9+ox/CTn8RRKcIDjPzL/MUAPpkJBhQqMDAwKfTITmFDjGQOKABCPMkwOcjP5UMR5qZHODihDmSQY6EfjxQxxKgx1B5oAJiBEdwyKfTJjiInGfan0AMhIMQ2jA5/nQpHnOAOcDJ/OiE5jBxjrx+NCn984x0A5/OgAcjzI8jnJx+RomIEEhYZG05FDnEkYxnJP4cGiY7YJDjOFPFAD6ZEQUOBgbm/mafTIjlDxj5mH6mgABHnsMc7Rz+JokIBjyM/Nx+RoB/fsMfwg5/E0SHBj4zlsfoaAFkwI3zyMHNKv3Fx0xSSHEbHGcA0q8oPpQA2Mg78DHzHNGR5+Mc7ev40RnO/jGGNGf3+Mfw5z+NABKQAuRn5h/OnHoabKcBeM/MB+tOPQ0ANiwYUIGBtGKIyN0mB/Fz+QoiOYkOMZUcURnLScYw2PrwKAAkeegxztbB/KiUgJyMjcP5ign9+gx1U8/lRKcJnGfmH8xQA+mQkGFCowMcCn0yE5hQ4xkdKABCPMkwOcjP5UMR5seRzzihDmSQY6EfjxQxxKgx1zzQATECJtwyKfTJjiJjjPtT6AGQkGMbRgZP86FI85xjnAyfzoiOYwcY5P86FP75xjoBz+dAA5G+PI53cfkaJiBBIWGRtOR+FDnDxjGct+XBomOIJDjOFPHrxQA+mREFTgY+Zv50+mRHKnjHzN/OgABHnkY52jn8TRIQCmRn5uKAf35GP4Qc/iaJDgpxnLYoAV8eW2emDQmNi46Yoc4jY9eDQhyin2oASMg78DHzHNGR54GOdp5/GiM538YwxFGf34GP4Sc/jQASkBVyM/MP5089KZKcKvGfmA/WnnpQAyEgwxlRgbRgfhQhG+XA53c/kKIjmFDjGVHFCHLyDGMN+fAoAGI89BjnacH8qJiBH8wyMj+dDH98gx1U8/lRKcR5xnkfzoAfTISDCpUYGKfTITmJTjHHSgAUjzZMDnjNDkebHkc84/KhTmWQY6Y5oY4ljGOuefTigAmIELbhkY5p9MmOImOM8dKfQAyIgx8DAyf50Ajz3GOdoyfzoiOY84xyf50A/vnGOijn86AByN8WRzu4/I0TYEMhIyNpyKHOHiGM5bH04NEpxC5xnCnigB46UyIgq2Bj5j/OnjpTIjlW4x8xH60AGR55GOdo5/GiQgbMjPzDFGf35GP4c5/GiQ42cZywFADnxsbPTFImPLXHTApXOEY+1IhzGpxjgUAJGQS+Bj5uaCR54GOdp5/EURnJfjGGxQT+/Ax/CTn8RQASkBRkZ+Zf50+mSnCjjPzL/ADp9ADISDBGVGBtGB+FCEb5MDncM/kKITugjOMZUHHpxQhy8gxjDfnwKABiPOQY5wcH8qJiBGcjIyP50Mf3yDHUHn8qJTiMnGeR/OgB9MhIMS7RgU+mQnMSnGPagAUjzZMDnjNDkeZHkc5OPyoU5lcY6Y5oc4kjGOpP4cUAExAhcsMjHIp9MmO2FzjOB0p9ADIiDH8owNzfzNAI89xjnauT+JpI2HlFjhQC2fzNcbY/EaxvdeWyFnIkMriKOcsMk5wMrjgc+tXCnKd3FbEynGO52chG6PI/i4/I1yXj/AMQX+h2VqljhGuWYNKVDbQMcc8c5/SutkOGj4zlsfTg1BqFnbXtm8V3bxzxgbtkigjI7/WinJRknJXQTTcbIwPA+vXetaHLPqBXfBIUM2AoYYB57ZGf5VuafqVjfiX7FdQT7GO4RuGx78GqWsaKLnwtc6Xpqx2xePEaoNq5yCRx64x+Ncl4D8LatpetSXt7F9niWNo9u8EuSRxwegxn8q1cac1Kd7dkQnKLUbX8zGj8W+Ij4tAMkm83HlG0wNuN2NuP0z1r12UgbMjPzDFQ/Zbb+0DcfZovP2f67YN2PTOM1NIcbOM5YCpq1Iztyqw6cHG93cwfF9peXelxi0V3VXzIickjHHHfFR+DbS9tbCb7UrxxuwMaOMEepx2zx+VdI3Cn6UkZzGpxjgVx+xXtfaXOv6w/Y+ytoJGRmTA/i5/IU+mRnJk4xhsfoKfWxgFFFFABXMeMbmaztluI5XthHbXDLcxxBmEu0bEyQdqtzk8ZKgZ556eub1rTftGqQQW0ksVxdLJI0sl3ceWoTaMCNJFBJ3DoRwCaALmgOJf7RliPmW8l0XinMQQygouTwBuAOVDdwo5OMnYrG8PI8EV5ZyHfJbXGxpRLI4fKK2R5jMV4IG3J9e9bNABRWcmrCTXjpYtplIgabznXapwyjC+v3uv0/AvdQuIr6KysrWO4uGjaVvNmMaIoIHJCsckngY7Hn1ANA/dP0rG8Hf8iRoH/YNt//AEWtX7C9XUdPjulRo92QyN1RlJVlOO4II/CqHg7/AJEjQP8AsG2//otaANdCd8mem7j8hQSfNQDpg5/ShAd8mem7j8hQ2fOT0wc/pQASkiM7euR/On0yXJjO3rkfzp9ADIiTEu7rQpPmOD04xRECIl3daFB8x89OMUADE+YmOmTn8qJSRExXrjihgfMTHTJz+VEoJibb1xxQA+mRElPm65P86fTIgQnzdcn+dAACfOYfw7Rj9aHJ3R46bufyNAz5zH+HaMfrQ4O6PHTdz+RoAWTIicr12nFKOgpJMmJ8ddpxSjoKAGxkkNu/vHFGT52P4dv60R5w2f7xowfOz/Dt/rQASEjbj+8M/SnNnacdcU2QE7cf3hmnNnacdcUAImTGueuBmkjJJfP97j6YpUz5a564GaSMHL5/vcfkKAAk+co/h2n8+KJSQo29dy/lkUEHzlP8O0/zFEuSo29dy/zFAD6ZESYULDDbRmn0yEEQoG67RmgAQnfJnpkY/IUMT5qAdMHNCA75M9MjH5Chs+amOmDn9KACUkRnaOeP50+mSgmM7evH86fQAyIkxgt1oUnzXB6cYoiBEY3daFz5r56cYoAGJ8yPHTJz+VEpIicr1xxQ4PmR46ZOfyolBMLheuOKAH0yIkod3Xcf5mn0yIEId3Xcf5mgABPnMP4dox+tDkhkx/e5/I0AHzmP8O0Y/Whwd0eP73P5GgBZMiNiOuDilX7oz6UkmfLfHXBxSr90Z9KAGxkkNn+8cUZPnY/h20R5w2f7xxRg+dnttoAJCQFx/eGac33Tj0psgJC4/vDNOb7p+lACR5Mak9cDNIhJZ8/3uPyFLHkRpnrgZpEB3SZ/vcfkKAAk+co/h2nP14olJCDb13D+YoIPnKf4dpz+YolBKDb13D+YoAfTIiTEhbrjmn0yIEQoG64GaABSfMkz0yMflQxPmoB05zQgPmSZ6ZGPyobPmpjpzmgAlJEZ29afTJQTGdvWn0AMiJMY3Dnn+dCk+a4PTAxRECIxu68/zoXPmvnpgYoAHJ3x46ZOfyNEpIhcqMttOKHB3x46ZOfyNEwJhcL12nFAD6ZESVO7rub8smn0yLIU7uu5v5mgABPnMP4do/PmiQkFMf3ufpigA+cx/h2j+ZokBymP73P5GgBXyI2x1wcUq52jPXFI+fLbHXBxSrnaM9cUANjJO7P944+lGT52P4dtEYI3Z/vHFGD52e22gAkJAXb/AHhmnHoabJkhcf3hTj0NACR5MSFuu0ZpEJ3SZ6buPpgUseREmeu0ZpEB3SZ6buPyFAASfOUfw7Tn9KJSQny9cj+dBz5ynttOf0olBKfL1yP50APpkRJiUt1xzT6ZECIl3dcc0ACk+Y+emRj8qGJ8xMdOc0KD5j56ZGPyoYHzUx05zQASkiJtvWn0yUExNt60+gBkRJjG7rk/zoBPmuD0wMfrRECIxu65P86Fz5z+mBj9aAByd8eOm7n8jRKSIXK/e2nFDg748dN3P5GiXJhcL12nFAD6ZGSVO7+8f50+mRghTn+8f50AAJ84j+HaP60SEgpj+9zQAfOJ/h2j+tEgOUx/e5oAV87Gx1xxSrnYueuKR87Gx1waVM7Fz1xQA2Mk78j+I4+lGT5wH8O39aIwfnz/AHjijB84H+Haf50AEhIC7f7w/LNPPSmSZIXH94fzp56UAMiJMSFvvbRmhCd8mem7j8hRFkQoG67RmhAd8mem7j8hQAEnzkA+7g5/SiUkJ8o5yP50HPnIe2Dn9KJQTH8vXI/nQA+mREmJS3XHNPpkQIiXd1xzQAKT5j56cYoYnzEwOOc0KD5j56cYoYHzEx05zQASkiJivXHFPpkoJibb1xxT6AGRElPm65P86AT5zD+HAx+tEWQnzdcn+dAB85z22jH60ADk748dC3P5GiUkROV67Tihwd8eOm7n8jRLkxOF67TigB46UyMkht394/zp46UyMEBs/wB4/wA6ADJ84j+HbRISNmP7wz9KMHzif4dtEgPyY/vDNADmzsbHXFImdi564GaVs7Gx1xSJnYueuBmgBIySXz/e4oJPnAfw7T/SiMHL5/vcUEHzge20/wAxQASEhRt67h/On0yXJUY67h/On0AMiJMKFvvbRmhCd8memePyFEQIhQN12jNCA75M9N3H5CgAYnzUA6YOf0olJEZ29cj+dDZ81MdMHP6USgmM7euR/OgDE8Yazc6FoD3dogaYusasRkJn+Ij8PzIrF8A+J9R1uS6ttQIlMSh1mCBepxg44+n0NdpcW8N1A8FxEksTjDI4yD+FVdN02y0q0KWtvFbqfmfYMZ9ya2U4Km4ta9zNxlz3voW1J8xwenGKGJ8xMdMnP5Vhad4v0bUtWext7otKeI8oQHI64NcD4xvdei8XyIst1Hhh9lWIsAVwMbQOp9fenToSnLlegp1VFXWp0vxE17U9JSzhsJGgSbcXlUckjHAPbrSab4t1GPwBPq91EJrmKUxRsy4DjIAY49CSOOuK6r7Mb7RYY9St4ZZjEplSRAyiTHPB465qzJZWs1k1m9vGbYrtMW0bcemKaqQUVFx2YckuZyTON8EeLr3X724sb6OIlYjKrouONwBBH/Ah+VWbL4faXZ66L5HnaOJhLHCxG0Nk9+pA4/8Ar1uaPoWnaLHILG1SEyMdzAliRngZJJrRAPnMf4dox+tKdW0n7PRMcYaLn1Z5f458R61Y+J3tra6ltoIVRognAfIBJP8Ae5yPTivRdNuLm50O2uLhNlzJAruuMfMR6dvpU1xaw3EsDywRSGN8gugJXg9M9O1TSZMT467TilOpGUFFK1gjBqTbYo6CmxkkNu/vHH0pw6CmxggNn+8cViaBk+djHy7f1rmfEHiiXTNQFpbwo5QBnZ89+wxW+L22+3m3+0w+btx5e8bs/SquqaFY6pLHLcREyKQCytjK+hrGqpyjam9Tei4Qneqros6fejUdMiu0Ur5iZ2nsehH51ZTJjXPXAzTY4Ugt1hhUIiLtVR2FOjz5a564Ga1jeyvuYytd22EQnL5/vcfkKfTIwcvn+9x+Qp9MQUUUUAFcv4xNvF9guby2s7q2iZ98Vy4XkgEMpwTuAB6dic9BXUVyPiWcX9w9tatJHIEk0+S4kgLwAzhBtJBBDZ2YIBHOD14AL/h2w0xVkubXS7SzmjleIiBw+D/FkjGDnPH+NTzeGrCeeSZ59VDSMWITVrpFBJzwqyAAewAAqzpllPam5mupY5Li5lEj+UhVFwqqAMkk8KOT19ulX6AKD2cra/Dejb5SWskR553MyEfopqpJDqaahFqSWkLyNC8E0AnxwHyjBiPTOR798c7VFAGJD4ds5tHitdXs7S9dZJJ2EkYdFkkZnbbuHTLEZ9Kb4NijHgnQSEXJ023ycdf3a1uH7p+lY3g7/kSNA/7Btv8A+i1oA1I4IwZRsXBbpj2FI0EfmINi7QD8uPpUiAb5cHktz+QoYDzkOecHA/KgBk0EbRY2KACMcdOaeYoyQSikjocdKJgDGcnAyP50+gCGKCMIpKKWxjdihIYxNIwVcnHanwgCJQDkUKB5shB54zQAwwRh0wigZORjrxRLBH5DKEUDHpT3A8yPJ5ycflRMAYXBOBjk0ABhiKhTGuB0GKZHBHsG5FbBODjpzU1MiAEfByNx/maAGCGM3DOVUnaO3TrQ8MfmIwVQd2ScdeDTwB57nPO1cj86JAC0eT0bj8jQAx4IxFIFRVyp5A9qcsMQTb5a4PUYpZQDC4JwNpyacOgoAijgj2MpRSNxOMdKQwRtNyikBcAEVJEAA2Dn5j/OjA8/OedvT8aAGSwozI21QwYHOKc0MeGIRQcYzillAOzJx8wxTm+42emKAI44Y1QYRckDJx1pI4I18wbFwW6Y9qkjwI1xyMCkjABkwc/Nz+QoAjMEfmqNi7dp+XHuKWWCNo1GxQAy9vcU8geepzztPH4iiUAoMnHzL/MUABhjJBMakjocUyKCMRoSilgoG7HXipqZCAIIwpyNowaAGJCgllbauSfT2FBgjEq4RQMHIx1p6AeZJg8kjP5ChgPOQ55wcD8qAGSwR+SVCKBn09xTzDEVCmNcDoMUTAGIgnA4/nT6AIY4I/LXcitjocUCGPz3YqpPGOOlPhAEQAORQoHmuQecDNADGhj85GCqDk5468USQRiKQKiqSDyBT3A8yPJ5ycflRMAYXBOBg5NAAIYgpURrg9RimRwR+VtKKRuJ6e5qamRABDg5G5v5mgCPyIjMcopG0ADHTrSyQoZI22rkNnOPrTwB57HPO0cfiaJAC0eTj5uPyNADZIY9jkIobaRux7UqwxqMhFyRycdadJgxOCcDac0q/dH0oAiigjVXGxcFj2o8iPzMbF27fu496fEAA2Dn5jRgefnPO3p+NADJYI2VBsXAYcYpzwxsMlFyBwcdKWUAhcnHzCnN90/SgCOOGPYhKKWCgZx7UkcKCSRtq7i2c49hUkeBEgByNoxSRgBpMHPzc/kKAI/IjEwwigbSCMdelLJBH5W0IoG4dvcU8geepzztPH4iiUAoMnA3L/MUABhiKhTGuB0GKZHBGYYwyK2AOSKmpkIAhQA5GBg0AMWGPznYqpORjjpxQYY/PRgqg4OeOtPQDzJMHnIz+VDAeahJ5wcUAMkgj8ttqKpPU4p4hiClRGuD1GKJgDEQTgU+gCGKCPyQpRSMnt70ggjMjZRSMDAx0qSEARAA5HP86FA85znnAyPzoAZJCjSxNtXIPp7GiWCMxuQihtpG7HTinuB5keTyCcfkaJgDBIGOBtOTQACKMEkIoJ6nHWmQwRqjDYuCxzx7mpqZEAEODn5m/maAIxBH5rDYu3aPlx7mvLfiA+rReJFRDOlrtT7KIshScc4x/FnPv0r1YAeexzztHH4miQAmPJx83H5GtaNT2cua1yKkOdWuZ+lRTyaDaHUIwLvyB5hZeQcd/f1q+sMeFJRS2OuKdJgxvngYNKv3Fx0xWbd3cpaIiihjDO21SxY84oEEazcIoBXBAFPjAG/Bz8xzRgefnPO3p+NIYySCPYFCKBuGRjrzTjDEU2+WuPTFLKAQuTj5h/OnHoaAIkgjMUYZFbCjkj2oSGPzHYqpbdkHHTgU+IAQoAcjaMGiMANJg9W5/IUAMMMf2hWCqDtI6delEkEe04RVJIycdeaeQPPQ552tgflRKAY+Tgbh/MUAAhiAIEagHqMUyKCMQKpRSMelTUyEAQoAcjHBoAYIIy7gopGRgY6cUPDG00bFVyM9qegHmSYPORn8qGA82Mk884oAZLBGUY7FDYxuxTxFGGLBFBPU4omAMTAnAp9AEMMEaxY2LyTnjr1oWCMSONi7SB8uPrT4QBGMHIyf50KB5znPOBkfnQAySCMmIbF2humPY0TQRtC42LnacHHTinuBviyeQ3H5GiYAwSAnA2nJ/CgA8mMtuMa59cUyKGNdzbVLFjzj3qaooGRkYxuGG9skHPOaAEWCNZmIRQCoyMfWh4I8KoRQN3Ix1p4A88nPO0cfiaqX+p6fYSQpeXsEDM2VEjhSff6e9NJvYG7Fl4YzEV2KBj06UCCIxqGRTgdxT2KtESCCpXqPShMCNeeMUgI0hj3sxVS27IOOlHkx/aA21c7SOlR2d5aXRmFrdQzlX+cRyBtp98V5dc+N9ej8UyBT8iTmIWmwcruxt6Zz7+v5VtToyqNpdDOdRQtc9VkhjwCFVSWGTjrzTvJiCkCNQD1GKWUAquTj5h/Om3FxBawPNcTJFEo+Z3YKB+JrE0EigjFuiFFI2jt1oWCMlwUUjdwMdOBUdle2lzYrPbXMUsCrgyK4IGBzk9qpaZ4i0fVL2a2sr5JZs7imCM4AHGQM9O2arllrpsK6NFoYzOjFV4B4x9KJYI2XOxQ2Rzj3rAvfGmiWWtixmnfzEJR3C5RG44JroZcGPk4GRz+NEoSja63BST2FEUYYsEXcepxTIYI1hA2KcjnjrWD46t9RufDMsemiRn3qZUj+80fOQMdecfhmuf8AhzDqGnWuoXF8ssGnqgcCUEDIySwB7Y6/h6VoqV6bnf5EOdp8tjvkgjDSDYu04+XFDwRl4xsXaM8YrkdG+INlqmufYvsksKzttikZwcnsCO2fqara78Q10zX2s4rETRWzlJHL4JPfHHahYepzcttQ9rC17nbzQRtEQUUYHBx0p5ijLbii7vXFcZ4w8ZS6VaWI0+JHN5F5wklBwEOMYHrzW14T15/EWiC8liEcqyGOQL90kAHI9sEUnRmoc72GqkXLlNaKGNVztUtk8496FhjWZyEXlRxj60+IAR8HIyf51Rg1jTJ9Uks4r+B7oDaYlcZyM5HuazSb2KukW3gizGAigbuRjrwa4v4kWGoT6bZiwhke2R2M6RDPPG0kDsPm/OsLxxr2t2nil4Ibqe2hhCtCsZKhgR1P97nI/SvSbCWe50O3lvF8ueS3VpRjGGK88dvpXQoSo8tTe5lzKpeBz/gCxvYPDpTUoXUeaTCkw+ZVwOx6DNdRHDHksVUsGJBx05qvq+pw6NpM+oTqzRwqDtXqSSAB+ZFc94U8bRa/fS2T2ht5cGRCH3BhnkdBzzUSjOpeoloUnGFoXOpEMf2gttXO3HSh4Y9ykKoJYZOOtclF8Q9Ll14WYilELMIluMjaTnGcenv+lS+JfHFpoWpR2P2V7iVdrybXChAeg6HJxzS9hUvaw/aQte51JhiEbAIoBHpQkMflKuxSMelcb4v8U3MPhmxvtIYpHenBmKglBj7voD1/I1X8NalrPiTwfqts0hNyi+XBPgLuyPu59ff/AGqpUJcnO9he1XNyo7S3NpP5qxvDLsfBCkNtPofSpWhjM6kqpwpwMe4rzPwFoGtWXiM3M9vLbW8SukvmDG/I4A9ecHPtXUz+O9Eg1w2LvNuRjE0wQeWGzzznPUdcUToNS5YaijUury0OjlhjODsUHcOce9MuZbOxhe6uXihjXlpHwB+dVdX1vTNJES6heJAXYFVIJJweuACce9Zfi/SZvE/h2IaZNHIQ4mQbvlkGCOD071EIXa5tE+pcpWTtubGl3On39kstlLDOmArMmDzjof8APerKQRgyLsXaW6Y9hXE+EdF1HwvoWq6hdIvnPD5kcAbd9xWIzj1z2rL8IeMdZ1DxNHa3cizw3JbcojA2YUnIwPbvWjoX5nB3SIVW1lJasg1zxtqlp4lnghjhS1tZmiEDRghwDjJPXnrxjrXS+K/F0Ghi1gWxEtxNGJSrnb5a5+nXgj8K6C40XS7nU472ayge5HIdkGSRjBPriqniLwtpviARSXnmxyRfKskTAHBPQ5B4qvaUW43jotxctRJ2ZPoOqW3iDSotRjgEbMSrI3JVh1Ge9XGsoZ7OSF1GJUZGYdcEY603TNMttI0+KytEKwxjjJyST1JPrVmEARKAciueTXM3HY1V7ann2ifDmfT9fjurm8hkt7dw6BAdzkdMjoPzNd60Ee5AEUDJyMdeKkUDzZCDzxmhwPMjJPOTj8qqpVlUd5ChBQVkMlgjMDKEUDHp0p5hiIAMakDoMUTAGFwxwMcmld1jRndgqKMlmOABWZRHHDHtBKqxDHBx05NAhj+0M21c7QOnTrUdld2tzExtriOVVY7irZxknrWLa+LbG41b7OscqrIRGkp6E5OOOwOazlVhG13uaRo1JXstjeeGPzEYKoO7JOOvBrH8RarFotqix2yvJPuCjoAAOSfzrN8QeJ7uw1c2tvHFtg2klwTuJXP5YNbNzZ2niHR4JrqNk3IJFKnBQkc8+lZyq8/NCm/eRtGj7PlnVXusoW+vpceGrq+S0QSwfKY8ZXJxg/Tn9Kp+GNbuNRv2s7uOORCpdSEA2f8A1q6Ww0q00+xNpDHmJs79/O/PXNFhptlYmRrWBIyzHcQOfp9KSp1W4ty23G6tBRnFR32OLTwtqg1sZA8sS7/P3DpnOcdc13csMZZG2qCGHOKfgefnPO3p+NEoB2ZOPmGKulRjSvy9TOtiJVrc3QQwx/MwRQxHXFJFDGsYAReRycdakb7hz6UkeBEmORgVsYEccEYEi7F2lumPpUioqDCqFHsKSMAGTBz83P5Cn0AFFFFABXN3mh6vI1zHbX1ilvLeJdgS2zs4KsjYyHAIynp3rpKwfELFbuxM95d2diBIZZrYkfP8u1WIBwpG8545AGecEA1bFb5YWF/LbyS7uDBGyLt47Fjz171Zrk9Ee8XVFEN5qN1ZyTSAG6Q7TCEBD5KjB8wlR03Lzg4zXWUAFFUo9XsJtVfTIrmOS7jjMskaMCUAIHzehyelF7qcVlNFB5U088qs6xQpubauMt6ADI79+KALh+6fpWN4O/5EjQP+wbb/APota07W6hvrKO6t33RSpuUkEHHuDyD7Gszwd/yJGgf9g23/APRa0Aa6Y3yY67ufyFDY85M9cHH6UIQXkAGMNz78ChiPOQY5IPP5UAE2PLO7pkfzp9MmIEZJGeR/On0AMhx5S7elC482THXjNEJBiUgYHpQpBlkGORjmgAfHmR565OPyomx5L7umOaHIEkYxyScflRMQIXJGQB0oAfTIsbPl6bj/ADNPpkRBTIGPmP8AM0AAx57/AN7auf1okxujz13cfkaAR57jHIVefzokIDR5Gctx7cGgAlx5L7um05pw6CmykCFyRkBTxTh0FADYsYbH945/Ojjzz/e2/wBaIiCGwMfMf50ZHnkY525z+NABJj5M/wB4Y+tObGxs9MU2QgbMjOWApzcI30oASPHlrjpgYpI8Zkx/e5/IUsZzGhAwMCkjIJkwMYbH6CgAOPPX+9tP5ZFEuNg3dNy/nkUEjz1GOdp5/EUSkBBkZ+ZR+ooAfTIceRHt+7tGKfTISDBGQMAqOKABMeZJjrkZ/IUNjzkz1wcfpQhBkkAGCCM+/AoYjzkGOSDz+VABNjyju6cfzp9MmIERJGRxx+NPoAZDjyl29KFx5r464GaISDECBgelCkGVxjkAc0AD48yPPXJx+VE2PJfd0wc0OQJIxjqTj24omIELkjIAPFAD6ZFjYdvTc38zT6ZEQUJAx8zfzNAAMee397aM/maJMbo8/wB7j8jQCPPYY52jn8TRIQGjyM5bj24NACyY8p89NpzSr90Y9KSQgROSMgKeKVfuj6UANixhsf3jmjjz/wDa2/1oiIIbAx8xoyPPxjnb1/GgAlxhc/3hinN9059KbKQAuRn5hVPV9XstEsTdX0myPO1QBksfQCmk27ITdtWXY8eUmOm0YpI8bpMf3ufyFZ+ia3Ya5ZefYyFlTCujDDIcdCK0IyC0mBjDc+/AoaadmCaeqA489f7204+mRRLjYN3Tcv8AMUEjz1GOdp5/EUSkBASM/Mv8xSGPpkOPJTb0wMU+mQkGFCBgEDigATHmSY65GfyobHmpnrg4oQgySDHQjPvxQxAlQY5IPNABNjyju6U+mTECIkjI9KZdXUFlbPc3MqxQxjLOxwBRuA+HHlDb05/nQuPOfHXAz+tUNH1rTtZgZ9PuUlCHDKAQV+oIBq+pHnOMcgDn86bTTsxJp6oHx5keeuTj8jRNjyJN33dpzQ5AkjBGck49uDRMQIJCRkBTxSGPpkWNh29Nzfnk1neIdWOiaHc6gsXmNEAFU9CSQBn25rm/BXjK713UJrG8ghVghlR4gR3GQRk+vWtI0pSg5rZEOaUuVnajHnt/e2j8smiTGY8/3uPyNAI89hjnaOfxNEhAMeRnLcfkazLFkx5b56YOaVcbFx0xSSHEbkjIwaVeUX6UANjx8+P7xzRx5/8Atbf60RkHfgYwxoyPPxjnb1/GgAlxhc/3h/OnHoabKQAuRn5h/Oub8ca9d6Do0ctkoEs0nl+Yy5CcE9PXj+dVCDnJRQpSUVdnSRY8lNvTaMUR43SY67ufyFcl4B8RX2u2V0l8FZ7YoFlVQu4NnjA44x29a62MgtJgYw3PvwKc4OEnFijJSV0Bx56f3trY/SoL+9s7KFWvLmGBGYAGVwuTn3NNk1Gyj1GO0e7t1uWU4jaVQ/OMDHXn+lcT8Q/Duq6rf2t3ZRGeFYhEUDDKtuPOD65H5VVKClJKTshTk0rrU9BR1kRXRgysMhgcgio1kjjtfMZgsaruJbjAFcxYXJ8FeCbc6uWaVCVESEMdzEkKD06ZJ/HrU+g+IbDxdp13aLFJCRGY5YmIztYEZBFDpNXktl1BTW3UNJ8a6Nq2rNY2zzLK5+RpEwsmB259u4FdE2PNjz15xXC6D8PRpevLeTXomjt23RoEwSccE89qj1v4iyad4gktILKOSC2cpIzsQzHvj0/WtJUYzlajqQqjjG9Q76bHlNu6U+uF8a+L7vTILFNNVVF3F53myJn5TjAAPGfX8K0tC8WLc+E21jVAIfJcxuyqcOeMFR75A+uah0JqCn3K9pHm5TpYceWNvTJ/nQuPOfHXAz+tYeheJ7DxDBOmnl47iNSfLmUA89DxwRmvPPDtn4hTxpC7xXazCYG6eQHBTPzbj0IIzj8MU4UG+bmdmhSqpWtrc9dldFkhDMAzMdoJ6nBpLqWKG1lkndUjCnczHAryzxvo+uXPit5Y7a5nik2i3aNSygAdOOnOf51r+NdG1u88PaTtWS5e2j/0pEOSX2j5sfxdDz7+9UqEfd97cXtXrpsdT4liur7wveR6Y26eSMbCjfeGQSAfdcj8a434c6VrFnq1xNcW9xb2piKsJlK72yMYB6kc8/410XgLTdQ0vw8YtQVo2eUvHEx5RSB+XOTiumiIKnAx8zfzpOp7OMqS1XcahztTeh49Yap4lbxpGjzXJuzcBZYSTt255BHTbj/Gtrxt4R1fU/EBvbJBPFMqqAZAvlkDGOT078epr0cEeeRjnaOfxNEhAKZGctVPFPmUopISoq1mzgPFkesaH4L0y0t55NsYEd1LETkccDP93qPwFJ4XXW9Z8D6nbSTSEuClrJKTlhjlcnt2z7n0r0FziNieeDQnKKR6VPt/c5ba3vcfsvevc8z8B+GtZsPEJu7qF7aCJGR9xH7wnt784OfavQW02wbUxdmzgN3tyJjGN3pnPrVqMg78DGGIoyPPAxztJz+NRUrSqS5mVCmoqx5n8SbfVpdWtjHHO9l5YEflglQ+TnOP4ulaWpaFres/D/TreTc2oRN5kkUjYZl+YAEn+IAjr7967qUgKuRn5gP1p56Vf1hqMUlsT7JNtt7nB+D/AArf2vh/Vbe/Pkf2hGERQ24oNrDccHHO4ce1VfCngXUNL8Qpe3c0IjtiwAjYkuSuPTgc16HCQYYyBgFRx+FCEF5QBjDc+/ApPETfN5gqUdPI4DVPhy194jkukvwlvcyNM6lcupJyQOx5NRfEXVtU0y5srOymltrQw7t8ZILMDjGfYAfnXojEeegxyVPP5VHdxQzQbZ4UlTcPldQRnPvTjiHzJz1SB0lZqOlzK8IX17qPhm1ub/JmbI3kYLqDwa1hFFPaGJ13ROhVlPcHgipgABgDAFMhIMKkDAx0rGTvJtaGiVlY5PSPAOmaXrX25JppTC26KN8YU46k98fhVrVfBWjapq631wkwlc5dY3wsmB37/liuiUgyyDHIxzQ5AljGOTnB9OKt1qjfNfUn2cbWsZur6Fpmq2ccV7aq6QD93typTtgYxx04q7Y2FrptmlpZwrFAn3VH+ealmIELEjIx0qlrWrQaHpUt/cBmSPACr1Yk4AqE5StFDaS1LaqHgZVJXO4ZHUcmvL9F8B6xaeKbeSYRrb20yymYOCHAOcAdecd663wr4xt/Ecs1sLVraeNfM2F9wZc4JzgdyO3eulBHnuMchRz+daqdSheNtyHGNS0hk8MMksDSRq7K+UJXODg/lT5seTJu6bTmhyA8WRnLce3BolIELkjICnisDUhv7G31Owls7pN8Mq7WH8j9c81i+HfCGm6BcS3Ns00szAxhpSDtGegwB6da6MdKZEQVbAx8x/nVKcknFPQlxTd2cZF8OtNi14XYuJTArCVbbaMA5zjd6e2Pxq54j8E2Gu6hHeyTSwTNhH8sAhwPr0PbNdPkeeRjnaOfxokIGzIzlhV+3qXvcXs4WtYqRaVZW+kJp32dJLSNNojkUMCB3IPU96sWtvBa2yRW0McMQHCRqFA/AVK/CMfakQ5jUgY4FZtt7lWQkeMvj+9zXB3Xw2t7jX3uPtzC1kcytDs+Yc8qDn3613kZBL4GMNQSPPAxztPP4iqhUlT+FilCMtzhfHHhC/1rUob6yeNhsWJkdsFeTgj25rqfDulvougWmnySCSSJTuZemSxY49ucVoykBRkZ+Zf50+qlVlKCg9kJQSk5IZDt8iPb93aMfTFU7LS9Os7maa0soIZWOGdIwp6A4+lXISDBGQMAqMD04oQgvIAMYYZ9+BWd2i7A2POTPXBx+lE2PLO7pkfzoYjzkGOSDz+VExAjJIyMj+dIB9Mhx5S7elJPPFbQtNPIscajJZjgCqlrqVve2Ektg6zMinCDrnnAI96Tkk7FKMmr20Li482THXjND48yPPXJx+VcDoes6rN4giR5pJRK+JY26Adzjtik8RX+qxeIXRZp4wjDyVQkAjsR65/+tXL9cjyc9nvY7PqM/acja2udD4o12XSUihgiR3mBJL5wAPp3qJbi48U+FZxGqx3G/aVBwrEYP9fzrSu9Pg1PTITqVuGlSMMcHBVscgGrtpaQWNutvbRiOJegFX7Ocpu791rYz9pThBKK99Pc5nwnod7YXM9xdoI0ZDGE3A7jkc8fSp7XwhZ2+ri4E8jJGRIsRHQ5OMnv0ro4iCmQMfM38zQCPPcY5Crz+Jpxw9NRUbXsKWKqyk5Xtco3+j6dfXEUt1bLJJnaGyRngnnB5q66oluyhQEVMYA6DFLIQGjyM5bA9uDRKQIXJGQFPFbKKTukYOUmkm9hw+6PpTYsYbH945+tOH3RTYiCGwMfMRTJDjz/APa2/pmiXHyZ/vDH1oyPPxjnbnP40SkDZkZywoAc2Nhz0xSR48pMdMDFK3CH6UkZzGhAwMDigBI8Zkx/e5/IU+mRkEyYGMN/QU+gAooooAKxNei3z2bXMFzcaaok8+O3DMd/y7Cyr8zKBvGBnkg44yNusy5vNXjuHS30mKaIH5ZDdhC34bTigCHw6MRXixrNHai4/cRTsS8a7FJBBOVBJJCnkAjgDApZrbxG08hg1XSkhLEoj6ZIzKueASJxk474H0FP0aG8STUbi9t0ge5uRKsaS+ZhRFGnJwO6GtWgDMkglPie3nCN5S2cqF8cBi8ZA/IH8qo6nqc5kt1t7S8tvNVxJdCyaWSNQ2NqhQeW6gnjABweldDRQBkLpcFxo9rb2txf2cES/J5bNHIR/tbhnPfnnNQ+DY8eCdBO9+dNt+/T92tbh+6fpWN4O/5EjQP+wbb/APotaANREOZFLPjPBz7ChozvRdz4wctn6U9M75M4xu4/IUNnzk6Ywc/pQAyVD5Xys+QR0NPMeSDvfjtmiXPlnbjOR1+tPoAhiQlFZmcHHTNCIfOkyz44xzT4s+Uu7Gfahc+a+cY4xQAwxlXUBnIOcknpxRKhWBtrOTjjnmnvnzI8Yxk5/KibPkvtxnHGaAAx5UDe/HfNMjQsgJZwQTxn3qamRZ2c4zk9PqaAGBCbhvmcKFGOeD1oZCJEIZyC3IzwODTxnzn6Y2jH60PndHjH3ufyNADXjKxOQzsdpwCfalWP5Mb3575p0ufKfHXacZpR0FAESRkoQWcYY855oMZMu3c4AXqDT484bOPvGjnz+2Nv9aAGSIdyMGf7wyM8U5oyAWDuTjpmlkz8mMfeGac33DjrigCOOM7ASz5IGQT0pI0P7wFn+9wSfapI8+WueuBmkjzl84+9x+QoAYYz5irufG0ndn3FEqHYu1nzuHQ+4p5z569MbT/MUS52jbjO5ev1FAAY8kHe4x70yJCY0ZmcEqMjPtU1Mhz5KbsZ2jOKAGIh82QlnxnjnjoKPLIkUBnIIOST0p6Z3yZxjIx+QobPmp0xg5/SgBkiFYSFZyc+vPUU8x5UDe/HfNEufLO3GeOv1p9AEMaFo1LM6n0zQEJmYlnAGMc8GnxZ8obsZ9qFz5r5xjjFADGQiVCGcgk554HFEiFYnKs7HBwM098+ZHjGMnP5UTZ8l9uM4OM0AAjwpG9+e+aZGhMWGZwdx789TU1MizsOcZ3N0+poAZ5ZMpG5wAo5B69aJEPmRkM/3uRnjvTxnz26Y2jH5miTO6PGPvc/kaAGuhCswZydpwM+1KseOS789ielLMwSCRiyqAp5Y4A/Oop7y3tLF7ueVUgjTez9Rj8OtFrgOiQ7XBZ/vHGTR5Z8zbufG3O7PvWNoPizTNeuJre1eQTISwSRNpZc9R/nNbnPn9sbf61UouLtJCTTV0MkQ7UAZ/vDODWH4t8NHxFpqRRz+XPC29C/KnjkH/Gt+TOFxj7wzTm+6fpRGTi+ZBJKSszmPB3hV/DtnMZrjzLi4KlwmQqgA4HPXqa6KND5khLP97gZ47VDe3qabpM17MCywRF2C98DoK5Lwv49fW9b/s+4s1i87c0TI2cYGcH14B5rRxqVb1CLxhaJ2flkSgbnIKnknp0okjKx4VnJ3Dvz1FeTat4p8Qw+Lp1jnlRopzHHbAfKVzgDb3zxz78V62+4xqcANlcg/UZpVaLppN9QhUU726CmPKgb3+uaZGhaJCzOpwMgGs/xFr0Ph3SjezRtKS4jSNTjcxBOM9uAaydC8Ut4n0i/is4TbahDCQgLAjcQdpBwO/tSVKTjzW0Kc0ny9TplQmVyWcAEY54PFcvqXjrSdM1s2MhuX8ttksiAFUP58471yPgzTtdh8XRyPBdRKpb7U8qsARg8HPUk9PzrpNX+HVtqWuverevDFO5kljCAnPfBz3+hxW/sqVOdpu6sZc85RvFHYEBoPMjkZwwBUg5BB9Ky/E+hS65oUtlDOUlLB0Ln5SR2PtWR4w8VyeFxaWFhbRM7Rg5lBKqg4AAB5PHrW14Y1z/hIdFS9aIRSbikijpuHp7cislCcEqq2L5oybgYHgfwhe6JNcXd9KEeRPLWONs8ZySfyGK37bXdKvdTewg1JHuF4Cq/3j3weh/CtMxma0eJmKl1Zdy9RnPIrzXQ/h/qtl4lgnuJIltraVZPMR8l8HIAHXnvn3q041eaVR2ZNnC0YLQ6nWPGOk6PqsdlcSzmRSPM8tcqmRkZ59x0zT/EXiiy0GygnLSXDXS5hSNuGGB8xPpyKyPEPw+Or6619BerCk5BlVkyVIHUc85x0rU1/wAG2mr6RZ2qzPC9jGI4ZMA5UADDdM9BQlQXLd+oXqa/gW9Jv9P8WaNJKEd4JCYpYZf4Twcfywafo3hzTdGErWVuYXkJVmLEtgE4GT2qTw9oNv4d0wWdu7SZYu8jdWY4HTt0HFaUWdpzjO5un1NZTlZtQehpFaJy3OPtfH2lXOtDT1+0iORxGlwcYLZx+APr+ddbIh/dgM/3uTn2NcdafDixtdeW8F1I1tG4lSAqODnIBbPI49K7STOUxj73P5GqrezuvZk0+f7ZzXjLxG3huzgaKMy3E5IQMxCgDGScdeo4qhY+KbzWvCGo3tpC0eo2q7diHK9PvAH2ycc9K6XW9EstcsTb3sRYLlkYNgqcdjTtG0ey0SwFrZRbEJ3MSclm9SaalTUFp7wOM3LfQ8++H+sa1e6+8E91c3NsYy0vmuWCHsRnpzxj3r0sIRLjc5BXqTSwRrH5m1EXc5J2gDP1xXnsnxMdNfMX2KM2CyeWTk+ZjON39cY/GqknXk3CNiU1SVpM2vEvjG18PXcdkYpriYgO+HxsUn19eOlbEBsPEmhRTFDPaTru2SgHkE8H3B/lWX4m8FWniC8iuzO8EwwjlQCGXPv3re07T4NK0yGxtQRFCu1dx5Pck+5JJqJOmoLl+Ipc/M77ENrZWOkaZ+6RbS3jTzJNnygcck/lWZo/i3Sdb1KS0tp5hLkmNXXaJABzj9eOOK2buzXUNJls5iVWeExsV7ZHUVx/hjwDJo2uC/ubxJRAWESxrjdkYyfTg9KIKm4yc3qEuZNKK0MDV/BWv3Hii4eKIyRzTmRLguAApOee4xnp7cV6mY2jiHzu7cAkn3HNSHPnJ0xtOf0olzs4xnI6/UUqlaVRJPoOFNQba6mZrugW+vaW1lcSyKNwdHByUYd/1P51R8LeEoPD1vKyzyS3E+N7kbcAdgPxrpKZDnyU3YzjnFSqklHkvoPkV+bqMEZLuCzgAjBz14rB1LwZo+pasl9cQSGRjmQK+Fcjpn/62K6FM+ZJnGMjH5UNnzUxjHOaUZSi7xdhuKe5n6polhqdssd3bLOkf3FP8PbjHIqtqvhi01HQX0qI/ZouDFsHyoQc5x37/nWzLnym24z70+hTkrWewOKZyHhDwZ/wj8s11Nc+bcSIYwEXaFXPP1zgV1Kxne67nxgYOafFnyxuxnJ6fWhc+c/TGBj9ac5ym+aQoxUVZDHQ5jUM+M8nPsaJkPlMVZ8hTgA9ae+d8eMY3c/kaJs+TJtxnacZ+lQUHl5bO9/pnimRITuYs4+Y8Z461NTIs7TnH3j0+tADFQiZhucjaOSfrQ8ZAUBnOW5OelPGfPPTG0fzNEmcpjH3uaAGvGfKIDvkD15oEZZFy7g47GnvnY2OuDSpnYueuKAIkQs7Es4w3AzwaNh88fM+3ae9Pjz8+cfeOKOfPHTG0/zoAY6FcEM5yw4z05p3l4Uje5z70sudq4x94dfrTz0oAhijJgTczgkAnnkULGWLgs4Abg568CnxZ8lN2M7RnFNikV5JgHVirdAQSOB1oARkJmT5nxg5wfpRKhC7lZycgYzTJLqBL2OFp4lkIOIy4DHpjA6+tF7dwWsQaaeOLcwA3sBnnnrSuh8r7Ewjwxbe/PbPFMhQ+UNzPkjnJ6U5riFbfz2lQQ43eYWG3HrmorG7gu7YPDNHKBwxQg4P4UXV7Byu1x6xnc6lnxxg5odDujUM+OcnNVbXVrG6vZbeG6ieQdFU9eOcetNu9Z0+zvo7ae6jSTup7ZHGT2pc8bXuV7Od7Wdy5Mh8olWfIHAB61V1bR7bWbCWzumk8qQfwtggjkEUarqtppluGuJQpfhABkt+FSLqlk2nG/Fwv2YDJfnj2x1z7U1USlo9UL2cnG9tGY3hnwhZ+HnluIpZpLiQFCz4GFz0A/AflW+qETONz4wMEn61T0vWbLUo5PImy0eSykbSBnrWZZ+L7W61cWohkWORgkchxyc8ZHbOameIjJqUpblQw09VGOxvtGQUAZyC3Jz04NEsZED7WckAkc8muW13xVdWGrNa28MRSEjcXBJYkfp1qxr3iKe10qxmtUVGvELEsM7BgcfrWbxNNc3karCVXy/3tjozHlQN7jHoaaiFiWLOMMeM9ea56y8R3Uvhe6v3iVp4G2AgcNnHOPbPNQeFvEF9qGoSWt0VkUoXDBQCvPt25oWJg3FdweEqKMpfynUBD55+Z8bfWh0KspDOctzz0riIfFmpPrSgqvktIE8jYMgZxjPXNSeLdS1K31dYo5pYYFUNH5bFd3qTjrzxUPFw5XJLY0WBqc6g2tVc7QxlY2w7k49aEjJiUF3BxzzzXK65daq3haym/eIzj/SCnBxjjOOgPejQH1afw1fANIWxi2Zidx45wf5e9V9YXPy2e1yPqr5OdyW9jqUjLBgWcYbg5601sfakj8wg7ScbuetcX4Rg1KPWWZkmSDDedvBAJxx175x+tVrvSNZfxFIVimMjTF0nAO0DPBz0H0qPrUuRSUXuafU4qbg5rRXO8uWSEK7zbAWUfM+B1qR9kKtLJMVQcks2FFch4w0zULq/hmgikmh2BAEGdpz6flzVi90bUpvB9pZjLXMTbnj3dRzgZ9gRx7VTrT5pJR2IWHhyxk57/gdFZvHcWqSxT+YrKOVfcAcUy2uba4lmiiu0kZT0SQEgYH9awPDejX9vpeoJN+5NzHtiUt0OCN3HTqKpeHfD2p2mtxzzx+VHFnc24Hdx0GPrSVao+X3d9/Ibw9Jc/v7beZpXviqztNTNoVnZI2KSShuh9h3xTfEuvy6ZLBBagMzoJC7EkY6DGPpUl74QtLvVjcmaREkYvJGMcn2PbNampaRZahAizwBjHgIQdpA9KOWvJSV7dh82GjKLSb7mTKk3irwyrxnyp9+ShJ2Ej+nNHhXQbrTGmnum2NIu0Rq2e/U10VtbQ2lukFvGI4kGFUdqdFnyl3Yz7VaoLmU5fEjKWIfLKnDSLZDFbIlxM6rhmxlscn8ac0XzoMueT8xPI4qRc+a+cY4xQ+fMjxjGTn8q3Oe4yVCIG2s5IHHPNPMeQBvcY9DRNnyX24zjjNPoAhjQsAzM4IJ4z7mgIfPb5n2hRjnjvT4s7Pmxncen1NAz5z9MbRj9aAGMhWRCGc5bnnpwaHjKwvhnJwcc+1Pkzujxj73P5Gllz5T467TjNADRH8gG9/rnmmpGWUgs4wx79alHQU2POGzj7xoAYUJmA3OFC9QaJEO5SGc/MARmn8+f2xt/rRJn5MY+8M0AIY8bmDOeOmeKSOM+WCXfJHOT0qRvunHXFJHny1z1wM0ARxxnEiln+9wc/SpFXaMbifqaSPOXzj73H5Cn0AFFFFABVHUNXs9LMIu3kUzMVjCQvIWIGSMKD2q9XO+J7x9Ne31C2Ja7ghmPk+V5gaH5WkJ+ZduNqc574wSaALWk69aancTRR3aO+9jEnkSRNsXAIO/7xDZyR0yOK2K5zSbKS41CS5ubjM8F28k8Qg8v96Y1RcHcfk8vB75JzxjaOjoAKKYZYxMITIvmlSwTPJAwCcenI/OiWWOCJ5ZXWONFLO7nAUDkknsKAHH7p+lY3g7/AJEjQP8AsG2//ota2A6vGHRgysMgg5BFY/g7/kSNA/7Btv8A+i1oA10BDyZOctx7cCgg+ahzxg8flQgAeXBzlufbgUMB5yHPIB4/KgAlBMeAcHI5/Gn0yYAxkE4GR/On0AMiBESgnJ9aFB8xzng4wPSiEARKAcj1oUDzZDnk4yKABgfMQg8AnI9eKJQTEwBwcdaHAMkZzyCcflRMAYXBOBjrQA+mRAhOTk5P86fTIgBHgHPzH+ZoAAD5zHPG0cfnQ4JaPBxhuffg0ADz3Oedq8fnRIAWjycYbj34NACyAmJwDg7Tg0o6CmygGFwTgFTzTh0FADYwQGyc/MaMHzs5429KIgAGwc/Mf50YHnk5529PxoAJATtwcfMKc33Tj0psgB2ZOPmFYXi3xIvhvTklEPnTTMUjQnA6ck1UYuT5UJtRV2byAiNQTk4HNJGCC+TnLce3ArldC8aw6h4evb6e3Mb2CAyIpyGGOMfXBFU/C3jw61rJ0+ezWEzlmiZGJ6DOD+APNaewqa6bEe1jprudsQfOU542nj8q4rxr4yu9C1CGxsoYixQSu8oJ78AAEen610EviPRotZWwk1CJbvlNnOASRwW6A+2aXWvD2l62Ynv7YO8ZAVwxU4J6ZB6f40qfLCSdRaBO8laD1JPD2rHW9DttQMXltKCGUdAQSDj24rQiBEKAnJCjJ9aba2sFlbR21tGsUMY2oi9AKdCAIIwDkBRg1nJpt22LV7aggIeQk5BIx7cChgfNQ54wcihABJIQeSRn24FeX69471iz8TzxQeXHb2srRiJowd4BwST15xnjFaUqUqrtEmc1BXZ2niXxTYeHlijuPNeaXlUiAyAD1OTwK0tK1W11nTo760YmF8/eGCpHUH3rA8T+E4vFCWt757WlwsYU7k3ZU84IyMEEmq+r+GLrT/AbaVpLyTShw8uBhphn5gB+XHoO9Wo0nFJP3upPNNNu2h19u6vArLIsg5+ZTkVl2XibRr/U3srbUY5ZzwqANg464JGD+Brkvh7ouqQxaiL2Oe2tJ4vLCSAqxY8bgDyMDPPv7VHofw9v7DxHDc3FzCbe2kEgMZO58cgYxx7/ANar2VOLkpS22F7SbSaR6O4JkjIOACc+/Fcz4y8V/wDCOQwxRQCW4uAcbmwEA7+/WsTxH8QLvTPEMlnbWkDQ2zAMZd25jjnGCMdfeul1PR9N8W6PaXF0kiBohNE6nDoGAOPT0qY0/ZuMqi0Y3PmTUHqZjeMZrzwNdazZ2/l3MT+Uyn5grZX5vcYYH61Q8AeJ9V1bUrizvpPPjERlEhUAqcjjjsc/pXY6ZotjpOmf2fbQj7Oc7g/zbyepb1zUmn6dZafE62dtDCHYlvLQLnk9celDqU1GUVHfYFCd02yyAfOY542jj868q8fnWv8AhKBs+1fZ8J9l8vOM4GcY/i3Z9+lelR6lp8mpvapewNdAAGESAsMZzxnrVuQAtHk4w3HvwamlUdKXM0OcedWucB4v07XtQ8KaRiOWaWNQbuKMZYsQMEgdSOc/Wp/Cvh2+ufBd7pmqCW3S5fMKOPmj6HOOw3DOOO/rXcyAGJwTgbTzSr90fSn7eXJypdbi9kubmOL8J+Bn0HVHv7m7SZ1DJEsakAZ7nPt2rE/4WPqH/CRbfs0f2LzfL8rad+3OM5z96vTYgAGwc/Mayf8AhGdF/tn+0fsMX2vO/dzjdn723OM++KqNaMm5VVcTptJKDsYXi3xy+hamlhbWqyugV5WdiBz2GPbvXT6Rqces6Pb6hEpRZkztP8JBII/MGs/XvCela9cRXF2sizLhd8bY3D0P+c1sW1pBZWUdrboI4Yk2oo7Com6bglFa9SoqfM77CvBHcWbW86iSOSPY6nowIwaxNF8HaTol/JeWySNNkhDI2fLBHIHH681vxgCJADkbRzSRgBpMHOW59uBWanJJpPctxTd2RNawNfJcmGIyqhAcoNw6d64T4g+I9W0vUra0spmt4TEJC6qMu2Txn2wOPevQCB56nPO08fiKgvrG0volS7t4ZlVgVEsYYA5HrV0pqMryVyZxclZOxz+n2w8Z+CrYawrCRyW8xBtO5SQGA6cj+Zq94a8MWXhy3kFuzySzYMkjn06Aeg5rbVVRQqqFUDAAGABTYQBCgByABzSlUbTS0T6AoLRvcEBEkhJyCRj24oYHzUOeBnIoQASSEHkkZ/KhgPNQ55GeKzLMzXPD+n67Ai3sO5oz8jgkFc9elXbCwttMs47SziEUEY+VRz+veppgDEQTgetPquaVuW+grK9xkQIjAJyeefxoUHzXOeMDAohAEQAORz/OhQPOc55IHH51IwcEvGQcAE59+DRKCYXAOCVOD6UOAZIyTyCce/BomAMEgJwCpyaAH0yIEKcnPzN/M0+mRABDg5+Zv5mgAAPnMc8bRx+dEgJKYOMNz78GgAeexzztHH4miQAmPJxhuPyNACuCY2AODg80q/dGfSkkAMbgnAwaVeEX6UANjBG7Jz8xrBbwZora5/aRtj5ufMKbjsL5zux/Tp7VvRgDfg5+Y0YHn5zzt6fjVRlKOzE4p7hICQuDj5hTj0NNlAIXJx8w/nTj0NSMSMERICcnaMmkQENJk5y3HtwKIgBCgByAo5ojADSYOctz7cCgAIPnKc8bTx+VEoJTg4OR/OkYr9pQFgG2thc8npUN7d21rEv2m4jiDMMb2Azgik2lqxpNuyLVMiBESgnJx1qOa8toLU3UkyLABnzM5BHt61BY6lY3Vk01vcq8UQ+c4IK49QelLmje1x8krXtoW1B8xyTwSMD04oYHzEOeBnI9awtO8UWF9qTWyLKjSH5GcDBwPrSah4qsLLUxbOsrmMkO6gYB/rio9vTtzX0NPq9Xm5eXU3pQTEwBwfWn1geIPEUWmRQpHH5zzrvB3YAX1/GnL4mgbw+2qeS2VbYYs/x+mfTvmh1qabjfYFh6jipW0ZtRAiMAnJyefxoAPmuc8YHH51gaB4kTUxNC8BjkiQyfKc7lzz/MVl6d4vurnWo45IIxDO6xhVzlcnA5/HmpeJp2TvuWsJVvJW2OzcEvHg4w3PvwaJQTC4BwSpwfSuE8TatqdvrrRxzyQxxYMSrwDx19+9XvFM+pNo1hJiSNXTNwEyMMQOD7dah4pe9ZfCWsHL3Lte8dezKilmICgZJJwBVezu7e6V/IuYptrHOx84yeK5vTLbUtS8HXFvK7+Y7fuTITkqCDjPpwR/8AWpnhPQ7+xv5bm5Tyk2FNu4Escj0+lNVpuUbR0Ynh4RjK8tV+J0q3tq1+1uLqIzbceUHG7PPaqWq+IbHTLmOCZ5DJkMwQZ2j3rl7bwvqkeuRlsbElDmfeORnOcdc1s674W/tPURdxXKxGTCuGGegxkfgOlT7WtKDcY2dy/Y4eM0pTurGhq2v2un6bFcjMvnj90FOM8dfaobXxJBc6HcX6RNvt1w8ZPftz6U+88OWtzo8Fizuv2dfkkHXPf86m0rQ7XTbB7ZcyrN/rC4+9x0x6Vf75z8rfiZ/7OodW7/h/wxj+HvFFxqOpG0uYox5gLIyZ4IGcHJ6VlT+JdXTXXCscLKUFvtGCM4x9feuv03RdP02WSW1hCuSV3EkkD0GTVk2lsb4XBhi88L9/YN359aj2NZwSctbmnt6EZtxho0cr4u1fULPUYoLeVoYggcFf4jk9/wClS6ndape+DrW4UOJXP7/yxgleQDx2PB/GunureC4VBPFG4VwRvUHBz71NgAY6CqdCTlJuWjIWIiowSjqvxOQ8MR6lLoeoRlpFDLi2LnGGwc49ulUvDGk6nb66sskEsMcYYSM4IDDHT35xXdQgCGMA5AUYP4UIAHlwc5bn24FCwy927+EHi379kveOC1Tw7qs+vzPHEXSWUuku7gAnv6Y/pWl4r0O/v57ee2HnBIxGy5AIOevPrn9K6tgPPQ55Cnj8qJgDHgnAyP50fVIWku4/rtS8XZaHMSeH75vCEdgHH2lH8wpu4PJ+XP45+tN8NaBe2lve/az5P2iPy1VWBI6/Nx9a6ymQgCFQDkY61Sw0FJS7aEPFVHFx7u5xejeFb+01qOadkWKBt25Wzv8AYf8A16frHhO8u9ZkngljMUzbiXJyvrXYoAJZDnk4zQ4BljJPIzj8qn6pT5eUr67V5+fraxzuveGpNQtrQW86h7eMRnzc4YevGeafF4YKeGpNMacea7+YXA+UNxx9OK35gDCwJwMdafV/V6fM5W3M/rNRRUb7anNeG/DcmlTTXFzLG7uhjCpkjGRnOQPSnWnhCztdVF0ssjJGweOM9j7nviugiAEeAcjJ/nQoHnuc87Rx+dCw9NJK2wSxNVtu+5n3+h6fqF1HPcW6tIDgnJG4YPXH4VYvdPtbyyNvNAjRqPkBH3eOMY6VYkALxZOMNx78GiUAwuCcAqcmtOSOum5n7SemuxHBZW1vafZooEWDGCmODnrn1qKw060sBIbeCOMuxyVHJGelXB0pkQAVsHPzH+dPlXYXNLXXcqjTLNdRN2LaITYzv2859fr71YmjEnl5AO1weRTsDzyc87Rx+NEgB2ZOMMKEkthOTe7HNyjY9KRMhFycnApX5Rs+lIgxGoByMCmISMEF8nOW4oIPnA542nj8qIwAXwc5aggeeDnnaePxFABICVGDj5h/On0yUAqMnHzL/On0AMiBEKAnJCjJ9aEBDyZOQW49uBRCAIIwDkBRg/hQgAeTB6sM+3AoAGB81DnjB4/KiUExkA4ORz+NDAechzyAePyomAMZBOBkfzoAfTIgREoJyfWn0yEARKAcj1oAFB81zng4wKGBMkZBwATkevFCgebIc8nGRQ4BkjJPIJx+VABKCYmAODjrT6ZMAYXBOBjrT6AGRAhOTk5P86AD5zHPG0cfnREAI8A5+Y/zNAA89znnavH4mgAcEtHg4w3PvwaWQExOAcHacGkkALR5OMNx78GiUAwuCcAqeaAHDoKbGCA2Tn5jTh90U2IABsHPzGgAwfOznjb0okBO3Bx8wowPPznnb0/GiUA7MnHzCgBzfdP0pIwRGoJycDmlb7h+lJGAIkAORgUAIgIL5Octx7cCn0yMAGTBzlufyFPoAKKKKACuU8Vx3NxbztLbm2t44njN4t6kZ8twA4IdGGDge+QMV1dc5e+H9Tu9aOof2rbPGhBtre4sjIsBx1GJFBb/AGiMjoMUATeFGnm0yW6ubW6hmnmLl7plLyjAAfAVdowMBdo6ZxzUs1z4jWeQQaVpTwhiEd9TkVmXPBIEBwcdsn6mr9jHexwsL65huJd2Q0MBiAHHGCzc9ec1ZoAwhaW8HjaOeKILLNYS+Y3dsSR4/mfzqr4ink1GwItrWS80zypHle3ePDuuQEO5h8oIJOM5KgdMiunxzmjAxjHFAGLbjU7nw/YNYzQ2MvkrvF1b+dxt9EkUD16mmeDRJ/whOg5dcf2bb4+Xp+7X3rcP3T9KxvB3/IkaB/2Dbf8A9FrQBpxq+6X513buTt9h70Mr+YnzrvwcHbx296kQgvJgchuffgUMR5yDHODg/lQBHMH8rl1HIz8vuPepCJMjDrjuNv8A9eiYgRnIyMj+dPoAhhD7F2uuzHTbz/OhA/nyfOvbjb/9enwkGJSBgelCkebIAOeM0ARsr703OpbJ24X2+tEwf7O4Z16ckL/9epHI8yMEcknH5Vy3jTxY/h2OCCC3SaecE5kztVR9Ov51UIOcuWJMpKKuzqSJdow6Z7nZ/wDXqOMPsGx1Ayc5X3+tZnhbXx4j0cXhh8qRZDFIoORuAB49sEVrI6rCz9FBYn8zRKLi+VjTTV0NAf7SxDr91cjb9fehw/mR7nXG7gBfY+9cLp3xIW88QR2zWGy2nkESPvy45wCR079O3vXeyEBo8jOW4/I1VSlKm7SQozjLYZIJPJk3upG09Fx2+tZviK5v7Hw3e3NkQ1zHHlNqdBkZP4DJ/CtWUgQuSMjacinDoKiLs0xtXVjzL4fazrV9rM1tLcy3FuYy7tMS+w54we2fSvRyr+dw6htvOV/+vS20UMSuIYkjBckhVAyfWvIItX8SnxmqGa5+1m42tb5Ozbn7uOm3H+PvXTy/WJOUdLGN/ZJJ6nr8obcmXXbuHG3/AOvVDW9DttdsjbX3MancrIMMpx1Bz/SuD+IWs6zZ6+kENzPbWqxq0XlMVDnuSR154x7V3ug3F3deHbOe/Ui5eLMgIwT6HHuMH8ah05U4xqJ7lqak3CxX0jwzYaXpU1jCgeC4B80yDLPkY5OfT0xVbQ/B2m6Jey3drueflVaTkRg9QBXRxkGNSBgYFJGQTJgYw3P5Cs/aT113K5I6abHmN98OtSufEUrLcw/ZppDKZSTuUE5PHrzXpUyv5a5dfvLzt75GO9SEjz1GOdp5/EUSkBBkZ+Zf5inUqyqWUugoQUb2AiTIw6gd/l/+vVO6uHstJmu02usFu0gTby21c4zn2rF8fx6lJ4aK6cJSfMHnCLO4x4OenbOM1l/DOLUksbwXayizJXyVlBwTzu2g9un+c1UaS9n7S/yE5+/y2KHhXxxqupeJI7S6ETxXTHhEwY8DPHtx3rt7jRLC51GO7uLS2kuhyshi546E8844pdP0LSdPvZrizsIYZicF1HTI7en4VosR5yDHODg/lRVqRcr01YIRaVpakcqv5J3OvUc7fce9SES7Rh0z3Oz/AOvRMQIiSMjj+dPrE0IIg/lLsdQPdf8A69KA/nvh17ZG3/69PhIMQIGBQpHmuMc4GTQBh6l4U0nU9TS8vLZHmPBI3LvwON2DzWu6Mlu6lkCBcAKmMD86lcjzI8jkk4/KiYgQuSMjByKpybVmxJJbABLtOXTPY7P/AK9RxrIYCEkUHc3O33Oe9T0yIgocDA3N/M1IzyjTPA+u2/iiFpFVY4JllNzvBBAOcgZzk46fnXqkgfzIvnXG7pt9j7+lPBHnsMc7Rz+JokIDR5Gctx+RrWrWlVaciIU1DYZIH2Puddm05G3np9acgkx99SMcfL/9enSECJyRkbTmlX7o+lZFkMQfa+HUncf4e/50bX837679vXbxjP1qSIghsDHzGjI8/GOdvX8aAI5VfamXXO4c7e/509xJj76gY5+X/wCvWfqmt2GmSxxXUh8xiG2quSB6mprrVrK109b2SYeQ4GwgZ3Z7AVHtI6q+xfs56O2+xYjD7E2uuzaMDbz0+tEYfzJCHXG7kbfYe9VbLWLG7057qKX91Cv7zIwUwM9KqaV4ksNTvHtoRIkjZZd4A34H19qXtYaa7j9jUs3bbc1Nr+cNzqW2nGF+nv8ASiVX8r5nXO5cEL7jHesK58X2Nvqxt2ikZEJjaYdjnnA7jim+JPEkmlXEVtbwxuzKJGaTJGM8YwfapeIppN32NFharko23OjIl2jDpnudn/16jiD+THsdQNo6rn+tYd14lePw1DqcUA82V/LCtyFPOT7jj9aj0DxHLeWF41xCu60j8weWMbhg8fXij6xT5lG++ofVqnK5W2djoVD+dIVdcZGRt9vrQwfz0y69Dgbf/r1yei+K7q91hLeeGLy5zgbAcqccfWq+r+KdRttcljhCJFA5QIyZ3e5PXn2qHi6fLzfItYKrz8nW1zs5Q/lNvddvsv8A9epAJdpy6Z7HZ/8AXrlvFGvXlklrHbL5XnRiRmZQSP8AZ54px8QXzeEDqCxgXIfyy+3jr97H6fWqeJgpOPYlYWo4qXd2OjiD+SNrr1PO33+tAV/Nba6hsDdlf/r/AFrmPCmtX96bqGcecI496NgDn+7x6/0rN0fxBqs+vwrJI0gmkCvHtGAPb0x1/Cp+tQtF23L+pVLyV17p3UgfzYvnX7x42+x9/SkmD+VJuddm05G3np9a4bxNf6pFr7os00aqR5KoSARjqPXv/KtDxVc6nHpOnnMkYdP9I2cfPgcHH48Unil72nwgsG3yar3jqLicWkElxcTIkKDJJU8frzVHSdYtdT82O2uAZFJYq0ZBwT168jmszSbW71rwnLbXssgLv+6kfk4GCPqM5p/hrw5JpdzJdTzI74MaqmcdeSc/SmqlSUouK91idKlCMlKXvLYkh8UWM2p/ZVkbc5EaymP5Cc8d89+tP1fxHa6ZdJbSlnlXDNsTIXj3PvVK38GwQ6uJftLGGNhIse3nrwCc+1T634Wj1PUFuluTC0hCuNm7OB16+gqb4nkeivcvlwvOtXa34l3UtbtrLTorppd8c4+RVTlsj68Utnrltd6bJfJLshhGJFdPmU/nUOqeHLe80m3tUkaM2q/u3xnIxzke+KXT/Ddva6NPYvI0n2jl3xj6YHtV3rc+ytb8TO2H5N3e/wCH/DDdG8RW2qXckEW6Nzl1V0+8PrnrWW3jMrqxQwKbcMY/M5zjPXH9K0NC8MRaXetdG4aZ1yiDZtA9T1NTN4Z0xtW+1GN95PmbN3ybs9cf06VFsQ4ro7ml8LGb0bVtPUzPEniG906/S0hEfygOXKdfbr0qXUvEF6vhi1voVWOW4bazbeFxnpn1xW3qOmWN+Y2u7ZZWUgA5IPX1HarL2tu9r9naCNoAuBGVG3A6cVTp1W5e9o9iFVoqMPd1W/mcxoWtald6NfO22SS1TKMU+9weOMdMfrVHw1rWp3WtrBLM0scuTIGX7uB1Hp0ArtLOCC3tkS3iSJCM7VGKS3t7eGSZoYI42LfMVUAtwDzSVGp7t5bfiN4in79ob7eRwWpaVrEniKVlhmeR5S0cqg7QM8HPbHH0rW8VaHqN/cQXEO2YKgjKghcHPXk9811hI89Bjna3P5USkCPkZG4fzFH1WNpJt6h9dneLSWhzT+HLubwrDp7TIJ438wL27/Ln8fzo8OeHp7O1uTcun+kps2DJG3nOenPNdRTISDChAwMdKtYeCkpdtDN4qo4uPRu5zWm+EY7HUhci7MhiOVVo8YOOM880aj4QgvdUNz9qaMStudAmcnvg54/WulQjzJAByCM/lQxHmxgjnnFP6vS5eW2gfWq3Nzc2uxk6roFrqEEKzMUWBdqGMYIGMY5zx+FSpoVqmlNpuAbY89PmznOc561ozECJiRkelPq/Zwu3Yz9rOyV9EY+jaFb6Ssj27l5JON7jJAHb86db6HY2981xDBEtwOQwU4GfQZwK04SDGMDAyf50KR5zjHOBk/nQqcEkktgdWbbbe5DNDveEv5ZdW+VjHnBwfenzh/JfLqF2nd8vt9ae5AePI5Lce3BomIEEhIyApyPwqzMMSbuHXb6bf/r0yEP82HXbubjbz1+tTUyIgqcDHzN/OgCNQ/ntl1LbR/D9feh1fCbnXO7ghe/51ICPPIxztHP4miQgFMjPzcUANkEnktl1zjk7f/r0KJPLTa6jjuuf6098CNs9MGhOUXHTFAEcYfexV127zkFf/r0Yf7SMuudh42//AF6fGQd+Bj5jmjI88DHO08/jQAyQPgb3XG4YwvfP1p2Jdpy6Z7Hb/wDXpZSAq5GfmH86eelAEMSv9nQK6/dGDt7fnSIr7pNrru3fNlfYe9SQkGGMgYBUYH4UIQXlwOQ3PvwKAGMH8+P51B2n+H6e9JMH28uu3I4298/X1qRiPPQY52nB/KiYgR8jIyP50AAEm45ddvYbf/r1HAr+SMOpGOPl/wDr1PTISDCpAwMdKAI0V98mHXfxk7eP50Or74/nXfzzt4/nUiEebIAOeM/lQ5Hmxgjk5x+VAEc4fyTl1Axz8v8A9epCJN3Drt9Nv/16JiBCxIyMdKfQBDCH28Ou3J4289frQgfz5MupO0fw/X3p8RBj4GBk/wA6AR57jHO0ZP50ARur5j3Ou7d8pC+x9/rSzCT7O4Z1+6cnb2/OnuQHiyOrce3BomIEMhIyNpyKAExLtGHQHvlf/r02MPztddu45BX3+tTDpTIiCrYGPmP86AGAP9oPzr9zpt/+vQ4fcu51xuG0Bf8A69PyPPIxztHP40SEDZkZ+YYoAawk8ttzqeOy/wD16EEnkrh1zgYO3/69SP8AcbPTFImDGuOmBQBEiv8APtdc7uSV7/nSsH+0Lh1B2n+H3HvT4yCXwMfNzQSPPAxztPP4igBkofjLrt3Lxt75+tPAk3El12+m3/69EpAUZGfmX+dPoAggD+QmHUjaNvy+31ojV8y4dd27k7eOg96khIMEZAwCowPwoQgvJgchhn8hQBGyv5kfzrvwedvH8/pROH8vl1AyM/L9PepGI85BjnBwfyomIEZJGRkfzoACJN3Drt9Nv/16ZCH2Lh12dht5/nU1MhIMSkDAoAYgfzpPnUnj+H/69IyvvTc67snaQvt9akUjzZBjnjNDkeZGCOSTj8qAI5lf7O+516cnb/8AXqQiXAw6A9/k/wDr0TECFyRkY5FPoAhiD7Rsddu45BX3PvQA/wBpf51+4uRt+vv9afEQY+Bgbm/maAR57jHO1cn8TQAxw/mJudcbvlAX2Pv6ZokWTyJN7qRtPRfb60+QgNHkZy3H5GiUgQuSMjacigBAJfLHzrn12/8A16ZGr7Dtdc7jkle/51MPuimxEENgY+Y0AMIfz+HUHbz8vv8AWiUPuTLrjcMDb3/On5Hn4xzt6/jRKQNmRn5hQAjCT5suu3HTbz/OkiEnlL86kbRj5fb61I33D9KSPBiQgYGBQBFGr/vMOu7d12+w96lUMB8zAn2GKSMgmTAx83P5Cn0AFFFFABRRRQAUUUUAFFFFACH7p+lY3g7/AJEjQP8AsG2//ota2T90/Ssbwd/yJGgf9g23/wDRa0Aa6HLyDGMN+fAoY/vkGOoPP5UJnfJnpu4/IVTn1fT4NSjs5b23Sdhjy2kAbJxgfjTSb2BuxclOIyQM8j+dPqOdxHEWLKvI5Y4HWsPxnq93ovh6S6sl/fF1TeRkRg5+bH4Y/GnGLlJRXUUmkrs3YjmJSRj2qtBqNncXs1tDd28kyfejSQFh65AOa4zwRr+ra/BqVjdzFmWLMdwFAMZORg46+o+hrH8M+Dtds/FNvNPD5EVtJueXeCGHoMHnPT8a39glzKcrNGXtW7OK3O/1DxLo+najFZ3d9FHOeqnJ25HGSBgfjS6/oOn69aKLyIuYstG6Nhhnrg+9cb4j8A6lqPiOW7tZoTBcvuJkYgxnHPbkemK7+C3+xaZFbIxfyYljDN1bAxk/lUyUYKMoS1Ki5SbUloZl3JYeC/DUkltbHyYfuxhuXYnuT/P0H4Vn+EfGQ8R3M9nLaCCaNDKCrZVlzg/Q8iuj1HT7bVbCWyu03wyjDDOD6gj8ay/DvhXTvDxlltRK80mVMkrAkLnoMAccCkpU3B83xA1LmVtitZ+CNFs9cN/FDJuQiSOMtlEbJ5AxnjHrXSOcNHxnLflwaBnznHbaMfrXmPjXxTrdh4mktbW4e2ghCmMKo+fIyScjnkkenFOEZ15WuEnGkr2O71/X7Hw/ZCa9ZsyZWONBlnNTaNrNnrtgLuyclM7WVhhlb0I/Guf1vQJvGHhzTbmWQW17HF5mCvyncoyMdug+lafhXw6vhvTGtzN50sr75HAwM4xgD0pONNU9/eBObl5G1GchuMfMaTj7QflGdv3vx6UseSGz/eNHPnY7bf61iaDJ0R/L3xq+HBG4Zx71K3Cn6U2TPyY/vDNObO0464oASM5jU4xwOKSM5L8Yw358Cljz5a564GaSPOXz/e4/IUABP79RjjaefxFEpwowM/Mv8xQc+cvptP8AMUS5CjHXcv8AMUAPpkJzChIwSo49KfTIcmFN3XaM0ACHLyDGMEfjwKGP71BjqDz+VCZ3yZ6ZGPyFDZ81MdMHP6UAEpxGSBnpx+NPqK4cRwliyryOWOB1ouLmG1t2nnkWOJRkselJtIaTew6I5iBIx7UKf3rjHTHNUrHV7K8s5JoJ1kWIEyYBBA69DWFp3jH7ZqyW8lsEimYIhDZIPbPrWcq1ONrvc1jh6kr2W251TnEkYx1J/DiiY4hcgZwDxXD6/wCIdTtdclhhl8qOEgKu0HPHU565q14ru9QOmWEqeZDFKm6YJkYYgcH9azeKjaVlsarBzvG7XvHY0yI5Q5GPmb+ZrlLN9Xm8FTsDM1xu/dnneY+Onf1/CoPBaX4ubjeJVtdhzvBxvz2z360LEXlGPLuJ4W0ZS5l7rOuW4ia8eESIZFUEqGGe/asLWvFaaXqP2RbYytHguS23GRnA49DWBYaDq8fiCJnidTHKHeYngjPJz3z6V0+reGrLU71LmQyJIxCvsIG4Ae468AVPtK1SD5FZ3NPZUKVRc75k10M/xTqF1Lo1nc2LSJbTfNIy8EZAwDj8aZpFxq0vhK8dTK8wyIGbJYrxnHr3xXUrCltaCGFQqRptQegA4qVfuj6VfsG587l0M/rEVBQUdnc4fwdNqEmqSBnle32ky7ySA3br3qhu1r/hJf8Alv8AavN6c7duf/Qf0xXosecNn+8cUc+djtt/rUfVfdUeZ6Gn1z35S5VqrHM+IvDEup363dvMilgEdXz+YxU9/wCGfP0C2sIZ8SW3zKzDhic5+nJrfkzhcf3hmnN90/StXh6bbdtzFYqqlFX22Oe0Xw2LPSrqC5l3tdqA+zoowcYz35qPRPCq6ZqJu3uTK0RKxgJt6jqefQmukjz5SZ64GaRM7pM/3uPyFCw9NW02E8TVfNrvuc5c+ELO41f7QZZBFITI8YHU5HGewOa09V0ay1IRtcQ7nQhVZTg4J6fStA585fTaf5iiXOwY67l/mKao01dW3E69RtNy2K7aZZNp4sDbqbYDAj9Px6596ZpunWlha7LaBYxIMuOST9c1epkWTCm7rgZq+SN72M+eVrXKFlounWd5JPb2ixyg4DZJxkc4yePwqS402ynvo55bSJ5Rn5yvPHTPrVtM+ZJnpkY/Khs+amOnOaFCKVrDdSbd23cgv7O2vINtzbpMFOQGHT6VKtvAtv8AZ1hQQ42+XtG3HpinS5ER29afTsr3J5na1yvZW0FtBtggjhBJJCKBmiO3gS7llSCNZCBmQIAW+pqWLJjG7rz/ADoXPmvnpgY/WiyDmYj/AOsi+UHk8+nBpZjiFyBkhTx60PnfHjpk5/I0TZEL7eu04piH0yI5U5GPmb+Zp9MiyVOeu5v5mgAB/fsMcbRz+JokOCnGct+XBoGfOb02j+ZokzlMf3ufyNACyHEbHGeDxSryo+lJJny2x1wcUq52jPXFADYzndxj5jRn99jH8PX8aI8/Nn+8cUc+d7bf60AEhwF4z8wpx6GmyZAXH94U49DQAkRzEhIxlRxSIctJxjDfnwKWLJiTPXaM0iZ3SZ/vcfkKAAn98gx/CefyolOEyBnkfzFBz5y+m05/SiXITjrkfzoAfTIjmFSRjjpT6ZFkxLu645oAFOZJBjoRz68UMcSoMdc80LnzJM9MjH5UNnzUx05zQASnETEDPtT6ZLkRNt60+gBkRzGCRjk/zoU/vnGOgHP50RZMY3dcn+dC585/TAx+tAA5w8YxnLflwaJjiGQgZwp49aHzvjx03c/kaJciF9vXacUAPpkRyp4x8x/nT6ZFnac/3j/OgAB/fEY42jn8TRIcFOM5agZ84jttH8zRJnKY/vc0AK/CMcZ4NKnKKfakfOxsdcGlTOxc9cUANjOd/GMMaM/vwMcbTz+NEefnz/eOKOfOH93af50AEpwq8Z+Yfzp56UyXO1cf3h/OnnpQAyI5hQkYyo4oQ5eTjGG/PgURZMKbuu0ZoTO+TPTdx+QoACf3yDHVTz+VEpIjyBnkfzoOfOT02nP6US5Efy9cj+dAD6ZEcxKSMcdKfTIsmJd3XHNAApzI4x0xz60MSJIxjrnn0oXPmPnpxihs+YmOnOaACU4iYgZ46U+mS5ETbeuOKfQAyI5TJGOT/OgH984xxtHP50RZKc9cn+dAz5z+m0Y/WgAc4ePjOW/Lg0SnELkDOFPFD53x46bufyNEuRC+3rtOKAHjpTIzkNkY+Y/zp46UyPOGz/eP86ADP74jHG3r+NEhxs4zlhRz5x9Nv9aJM/Jj+8M0AOfhG+lIhzGpxjgUr52NjrikTPlrnrgUAJGcl+MYagn98BjjaefxFEecvn+9xQc+cPTaf5igAlOFHGfmH86fTJc7Rj+8P50+gBkJzDGSMEqOPTihDl5OMYb8+BRDkwx7uu0Z/KhM75M9N3H5CgAY/vkGOoPP5USnEZIGeRx+NDZ85PTBz+lEuRGdvXI/nQA+mRHMSkjHtT6ZFkxLu60ACn964x0xzQ5xJGMdSefTihc+a+enGKHz5keOmTn8qACYkQuQM4HSn0ybIhfb1xxT6AGRHKZIx8x/maAT5zDHAUc/nRFkp83Xcf5mgZ85vTaMfrQAOcNHxnLflwaWU4icgZwp4pHzujx/e5/I0smfKfHXacUAKOgpsZyG4x8xpw6Cmx5w2f7xoAM/v8Y429fxokONvGfmFHPnY/h2/wBaJM/Lj+8M0AOb7p+lJGcxqcY4HFK33Tjrikjz5a564GaAEjOS/GMN+fAp9Mjzl8/3uPyFPoAKKKKACiiigArHm8S2EE8kLwaqWjYqSmk3TqSDjhljII9wSDWxRQBhiKWLxojNdzypJYykROV2R4kj+6AB69Tk1W1qK41DxHa2At4JrdbSSbZck+UW3KMlR94gHj03E9cV0JgiNytwUHnKhQP3CkgkfmB+VU30TT5IYovs+wRFjGY3ZGXccthlIOCeozg0AULG8vV8P2xsLD7Q6M8MiTXeChRipw5U7hlSAcDIwad4NZ/+EJ0H5Bj+zbfB3df3a1sQwRWtskEEaxxRrtREGAoHYCsrwd/yJGgf9g23/wDRa0AaiGXMhKd+Bu9hXl+t+BddvPElzPDEjwXEzSCUyjCAnOCCc8dOBXqaDDyHOct+XAoYfvkOegPH5VrSrSpO8SJ01NWZ518Q9L1m6ksGginubWOLYVjBciTuxA9Rjn2rpPCljexeFbez1WASZBBim5KoTwpB9u34V0MozGRnHI/nT6cqzdNQtsJU0pORR0+yh0+DybWzhgQ8t5YC5PvxVlDL5smV+XjHNOhG2JRnPvQoxLIc9ccVi3fc0GEyl1OwDGeN3XiiQymBsJhscYanuMyRnPQn+VEw3QuM4yOtAAWk2giMZ9N1MQyhQCmTk5y3vU1RwY8v5WDDceQfc0ANBl89vkym0fxfWoLqygu7iF7iyglMbZV5FDEcHpkcVKk8DXkkazxmUKMxhhuGM9uveszVPEdhp16ltMZWkQhm8tQQuR3yR65qXUjBXbsXGlKb5Urms5lMbjZg7TghqUNJs5jGfTdWH4h8Qf2dYW72yLKbpSUZs7QuBz+oqK28STXPhq6v1gUXEHylRkqScc/r+lZuvBScb6rU0WGqOKnbRuxvoZQhymTuPG7tQTKJchARt6bu9cp4V16/vtRe1umEqMpfcFAKn8O3NZMdjrQ8Shik32nzdxlwduM9c/3cf4Vm8UnFSim7mywbUpRnJKyudhqmvWmmXEUM7kMSGIXJIXPU0+/1y2sbBLuQ7oZR+7KHJbI7CsrxB4Xl1PUBd288aFwFdZM9u4/wq1eeGYrnQ7awE5V7blZCM5PfI9DTcq95JL0JUMPaDcvUnsvEFrdaZNeKGCW6/vAx+b8veqej+Ko9TvmtTbtHI+Wjy+QcDp046ZqxpHh2Cw02e2lfzvtIxIcYGMcAfmeabpHhiz0u9a5SSSWRcqm7Hy5Ht3oXt24v7wf1ZKaV/Ioz+M4odUaE2rGJGKM4fvnrjHtU3iHxLLpVxHbQwKZCA7FicAZ6cfSppvCenTaobpjJhiXaLcNpOfzxVzVtDstVMclypEiEKHVsHGelTy4hxkr69CubCqUXZ26lC78TtF4fh1KK2G+ZtgVm4Vuc59RxTNE8SzXthdyT26l7WMuShI3AAnvnnitl9JsZNOWwaBTbKPlTJ4989c03TNLs9OtTHbRACQAuSc7+O9XyVudPm0t+JDnQ5GlHW+noc5oniu8vdXS2nijMcxIGwEFOP5cVBqfi3ULfWZI40RYoHKeWRndjgkmunstF06xu5Li3tkSXOAck7cjtk8U+fSbC4v47qW2iaYdyOvTGfWs/ZV+S3Nrc09vh/ac3Jpb8Tm/FtpqV/wDZJ4beV4dn+rQFirHnJA9v5VYi0S/u/CMdjMdk4fegc/dHYGuomGYiM46c/jT60+rxc3Jvcz+tSUIwS2dzl/DWgXWlPNNcBGMq7NgbgDPfirdn4asbLUzdRQMSpygZ8hD7DFbUIxEBnPvQoxK5z1A4q40IRSVtjOeIqSk5X3K09pFPdRSS2kLsh4dlBI/TippDK0TgJtODghqe4zJGc9Cfx4omG6FxnGQea0sjK7YBpNpJjGfTdTIzKI+Uy248Fvc1NTIhhCM5+Zv5mmIZmYSkhAQVHG7oeaWQyb49q/Lu5Oe3NOA/fsc/wgY/E0SDLR84w2frwaAGuZSrAIB8pwd3fFKrSdCg6dd3WnSDMTjOMqeaVfuj6UARRmXa+5OdxwN1GZfMzsH3em6nxDAbnOWJox+/zn+HGPxoAZIZdqbU53DI3U5mkxwg6dd3SlkGQvOMMDTm+6fpQBGhlCqCgPyjJ3d8URmTzJNy/Lu4Oe3FPjGIkGc4Uc0kYw0nOctn6cCgBmZjKCUAAU8bup4okMpj4TDbhwG9x/8AXp5H79Tn+EjH4iiUZQDOPmX+YoAC0m0Hyxn03UyMyrEgKbjgZJapqZCNsKDOcAc0AMUyiV/kypIwd3TigmUzL8mFGc/N1p6DEkhz1I/DihhmVDnoDxQAyQymNgEwexDU8NJtJMYz6bqJhmIjOPen0AQxmURDKZbPdqAZhIx2AggcbulPhGIgM568/jQoxM5z1A4/OgBrmXzI8L8uefm+tJKZTG4VMfKcHd3xT3GZIznGCfx4NEw3QSDOMqeaAANJk5QAdju60yIyhG3JzuOPm9zU1MiGEPOfmY/qaAGAzeYx2D7owN3uaJDL8hVOd3I3fWngfv2Of4QMfiaJBkx84w2f0NADZDLsIVBkjru6UoaQYGwEY5O6nSDMbDOMg0q8IPpQBHGZdzhl43HBz2pAZTLkpgbem7vT4xjfznLE0Y/f5z/DjH40AMcylBhMHcON1OLSbOIxn03UsoyF5x8wP6049DQBGhlESDYGO0Zy3tSKZRI/yZUtwd3QYFPiGIUGc4Uc0RjDSc5y2fpwKAGEy+evyfLtP8XfihzKVICY5GCG6808j9+hz0VuPyolGUxnHzD+YoAA0mDmMA9hupkZlEK5TLY5y1TUyEbYUGc4HWgBgMoZjsBzjjd04pXMvmx4X5ec/NTkGJJDnqR/KhhmWM56Z4oAZKZSpCpjjrup4Z9xBQAdjuomGYmGce9PoAhiMoj+ZOcnHzdetCmXe5KDoMDdT4hiMDOeT/OhR++c56gcfnQAxzLmMhO/I3exomMpiYInJU87ulPcZeM5xhvz4NEw3QSDOMqRn8KADdJuxsGPXdTYjKMhk43HB3e9S0yIYU85+Zj+tADFMvmsSmBt4G7vzQ5lIUhACG6butPA/fk5/hAx+JokGSnOMNmgBrtL5Rwg3Y6bqA0oRfkBOOfmp7jMbD2NCDCKPagCNDKHYFMqW67ugozL54+T5dv97vT4xjfznLE0Y/fg5/hIx+NADHMpwAmMMOQ3XmnbpCpzGAew3Usoyq84+YH9aeelAEMZlECZTLADOWoUygudgOW4G7pwKfCMQxjOcKOaEGHlOc5bP04FADGMvnIQny4Ofm+lEplIwqdxzup7D98hz0U8flRMMx4zjkfzoAAz7iCgx2O6mQmURDcnzAf3utTUyEbYVGc8daAGKZdzkoO2Buocy7oyE9cjdT1GJZDnrjihxmWM56Z49eKAGTGUxkKnJHXd0p5aTdgIMeu6iYboWGccdafQBDEZQMMnc87vehTL5rkpxgYG760+IYjxnPJ/nQB++c56qOPzoAYxmJQhAMNyN3UYNEhlMDbUwxBx83SnuMvEc4w2frwaJRmFxnGVPNACFpAoxGCe/wA1NQygkFMgseS3QZqYdKZEMK3OfmJ/WgBgMvnn5Pl2/wB7vQ5lLLhMAN13dRT8fvyc/wAIGPxokGdnOMMDQA0tKY2/dgHHHzUI0oiXKDdjpuqRxlGHtSIMRqM54FAEaGUBjsBJbpu6UEy+cpCZXac/N70+MYL85y2aCP34Of4SMfiKAGSmU4CpxuHO73p4Z9xBQY9d1Eoyo5x8yn9afQBDCZRCodPmCj+LqcUIZcyEpzngbvYf/Xp8I2wRjOcKBn14oQYeQ5zlh+HAoAYxl3oQg6HI3USmXy/lTnj+LpT2H75DnoDx+VEozGRnHI/nQAFn3YCDHrupkRlCgMn47qmpkI2xKM596AGIZfMkJTjjHzUMZSyHYBgnjd14p6jErnPXHFDjMkZz0J49eKAGSmUwNtTDY7NTy0mBiME9xuomG6FxnGR1p9AEMZlAAKZ5OSW6cmgGXz2+T5dox83fmnxDCYzn5j/M0Afv3OeqqMfiaAGMZTImEwobk7uowaVzKYn+QBsHGG9qdIMtHzjDZ+vBolGYXGcZU80AIGk2f6sbvTdTUMoU5QEljxu6VKPuimxDAbnPzE0AMJl84EJldv8AeokMpZQqcbhk7qfj9/nP8OMfjRIM7OcYYGgBC0h3DYAMcHdSRtL5YDIMgf3utSNyp+lJGMRqM5wBQBGhlAclOd3A3fSpFLEfMuD9c0kYwZOc5bP6Cn0AFFFFABRRRQAUUUUAFFFFACH7p+lY3g7/AJEjQP8AsG2//ota2T90/Sub0CGe4+Gelw2r7LiTR4VjbOMMYRjntzTWrBm9BPBLNOkUyO6t86qwJU4HX0qRsecnPODj9K8r8E+Htbs/FMc01tNbQwbhMz8BgR0H97nH869UbHnJxzg4/StK1NU5WTuRTm5K7VgmwYzuOBkfzp9MmwIzuGRkfzp9ZFjIcCJdpyKFx5smDzxmiHBiXaMCmRzRPcSxo6mRcbgDyKAHvjzI8nnJx+Vcr42hvZYrcwrI9sM+YEBOD2Jq1qfiy0sNT+zGB5fKOJHU42nHYd63TLHLaeap3Rum4EdwawnyVoummdMOfDyjUcTl7a11Z/BM0JEvnlv3aHh/L44/nx6VF4MstQguLl5UlhgaPbhwRl8jBAPpzXZ0yLBj+UYG4/zNJYdKUZX2G8U3GUbL3nc4DTdA1aLxBEXjZfKlDvNu4Iz1z3zzW3rXhRNS1L7Ul15RlIDqUzyB1H4CukGPPcY52rn9aJMbo8jndx+RpRwtNRcXqhzxlWUlNaO1jPudFsZ9Lis54y0cCYRs4YYHXIqzZadaWNn9mt4gsJyWB53Z65z1qeXHkvnkbTmnDoK3UIp3SOd1JtWb0KtlY2ln5htYI4yzHcVXGfarHHnk5+bb/WiLGGwP4j/OjjzyMfNt6/jTSS0RLbbuwkx8mT/EMU5sbGz0xTZcfJkfxDFObGxs9MUxCR48tMdMDFJHjMmD/Fz+QpY8eWmOmBikjxmTA/i5/IUABx568/NtP8xRLgoNxwNy/wAxQceeox820/zFEuAg3DI3L/MUAPpkOBBHtORtGKfTIcGCPaMDaMUACY8yTB5yM/kKGx5yZPODj9KEx5kmBzkZ/IUNjzkyOcHH6UAE2DEdxwOP50+mTYER3DI4/nT6AGQ4ES7TkULjzXweeM0Q4MS7RgULjzXwOcDNAA+PMjyecnH5UTYML7jgYOaHx5keRzk4/KibAhfcMjBzQA+mRYCHacjc38zT6ZFgodowNzfzNAAMee3PO0Z/M0SY3R5P8XH5GgY89hjnaM/maJMbo8j+Lj8jQAsmPKfPTac0q/dH0pJMeU+em05pV+6PpQA2LGGwf4jmjjz+vO3+tEWMNgfxHNHHn9Odv9aACXGFyf4hinN90/Smy4wuR/EMU5vun6UAJHjykx02jFJHjdJg/wAXP5Cljx5SY6bRikjxukwP4ufyFAAceepz8204/MUS4KDccDcv8xQceeox8204P4iiXAQbhkbl/mKAH0yHAhTacjAxT6ZDgwptGBgYoAEx5kmDzkZ/KhseamTzg4oTHmSYHORn8qGx5qZHODigAmwYjuOBT6ZNgRHcMin0AMhwIhtORz/Ohcec+DzgZ/WiHBiG0YHP86Fx5z4HOBn9aAB8eZHk85OPyNE2DBJuOBtOaHx5keRzk4/I0TYEEm4ZG05oAfTIsBDtORub+Zp9MiwUO0YG5v5mgAGPPbn5to/maJMZjyf4uPyNAx57DHzbR/M0SYzHkfxcfkaAFkx5b56YOaVcbFx0xSSY8t89MHNKuNi46YoAbHj58H+I5o48/rzt/rRHj58D+I5o48/GOdv9aACXGFyf4h/OnHoabLjC5H8Q/nTj0NADYseSmOm0Yojxukwed3P5CiLHkpjgbRiiPG6TA53c/kKAA489OedrY/MUS4KfMcDcP5ig489OOdrY/MUS4EfzDI3D+YoAfTIcCFNpyMcU+mQ4MKbRgY4oAEx5kmDzkZ/KhsebHk884oTHmSYHORn8qGx5seRzzigAmwYm3HAp9MmwIm3DIp9ADIcCMbTkZP8AOhcec/POBn9aIcGMbRgZP86Fx5z8c4Gf1oAHxvjyed3H5GibBgk3HA2nP5UPjfHkc7uPyNE2BBJuGRtOfyoAfTIsbTg/xN/On0yLG04GPmb+dAAMeeeedo/maJMZTJ/i4oGPPIxztH8zRJjKZH8XFACvjy2z0waExsXHTFD48ts9MGhMbFx0xQAkePnwf4jmjjzxz820/wA6I8fPgfxHNHHngY+baefxoAJcbVyf4h/OnnpTJcBVyM/MP5089KAGQ4EMe05G0Y/KhMb5cHndz+QohwYY9owNox+VCY3y4HO7n8hQANjz0552nH6UTYMfzHAyP50Njz0452nH6UTYEfzDIyP50APpkOBCu05GOKfTIcGFdowMcUACY82TB54zQ+PNjyeecflQmPNkwOeM0PjzY8jnnH5UAE2DC244GOafTJsCFtwyMc0+gBkWBH8pyMn+dC489+edoz+tEWDH8owMn+dC489+Odoz+tAA+N8WTzu4/I0S4ML7jgbTmh8b4sjndx+RomwIZNwyNpzQA8dKZFja2D/Ef508dKZFja2Bj5j/ADoAOPPPPO0fzokx8mT/ABDFHHnkY52j+dEmPkyP4higBz42NnpikTHlrjpgUr42NnpikTHlrjpgUAJHjL4P8XNBx54552n+Yojxl8D+Lmg488DHO0/zFABLjaMnjcv86fTJcbRkZ+Zf50+gBkOBBHtOV2jH5UJjfJg87hn8hRDgwRlRgbRj8qExvkwOdwz+QoAGx5yc84OP0omwYzuOBkfzobHnJxzg4/SibAjO4ZGR/OgB9MhwIl2nIp9MhwYl2jAoAFx5smDzxmh8eZHk85OPyoXHmyYHPGaHx5keRzk4/KgAmwYX3HAxzT6ZNgQvuGRjmn0AMiwI/lORuP8AM0DHnvz821c/maIcGP5Rgbm/majllSHz5SpPlxhmwOSBn/69AEkmN0eTzu4/I0S48l89NpzXnGj/ABDvtQ8RW1tc2kAtp5hGgQHchPAOc89eePyr0eXAhfPI2nNaVKUqbtIiE1NXQ4fdFNixhsH+I04fdH0rntXkuVv48jUBpoR97WC7nEm4Y3AZcjGcbR657VmWb/Hn5z823+tEuPkyf4hiuatfES29o+6U6hKts8kEoHltORKUEZXA2uCY1PA5boOlPm8RLdzaetrDIfO8mRSZAqlpEkZUb5SeNmTjkZH0oA6RvunPTFJHjy0x0wMVzWla7qd5pNgv2K3nv5bJLmYm4KIFYYByEzuYhuAMDB56Zjj8QahANVu2sC1naJHNIksoR4U8lWZVABDMOSckDpgmgDqI8Zkwf4ufyFPpkeMyYH8XP5Cn0AFFFFABRRRQAVjzeLPDltPJBP4g0qKaNijxveRqyMDgggngg9q2KKAMdZ79fFa20s8Rs3tJJI4kjIIYOgyxJOeG7Y71X168ni1Ozto5LwQvFLJIligaXIK7Scg4Xlvqce9bDWcbajHfEt5qRNCBnjaxUn8flFU30UmWOePUbyK5RWQzAozOjNu2kMpHB6cZH50AVrPW2j8O2N3dx3NzLMmH+zWzSMGHXcFHynjB9DkUeDZAfBOgja/Gm2/8J/55rWpZWUWn2S20JYqu4lnOWZiSzMfckkn61neDv+RI0D/sG2//AKLWgDUjlBMp2MMN/d5PApGmAkQ7H5B/h57VIhJeTI4DcfkKglvraK9jt3uIlkYH5C4Bzxjik2luNJvYpavr9npSxrOsjySchFUZx6nNVtV8Q7PD4v8ATwWMhChmX7nXOffj9aXxD4dXWHjnSYxzINh+XIK5/wDrmr+naRb2GlLYECaPnfvXhyfasH7aUpR2XRnSvYRhGW8r6owvDWtX+qRXdtM2XWMmOZUA2k5644rK0PR9Vg1+J3hliET5kcjgjuM9813NjaQWduEggSEHkhVxk+9TKT5jgjjjFSsM2o87u0U8UouXs42UjnNS8M2eoal9q3zx+YcyIE6nHb8q3cxw2exI2EaLtVdvQCpmJ8xMDjJz+VEpIiYqMnHFbxpxi24rc551ZzSjJ6IDKAoO1+f9k0yOYbB8jck9F96mpkRYp8wwcn+dWZjBKPtDLsb7o52/Wh5R5ka7G+9jJX2NPBbzmGPl2jH60OSGjwOC3P0waAGPKPKkOxuFPBXrxTllBTO1+O2006QkROV5O04pR0FAEUcw2M2x/vEYC0hmAm+4/wB3OQtSRkkNuH8Rx9KMt52MfLt/WgBksoDIu1jlgM7eKc0oww2v0/unFLIWG3aP4hn6U5s7TjrigCOKUMg+VxwP4TSRyg+YdjDDf3evFSJkxrnrgZpELEvkfxcfTFAEZmHmr8j/AHT/AA89RSyzBUU7GOWHG33FPJbzlGPl2n8+KJCwUbRk7h+WRQAGQAgbX59FNMilBjT5GGVB4XjpU1MiLGFCww20ZoAYkoMsq7GGD129eBSGYGVfkfoeq1IhbfJkcZGPyFDE+agA4wc0AMlmHkltjHnoV9xTzKAoO1+f9k0SlhGSoyeKfQBDHMPLU7G59FoEo8912NnjkLT4iTGCwwaFLea4I44xQAxpR5yLsbqeSvtRJKPKkOxuAeCvWnsTvTA4yc/lRKSInKjLY4oABKCpO1+P9k0yOYeVu2MPmPAX3NTUyMkodwwdx/maAI/OAmI2P90HIU+9LJKBJGu1jluu3p1p4J85hj5dox9eaHJDJgfxc/TBoAbJKAjjY33SeV46UqygjG1xgf3TTpMiNiOuDilH3Rn0oAiilDK52MMMf4aTzh5v3H+7/d561JGSQ24fxHH0oyfOxj5dv60AMlmAVDsY5Yfw055QB91zkf3TSyEgLtH8Qz9Kc33Tj0oAjjlGxBsYZUHheOlJHKDJIu1hhsZ29eBUkeTGpPXAzSISWfI/i4+mBQBH5wMwGx/uk5K/SlkmHlbtjH5hwV9xTyW85Rj5dpz9eKJCQg2jJ3D+YoADKAoO1+f9k0yOUeTGdjcgcBelTUyIkxIWGGxzQAxZR5zrsbqOQvtQZR56LsboedtPUne+RxkY/Khi3moAOOc0AMklHlt8jceq08SgqTtfj/ZNEpYRkqMmn0AQxSgwhtjDk8BfekEwErfI/QdFNSRFjGCwweaFLea4I4wMUAMklAliXYxyeu3pwaJpQI3GxjhSeV46U9y2+PA4yc/kaJSwhcqMttOKAASAkja/H+yaZDKGRjsYYY/w+5qamRlip3DB3H8smgCMTDzW+R/uj+HnqaWSUDyzsY5b+704NPBbzmGPl2j8+aHLApgfxc/TFADZZQsZ+Vzwf4TSrKMKNr9P7pxTnyI2x1wcUq52jPXFAEUUoLOuxhhj/DxQJgZsbH4XOStPjJO7I/iOPpRlvOxj5dv60AMkmGwHY/3hwV96cZQE3bX+m00shIC7R/EM/SnHoaAIklAijOxuVHAXpxQko8yRdjfexkL7CpIyTEhbg7RmkQktJkcBuPpgUAMMo+0Kuxs7Tzt+lEko2H5G4I6r708lvOUY+Xac/pRKWCfKMnI/nQACUEE7X4/2TTIpQYFbYwGOgWpqZESYlLDBxzQBGswDv8j9R0X2pXlAmjGxjnPO3pT1J8x8jjIx+VDE+YgA45zQAyaUBGGxjx/d4p4kBYja/H+yaJSwjYqMntT6AIYZQ0WdjDBPG360izAyP8j8AfwnPepIiTH8wwcn+dAJ81wR8uBj9aAGSTAGI7GOW/u8jg0TyhYXJRj8p42+1PckPHgcFufyNEpIhcqMttOPrQAeYA2Nr/8AfJxTIpQdw2MMMf4eOtTUyMkqdw53H8s0AMWUGZhsbhRyV+tI8wwh2P8Ae7rUgJ84jHy7R+fNDlgUwP4ufpQA15QIi21+nTaaBKBGp2vyOympHzsbHXHFC52LnrigCJJRvZdjfexkLxR5o+0BdjfdJztp8ZY78j+I4+lGW84DHy7f1oAZJKMAbG+8Oq+9O80FSdr8eqmlkLADaM/MPyzTz0oAhilBgRtjAYHAWkWYbpDsf73ZfYVJESYkLDDbRmhCS8mRwG4/IUAMaUCdBsY5B529OlE0wVcbGPI/h4608lvOUAfLg5/SiUsE+UZOR/OgAEgLFdr8d9pxTIZg0IOxhx021NTIixiUsMHHNADEmBeQ7H4x/DzQ8wDxnYxzn+HkU9SfMcEccYoYt5iADjnNADJpQsRJRjx/dp5kAbbtf/vk4olJETFRk44p9AEMMoZcbGHJ/h460LKDM42MMKOdvXrT4iSnzDByf50AnzmBHy4GP1oAjeYZjOx/vd1OehpZZQIHbYxGDwVp7lg0eBwW5+mDSykiJyoy204oAaZQFB2vz6KabHKORsb7xHC8damHSmRkkHcP4j+WaAGCUfaCuxvu5ztoeUblGxvvAcrT8nziMfLt/WiQsNmB/EM/SgBplBjY7X4HQqaElHlK2x+nTaakbOw464pEyUXPXHNAESTDDnY/3uy0rSgTqNjcqedvuKehJL5H8XH0oJPnAY+Xafz4oAZLKBgbGPzL/Dx1p4kBYrtf67TiiQkKNo53D8s0+gCGCYNAhCMPlHG32oSYEyHYww393k8CnxFjChYYbaM/WhCd8mRwDx+QoAjaYCRPkfkH+HkUs0oWPJRjnH8P0p5J81ABxg5/SiUkRnaMnI/nQAGQBtu1/rtOKZDKGQDYw/4DxU1MiJMYLDBoAYkoMsg2MMY529aRphvT5H6nqpz0qRSfMcEccYoYt5iYHGTn8qAGSygQM2xjx0K08ygAHa/PopolLCJioyccU+gCGOUbQNjcsei8dTQJR9oZdjfdBzt+tPiLFPmGDk/zo3ESvnhAoOT+OaAMS28N6Jp+qre2uneXcFzhvm2rkHOAeB+FbDyjyZDsfhTwV68Vk2/ijT7zUY7OFpAxfAdlwrcHpzn8xW1ISInK8nBxSVVVNU7lSpOno1YaJRsDbX+m01l3Gni4vPt9vdXVncbfJdoUVhIgJIDBlPQlsHg8mtcdBWRc6nfpqq6fZ2VvM5iaYtPctEAAwUAYRs9famSQDw/ZLLZh3upJLeY3RlON0zltx34XGNwVsDABRewxTotCsrJ08v7QT9vN7zggOVK7en3QDgD2HNSQeIIMSfbVNrNFKbeSHJkPmYDYXaMsCpDcDODyBg1JceIdLhWNjfREMizfJlv3Zz85x0X5Tz0GOaAKsWgJaQwR2l/fQyW8P2dZQiEtEPuqcpg7exxnk9cmpIdDs/7JvrENdeVewCKQscsB5QjyCRycDqc81ck1nT0uRbG6TzWKqMZK7mGVBboCcjAJycjHWi01exupxbRXKNOARt5wxXhgD0bB4OM470AWY5QRIdjDDf3ee1SKwYZAI+oxSISS+R/Fx9MCn0AFFFFABRRRQAUUUUAFFFFACH7p+lYHhm4Fp8PNGuGUsItKgcgd8RKa3z90/SsTwgqv4F0FHUMraZbgg9CPKWk9tBq19TN0TxZcX+rC1ngjVJidpTOVIHf16Vn6p4Z1S412Z40DxzSF1kLgBQT378V1VhoOnafdyXFvABJnCksTtBHOM1osP3yHPQHj8q5Vh5Thy1Xd3Ox4qNOpzUFZW6jWVlgC7tzDAJPepaZKMxkZxyP50+us4hkWREu7rQufNfPTjFEQxEoJz70KP3rnPXHHpQANnzI8dMnP5US5MTbeuOKGGZIznoTx68USjMTAHHHWgB9MiyE+brk/zp9MiGEwTnk/zNAAM+c/ptGP1ofO6PHTdz+RoA/fOc8bRx+dDjLR84w358GgBZc+U+Ou04pR0FJKMxOM4yp5pR0FADY84bP940c+dntt/rRGMBuc/MaMfv8AOeNvT8aACTPyY/vDNObO0464psgzs5x8wpzcqfpQAkefLXPXAzSR5y+f73H5CljGI1Gc8DmkjGC/Oct+XAoADnzlPbaf5iiXJUY67l/mKCP36nPG08fiKJRlRg4+Zf5igB9MhyIU3ddozT6ZCMQoCc4Uc+tAAmd8memRj8hQ2fNTHTBz+lCDDyHOckfhwKGH71DnoDx+VABLkxnb14/nT6ZKMxkA46c/jT6AGRZEY3daFz5r56cYoiGIgCc+9Cj965z1xxQAPnzI8dMnP5US5ML7euDihxmSM56E/jxRMMwuAcZB5oAfTIs7Dnrub+Zp9MiGEPOfmb+ZoABnzm9Nox+ZofO6PH97n8jQB+/Y5/hHH4mhxlo+cYb8+DQAsmTE+OuDilX7oz6UkgzE4zjIPNKv3R9KAGx5w2f7xxRz52e23+tEYwG5z8xox++zn+Hp+NABJnC4/vDNOb7p+lNkGQvOPmFOb7p+lACR58pM9cDNImd0mf73H5CljGIkGc4A5pIxhpOc5b8uBQAHPnL6bT/MUS52DHXcv8xQR+/U542nj8RRKMoOcfMv8xQA+mRZEKbuuBmn0yEYhQE5wBzQAJnzJM9MjH5UNnzUx05zQgxJIc9SPw4oYfvUOemeKACXJiO3rT6ZKMxEA496fQAyLIjG7rz/ADoXPmvnpgYoiGIwCc9efxoUfvXOeoHH50AD53x46ZOfyNE2TC+3rtOKHGXjOcYJ/Hg0TDMLgHGVPPpQA+mRZCnPXc38zT6ZEMKcnPzN/M0AAz5zHttH8zRJnKY/vc/kaAP37HPG0cfiaJBkpzjDfnwaAFkz5bY64OKVc7RnrikkGY2GccHmlXhR9KAGx5+bP944o58722/1ojGN3OfmNGP32c8ben40AEmcLj+8KcehpsgyF5x8wpx6GgBIs+Umeu0ZpEzukz03cfkKWIYiQZzhRzSIMNJznLflwKAA585fTac/pRLkp8vXI/nQR++Q5/hPH5USjKYBxyP5igB9MiyIl3dcc0+mQjEKAnPHWgAXPmSZ6ZGPyobPmpjpzmhRiSQ56kcenFDD96hz0zx60AEuTE23rT6ZKMxMAce9PoAZFkRjd1yf50Lnzn9MDH60RDEYBOeT/OhR++c56gcfnQAPnfHjpu5/I0S5ML7eu04ocZeM5xhvz4NEwzDIAcZU8+nFAD6ZFnac/wB4/wA6fTIhhTzn5j/OgAGfOPptH8zRJnKY/vc0Afvyc/wjj8TRIMlOcYagBXzsbHXBpUzsXPXFI/KMM44NKnCKPagBsefnz/eOKOfOHptP86IxjfznLGjH78HPG08fjQAS5Krj+8P5089KZKMqvOPmH86eelADIsiFN3XaM0JnfJnpu4/IURDEKAnOFHPrQgw8nOct+XAoADnzk9MHP6US5Mfy9cj+dBH75Dnop4/KiUZjwDjkfzoAfTIgREu7rjmn0yIYiUE5460AC58x89OMUNnzEx05zQoxI5z1xx6UMMyRnPTPHrQAS5MTbeuKfTJRmJgDjjrT6AGRZCfN1yf50DPnP6bRj9aIhiPBOeT/ADoA/fOc/wAI4/OgAfO+PHTdz+RolyYX29dpxQ4y8fOMN+fBolGYXAOMqeaAHjpTI84bP94/zp46UyMYDc5+Y/zoAOfOPpt/rRJn5Mf3hmjH78nP8PT8aJBnZzjDCgBz52NjrikTPlrnrgUr8o30pEGI1Gc8CgBI85fP97ig584em0/zFEYwX5zlqCP3wOf4Tx+IoAJclRj+8P50+mSjKjnHzD+dPoAZDkQxhuu0Z/KhM75M9N3H5CiEYhjBOcKOfXihBh5Oc5b8uBQANnzk9MHP6US5MZ29cj+dDD98hz0B4/KiUZjIBxyP50APpkWREu7rT6ZEMRKM596ABc+a+enGKGB8yPHTJz+VCj965z1xxQ4zJGc9CePXigAlyYn29ccU+mTDMLgHHHWn0AMiyE+bruP8zTWj8xpUflGQKR+eadEMJgnPzH+ZoA/fMc9VHH50ActZeDRZarDctdeZFHIGVduDxyM/jiuqkyYnx12nFI4y0fOMN+fBpZRmJxnGVPNZ06UaatFGtWtOq7zdxR0FYdzBqMOvLf21olzH9neEgzBCDvBHY+lbg6CmxjAbnPzGtDI5KTw/qP8Aao1aUb7iVpGmgtbkx7AyxKu18DdgQrnOM7j6AGzpWhXVlJdSSJEpuLdEwJWkIYyzuwLNyf8AWrz3OcADArpMfv8AOf4en40SDO3nHzCgDkYdC1S2W3jiiWOUfZt8yT5icIqBt8bZBb5CAygHG3kYqXRdAvLKTS4Zo3KWGT5z3jOr/IyAqnYkNzngcgZ4I6tuVP0pIxiNRnPA5oASPOXz/e4/IU+mRjBfnOW/oKfQAUUUUAFFFFABRRRQAUUUUAB5BFczpmj+JNK0mz06HV9JaK1gSBGfTZCxVVCjOJxzxXTUyYyLDIYlDSBSUUnAJxwKAOZsm8V3F7qUJv8ASYxbzrGHOmy4kzEjbh+//wBrHfp+FE7eK49Zs7QX+kss0UrmUabLhNpTg/v++717U7S7vVZNWhS5uLuRGyWjez8pQpjB3FtvZ9y7c56HoOZdQ1S8ttXaCzuI2JK7474pHEowOEYYfJ9drjPHFAEGrN4rstOadb/SZyHjXYumygnc6rn/AF56Zz+FXvs3in/oK6P/AOCyX/4/Va81i5e7gt3+32ICv5zW9k8/zggKA+wqVI3HOPTODxVu9u5YfDn2iC6kaYMmySeFlZz5gG0oqZ5+7gLnnt1oAz9IbxXfaVb3LX+kwGRSTG2mykryf+m4otm8VzapfWxv9JQQeXiQ6bLh9wJ4/f8Ab8a19I1C6v1lNza+QUxj5ZFznP8AfRf0zVC2u7ltWtUivtRuImdhMk9h5aKu1iDv8te4AxnnNAFe7bxXDqWnwC/0lxOzgyDTZcR4Qnn9/wB8Y7Uaw3iux0e7ulv9JnaKMsIl02UF8dh+/P8AKnSavJcX1yDeanaQoyiIRaXIQy7RkktGed24Y44A9a0dZupLd7ZTdyWdq+7zbpIwxUjG1fmBCg5PJHbHUigCL7N4p/6Cuj/+CyX/AOP1R0lvFd7YmZr/AEmE+dMmxtNlJ+WRlz/rx1xn8aui/vR4bluQ0jyq5VJfs5LtHvxvEYGS23JAA5IzjBxVjSJzMZf9NvbnAHFzaGHb16fIuf1oAyom8Vvrl3Z/b9JVYreGUTHTZcOWaQbR+/6jYD1/iHTuX7eK7a606MX+kyC4uTEWGmy/ux5Ujbj+/wCny47feFLbahqsmpQxyySIRIEeExoFYksX567VXbtORk5zntc1m4kimZYtR1C3fy8qsFgZ0zzzkRnP0zQBV1T/AISqz0i9ul1DSJmhgeQRLpsoL4UnA/fnrjHSrEUHil4kb+1NHGVBx/ZkvH/kepL+8uo9OsHllksllx9pmVA7Q/ITjoVHzYG4jH5jELXmoP4evZ7e+jVoS/k3lzbE+YgXO7YuOc5GQMHGQDmgCtpjeK7uK4Zr/SYfLuZYgG02U7grEbv9eOD1oDeKzrjWf2/SdothL539my4zuI248/rxnrVzRtRvLy8AurhQDHJthFmYslZNjEnzH6EdOPvD8KT3usf2ooea5SJroIsMdp8pUS4IL7TgbCjZzz8wGCOABdSbxXa/ZNt/pMvm3KRHbpso2A5+Y/vzwKs3MXimK0mkGp6O5RGbaNNlycDp/r6XWrnUor4LbzTwWixozPDa+cTksrdj9392cdcFjzjhbi8vYtA0yV2uY5JfLW5kS2MsqZQknYFODuwD8uBk8CgCHT18VXOm2s51HSIjLCjmNtNlJXIBwf3/AGqLT28VXMt+pv8ASYvIuTEC2myneNincP3/AE5x36VqWs87aRdS201zeXChzF9qt/JJYLwuNq8Z7+55qjpVzqT615Vxc3c0PlscSWflLghCrZ2jnll25zkHjigCF28VrrkFn9v0kq9tJKZv7NlwpVkG3Hn9Tuz17Uaq3iuztI5Fv9JmLXMEW1dNlBAeVULf688Ddn8O3Wp1vrh9TljnvNQgZLgosMWns0RXPy/vDGc5GMnIxk9MU7U7zVbbVzHb3ULQtEGWBdPeZ05xlmDqOe3ToeOCaAJfs3in/oK6P/4LJf8A4/VHRm8V32iWF21/pMDT26SGJtNlJQlQdp/fjkfQVpz3E0OgLPcXNykwALSRQKr5J6bWyFHbk8Dqe9QaXqt9MAbwWbQsxVZoJgXTjIDqCQCenyseccegBTsm8Vz3+owm/wBJjFvMqBzpsuJMxo2R+/8A9rHfpRcN4rj1eytRf6SyzRysZRpsuE27eD+/759e1SaVrE1xdCI3sUlkykLJctHHcMx6YVTg/Qqp+tU5dV1fTrq5ga6a8SIlvMWyXCqqpuyTKvTcCTgjk+hAALGrt4rstNkuFv8ASZyrIPLXTZQTlgP+e56Zz+FXvs3in/oK6P8A+CyX/wCP0as+oC8htrG4l82UPKBmNVVV2DGWRieTnp3OT0qO9k1y3sLXy4rieZgUmMDxFlJdcN8ygHC7uw9/UAFXSG8V32lw3DX+kwF937ttNlJGGI/57j0ot28Vy6tfWxv9JRYVjIkOmy4fcD0/f9sfrVn7Rf22mXUt5Ne2+GjCy3AgGwFgCRsDDAB53D8uTVHQ9Zmv9RtgNZtrmGUFhGt1CzsNpI+QRhvfGRigCW8bxXBqGnwC/wBJcXEjqXGmy4jwjNk/v++MdutGsN4rsdGvbtb/AEmdoYWcRLpsoL4HQfvz/KpNa1W+sNRYW8rQxhQzS30YFmo7/vFG4N9Tir+sXUsBtgbp7O2fd5t1GgcqQBtHIIUHn5iMcY6kUARfZvFP/QV0f/wWS/8Ax+qOlN4rvbJ5Wv8ASYSLiePY2mykkJK6Bv8AXjg7c/j361p2dzPLosss0842lxHcLB+8dAeH2bTz+GD1Awai0i5uZdQmQ3V7c23lAhrm08jY2egyi7sj06Y9xQBRjbxW+uXNn9v0kLHbQyib+zZcMWaQbf8AX9RsB6/xD8S/bxXbXGnoL/SZRcXPlFl02UeWPLdtx/f9Plx261Lb6jdvexA3kz3TTlJdPMACRx7iCc7dwwOdxYhuw5GJdb1G5sbrNrcbWEYLrchFtlBOAzOSrA54+Utjj5aAIdSHiq00u7uV1HSJTFC8gjXTZQXwpOB+/PWpoIfFMlvG51TR1LIDtOmy8cdP9fVrVrq4gtbUmc2qSOBcXESb/KG0njIIA3ADcRjnpzxHa3d7Jo19LAzXUke8Wkske0zgKCCQMA/NkZGAcZHWgDP01vFd2l0Wv9Ji8u5kiAbTZTuCnG4fvxwaN3iv+3Psf2/Sdv2bzfO/s2XGd2Nv+v69+tWNBvr26u2SWS8lhVZQ73Vp5JBEn7vHyrklScjn7o6Z5S2vp5dSdLi81CJ1umjECae3lFQ5C/OUOQVwS27HJ6UAQak3iu0S1K3+ky+bcxxELpso2hjjcf354FWp4fFMdvI41TR2KoTtGmy88dP9fTL/AFWRtWe3W41G1gjjGHg055N77iGG4xsMABcY65PJq5qF1NDpdq8dxMkbsgmujDl40Kk7yhHBJwDlcLkkjigChpo8VXel2ly2o6REZYUkMbabKSmVBwf346VHYN4rubjUEN/pMQt7nygzabKfMHlo24fv+nzY79KtQ6oIdH1G5uL55LWEkQ3joEZxtBzwuDhiQCFx7HHKaRrNxfSJaSy2byGEky2ruxBGOSGQAde5oArSN4rTXLaz+36SVktppTN/ZsuFKtGNv+v6neT1/hP4Gqt4rsrJJVv9JmJuII9i6bKCA8qIW/154G7P4dutSQ/21NeOILuaW3im8t2laFCcHn5RGTj05BI571c1K9maeOPTJpZLoBv3KIjR8HBLliCMHjhgfY0AN+zeKf8AoK6P/wCCyX/4/VHR28V32jWV21/pMDTQq5ibTZSUyM4P78fyq9cX2qwaY8l1bJDLE0bSyWzeapTPzldwByMHgjgHPPSjQbu8uYZpLufzE2RvvIUKjsCzopXqigrhuc5PJoAo2beK59Q1CA3+koLeRFDnTZcSZRWyP3/bOO/Si4bxXFq1jbC/0llmWQmQabLhNoHX9/3z+lLofiG5u57exnVJGKlTcLHMm4hNwPzxqpJBB4PfIGOle+1K/s7m5iTUbmU2255A3kr8iIruwHln++gA4yT2HNAE+rt4rstLmuFv9JnKbf3a6bKCcsB/z3PrV77N4p/6Cuj/APgsl/8Aj9O1q7nt7q0jWa6gt5FkLy21oZ23DbtBwrBQQW5I7DmpmuAuh+abu8JPAm8gLMSWwBsKYznA5X/GgDJ0hvFd7psdw1/pMBZnHltpspIwxH/PcdcZ/Gi3bxVJq97am/0lVhjiYSnTZcPu3cD9/wBseverdjeaxLcG2uo4VGVO9HUTxKckGSMblw20jIbv0Halp2r3dxqVqxuppLWUgMrNF8pdXZFwqZJCqCfm43DrzQA68bxXBf6dCL/SZBcTMhcabLiPEbNk/v8A/Zx260ay3iux0S+u1v8ASZ2gt3kES6bKC+FJ2j9+ev0NSa3ql9YagRbStDHsDNLexgWajv8AvFG5W+pxWnqkxjtom+13VvuP3rW384tx6bGwPegCt9m8U/8AQV0f/wAFkv8A8fqjpTeK7y0kla/0mErczxbW02UkhJWQN/rxwdufx79auQ3l8PD9zL5sslwrP5Mk8Iid1B+95ZC8gZwD1xnoaNFvb26vZDNLI8LIz7HRV8r58RgYGSSnLZzg4HHSgCmjeK21yez+36SFS2jlE39my4Yszjbjz+o25696NQbxVbTWCi/0mXz7kRErpso2DYx3H9/04x261JDqN218gN7K10bkpJp5gARI9xG7O3cML824thugHIFTanezx6s8DXV7bQCFHjNrYtMHJLBstsYAjA4469+wBFqC+KrbTbqcajpEpihdxGumygtgE4H7/vUltF4pltYZDqejoXRW2nTZcjI6f6+rWqXUsFlaMtzLDFI4Wa6EQLxrtJ3YIwuSACSMDPT0hivLyTQNTliuHleJZBaXLxhTIAgIYjAU4YkZwAcZoApaa3iu6+17r/SYvKuXiG7TZTvAx8w/fjg0FvFY1xbP7fpO02xl87+zZcZ3Abf9f15z1q5p2q3FzrMdk8sEyJbyO01uyskh3IFOMkqcFuOnPBPaKC+uJdSdLi81CFlumjECae3lFQ2F+cocgrgk7scnpigCDU28V2kVuy3+kzeZcxRELpso2hmA3f688DrVuWDxSkTt/amjnCk4/syXn/yPTddvr21voVjku4rc7PmtrXzixLEPu+VsYGCOBkk9cYp93f3kGh6fLM8kM8zIkxig8yQZUk7UAOTkDIwcDd6UAVtL/wCEqvNIsrptQ0iFpoEkMTabKSmVBwf346Zx0plg3iu5utRjN/pMYt7kRBjpsv7weVG24fv+nzY7/dNadrdSLpV3Ot1cTPGrMr31uYMELnkFF+X3x61X0i9edlkkvNUlJi3tFPpzRKPofLHPtuP40AVJW8VprlpZi/0lllt5pTMNNlwhRohtP7/qd5PX+E9exqzeK7KxEy3+kzHzoU2LpsoPzSKuf9eemc/h2pZtbu31EQobuLT3O9rk2EoePBA8vlcAHk7znAyMA4atTV5zE0QF7e22Qf8Aj2tDNnp1+RsfpQBB9m8U/wDQV0f/AMFkv/x+qOjt4rvtHtLpr/SYGljDGJtNlJTPY/vx/Kp5J9ROh21z9ruluC/lBRFGhlLPtVmDr8mRg4xkZxgmrlhHrC2lwLu4RZzjynl2yqvrkKqfzoAzLRvFc2pahAb/AElBAyASHTZcSZQHj9/2zjvRct4ri1Sxthf6S4n8zMg02XCbQDz+/wC/4Uuj6tqFxcWEV1fxSh4wXMVg0YdzGzBSzOcZAL/dHAHTOKJLzXxLcIZwEkIMLJpTsY1KL/00xkHPXP8AQACau3iux0q4uVv9JnMYBEa6bKC3I/6bmr32bxT/ANBXR/8AwWS//H6dr0+ow+SLFpUTY7u8UHmsSu0hehxld+OOoA74MC3Wof8ACLNMJ7g3PmkCdrfD+X5uN/l7egTnGOg/GgCtpLeK73Tlna/0mAl5F2NpspI2uy5/1464z+NEDeK5NZvLU3+kqsMUTiU6bLh9xfgfv+23171Emp6kl4xtb+XULYkKrmy3DJVycbNudpCd8HdjrzVrS7vW5ZbSK9mPGPOK6a8e44P8ZcgDP+z+VAEV63iu3vdNhF/pMguJ2jLjTZcR4idtx/f/AOzjt1/Cl1hvFVjol/eLf6TO0FtJKIl02UGQqpO0fvzycY6GpdT1m807U51gWK5i+RREfM3K+1mIG1CD8q7sZyMZ7gVZ1e9kSKxkS/8AsVtK2ZbpVVlA25AJYYAP948cY7igBotvFOP+Qro//gsl/wDj9UtLbxXeW00jX+kwlLmaLa2mynISRl3f68cHGfx70qz6qNFvbyLWQ+x2EM09oGR0HdVQAk5OAeQcZA5FXdPm1O9klW4uHiAjIUrYGHBJHOXd8kY6e5zmgCijeK21yWz+36SFS2SXzv7NlwSWYbcef1G3PXvRqLeK7V7ILf6TL51ysRK6bKNgKsdx/f8ATj9aijv9cikiuf39xaNcGJcywrv5IBwIwRkjjnuM461Zlu9Tv5Yv7LuJyjW6XBLmJBtkLFRyjHIAx6cDqc0AOvU8VW9hcTDUtIkMcTOEGmy5bAJx/r6Wzj8VT2UEp1LSELxqxQ6bLlcjOP8AX1b1W6v7HTbWWFGklDqsyqFLMdpwB0HzPsXOOhPTqIrO51FNF1GQytd3EBkEEjxAeYyoM/KoGR5m8DuQB16kApac3iu6a8DX+kxeTctEN2myneAB8w/f9Of0oZvFY1yOz+36SVa2aXzv7NlwCGUbcef15z17VoaPcm4nOb/UbjMedlzYmBRyOcmNefbNZlxe6h9qkRdWniuPtZUWgtVbbDvxuztyRt+bPTt1oAfqjeK7OCB1v9Jm33MMWF02UbQzhd3+vPAzn8KuPb+KQjH+1dHOB0/syX/4/VS+1XU4rOwnRbiO4lhDSFrf/RlPrJxvT6Z471du9WiTRbeaXUI0nlRHVrJkcSE/3d+QVPqccdxQBS0k+Kr3RrG7a/0mBp7eOQxNpspKFlB2n9+ORnHQUli3iu4vNTiN/pMYtrlYgx02XEgMUb7h+/6fPt7/AHT9Bat9ZuE0ee6vgkgVioayHmMq7c5dVLAHPoWHQ+uE0HWL2+8mK6iQ5iyZVjmXccdfmjC/rQBWmbxXHrVnaC/0lllgmkMo02XCbTGMH9/33ev8Jo1ZvFdlp5nW/wBJmPmxJsXTZQfmkVc/689M5/Cpm1CaTVbmJ72/iWKcRqltYGWMjAPL7G55OeRj9av6vceS0Ki+vLYkMcW1r527p1+Rsfp1oAg+zeKf+gro/wD4LJf/AI/VHR28VX2k21y1/pMBkTcY202Ulfb/AF4/lV5bnUT4ehk3TfaGkCvK1v8AvNm/G/y8cErg4xxnkHFQ6Nf3qQXMuoveT+WkW7/RCpWQ5DqqquWwcHcMjBHoSQCvat4rm1O/tzf6SggMeJDpsuJNy54/f9unei6bxXDqdhbi/wBJcTmQGQabLiPC55/f9+napdK1W9u9WFrcvPHHED5ZNm6faRj7zllAXHTAxkjOcHbRqes3+lX92fI860G1wzRTHy/lGfmSNht4z145yewAItYbxXY6Rc3S3+kztGm4RLpsoLew/fn+VXvs3in/AKCuj/8Agsl/+P07W7maC5tAL97G1ZZDLOsSuNw27VJIIXOWOfbHeqOnT6zc29yGvHYpFujllhEIYlmAJJQ4+VVbGMjdznigBukt4rvbATNf6TCfNlTY2myk/LIy5/1464z+NELeK31q7tDf6SqxQQyCU6bLh9xkGB+/7bPX+IdO8mk6wbgywG+uHnf5IZJoEeDfg/dkiAVunQsDx0FN03UdUkltEvL6JoXfb58ensiTHnhXLnAOOCVAPbqKAG3zeK7e80yIX+kyC5uTEWGmy4jAikfcf3/T5Nvb7w+hdqx8VWWjX10t/pMzQW8kgiXTZQXKqTtH788nGOlWNS1K9068upmkia0VBthYqr9OXQk/Ng9VP4HjBNR1DULbRLK6g+Z2iBkbC4LlPl3Z4ClsZPb260AOS38Usin+1dHGQDj+zJf/AI/VPS28V3cM7tf6TDsuZYgG02U7grkbv9eODjP41diuNQ/4R++lSaaeRN/2adol3uuB82xRg87sADkAeuao2+oX/wDaMX2bU5dRty0aODagKCzYYblA5C5b224P3hQAqt4rOuPZ/b9J2rbLL539my4JLMNv+v68Z696NRbxXamzC3+ky+dcpEdumyjYCD8x/f8AQYqe0vribUGW4vNQjdbl08hdPYRbQ5C/OUOQRg7t3ft0p2t3WpQ34WCea3tFjRmeK184nJYN2PQ+Xx1wWPbgAS7j8VQWU8o1LSHKRswQabLlsDOP9fTbFPFVxp9tOdS0iMyRK5Q6bLlcgHH+vp08mpnTdMeO6uY7y5jjj8krGoMmwsxcshK8Kc4HbpUtnfXEOn3Ud/JdNdRS+UzRRecVJQMCuxBkYIOSo569qAKWnt4rupL5Wv8ASYvJuWiBbTZTvAVTuH7/AKc4/Ch28VrrkNn9v0kq9tJL539my4BDINv+v6ndnr2qxo9/qGpXM63ZntmRGSNFtHRG6fvdzr19E7c53dap/bb6G4aJ9bla8W6CLZNBHvkj3gZ4XOCvO4cDPPQ0ASao3iuztopFv9JmL3MMW1dNlGA8iru/154Gc/h2q99m8U/9BXR//BZL/wDH6TVryeHUY4PtF5bW5i3B7WzM5Zs4IY7GC4GMcc5PpU93cXCaPDLby3LhmUSTiDMqp3YR7evtt45OOMUAZejN4rv9D0+8a/0mBp7aOUwvpspMZZQdp/fjkZx0FFk3iu4vdShN/pMYt51jDnTZcSZiRsj9/wD7WO/Sreh399PpjTXJkZzFGUNzF5LGXZl1wQOM98dz6VV0q81SXVIFuLi6kjf5ijWfloEMYO4tt7PuXbnPQ9OoAk7eK49Zs7UX+kss0UrmUabLhNpTg/v++717Uas3iuy0551v9JnIeNdi6bKCcuoz/rz0zn8KNQ1HVYdanhia7H7t/s8Udpvidh5ZTL7T1JkB+YYHpgE3teuNRhkgWzeWOLazyPFB5rcMuRjBx8pcjjkgD2IAfZvFP/QV0f8A8Fkv/wAfqjpDeK77SoLlr/SYC4JMbabKSvJH/PcVaF9ep4V+1CSd5xLtMv2YtJs87aXEYGc7OQMccZz3sWF6qW1xNJdahdqm3IlsWRhn+6ojUt78HFAGbbN4rl1W+tjf6SggEeJDpsuH3Anj9/2x70XbeKodR0+AX+kuJ3dS402XEeEJyf3/AHxjtU2l6nfXeqi3uGuEgiyI3+xSJ9p4PLsygJj0GMkZBwdtO1u7uYZLj7Jfais6pmOCKw8xGbHA3eWevru4z7UAV9YbxXY6Pd3S3+kztFEXES6bKC+Ow/fn+VXvs3in/oK6P/4LJf8A4/UmtXc9vNaIk1zBBJv8yW2tTO4YY2jAVsA/NyR2A71ItwF0KSd7y8KqrEztb7JRg9dhQDj3XFAGTpLeK72xMzX+kwkTzR7G02Un5ZGXP+vHXGfx70RN4rfXLuz+36SqxW0MomOmy4cu0o2j9/1GwHr/ABDp3uaZf6tJOUnggltwyruEiieMEZBdFLLzwchhwelVk1bUBqb29nJFcxh2BjvnWGQnnhNuW/76Qf7xoAZft4rtrnToxf6TILi5MRZdNlHljy3bcf3/AE+XHbrT9U/4Sqz0m9uV1DSJjDA8gjXTZQXwpOB+/PXp0qK78QxS3U//ABNpLFIYldESBZCzc7g2VOcEAbVIPvyMX9TutVOkWklopiuZUy/lx+ZtbyyQvoAWwNx/rkADYoPFLwo39qaOu5QcHTJeP/I9VNMbxXdx3DNf6TD5dzLEA2myncFYjd/rxwetTRXV2dDvbuS/vVWCR5FlNskbyRhAcbHUY5yMnuCc4NGkajdpO/8Aadw5Xy5m5ZGVfKk2MchFPdSPqfTkAhDeK/7cNn9v0naLYS+d/ZsuM7iNv+v69+tGpN4rtRabb/SZfNuUiO3TZRsB/iP788CmQ6/590kkeqFpnvfIWyEI8sx+Zt3Z27s7PmzuxnjHaret3N5p0kch1CRLdsgLG0IkZiSQFV1+bAwOGzx0JoAW5i8UxWs0g1PR3KIW2jTZecDp/r6j09fFV1ptrcHUdIiMsKOY202UlcgHB/f9ql1Oa7S0sLqLU7m1gfYs8klunyKVJ3urLlSThT0AzyOKZBPf3OkahJbajNdNC7NbTxxRjzgEB2j5cEbsjcB/hQBBp7eK7ma/Q3+kxeRcmIFtNlPmDYp3D9/0+bHfpWxYRazHMx1G9sJ4tvyrb2jxMG9SWkbI68Y/Gs7SLyabU4o01k6lEYGMwEKIInBXGcDKk5Pynn8q6KgAooooAKKKKACiiigAooooAKZLDFOoWWNJACGAdQcEdDT6KAMz/hHNE/h0ixQ9mSBVYe4IGQfcVB/ZV5FqN1PCdPaKeUS/vbctIPlAPzbuenHHFbVFAGTrWkT6q0HkXbWRjD5uIciUZA+UHpg9856DGDgiG8064XwwtnFAPNjaMmOzYIWCyBiVLkbWIBOScgnqTzW5RQBm6QkiLLvt9QhyRj7ZOshPX7u12x+lZum+HJ7S8s7iaS3eS3O0yqp3FAhXHPdmdnY56469R0lFAGBqOgTzjVJbS7ENzeArhgTGy+WqbWH1BIYcjPcZBf4i027v7VBbRxTbEceVLIUG4gbXHByVwcA/3s5yBW5RQBzV/p/keGWW8DR+XcCVUgu3jSIGUEAuMHYucnjgA4xgUzwxKX1G7WQJ5ojAOLuW4ZdrupBMhO3kcYHP4Vu6hbQTxBri4mgjjyS0c7RD8SCP1qhoK2arI8U+64lJMiG6MxwCQDyT2xQBk6C9qLmFPtmiCYSuPIEI+0g5PBffy3q23nk1sXWjzPf3N/a3Pk3MiKi5BKMAD8rr3HPBHI7dSDsUUAYd7pF7LpFja21wiS26BCxZgAdhXeMdSpOQDwcduosWGkJb2F1ZSxRLbTO22CNjtRCAuAeDzgsfdj9TqUUAZtlodrYmQo9zIzh13SzsxUM25tpzxk8568DngVHbeHLC127WvHCymYLLezOu7fvyVLYODzyP1rWooAzpNA0aaV5ZdJsHkdizO1shLE9STjk1neJLSKO309oY3V4pfLgRLuS3jU+W4AOz1+6Mc5IHseirK1eG1ZHllu5YpUj+VFvGhBPOMgMByc8+3tQBkaSbi80PUY7DyHmmk2+Z9tlbAaFMN5jB23DI4wMfqdHR9MaymDvomkWbeXtM1m+WJ445jXj8T0FWtFitYrAC1l8wMdz/AL8y7XIGRkk1o0Ac3ceHJ7i9eZ5LdgJjJE7Kd6FmVi/+8oUIuMYGfpWjPokc96139svo5SCv7ucqAOuMen/1606KAMPxBGINGgBlXEU8R865Qyhfm6soxu/MYzntU+jSR3EEn+kWNyA45trcxAH3BZsmtWigCs+nWUkbI9pAysMEGMcioLrQ9PvHd5oXLSNufZK6buNpB2kZBAAI6HAznArQooAx9a0htSurWYW9jcLCrqYr2PevzbcEDsflPPoTV+wt/stlFD5NvDtB/d267UHPYVZooAKRVVEVEUKqjAUDAApaKAOS1qC5l1W4dbR3aMB4pDamcBVTjbnKhmkIBAAIVSeM5rU1ezurw2Ti1S5RA3nW7XBjXJAw2QDuxgjB4+YnsK2aKAMo2EkmgyWccEdo7A4iEhZeucFgM4PQ49apaNoUtv8AaFvLWzghkDr5NtIWVw0jOM/KuNoOBgevsK6KigChDomnW8yzRWqrIhyrAnj9ar3miNc6n9tjuERgoIV4d43hWVSeRlRvJ2+uDkc516KAMq60otpNrYQRQS+QFRJLgnMYVcBxtwS30K9TyKpz+HZ59Mms7m8W/V4n8v7XEreVKRhShwWwMn7xZunNdDRQBgaRo62epi6h0i00xFtzCywlSZTlSDwBwMHk8nd0GKq/8I/e/wBtvceVZmNp1l+1eY3ncSlwNu3+6TH977v5V1NFAGXLoFnNfzXjS3wklVVYJezIoCkkYCsMfePHT9cre6cwsbOCyjRktJEYQSSMFkVQQFLcnjhhnOSoz61p0UAZ2mWk0Qu3uYo4hcymQQI5dVyADkkDknJOBjnuck6NFFAHPHQGGqTXLWOkz75/ME08O6YDjjdjt29AAO1aFxoOkXd211c6XZzTsMNJJArEj3yK0aKAM+90xJtOS0tVghWJ0eOMx5j+VgQCoxxx+Bwe1V9D0ibTrcrdPA8jQxQlYUIUhFIBOerHPJ44AHbJ2KKAMy20K1tbmGaOS4xDysbSZXcFKBjnkkKdvXpjuM1deztpXZ5LeF3bblmQEnacr+R5HpU1FAHOeI/LbUtOSaKxmjaOb93fTeXETlMEfK2W6446bqtLZzXWixW9p/ZlvAysskSxGeIgn+Ehk988dT7VqywRTY82JJMdNyg4pyIkaBEVVUdAowBQBmaFpU+kWrwTXMNwWbd5qwsju3cuxdi56DPtV9LO2jkEiW8KuGZgyoAQW+8c+pxz61NRQBiXegPd3a3Ml2jyKAB5tuJApHdQxwp+gpNYsb+9u7cLY2F3aRZ3R3NyyByR1KiNhkdsk9TW5RQBQsrCJLFYZtOs4AC37mH50GeuMqvXvxUq2cNnHI9hZ2yTEcAARhvYkAnH4GrVFAHN2ml6oNYE91BbNZBt8UAvXcQOSSzKPKG7ORgE/LzjGaoa1Gtv4gl8lmV5kj3tPqs8KjPmEEBTwuRt9MsAAO/Z1ganp1ms8Cz3Nx5c8pEokv3UKu1jkAtj7wUY96AJ4bGPU9D0pop5rTykjmieAKCvyYxhw3GGI7/Wr8VtNDaSRNdPdSEHD3Cp6cAhAoIqWAxtbxmKQSRlAUcNu3DHBz3+tSUAZFppVwmofarlrRf3LQ7bWExltxU5LbieNvH1Ncwnl2uoLAn+oW/4WfU53ckXAB+TcFJyyMAc8MCc9+8kQSxPGSwDAqSrEEZ9COhrA+x2EOtxRSXcxaMK6ebfuT5mfu7S3PGO3OaAL0ug2c1/NePLfCWVVVhHezIuFzjAVhj7x/zmquuQJbaTZ2tsvl7ZkjgczmMRkA4y+CecbfcsB3rdoxnrQByui6nHJo142o39sImKhZJp9yAPGCFZmxzycr/jUPhrUEvL54bbUA32eMxtFLfC4Z3AHzKAeUGR8x5OegrrkjSMERoqgkkhRjJPenUAc22g6hLq8d9NPYsgO54PJk2M4xiTbvxvAGASD29Kl1rT9Wv5VNoLeDY2BKt06O8ZI3IQE4zjqDkcEGt+igCjHpttLpKWF3Y2vkbQGt1G+MYOR1Azzz0qW00+zsFdbS1hgV/vCNAufrirNFAGfa6Lp9k8bQQMpiYsmZGYAlQucE9QoCj0HAwK0KKKAMHWNCtrrUYL/wDseyvmVWWVJEUM5O0K2SMNgAjB/ve1QXFlJpnhBrYRRQ4mUiGOUpGitODsLgZC4OCcdM8HpXS0yWGKeJopo0kjbqjqCD+BoAzNEtxAJ8Wlnb7tv/HtdNNu69cquP1rWqC3s7W03fZraGHdjd5aBc49cVPQBQudGsrq4e4kSQSupUlJnXqMEgA4DY43DnHGcVX1jTru6t4ItPlWEIGTHmMgQFdocbRyV7KeD6jArXooAw20u4i8PX9nGgBl3+TBHJuCqRgKGbGCcE57FuOlS6PA0Mj7rLUbf5QM3d6ZwfoDI2D74Fa9FAGe2iaa07zNaqWcsSCTtywIYhc4BOTkgZOT61GfDeiNJ5h0myL/AN7yFz/KtSigDPv9PaaK0+y+Sj2kokiSRMocKy446cNwR0IHWqk1pNZaFrEsrr59wkszfZgV2HywuF5zn5Qc+p7Vt1R1iW4i0u4+ywyS3DoyRiNQ21ipwSDxjOKAMnQ4LOR3VLLRE8yAq72Fx5jODjI+4vyn1z6Vrf2Np/2oXP2ZfODBw2T16561n6HbRQ3JdbTUoXMWCbsrjqOPlJ5/TrW9QBy/iWGWa9jLRr9njRGJktmnQ5fDErnaCoKtyMkE46GtbS4xdaRZyXcKvN5S5LxBT9duPlz1x2qhqGnX97qrTTaXp13arHsjS4u2+Ugk7gvlkAkEZ/3RzW3ax+VaRR+THDtQDy4jlU9gcDj8BQA+OGKEERxogPUKoFPoooA4q/upINYvTbzSRMknmSQ+e3z4CBVCjgNIT8vXO0nk9OnvtMW9uYLgXVxbywqyq0BUZDYyDkHI+UVeooAytU0trzRxZkLebXR2S6IxMFYHDEDjp6Vn6Z4fa01Zb6GwstPRnJeO3bkrsK4OFA5JBx0GwHkscdLRQBzumeGGsLm0maeCRrc/eWDYxURlFXO492dye7HtWle6V9vaQSX12kEi7XgjZVUjGCM7dwz7GtCigDNutFgu75Ltri8jZIzGEhuXRcEr2B/2asQ6fbQ2X2PyzLBkkrMxk3EsWOS2c8nNWqKAE2rgDaMDpx0rF/4RxgIlTWdRSKF98UQEJVDzgDMZ4GeAc44x0FbdFAGBqXh03ty9wr2sjnbxdW+/OEZCCQR8uGzgdxnvU9/p100GnCBLe8e0YblvJCof5Cu7IVvm/Dua2KKAOY+za1a6ZfQJpsIa5Z3jWwusCMkDj5lTaDjJYEnLE4qxpdlIt9Jt0qXTLVoCroJlxI5I5+RjggZ+bqd3sK36ZLGJonjZnUMCCUYqR9CORQBwlsY7fUVhX/ULfDCz6lPI5Y3BB/dlgpIO04OcBgTu79Pf6fcyahLcwW1ldLNbC3eO6YqFUFicYVshtwyOPujn0qwW2nLrnlm9kdoQhi36gzkyEsGXaW7AL2710NAGeNIgl0m1sLwtcCBEG/cylmUY3ZBz79aqXWj2OnaTqUlpDKrvbS7sTvliV68kgHgc4rbooA5bw8umzSstvJ4fd3gIb+zFCyYOM9DkL/8AWraOj2RuBPtm8wMGz58mMj23Yq/RQBz+sadq9/OrWwt4VVtpdbp0aWLOSjYTjPqDkdjyQbF/pks+i29pDaWeYmQm0dyIGUdVJCnI9Pl6gVsUUAY9ro1u9hNa3WkafaxSMCY7Rshj/eJ2Jg1Ys9GsNO2taW+10TauXY8Y9zWhRQByVzpWpXUt5LJo1ibmZwYbtrnMkAwB8p2ZG0gkAEZ/Mm/rWmapqMg+zS28Hln5JRI6ybDjehK9mxjg56EYIFb1FAHO6xYRQ+G4UmjWD7PLFtW2uXt4kPmLgkr/AAjqcj1xg81H4VlMlzebwgl8qEuBdSzsvMgKsZCSCCGGAB68541tTjspPL+2Xr23XaFumh3dM9CM1B4fjtlszLDKWnlCvOpuTNtbHqSf8igCrb6Ey6ta3f8AZek2ZgdmMtsMyOCrLtzsXA5BPJ6fjVfVvD7Xt5fsdMtriS6K+VdO4BgwqjkYycEFuM5zg4FdTRQByj6dfj7NbzaTHe2cTynyXuFKYZspw3XaOMEYGeOgrQtNLmm8PvZzotqzSM8cWRIsQD7kX3XgcccccCtuigDLhsb9bia8lntTdNEIo9kLKgAJOW+bLdfUY59TVfStKvrDyo5G0540YkslsyyEEk9dx555PetyigDNfQrB3Z2SfLHJxcyD/wBmqLWrCS5hs0is4byKKXMlvPJhGXaQCcg5IJBwR+uDWvRQBjaJa3dulzb3On29tayOWjiil3oikAbQNowDgse2WNXrLStP03f9hsre23/e8mMLnv2+p/OrdFAHFrHONceQkGN71UF75zY3LKx2dOu1vKx93ORnPFdh5EXn+f5Sedt2eZtG7b1xnris/wDsX99j7bcfZfP+0fZsJt379/3sbsbucZ9unFalAGfq9teXNvF9hdBLFKJNskjIr4BAyVBOASGxjnbjvVSy0i6stJv7SOYK8oZYGMjPg7Au9iehLAsQO57nNbdFAHIx6NdfaoZbOyv7PykVSZ9QLhm3od2BI2QFD5zjduHHp11FFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAGdrqRyaNcLK6qnynDIXDncMIVHLBjhcDk5xWHptk19q/2mWzt9PuImicwLEdwVd4DK+ADu3YOBwBg9Rjf1PTjqduIftlxbLnJMGzJIIIOWU4IIyCMUljpjWl1Lcy391dyyIqZn8v5QMnACKuOvP4UAX6KKKACiiigAooooAKw/EBlkNvBHZ3cqM4M72yITsw3ALHg7tp+mcVuUUAZ2iwxwWbrHDdRAyE7bnG7oOmO1aNFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVymtWFxc6h9ri0l7h9qgLLDC6/LvXBJlBwVcnGOpB9RXV0UAUdHZ/7NhhliuElgVYn+0KAzEKPm4JBz7E9x1Bq9RRQA2Tf5T+UVEmDtLDIz2z7VyGm3LwXEyu1gzLfHeptGWVt8+0spLYYBiRu7AAHkV2NUL2x00WoluoE8q1kN2GwcowbeWGOeuT79KAL9FNjkWWJJEOUcBlPqDTqACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA5MXdtqOqeS99pMEsN9gRFALglJOgO7q2MZA6EjGeB1lFFABRRRQAUUUUAFFFFABRRRQAUUUUAZ2tWz3GnMIYfNlDLwu3eU3DeFLcAlc46c9x1qh4Yt7qCKQzW88EZiiXbOQWMgDBjwScY2dT1BPfJ6CigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACqOtKz6DqKIpZmtZAABkk7TV6igDlbrWrOTw2kEDyyS+XEjooeMqu5QxJC5CgEk45wD061l2cDXWqxWYLNYHUEk228ckcLIbabOMk5Quozg4J7c899RQBxaQLBqBgv4bptIimuFiQJI6qxMZXIGTjBfb2HTrtqPw7qJsw8l2935UsMiQCbc7uy3M+V75fBTjqfwrrb3TLW/eN5xKJIgQkkMzxOAcZG5CDg4HHTgelTW1tDZ20dvbxiOKMbVUdh/X60AectNcf2VE7rKl/b29oUMiyyTNiONmZAMbVyWDH5skNnsK0blkTyGmW9XVjq8YkkCyBTEbgbRu+6Y9hUAevvmu6rOXQ9PW7FyIpN4lMwTznMYc5ywjztBySc46knrQBzHh1bv7fppmmH27Df2gqxSbydhz5hZtoG/btOPZflJruKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/2Q==\"\n              }\n            },\n            {\n              \"id\": \"/page/18/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-18-0\\\"></span>Figure 7: Multilingual pre-training on 101 languages. Improvements of Switch T5 Base model over dense baseline when multi-task training on 101 languages. We observe Switch Transformers to do quite well in the multi-task training setup and yield improvements on all 101 languages.</p>\",\n              \"polygon\": [\n                [\n                  89.7978515625,\n                  239.63616943359375\n                ],\n                [\n                  521.6661376953125,\n                  239.63616943359375\n                ],\n                [\n                  521.6661376953125,\n                  291.19921875\n                ],\n                [\n                  89.7978515625,\n                  291.19921875\n                ]\n              ],\n              \"bbox\": [\n                89.7978515625,\n                239.63616943359375,\n                521.6661376953125,\n                291.19921875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/18/FigureGroup/577\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/18/Figure/3'></content-ref><content-ref src='/page/18/Caption/4'></content-ref>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              321.7451171875\n            ],\n            [\n              521.7425537109375,\n              321.7451171875\n            ],\n            [\n              521.7425537109375,\n              572.3502655029297\n            ],\n            [\n              89.7978515625,\n              572.3502655029297\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            321.7451171875,\n            521.7425537109375,\n            572.3502655029297\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/18/Figure/3\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  199.7666015625,\n                  321.7451171875\n                ],\n                [\n                  417.7801818847656,\n                  321.7451171875\n                ],\n                [\n                  417.7801818847656,\n                  487.709228515625\n                ],\n                [\n                  199.7666015625,\n                  487.709228515625\n                ]\n              ],\n              \"bbox\": [\n                199.7666015625,\n                321.7451171875,\n                417.7801818847656,\n                487.709228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {\n                \"/page/18/Figure/3\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/18/Caption/4\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-18-1\\\"></span>Figure 8: Multilingual pre-training on 101 languages. We histogram for each language, the step speedup of Switch Transformers over the FLOP matched T5 dense baseline to reach the same quality. Over all 101 languages, we achieve a mean step speedup over mT5-Base of 5x and, for 91% of languages, we record a 4x, or greater, speedup to reach the final perplexity of mT5-Base.</p>\",\n              \"polygon\": [\n                [\n                  89.7978515625,\n                  507.2441711425781\n                ],\n                [\n                  521.7425537109375,\n                  507.2441711425781\n                ],\n                [\n                  521.7425537109375,\n                  572.3502655029297\n                ],\n                [\n                  89.7978515625,\n                  572.3502655029297\n                ]\n              ],\n              \"bbox\": [\n                89.7978515625,\n                507.2441711425781,\n                521.7425537109375,\n                572.3502655029297\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/18/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">and computation performed and is ultimately limited by the memory per accelerator. Once it exceeds the size of the accelerator's memory, single program multiple data (SPMD) modelparallelism can be employed. This section studies the trade-offs of combining data, model, and expert-parallelism.</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              610.8281707763672\n            ],\n            [\n              521.5968017578125,\n              610.8281707763672\n            ],\n            [\n              521.5968017578125,\n              662.8359375\n            ],\n            [\n              89.6484375,\n              662.8359375\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            610.8281707763672,\n            521.5968017578125,\n            662.8359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/18/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">Reviewing the Feed-Forward Network (FFN) Layer. We use the FFN layer as an example of how data, model and expert-parallelism works in Mesh TensorFlow <a href=\\\"#page-38-3\\\">(Shazeer</a> <a href=\\\"#page-38-3\\\">et</a> <a href=\\\"#page-38-3\\\">al.,</a> <a href=\\\"#page-38-3\\\">2018)</a> and review it briefly here. We assume B tokens in the batch, each of dimension</p>\",\n          \"polygon\": [\n            [\n              89.947265625,\n              667.2371597290039\n            ],\n            [\n              521.8941650390625,\n              667.2371597290039\n            ],\n            [\n              521.8941650390625,\n              705.375\n            ],\n            [\n              89.947265625,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            89.947265625,\n            667.2371597290039,\n            521.8941650390625,\n            705.375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/18/PageFooter/7\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.62109375,\n              724.9638824462891\n            ],\n            [\n              310.98162841796875,\n              724.9638824462891\n            ],\n            [\n              310.98162841796875,\n              735.5390625\n            ],\n            [\n              300.62109375,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.62109375,\n            724.9638824462891,\n            310.98162841796875,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/17/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/19/Page/405\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/19/PageHeader/0'></content-ref><content-ref src='/page/19/TextInlineMath/1'></content-ref><content-ref src='/page/19/TextInlineMath/2'></content-ref><content-ref src='/page/19/Table/3'></content-ref><content-ref src='/page/19/SectionHeader/4'></content-ref><content-ref src='/page/19/TextInlineMath/5'></content-ref><content-ref src='/page/19/SectionHeader/6'></content-ref><content-ref src='/page/19/TextInlineMath/7'></content-ref><content-ref src='/page/19/PageFooter/8'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/19/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.958984375,\n              37.992431640625\n            ],\n            [\n              368.455078125,\n              37.992431640625\n            ],\n            [\n              368.455078125,\n              50.32177734375\n            ],\n            [\n              239.958984375,\n              50.32177734375\n            ]\n          ],\n          \"bbox\": [\n            239.958984375,\n            37.992431640625,\n            368.455078125,\n            50.32177734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/19/TextInlineMath/1\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">dmodel. Both the input (x) and output (y) of the FFN are of size [B, dmodel] and the intermediate (h) is of size [B, dff] where dff is typically several times larger than dmodel. In the FFN, the intermediate is h = xWin and then the output of the layer is y = ReLU(h)Wout. Thus Win and Wout are applied independently to each token and have sizes [dmodel, dff] and [dff, dmodel].</p>\",\n          \"polygon\": [\n            [\n              88.9013671875,\n              93.29522705078125\n            ],\n            [\n              522.3515625,\n              93.29522705078125\n            ],\n            [\n              522.3515625,\n              159.53631591796875\n            ],\n            [\n              88.9013671875,\n              159.53631591796875\n            ]\n          ],\n          \"bbox\": [\n            88.9013671875,\n            93.29522705078125,\n            522.3515625,\n            159.53631591796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/19/TextInlineMath/2\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">We describe two aspects of partitioning: how the weights and batches of data divide over cores, depicted in Figure <a href=\\\"#page-20-1\\\">9.</a> We denote all cores available as N which Mesh Tensorflow may then remap into a logical multidimensional mesh of processors. Here we create a two-dimensional logical mesh, with one dimension representing the number of ways for data-parallel sharding (n) and the other, the model-parallel sharding (m). The total cores must equal the ways to shard across both data and model-parallelism, e.g. N = n × m. To shard the layer across cores, the tensors containing that batch of B tokens are sharded across n data-parallel cores, so each core contains B/n tokens. Tensors and variables with df f are then sharded across m model-parallel cores. For the variants with experts-layers, we consider E experts, each of which can process up to C tokens.</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              164.548828125\n            ],\n            [\n              521.9918212890625,\n              164.548828125\n            ],\n            [\n              521.9918212890625,\n              297.966796875\n            ],\n            [\n              89.6484375,\n              297.966796875\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            164.548828125,\n            521.9918212890625,\n            297.966796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/19/Table/3\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Term</th><th>Description</th></tr><tr><td>B</td><td>Number of tokens in the batch.</td></tr><tr><td>N</td><td>Number of total cores.</td></tr><tr><td>n</td><td>Number of ways for data-parallelism sharding.</td></tr><tr><td>m</td><td>Number of ways for model-parallelism sharding.</td></tr><tr><td>E</td><td>Number of experts in Switch layers.</td></tr><tr><td>C</td><td>Expert capacity, the batch size of each expert.</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              172.423828125,\n              317.8828125\n            ],\n            [\n              463.482421875,\n              317.8828125\n            ],\n            [\n              463.482421875,\n              421.91015625\n            ],\n            [\n              172.423828125,\n              421.91015625\n            ]\n          ],\n          \"bbox\": [\n            172.423828125,\n            317.8828125,\n            463.482421875,\n            421.91015625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/19/TableCell/333\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Term</th>\",\n              \"polygon\": [\n                [\n                  172.423828125,\n                  317.8828125\n                ],\n                [\n                  173.423828125,\n                  317.8828125\n                ],\n                [\n                  173.423828125,\n                  318.8828125\n                ],\n                [\n                  172.423828125,\n                  318.8828125\n                ]\n              ],\n              \"bbox\": [\n                172.423828125,\n                317.8828125,\n                173.423828125,\n                318.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/334\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Description</th>\",\n              \"polygon\": [\n                [\n                  173.423828125,\n                  317.8828125\n                ],\n                [\n                  174.423828125,\n                  317.8828125\n                ],\n                [\n                  174.423828125,\n                  318.8828125\n                ],\n                [\n                  173.423828125,\n                  318.8828125\n                ]\n              ],\n              \"bbox\": [\n                173.423828125,\n                317.8828125,\n                174.423828125,\n                318.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/335\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>B</td>\",\n              \"polygon\": [\n                [\n                  172.423828125,\n                  318.8828125\n                ],\n                [\n                  173.423828125,\n                  318.8828125\n                ],\n                [\n                  173.423828125,\n                  319.8828125\n                ],\n                [\n                  172.423828125,\n                  319.8828125\n                ]\n              ],\n              \"bbox\": [\n                172.423828125,\n                318.8828125,\n                173.423828125,\n                319.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/336\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Number of tokens in the batch.</td>\",\n              \"polygon\": [\n                [\n                  173.423828125,\n                  318.8828125\n                ],\n                [\n                  174.423828125,\n                  318.8828125\n                ],\n                [\n                  174.423828125,\n                  319.8828125\n                ],\n                [\n                  173.423828125,\n                  319.8828125\n                ]\n              ],\n              \"bbox\": [\n                173.423828125,\n                318.8828125,\n                174.423828125,\n                319.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/337\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>N</td>\",\n              \"polygon\": [\n                [\n                  172.423828125,\n                  319.8828125\n                ],\n                [\n                  173.423828125,\n                  319.8828125\n                ],\n                [\n                  173.423828125,\n                  320.8828125\n                ],\n                [\n                  172.423828125,\n                  320.8828125\n                ]\n              ],\n              \"bbox\": [\n                172.423828125,\n                319.8828125,\n                173.423828125,\n                320.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/338\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Number of total cores.</td>\",\n              \"polygon\": [\n                [\n                  173.423828125,\n                  319.8828125\n                ],\n                [\n                  174.423828125,\n                  319.8828125\n                ],\n                [\n                  174.423828125,\n                  320.8828125\n                ],\n                [\n                  173.423828125,\n                  320.8828125\n                ]\n              ],\n              \"bbox\": [\n                173.423828125,\n                319.8828125,\n                174.423828125,\n                320.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/339\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>n</td>\",\n              \"polygon\": [\n                [\n                  172.423828125,\n                  320.8828125\n                ],\n                [\n                  173.423828125,\n                  320.8828125\n                ],\n                [\n                  173.423828125,\n                  321.8828125\n                ],\n                [\n                  172.423828125,\n                  321.8828125\n                ]\n              ],\n              \"bbox\": [\n                172.423828125,\n                320.8828125,\n                173.423828125,\n                321.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/340\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Number of ways for data-parallelism sharding.</td>\",\n              \"polygon\": [\n                [\n                  173.423828125,\n                  320.8828125\n                ],\n                [\n                  174.423828125,\n                  320.8828125\n                ],\n                [\n                  174.423828125,\n                  321.8828125\n                ],\n                [\n                  173.423828125,\n                  321.8828125\n                ]\n              ],\n              \"bbox\": [\n                173.423828125,\n                320.8828125,\n                174.423828125,\n                321.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/341\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>m</td>\",\n              \"polygon\": [\n                [\n                  172.423828125,\n                  321.8828125\n                ],\n                [\n                  173.423828125,\n                  321.8828125\n                ],\n                [\n                  173.423828125,\n                  322.8828125\n                ],\n                [\n                  172.423828125,\n                  322.8828125\n                ]\n              ],\n              \"bbox\": [\n                172.423828125,\n                321.8828125,\n                173.423828125,\n                322.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/342\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Number of ways for model-parallelism sharding.</td>\",\n              \"polygon\": [\n                [\n                  173.423828125,\n                  321.8828125\n                ],\n                [\n                  174.423828125,\n                  321.8828125\n                ],\n                [\n                  174.423828125,\n                  322.8828125\n                ],\n                [\n                  173.423828125,\n                  322.8828125\n                ]\n              ],\n              \"bbox\": [\n                173.423828125,\n                321.8828125,\n                174.423828125,\n                322.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/343\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>E</td>\",\n              \"polygon\": [\n                [\n                  172.423828125,\n                  322.8828125\n                ],\n                [\n                  173.423828125,\n                  322.8828125\n                ],\n                [\n                  173.423828125,\n                  323.8828125\n                ],\n                [\n                  172.423828125,\n                  323.8828125\n                ]\n              ],\n              \"bbox\": [\n                172.423828125,\n                322.8828125,\n                173.423828125,\n                323.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/344\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Number of experts in Switch layers.</td>\",\n              \"polygon\": [\n                [\n                  173.423828125,\n                  322.8828125\n                ],\n                [\n                  174.423828125,\n                  322.8828125\n                ],\n                [\n                  174.423828125,\n                  323.8828125\n                ],\n                [\n                  173.423828125,\n                  323.8828125\n                ]\n              ],\n              \"bbox\": [\n                173.423828125,\n                322.8828125,\n                174.423828125,\n                323.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/345\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>C</td>\",\n              \"polygon\": [\n                [\n                  172.423828125,\n                  323.8828125\n                ],\n                [\n                  173.423828125,\n                  323.8828125\n                ],\n                [\n                  173.423828125,\n                  324.8828125\n                ],\n                [\n                  172.423828125,\n                  324.8828125\n                ]\n              ],\n              \"bbox\": [\n                172.423828125,\n                323.8828125,\n                173.423828125,\n                324.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/346\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Expert capacity, the batch size of each expert.</td>\",\n              \"polygon\": [\n                [\n                  173.423828125,\n                  323.8828125\n                ],\n                [\n                  174.423828125,\n                  323.8828125\n                ],\n                [\n                  174.423828125,\n                  324.8828125\n                ],\n                [\n                  173.423828125,\n                  324.8828125\n                ]\n              ],\n              \"bbox\": [\n                173.423828125,\n                323.8828125,\n                174.423828125,\n                324.8828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/17/SectionHeader/6\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/17/SectionHeader/6\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/19/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-19-0\\\"></span>5.1 Data Parallelism</h3>\",\n          \"polygon\": [\n            [\n              89.05078125,\n              453.490234375\n            ],\n            [\n              203.9501953125,\n              453.490234375\n            ],\n            [\n              203.9501953125,\n              464.8359375\n            ],\n            [\n              89.05078125,\n              464.8359375\n            ]\n          ],\n          \"bbox\": [\n            89.05078125,\n            453.490234375,\n            203.9501953125,\n            464.8359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/19/TextInlineMath/5\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">When training data parallel models, which is the standard for distributed training, then all cores are allocated to the data-parallel dimension or <math display=\\\"inline\\\">n = N, m = 1</math>. This has the advantage that no communication is needed until the entire forward and backward pass is finished and the gradients need to be then aggregated across all cores. This corresponds to the left-most column of Figure 9.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              476.6952209472656\n            ],\n            [\n              522.3515625,\n              476.6952209472656\n            ],\n            [\n              522.3515625,\n              541.8013458251953\n            ],\n            [\n              89.4990234375,\n              541.8013458251953\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            476.6952209472656,\n            522.3515625,\n            541.8013458251953\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/19/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-19-1\\\"></span>5.2 Model Parallelism</h4>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              562.7372436523438\n            ],\n            [\n              212.3173828125,\n              562.7372436523438\n            ],\n            [\n              212.3173828125,\n              573.890625\n            ],\n            [\n              89.4990234375,\n              573.890625\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            562.7372436523438,\n            212.3173828125,\n            573.890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/19/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/19/TextInlineMath/7\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">We now consider a scenario where all cores are allocated exclusively to the model-parallel dimension and so <math display=\\\"inline\\\">n = 1, m = N</math>. Now all cores must keep the full <math display=\\\"inline\\\">B</math> tokens and each core will contain a unique slice of the weights. For each forward and backward pass, a communication cost is now incurred. Each core sends a tensor of <math display=\\\"inline\\\">[B, d_{model}]</math> to compute the second matrix multiplication <math display=\\\"inline\\\">ReLU(h)W_{out}</math> because the <math display=\\\"inline\\\">d_{ff}</math> dimension is partitioned and must be summed over. As a general rule, whenever a dimension that is partitioned across cores must be summed, then an all-reduce operation is added for both the forward and backward pass. This contrasts with pure data parallelism where an all-reduce only occurs at the end of the entire forward and backward pass.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              585.9422454833984\n            ],\n            [\n              521.9425659179688,\n              585.9422454833984\n            ],\n            [\n              521.9425659179688,\n              705.2453231811523\n            ],\n            [\n              89.349609375,\n              705.2453231811523\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            585.9422454833984,\n            521.9425659179688,\n            705.2453231811523\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/19/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/19/PageFooter/8\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.4716796875,\n              724.9639434814453\n            ],\n            [\n              310.981689453125,\n              724.9639434814453\n            ],\n            [\n              310.981689453125,\n              735.92578125\n            ],\n            [\n              300.4716796875,\n              735.92578125\n            ]\n          ],\n          \"bbox\": [\n            300.4716796875,\n            724.9639434814453,\n            310.981689453125,\n            735.92578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/19/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/19/SectionHeader/4\",\n        \"4\": \"/page/19/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/20/Page/217\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/20/PageHeader/0'></content-ref><content-ref src='/page/20/Figure/1'></content-ref><content-ref src='/page/20/SectionHeader/2'></content-ref><content-ref src='/page/20/SectionHeader/3'></content-ref><content-ref src='/page/20/Figure/4'></content-ref><content-ref src='/page/20/ListItem/5'></content-ref><content-ref src='/page/20/SectionHeader/6'></content-ref><content-ref src='/page/20/TextInlineMath/7'></content-ref><content-ref src='/page/20/PageFooter/8'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/20/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              246.83203125,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              49.88671875\n            ],\n            [\n              246.83203125,\n              49.88671875\n            ]\n          ],\n          \"bbox\": [\n            246.83203125,\n            37.992431640625,\n            359.7890625,\n            49.88671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/19/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/20/Figure/1\",\n          \"block_type\": \"Figure\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              88.6025390625,\n              103.447265625\n            ],\n            [\n              520.9114379882812,\n              103.447265625\n            ],\n            [\n              520.9114379882812,\n              215.015625\n            ],\n            [\n              88.6025390625,\n              215.015625\n            ]\n          ],\n          \"bbox\": [\n            88.6025390625,\n            103.447265625,\n            520.9114379882812,\n            215.015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/19/SectionHeader/6\"\n          },\n          \"images\": {\n            \"/page/20/Figure/1\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAEpBIEDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD3+iiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKA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P/Cj/hX3g0/8yro3/gFH/hQB0PmJ/fX86PMT++v51z3/AAr/AMG/9Cro3/gDH/hR/wAK/wDBv/Qq6N/4Ax/4UAdD5if31/OjzE/vr+dc9/wr/wAG/wDQq6N/4Ax/4Uf8K/8ABv8A0Kujf+AMf+FAHQ+Yn99fzrKvptKHiDSRc835E32RgThRtG/ODjpjrVP/AIV/4N/6FXRv/AGP/Cj/AIV94Nz/AMiro3/gFH/hQB0PmJ/fX86PMT++v51z3/Cv/Bv/AEKujf8AgDH/AIUf8K/8G/8AQq6N/wCAMf8AhQB0PmJ/fX86PMT++v51z3/Cv/Bv/Qq6N/4Ax/4Uf8K/8G/9Cro3/gDH/hQB0PmJ/fX86yoLzTW8VX1tHDt1COzt3mnOMPEzyhFBz1BWQ9P4h17U/wDhX/g3/oVdG/8AAGP/AAo/4V/4N/6FXRv/AABj/wAKAOh8xP76/nR5if31/Oue/wCFf+Df+hV0b/wBj/wo/wCFf+Df+hV0b/wBj/woA6HzE/vr+dHmJ/fX8657/hX/AIN/6FXRv/AGP/Cj/hX/AIN/6FXRv/AGP/CgDofMT++v51zfhwhvFXi8ggj7dB0/69Yaf/wr/wAG/wDQq6N/4Ax/4Vq6Xoul6JA8Glada2MTtvdLaFYwzYxkgDrxQBeooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA/9k=\"\n          }\n        },\n        {\n          \"id\": \"/page/20/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>How the </b><i>model weights</i><b> are split over cores</b></h4>\",\n          \"polygon\": [\n            [\n              197.33572387695312,\n              92.8397216796875\n            ],\n            [\n              421.5530700683594,\n              92.8397216796875\n            ],\n            [\n              421.5530700683594,\n              103.3858642578125\n            ],\n            [\n              197.33572387695312,\n              103.3858642578125\n            ]\n          ],\n          \"bbox\": [\n            197.33572387695312,\n            92.8397216796875,\n            421.5530700683594,\n            103.3858642578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/20/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/20/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>How the </b><i>data</i><b> is split over cores</b></h4>\",\n          \"polygon\": [\n            [\n              226.85939025878906,\n              228.744140625\n            ],\n            [\n              392.468505859375,\n              228.744140625\n            ],\n            [\n              392.468505859375,\n              239.60675048828125\n            ],\n            [\n              226.85939025878906,\n              239.60675048828125\n            ]\n          ],\n          \"bbox\": [\n            226.85939025878906,\n            228.744140625,\n            392.468505859375,\n            239.60675048828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/20/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/20/Figure/4\",\n          \"block_type\": \"Figure\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              243.6328125\n            ],\n            [\n              520.9114379882812,\n              243.6328125\n            ],\n            [\n              520.9114379882812,\n              344.953125\n            ],\n            [\n              89.4990234375,\n              344.953125\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            243.6328125,\n            520.9114379882812,\n            344.953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/20/SectionHeader/3\"\n          },\n          \"images\": {\n            \"/page/20/Figure/4\": \"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\"\n          }\n        },\n        {\n          \"id\": \"/page/20/ListItem/5\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-20-1\\\"></span>Figure 9: Data and weight partitioning strategies. Each 4×4 dotted-line grid represents 16 cores and the shaded squares are the data contained on that core (either model weights or batch of tokens). We illustrate both how the model weights and the data tensors are split for each strategy. First Row: illustration of how model weights are split across the cores. Shapes of different sizes in this row represent larger weight matrices in the Feed Forward Network (FFN) layers (e.g larger df f sizes). Each color of the shaded squares identifies a unique weight matrix. The number of parameters per core is fixed, but larger weight matrices will apply more computation to each token. Second Row: illustration of how the data batch is split across cores. Each core holds the same number of tokens which maintains a fixed memory usage across all strategies. The partitioning strategies have different properties of allowing each core to either have the same tokens or different tokens across cores, which is what the different colors symbolize.</li>\",\n          \"polygon\": [\n            [\n              90.0,\n              358.5008239746094\n            ],\n            [\n              521.9944458007812,\n              358.5008239746094\n            ],\n            [\n              521.9944458007812,\n              532.1414184570312\n            ],\n            [\n              90.0,\n              532.1414184570312\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            358.5008239746094,\n            521.9944458007812,\n            532.1414184570312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/20/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/20/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-20-0\\\"></span>5.3 Model and Data Parallelism</h4>\",\n          \"polygon\": [\n            [\n              89.12548828125,\n              602.6173248291016\n            ],\n            [\n              266.90191650390625,\n              602.6173248291016\n            ],\n            [\n              266.90191650390625,\n              613.5264282226562\n            ],\n            [\n              89.12548828125,\n              613.5264282226562\n            ]\n          ],\n          \"bbox\": [\n            89.12548828125,\n            602.6173248291016,\n            266.90191650390625,\n            613.5264282226562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/20/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/20/TextInlineMath/7\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">It is common to mix both model and data parallelism for large scale models, which was done in the largest T5 models <a href=\\\"#page-37-0\\\">(Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.,</a> <a href=\\\"#page-37-0\\\">2019;</a> <a href=\\\"#page-39-2\\\">Xue</a> <a href=\\\"#page-39-2\\\">et</a> <a href=\\\"#page-39-2\\\">al.,</a> <a href=\\\"#page-39-2\\\">2020)</a> and in GPT-3 <a href=\\\"#page-35-0\\\">(Brown</a> <a href=\\\"#page-35-0\\\">et</a> <a href=\\\"#page-35-0\\\">al.,</a> <a href=\\\"#page-35-0\\\">2020)</a>. With a total of N = n × m cores, now each core will be responsible for B/n tokens and df f /m of both the weights and intermediate activation. In the forward and backward pass each core communicates a tensor of size [B/n, dmodel] in an all-reduce operation.</p>\",\n          \"polygon\": [\n            [\n              88.6025390625,\n              640.1393280029297\n            ],\n            [\n              521.9632568359375,\n              640.1393280029297\n            ],\n            [\n              521.9632568359375,\n              706.3803405761719\n            ],\n            [\n              88.6025390625,\n              706.3803405761719\n            ]\n          ],\n          \"bbox\": [\n            88.6025390625,\n            640.1393280029297,\n            521.9632568359375,\n            706.3803405761719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/20/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/20/PageFooter/8\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.4716796875,\n              724.9640350341797\n            ],\n            [\n              310.9815979003906,\n              724.9640350341797\n            ],\n            [\n              310.9815979003906,\n              735.5390625\n            ],\n            [\n              300.4716796875,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.4716796875,\n            724.9640350341797,\n            310.9815979003906,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/20/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/19/SectionHeader/4\",\n        \"4\": \"/page/20/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/21/Page/312\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/21/PageHeader/0'></content-ref><content-ref src='/page/21/SectionHeader/1'></content-ref><content-ref src='/page/21/TextInlineMath/2'></content-ref><content-ref src='/page/21/Equation/3'></content-ref><content-ref src='/page/21/TextInlineMath/4'></content-ref><content-ref src='/page/21/SectionHeader/5'></content-ref><content-ref src='/page/21/TextInlineMath/6'></content-ref><content-ref src='/page/21/Text/7'></content-ref><content-ref src='/page/21/SectionHeader/8'></content-ref><content-ref src='/page/21/TextInlineMath/9'></content-ref><content-ref src='/page/21/Text/10'></content-ref><content-ref src='/page/21/PageFooter/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/21/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.5107421875,\n              37.992431640625\n            ],\n            [\n              368.15625,\n              37.992431640625\n            ],\n            [\n              368.15625,\n              50.1767578125\n            ],\n            [\n              239.5107421875,\n              50.1767578125\n            ]\n          ],\n          \"bbox\": [\n            239.5107421875,\n            37.992431640625,\n            368.15625,\n            50.1767578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/20/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-21-0\\\"></span>5.4 Expert and Data Parallelism</h4>\",\n          \"polygon\": [\n            [\n              89.12548828125,\n              93.29522705078125\n            ],\n            [\n              270.13104248046875,\n              93.29522705078125\n            ],\n            [\n              270.13104248046875,\n              104.204345703125\n            ],\n            [\n              89.12548828125,\n              104.204345703125\n            ]\n          ],\n          \"bbox\": [\n            89.12548828125,\n            93.29522705078125,\n            270.13104248046875,\n            104.204345703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/TextInlineMath/2\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">Next we describe the partitioning strategy for expert and data parallelism. Switch Transformers will allocate all of their cores to the data partitioning dimension \\\"n\\\", which will also correspond to the number of experts in the model. For each token per core a router locally computes assignments to the experts. The output is a binary matrix of size [\\\"n\\\", \\\"B/n\\\", \\\"E\\\", \\\"C\\\"] which is partitioned across the first dimension and determines expert assignment. This binary matrix is then used to do a gather via matrix multiplication with the input tensor of [\\\"n\\\", \\\"B/n\\\", \\\"dmodel\\\"].</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              112.604248046875\n            ],\n            [\n              521.9918212890625,\n              112.604248046875\n            ],\n            [\n              521.9918212890625,\n              205.94329833984375\n            ],\n            [\n              89.4990234375,\n              205.94329833984375\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            112.604248046875,\n            521.9918212890625,\n            205.94329833984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/Equation/3\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">\\\\text{einsum}([n, B/n, d_{\\\\text{model}}], [n, B/n, E, C], \\\\text{dimension} = [B/n])</math></p>\",\n          \"polygon\": [\n            [\n              166.5966796875,\n              213.9453125\n            ],\n            [\n              521.9580078125,\n              213.9453125\n            ],\n            [\n              521.9580078125,\n              225.98931884765625\n            ],\n            [\n              166.5966796875,\n              225.98931884765625\n            ]\n          ],\n          \"bbox\": [\n            166.5966796875,\n            213.9453125,\n            521.9580078125,\n            225.98931884765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/TextInlineMath/4\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">resulting in the final tensor of shape [n, E, C, dmodel], which is sharded across the first dimension. Because each core has its own expert, we do an all-to-all communication of size [E, C, dmodel] to now shard the E dimension instead of the n-dimension. There are additional communication costs of bfloat16 tensors of size E \\n× C \\n× dmodel in the forward pass to analogously receive the tokens from each expert located on different cores. See Appendix F for a detailed analysis of the expert partitioning code.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              233.96484375\n            ],\n            [\n              521.9149780273438,\n              233.96484375\n            ],\n            [\n              521.9149780273438,\n              312.85546875\n            ],\n            [\n              89.4990234375,\n              312.85546875\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            233.96484375,\n            521.9149780273438,\n            312.85546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-21-1\\\"></span>5.5 Expert, Model and Data Parallelism</h4>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              329.6863708496094\n            ],\n            [\n              312.51287841796875,\n              329.6863708496094\n            ],\n            [\n              312.51287841796875,\n              340.5954895019531\n            ],\n            [\n              89.349609375,\n              340.5954895019531\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            329.6863708496094,\n            312.51287841796875,\n            340.5954895019531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/TextInlineMath/6\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">In the design of our best model, we seek to balance the FLOPS per token and the parameter count. When we scale the number of experts, we increase the number of parameters, but do not change the FLOPs per token. In order to increase FLOPs, we must also increase the <math display=\\\"inline\\\">d_{ff} </math>dimension (which also increases parameters, but at a slower rate). This presents a trade-off: as we increase <math display=\\\"inline\\\">d_{ff}</math> we will run out of memory per core, which then necessitates increasing m. But since we have a fixed number of cores N, and <math display=\\\"inline\\\">N = n \\\\times m</math>, we must decrease n, which forces use of a smaller batch-size (in order to hold tokens per core constant).</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              348.995361328125\n            ],\n            [\n              522.3515625,\n              348.995361328125\n            ],\n            [\n              522.3515625,\n              441.1995544433594\n            ],\n            [\n              89.349609375,\n              441.1995544433594\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            348.995361328125,\n            522.3515625,\n            441.1995544433594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When combining both model and expert-parallelism, we will have all-to-all communication costs from routing the tokens to the correct experts along with the internal all-reduce communications from the model parallelism. Balancing the FLOPS, communication costs and memory per core becomes quite complex when combining all three methods where the best mapping is empirically determined. See our further analysis in section <a href=\\\"#page-21-2\\\">5.6</a> for how the number of experts effects the downstream performance as well.</p>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              443.8394470214844\n            ],\n            [\n              521.6292724609375,\n              443.8394470214844\n            ],\n            [\n              521.6292724609375,\n              522.4945983886719\n            ],\n            [\n              89.7978515625,\n              522.4945983886719\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            443.8394470214844,\n            521.6292724609375,\n            522.4945983886719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-21-2\\\"></span>5.6 Towards Trillion Parameter Models</h4>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              539.5345001220703\n            ],\n            [\n              308.091796875,\n              539.5345001220703\n            ],\n            [\n              308.091796875,\n              550.443603515625\n            ],\n            [\n              89.349609375,\n              550.443603515625\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            539.5345001220703,\n            308.091796875,\n            550.443603515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/TextInlineMath/9\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">Combining expert, model and data parallelism, we design two large Switch Transformer models, one with 395 billion and 1.6 trillion parameters, respectively. We study how these models perform on both up-stream pre-training as language models and their downstream fine-tuning performance. The parameters, FLOPs per sequence and hyper-parameters of the two different models are listed below in Table 9. Standard hyper-parameters of the Transformer, including $d_{model}$, $d_{ff}$, $d_{kv}$, number of heads and number of layers are described, as well as a less common feature, FFNGEGLU, which refers to a variation of the FFN layer where the expansion matrix is substituted with two sets of weights which are non-linearly combined (Shazeer, 2020).</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              558.8444976806641\n            ],\n            [\n              521.7948608398438,\n              558.8444976806641\n            ],\n            [\n              521.7948608398438,\n              678.1465682983398\n            ],\n            [\n              89.4990234375,\n              678.1465682983398\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            558.8444976806641,\n            521.7948608398438,\n            678.1465682983398\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The Switch-C model is designed using only expert-parallelism, and no model-parallelism, as described earlier in Section <a href=\\\"#page-21-0\\\">5.4.</a> As a result, the hyper-parameters controlling the width,</p>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              680.7864685058594\n            ],\n            [\n              521.5809326171875,\n              680.7864685058594\n            ],\n            [\n              521.5809326171875,\n              705.2455673217773\n            ],\n            [\n              89.7978515625,\n              705.2455673217773\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            680.7864685058594,\n            521.5809326171875,\n            705.2455673217773\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/PageFooter/11\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.322265625,\n              724.9641876220703\n            ],\n            [\n              310.9814453125,\n              724.9641876220703\n            ],\n            [\n              310.9814453125,\n              735.92578125\n            ],\n            [\n              300.322265625,\n              735.92578125\n            ]\n          ],\n          \"bbox\": [\n            300.322265625,\n            724.9641876220703,\n            310.9814453125,\n            735.92578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/19/SectionHeader/4\",\n        \"4\": \"/page/21/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/22/Page/382\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/22/PageHeader/0'></content-ref><content-ref src='/page/22/Table/1'></content-ref><content-ref src='/page/22/ListItem/2'></content-ref><content-ref src='/page/22/Text/3'></content-ref><content-ref src='/page/22/Text/4'></content-ref><content-ref src='/page/22/Text/5'></content-ref><content-ref src='/page/22/PageFooter/7'></content-ref><content-ref src='/page/22/Footnote/6'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/22/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.728515625,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              50.22509765625\n            ],\n            [\n              247.728515625,\n              50.22509765625\n            ]\n          ],\n          \"bbox\": [\n            247.728515625,\n            37.992431640625,\n            360.38671875,\n            50.22509765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/Table/1\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Model</th><th>Parameters</th><th>FLOPs/seq</th><th>dmodel</th><th>F F NGEGLU</th><th>df f</th><th>dkv</th><th>Num. Heads</th></tr><tr><td>T5-Base</td><td>0.2B</td><td>124B</td><td>768</td><td>X</td><td>2048</td><td>64</td><td>12</td></tr><tr><td>T5-Large</td><td>0.7B</td><td>425B</td><td>1024</td><td>X</td><td>2816</td><td>64</td><td>16</td></tr><tr><td>T5-XXL</td><td>11B</td><td>6.3T</td><td>4096</td><td>X</td><td>10240</td><td>64</td><td>64</td></tr><tr><td>Switch-Base</td><td>7B</td><td>124B</td><td>768</td><td>X</td><td>2048</td><td>64</td><td>12</td></tr><tr><td>Switch-Large</td><td>26B</td><td>425B</td><td>1024</td><td>X</td><td>2816</td><td>64</td><td>16</td></tr><tr><td>Switch-XXL</td><td>395B</td><td>6.3T</td><td>4096</td><td>X</td><td>10240</td><td>64</td><td>64</td></tr><tr><td>Switch-C</td><td>1571B</td><td>890B</td><td>2080</td><td></td><td>6144</td><td>64</td><td>32</td></tr><tr><td></td><td></td><td></td><td></td><td></td><td></td><td></td><td></td></tr><tr><td>Model</td><td>Expert Freq.</td><td>Num. Layers</td><td>Num Experts</td><td>Neg. Log Perp. @250k</td><td>Neg. Log Perp. @ 500k</td><td></td><td></td></tr><tr><td>T5-Base</td><td>–</td><td>12</td><td>–</td><td>-1.599</td><td>-1.556</td><td></td><td></td></tr><tr><td>T5-Large</td><td>–</td><td>24</td><td>–</td><td>-1.402</td><td>-1.350</td><td></td><td></td></tr><tr><td>T5-XXL</td><td>–</td><td>24</td><td>–</td><td>-1.147</td><td>-1.095</td><td></td><td></td></tr><tr><td>Switch-Base</td><td>1/2</td><td>12</td><td>128</td><td>-1.370</td><td>-1.306</td><td></td><td></td></tr><tr><td>Switch-Large</td><td>1/2</td><td>24</td><td>128</td><td>-1.248</td><td>-1.177</td><td></td><td></td></tr><tr><td>Switch-XXL</td><td>1/2</td><td>24</td><td>64</td><td>-1.086</td><td>-1.008</td><td></td><td></td></tr><tr><td>Switch-C</td><td>1</td><td>15</td><td>2048</td><td>-1.096</td><td>-1.043</td><td></td><td></td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              90.3955078125,\n              91.9423828125\n            ],\n            [\n              520.55859375,\n              91.9423828125\n            ],\n            [\n              520.55859375,\n              262.58203125\n            ],\n            [\n              90.3955078125,\n              262.58203125\n            ]\n          ],\n          \"bbox\": [\n            90.3955078125,\n            91.9423828125,\n            520.55859375,\n            262.58203125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/22/TableCell/245\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Model</th>\",\n              \"polygon\": [\n                [\n                  90.43488693237305,\n                  92.37977600097656\n                ],\n                [\n                  141.75900650024414,\n                  92.37977600097656\n                ],\n                [\n                  141.75900650024414,\n                  103.6791000366211\n                ],\n                [\n                  90.43488693237305,\n                  103.6791000366211\n                ]\n              ],\n              \"bbox\": [\n                90.43488693237305,\n                92.37977600097656,\n                141.75900650024414,\n                103.6791000366211\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/246\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Parameters</th>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  92.40060424804688\n                ],\n                [\n                  189.31585693359375,\n                  92.40060424804688\n                ],\n                [\n                  189.31585693359375,\n                  103.6791000366211\n                ],\n                [\n                  141.640869140625,\n                  103.6791000366211\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                92.40060424804688,\n                189.31585693359375,\n                103.6791000366211\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/247\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>FLOPs/seq</th>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  92.37977600097656\n                ],\n                [\n                  238.97292709350586,\n                  92.37977600097656\n                ],\n                [\n                  238.97292709350586,\n                  103.6791000366211\n                ],\n                [\n                  189.0139503479004,\n                  103.6791000366211\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                92.37977600097656,\n                238.97292709350586,\n                103.6791000366211\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/248\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>dmodel</th>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  92.37977600097656\n                ],\n                [\n                  289.8376235961914,\n                  92.37977600097656\n                ],\n                [\n                  289.8376235961914,\n                  103.6791000366211\n                ],\n                [\n                  239.1698226928711,\n                  103.6791000366211\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                92.37977600097656,\n                289.8376235961914,\n                103.6791000366211\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/249\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>F F NGEGLU</th>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  92.37977600097656\n                ],\n                [\n                  369.59346771240234,\n                  92.37977600097656\n                ],\n                [\n                  369.59346771240234,\n                  103.6791000366211\n                ],\n                [\n                  289.62760162353516,\n                  103.6791000366211\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                92.37977600097656,\n                369.59346771240234,\n                103.6791000366211\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/250\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>df f</th>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  92.37977600097656\n                ],\n                [\n                  452.1583557128906,\n                  92.37977600097656\n                ],\n                [\n                  452.1583557128906,\n                  103.6791000366211\n                ],\n                [\n                  369.6197204589844,\n                  103.6791000366211\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                92.37977600097656,\n                452.1583557128906,\n                103.6791000366211\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/251\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>dkv</th>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  92.37977600097656\n                ],\n                [\n                  471.0603332519531,\n                  92.37977600097656\n                ],\n                [\n                  471.0603332519531,\n                  103.6791000366211\n                ],\n                [\n                  452.3683776855469,\n                  103.6791000366211\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                92.37977600097656,\n                471.0603332519531,\n                103.6791000366211\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/252\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Num. Heads</th>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  92.37977600097656\n                ],\n                [\n                  519.680419921875,\n                  92.37977600097656\n                ],\n                [\n                  519.680419921875,\n                  103.6791000366211\n                ],\n                [\n                  471.0997123718262,\n                  103.6791000366211\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                92.37977600097656,\n                519.680419921875,\n                103.6791000366211\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/253\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Base</td>\",\n              \"polygon\": [\n                [\n                  90.50051879882812,\n                  103.64785766601562\n                ],\n                [\n                  141.75900650024414,\n                  103.64785766601562\n                ],\n                [\n                  141.75900650024414,\n                  112.54151916503906\n                ],\n                [\n                  90.50051879882812,\n                  112.54151916503906\n                ]\n              ],\n              \"bbox\": [\n                90.50051879882812,\n                103.64785766601562,\n                141.75900650024414,\n                112.54151916503906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/254\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>0.2B</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  103.64785766601562\n                ],\n                [\n                  189.31585693359375,\n                  103.64785766601562\n                ],\n                [\n                  189.31585693359375,\n                  112.54151916503906\n                ],\n                [\n                  141.640869140625,\n                  112.54151916503906\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                103.64785766601562,\n                189.31585693359375,\n                112.54151916503906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/255\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>124B</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  103.64785766601562\n                ],\n                [\n                  238.97292709350586,\n                  103.64785766601562\n                ],\n                [\n                  238.97292709350586,\n                  112.54151916503906\n                ],\n                [\n                  189.0139503479004,\n                  112.54151916503906\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                103.64785766601562,\n                238.97292709350586,\n                112.54151916503906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/256\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>768</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  103.64785766601562\n                ],\n                [\n                  289.8376235961914,\n                  103.64785766601562\n                ],\n                [\n                  289.8376235961914,\n                  112.54151916503906\n                ],\n                [\n                  239.1698226928711,\n                  112.54151916503906\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                103.64785766601562,\n                289.8376235961914,\n                112.54151916503906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/257\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>X</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  103.64785766601562\n                ],\n                [\n                  369.59346771240234,\n                  103.64785766601562\n                ],\n                [\n                  369.59346771240234,\n                  112.54151916503906\n                ],\n                [\n                  289.62760162353516,\n                  112.54151916503906\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                103.64785766601562,\n                369.59346771240234,\n                112.54151916503906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/258\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2048</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  103.64785766601562\n                ],\n                [\n                  452.1583557128906,\n                  103.64785766601562\n                ],\n                [\n                  452.1583557128906,\n                  112.54151916503906\n                ],\n                [\n                  369.6197204589844,\n                  112.54151916503906\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                103.64785766601562,\n                452.1583557128906,\n                112.54151916503906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/259\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>64</td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  103.64785766601562\n                ],\n                [\n                  471.0603332519531,\n                  103.64785766601562\n                ],\n                [\n                  471.0603332519531,\n                  112.54151916503906\n                ],\n                [\n                  452.3683776855469,\n                  112.54151916503906\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                103.64785766601562,\n                471.0603332519531,\n                112.54151916503906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/260\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12</td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  103.64785766601562\n                ],\n                [\n                  519.7854309082031,\n                  103.64785766601562\n                ],\n                [\n                  519.7854309082031,\n                  112.54151916503906\n                ],\n                [\n                  471.0997123718262,\n                  112.54151916503906\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                103.64785766601562,\n                519.7854309082031,\n                112.54151916503906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/261\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Large</td>\",\n              \"polygon\": [\n                [\n                  90.50051879882812,\n                  112.52069091796875\n                ],\n                [\n                  141.75900650024414,\n                  112.52069091796875\n                ],\n                [\n                  141.75900650024414,\n                  121.35186767578125\n                ],\n                [\n                  90.50051879882812,\n                  121.35186767578125\n                ]\n              ],\n              \"bbox\": [\n                90.50051879882812,\n                112.52069091796875,\n                141.75900650024414,\n                121.35186767578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/262\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>0.7B</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  112.52069091796875\n                ],\n                [\n                  189.31585693359375,\n                  112.52069091796875\n                ],\n                [\n                  189.31585693359375,\n                  121.35186767578125\n                ],\n                [\n                  141.640869140625,\n                  121.35186767578125\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                112.52069091796875,\n                189.31585693359375,\n                121.35186767578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/263\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>425B</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  112.52069091796875\n                ],\n                [\n                  238.97292709350586,\n                  112.52069091796875\n                ],\n                [\n                  238.97292709350586,\n                  121.35186767578125\n                ],\n                [\n                  189.0139503479004,\n                  121.35186767578125\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                112.52069091796875,\n                238.97292709350586,\n                121.35186767578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/264\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1024</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  112.52069091796875\n                ],\n                [\n                  289.8376235961914,\n                  112.52069091796875\n                ],\n                [\n                  289.8376235961914,\n                  121.35186767578125\n                ],\n                [\n                  239.1698226928711,\n                  121.35186767578125\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                112.52069091796875,\n                289.8376235961914,\n                121.35186767578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/265\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>X</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  112.52069091796875\n                ],\n                [\n                  369.59346771240234,\n                  112.52069091796875\n                ],\n                [\n                  369.59346771240234,\n                  121.35186767578125\n                ],\n                [\n                  289.62760162353516,\n                  121.35186767578125\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                112.52069091796875,\n                369.59346771240234,\n                121.35186767578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/266\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2816</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  112.52069091796875\n                ],\n                [\n                  452.1583557128906,\n                  112.52069091796875\n                ],\n                [\n                  452.1583557128906,\n                  121.35186767578125\n                ],\n                [\n                  369.6197204589844,\n                  121.35186767578125\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                112.52069091796875,\n                452.1583557128906,\n                121.35186767578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/267\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>64</td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  112.52069091796875\n                ],\n                [\n                  471.0603332519531,\n                  112.52069091796875\n                ],\n                [\n                  471.0603332519531,\n                  121.35186767578125\n                ],\n                [\n                  452.3683776855469,\n                  121.35186767578125\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                112.52069091796875,\n                471.0603332519531,\n                121.35186767578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/268\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>16</td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  112.52069091796875\n                ],\n                [\n                  519.7854309082031,\n                  112.52069091796875\n                ],\n                [\n                  519.7854309082031,\n                  121.35186767578125\n                ],\n                [\n                  471.0997123718262,\n                  121.35186767578125\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                112.52069091796875,\n                519.7854309082031,\n                121.35186767578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/269\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-XXL</td>\",\n              \"polygon\": [\n                [\n                  90.50051879882812,\n                  121.47683715820312\n                ],\n                [\n                  141.75900650024414,\n                  121.47683715820312\n                ],\n                [\n                  141.75900650024414,\n                  132.30752563476562\n                ],\n                [\n                  90.50051879882812,\n                  132.30752563476562\n                ]\n              ],\n              \"bbox\": [\n                90.50051879882812,\n                121.47683715820312,\n                141.75900650024414,\n                132.30752563476562\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/270\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11B</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  121.47683715820312\n                ],\n                [\n                  189.31585693359375,\n                  121.47683715820312\n                ],\n                [\n                  189.31585693359375,\n                  132.30752563476562\n                ],\n                [\n                  141.640869140625,\n                  132.30752563476562\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                121.47683715820312,\n                189.31585693359375,\n                132.30752563476562\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/271\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.3T</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  121.47683715820312\n                ],\n                [\n                  238.97292709350586,\n                  121.47683715820312\n                ],\n                [\n                  238.97292709350586,\n                  132.30752563476562\n                ],\n                [\n                  189.0139503479004,\n                  132.30752563476562\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                121.47683715820312,\n                238.97292709350586,\n                132.30752563476562\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/272\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4096</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  121.47683715820312\n                ],\n                [\n                  289.8376235961914,\n                  121.47683715820312\n                ],\n                [\n                  289.8376235961914,\n                  132.30752563476562\n                ],\n                [\n                  239.1698226928711,\n                  132.30752563476562\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                121.47683715820312,\n                289.8376235961914,\n                132.30752563476562\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/273\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>X</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  121.47683715820312\n                ],\n                [\n                  369.59346771240234,\n                  121.47683715820312\n                ],\n                [\n                  369.59346771240234,\n                  132.30752563476562\n                ],\n                [\n                  289.62760162353516,\n                  132.30752563476562\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                121.47683715820312,\n                369.59346771240234,\n                132.30752563476562\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/274\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10240</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  121.47683715820312\n                ],\n                [\n                  452.1583557128906,\n                  121.47683715820312\n                ],\n                [\n                  452.1583557128906,\n                  132.30752563476562\n                ],\n                [\n                  369.6197204589844,\n                  132.30752563476562\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                121.47683715820312,\n                452.1583557128906,\n                132.30752563476562\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/275\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>64</td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  121.47683715820312\n                ],\n                [\n                  471.0603332519531,\n                  121.47683715820312\n                ],\n                [\n                  471.0603332519531,\n                  132.30752563476562\n                ],\n                [\n                  452.3683776855469,\n                  132.30752563476562\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                121.47683715820312,\n                471.0603332519531,\n                132.30752563476562\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/276\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>64</td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  121.47683715820312\n                ],\n                [\n                  519.7854309082031,\n                  121.47683715820312\n                ],\n                [\n                  519.7854309082031,\n                  132.30752563476562\n                ],\n                [\n                  471.0997123718262,\n                  132.30752563476562\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                121.47683715820312,\n                519.7854309082031,\n                132.30752563476562\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/277\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base</td>\",\n              \"polygon\": [\n                [\n                  90.43488693237305,\n                  132.25545501708984\n                ],\n                [\n                  141.75900650024414,\n                  132.25545501708984\n                ],\n                [\n                  141.75900650024414,\n                  143.1902847290039\n                ],\n                [\n                  90.43488693237305,\n                  143.1902847290039\n                ]\n              ],\n              \"bbox\": [\n                90.43488693237305,\n                132.25545501708984,\n                141.75900650024414,\n                143.1902847290039\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/278\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7B</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  132.25545501708984\n                ],\n                [\n                  189.31585693359375,\n                  132.25545501708984\n                ],\n                [\n                  189.31585693359375,\n                  143.1902847290039\n                ],\n                [\n                  141.640869140625,\n                  143.1902847290039\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                132.25545501708984,\n                189.31585693359375,\n                143.1902847290039\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/279\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>124B</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  132.25545501708984\n                ],\n                [\n                  238.97292709350586,\n                  132.25545501708984\n                ],\n                [\n                  238.97292709350586,\n                  143.1902847290039\n                ],\n                [\n                  189.0139503479004,\n                  143.1902847290039\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                132.25545501708984,\n                238.97292709350586,\n                143.1902847290039\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/280\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>768</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  132.25545501708984\n                ],\n                [\n                  289.8376235961914,\n                  132.25545501708984\n                ],\n                [\n                  289.8376235961914,\n                  143.1902847290039\n                ],\n                [\n                  239.1698226928711,\n                  143.1902847290039\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                132.25545501708984,\n                289.8376235961914,\n                143.1902847290039\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/281\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>X</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  132.25545501708984\n                ],\n                [\n                  369.59346771240234,\n                  132.25545501708984\n                ],\n                [\n                  369.59346771240234,\n                  143.1902847290039\n                ],\n                [\n                  289.62760162353516,\n                  143.1902847290039\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                132.25545501708984,\n                369.59346771240234,\n                143.1902847290039\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/282\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2048</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  132.25545501708984\n                ],\n                [\n                  452.1583557128906,\n                  132.25545501708984\n                ],\n                [\n                  452.1583557128906,\n                  143.1902847290039\n                ],\n                [\n                  369.6197204589844,\n                  143.1902847290039\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                132.25545501708984,\n                452.1583557128906,\n                143.1902847290039\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/283\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>64</td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  132.25545501708984\n                ],\n                [\n                  471.0603332519531,\n                  132.25545501708984\n                ],\n                [\n                  471.0603332519531,\n                  143.1902847290039\n                ],\n                [\n                  452.3683776855469,\n                  143.1902847290039\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                132.25545501708984,\n                471.0603332519531,\n                143.1902847290039\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/284\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12</td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  132.25545501708984\n                ],\n                [\n                  519.8904418945312,\n                  132.25545501708984\n                ],\n                [\n                  519.8904418945312,\n                  143.1902847290039\n                ],\n                [\n                  471.0997123718262,\n                  143.1902847290039\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                132.25545501708984,\n                519.8904418945312,\n                143.1902847290039\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/285\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Large</td>\",\n              \"polygon\": [\n                [\n                  90.50051879882812,\n                  143.18768119812012\n                ],\n                [\n                  141.75900650024414,\n                  143.18768119812012\n                ],\n                [\n                  141.75900650024414,\n                  152.00323677062988\n                ],\n                [\n                  90.50051879882812,\n                  152.00323677062988\n                ]\n              ],\n              \"bbox\": [\n                90.50051879882812,\n                143.18768119812012,\n                141.75900650024414,\n                152.00323677062988\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/286\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>26B</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  143.18768119812012\n                ],\n                [\n                  189.31585693359375,\n                  143.18768119812012\n                ],\n                [\n                  189.31585693359375,\n                  152.00323677062988\n                ],\n                [\n                  141.640869140625,\n                  152.00323677062988\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                143.18768119812012,\n                189.31585693359375,\n                152.00323677062988\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/287\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>425B</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  143.18768119812012\n                ],\n                [\n                  238.97292709350586,\n                  143.18768119812012\n                ],\n                [\n                  238.97292709350586,\n                  152.00323677062988\n                ],\n                [\n                  189.0139503479004,\n                  152.00323677062988\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                143.18768119812012,\n                238.97292709350586,\n                152.00323677062988\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/288\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1024</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  143.18768119812012\n                ],\n                [\n                  289.8376235961914,\n                  143.18768119812012\n                ],\n                [\n                  289.8376235961914,\n                  152.00323677062988\n                ],\n                [\n                  239.1698226928711,\n                  152.00323677062988\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                143.18768119812012,\n                289.8376235961914,\n                152.00323677062988\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/289\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>X</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  143.18768119812012\n                ],\n                [\n                  369.59346771240234,\n                  143.18768119812012\n                ],\n                [\n                  369.59346771240234,\n                  152.00323677062988\n                ],\n                [\n                  289.62760162353516,\n                  152.00323677062988\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                143.18768119812012,\n                369.59346771240234,\n                152.00323677062988\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/290\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2816</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  143.18768119812012\n                ],\n                [\n                  452.1583557128906,\n                  143.18768119812012\n                ],\n                [\n                  452.1583557128906,\n                  152.00323677062988\n                ],\n                [\n                  369.6197204589844,\n                  152.00323677062988\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                143.18768119812012,\n                452.1583557128906,\n                152.00323677062988\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/291\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>64</td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  143.18768119812012\n                ],\n                [\n                  471.0603332519531,\n                  143.18768119812012\n                ],\n                [\n                  471.0603332519531,\n                  152.00323677062988\n                ],\n                [\n                  452.3683776855469,\n                  152.00323677062988\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                143.18768119812012,\n                471.0603332519531,\n                152.00323677062988\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/292\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>16</td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  143.18768119812012\n                ],\n                [\n                  519.7854309082031,\n                  143.18768119812012\n                ],\n                [\n                  519.7854309082031,\n                  152.00323677062988\n                ],\n                [\n                  471.0997123718262,\n                  152.00323677062988\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                143.18768119812012,\n                519.7854309082031,\n                152.00323677062988\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/293\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-XXL</td>\",\n              \"polygon\": [\n                [\n                  90.50051879882812,\n                  151.98761558532715\n                ],\n                [\n                  141.75900650024414,\n                  151.98761558532715\n                ],\n                [\n                  141.75900650024414,\n                  160.86565589904785\n                ],\n                [\n                  90.50051879882812,\n                  160.86565589904785\n                ]\n              ],\n              \"bbox\": [\n                90.50051879882812,\n                151.98761558532715,\n                141.75900650024414,\n                160.86565589904785\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/294\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>395B</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  151.98761558532715\n                ],\n                [\n                  189.31585693359375,\n                  151.98761558532715\n                ],\n                [\n                  189.31585693359375,\n                  160.86565589904785\n                ],\n                [\n                  141.640869140625,\n                  160.86565589904785\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                151.98761558532715,\n                189.31585693359375,\n                160.86565589904785\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/295\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.3T</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  151.98761558532715\n                ],\n                [\n                  238.97292709350586,\n                  151.98761558532715\n                ],\n                [\n                  238.97292709350586,\n                  160.86565589904785\n                ],\n                [\n                  189.0139503479004,\n                  160.86565589904785\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                151.98761558532715,\n                238.97292709350586,\n                160.86565589904785\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/296\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4096</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  151.98761558532715\n                ],\n                [\n                  289.8376235961914,\n                  151.98761558532715\n                ],\n                [\n                  289.8376235961914,\n                  160.86565589904785\n                ],\n                [\n                  239.1698226928711,\n                  160.86565589904785\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                151.98761558532715,\n                289.8376235961914,\n                160.86565589904785\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/297\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>X</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  151.98761558532715\n                ],\n                [\n                  369.59346771240234,\n                  151.98761558532715\n                ],\n                [\n                  369.59346771240234,\n                  160.86565589904785\n                ],\n                [\n                  289.62760162353516,\n                  160.86565589904785\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                151.98761558532715,\n                369.59346771240234,\n                160.86565589904785\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/298\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10240</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  151.98761558532715\n                ],\n                [\n                  452.1583557128906,\n                  151.98761558532715\n                ],\n                [\n                  452.1583557128906,\n                  160.86565589904785\n                ],\n                [\n                  369.6197204589844,\n                  160.86565589904785\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                151.98761558532715,\n                452.1583557128906,\n                160.86565589904785\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/299\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>64</td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  151.98761558532715\n                ],\n                [\n                  471.0603332519531,\n                  151.98761558532715\n                ],\n                [\n                  471.0603332519531,\n                  160.86565589904785\n                ],\n                [\n                  452.3683776855469,\n                  160.86565589904785\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                151.98761558532715,\n                471.0603332519531,\n                160.86565589904785\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/300\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>64</td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  151.98761558532715\n                ],\n                [\n                  519.7854309082031,\n                  151.98761558532715\n                ],\n                [\n                  519.7854309082031,\n                  160.86565589904785\n                ],\n                [\n                  471.0997123718262,\n                  160.86565589904785\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                151.98761558532715,\n                519.7854309082031,\n                160.86565589904785\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/301\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-C</td>\",\n              \"polygon\": [\n                [\n                  90.50051879882812,\n                  160.9047088623047\n                ],\n                [\n                  141.75900650024414,\n                  160.9047088623047\n                ],\n                [\n                  141.75900650024414,\n                  171.4438018798828\n                ],\n                [\n                  90.50051879882812,\n                  171.4438018798828\n                ]\n              ],\n              \"bbox\": [\n                90.50051879882812,\n                160.9047088623047,\n                141.75900650024414,\n                171.4438018798828\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/302\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1571B</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  160.9047088623047\n                ],\n                [\n                  189.31585693359375,\n                  160.9047088623047\n                ],\n                [\n                  189.31585693359375,\n                  171.4438018798828\n                ],\n                [\n                  141.640869140625,\n                  171.4438018798828\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                160.9047088623047,\n                189.31585693359375,\n                171.4438018798828\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/303\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>890B</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  160.9047088623047\n                ],\n                [\n                  238.97292709350586,\n                  160.9047088623047\n                ],\n                [\n                  238.97292709350586,\n                  171.4438018798828\n                ],\n                [\n                  189.0139503479004,\n                  171.4438018798828\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                160.9047088623047,\n                238.97292709350586,\n                171.4438018798828\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/304\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2080</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  160.9047088623047\n                ],\n                [\n                  289.8376235961914,\n                  160.9047088623047\n                ],\n                [\n                  289.8376235961914,\n                  171.4438018798828\n                ],\n                [\n                  239.1698226928711,\n                  171.4438018798828\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                160.9047088623047,\n                289.8376235961914,\n                171.4438018798828\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/305\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  160.9047088623047\n                ],\n                [\n                  369.59346771240234,\n                  160.9047088623047\n                ],\n                [\n                  369.59346771240234,\n                  171.4438018798828\n                ],\n                [\n                  289.62760162353516,\n                  171.4438018798828\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                160.9047088623047,\n                369.59346771240234,\n                171.4438018798828\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/306\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6144</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  160.9047088623047\n                ],\n                [\n                  452.1583557128906,\n                  160.9047088623047\n                ],\n                [\n                  452.1583557128906,\n                  171.4438018798828\n                ],\n                [\n                  369.6197204589844,\n                  171.4438018798828\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                160.9047088623047,\n                452.1583557128906,\n                171.4438018798828\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/307\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>64</td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  160.9047088623047\n                ],\n                [\n                  471.0603332519531,\n                  160.9047088623047\n                ],\n                [\n                  471.0603332519531,\n                  171.4438018798828\n                ],\n                [\n                  452.3683776855469,\n                  171.4438018798828\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                160.9047088623047,\n                471.0603332519531,\n                171.4438018798828\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/308\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>32</td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  160.9047088623047\n                ],\n                [\n                  519.7854309082031,\n                  160.9047088623047\n                ],\n                [\n                  519.7854309082031,\n                  171.4438018798828\n                ],\n                [\n                  471.0997123718262,\n                  171.4438018798828\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                160.9047088623047,\n                519.7854309082031,\n                171.4438018798828\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/309\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  90.43488693237305,\n                  171.54794311523438\n                ],\n                [\n                  141.75900650024414,\n                  171.54794311523438\n                ],\n                [\n                  141.75900650024414,\n                  182.37863159179688\n                ],\n                [\n                  90.43488693237305,\n                  182.37863159179688\n                ]\n              ],\n              \"bbox\": [\n                90.43488693237305,\n                171.54794311523438,\n                141.75900650024414,\n                182.37863159179688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/310\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  171.54794311523438\n                ],\n                [\n                  189.31585693359375,\n                  171.54794311523438\n                ],\n                [\n                  189.31585693359375,\n                  182.37863159179688\n                ],\n                [\n                  141.640869140625,\n                  182.37863159179688\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                171.54794311523438,\n                189.31585693359375,\n                182.37863159179688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/311\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  171.54794311523438\n                ],\n                [\n                  238.97292709350586,\n                  171.54794311523438\n                ],\n                [\n                  238.97292709350586,\n                  182.37863159179688\n                ],\n                [\n                  189.0139503479004,\n                  182.37863159179688\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                171.54794311523438,\n                238.97292709350586,\n                182.37863159179688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/312\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  171.54794311523438\n                ],\n                [\n                  289.8376235961914,\n                  171.54794311523438\n                ],\n                [\n                  289.8376235961914,\n                  182.37863159179688\n                ],\n                [\n                  239.1698226928711,\n                  182.37863159179688\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                171.54794311523438,\n                289.8376235961914,\n                182.37863159179688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/313\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  171.54794311523438\n                ],\n                [\n                  369.59346771240234,\n                  171.54794311523438\n                ],\n                [\n                  369.59346771240234,\n                  182.37863159179688\n                ],\n                [\n                  289.62760162353516,\n                  182.37863159179688\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                171.54794311523438,\n                369.59346771240234,\n                182.37863159179688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/314\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  171.54794311523438\n                ],\n                [\n                  452.1583557128906,\n                  171.54794311523438\n                ],\n                [\n                  452.1583557128906,\n                  182.37863159179688\n                ],\n                [\n                  369.6197204589844,\n                  182.37863159179688\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                171.54794311523438,\n                452.1583557128906,\n                182.37863159179688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/315\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  171.54794311523438\n                ],\n                [\n                  471.0603332519531,\n                  171.54794311523438\n                ],\n                [\n                  471.0603332519531,\n                  182.37863159179688\n                ],\n                [\n                  452.3683776855469,\n                  182.37863159179688\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                171.54794311523438,\n                471.0603332519531,\n                182.37863159179688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/316\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  171.54794311523438\n                ],\n                [\n                  519.8904418945312,\n                  171.54794311523438\n                ],\n                [\n                  519.8904418945312,\n                  182.37863159179688\n                ],\n                [\n                  471.0997123718262,\n                  182.37863159179688\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                171.54794311523438,\n                519.8904418945312,\n                182.37863159179688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/317\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Model</td>\",\n              \"polygon\": [\n                [\n                  90.43488693237305,\n                  182.40466690063477\n                ],\n                [\n                  141.75900650024414,\n                  182.40466690063477\n                ],\n                [\n                  141.75900650024414,\n                  193.09997177124023\n                ],\n                [\n                  90.43488693237305,\n                  193.09997177124023\n                ]\n              ],\n              \"bbox\": [\n                90.43488693237305,\n                182.40466690063477,\n                141.75900650024414,\n                193.09997177124023\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/318\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Expert Freq.</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  182.40466690063477\n                ],\n                [\n                  189.31585693359375,\n                  182.40466690063477\n                ],\n                [\n                  189.31585693359375,\n                  193.09997177124023\n                ],\n                [\n                  141.640869140625,\n                  193.09997177124023\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                182.40466690063477,\n                189.31585693359375,\n                193.09997177124023\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/319\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Num. Layers</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  182.40466690063477\n                ],\n                [\n                  238.97292709350586,\n                  182.40466690063477\n                ],\n                [\n                  238.97292709350586,\n                  193.09997177124023\n                ],\n                [\n                  189.0139503479004,\n                  193.09997177124023\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                182.40466690063477,\n                238.97292709350586,\n                193.09997177124023\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/320\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Num Experts</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  182.40466690063477\n                ],\n                [\n                  289.8376235961914,\n                  182.40466690063477\n                ],\n                [\n                  289.8376235961914,\n                  193.09997177124023\n                ],\n                [\n                  239.1698226928711,\n                  193.09997177124023\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                182.40466690063477,\n                289.8376235961914,\n                193.09997177124023\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/321\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Neg. Log Perp. @250k</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  182.40466690063477\n                ],\n                [\n                  369.59346771240234,\n                  182.40466690063477\n                ],\n                [\n                  369.59346771240234,\n                  193.09997177124023\n                ],\n                [\n                  289.62760162353516,\n                  193.09997177124023\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                182.40466690063477,\n                369.59346771240234,\n                193.09997177124023\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/322\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Neg. Log Perp. @ 500k</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  182.40466690063477\n                ],\n                [\n                  452.1583557128906,\n                  182.40466690063477\n                ],\n                [\n                  452.1583557128906,\n                  193.09997177124023\n                ],\n                [\n                  369.6197204589844,\n                  193.09997177124023\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                182.40466690063477,\n                452.1583557128906,\n                193.09997177124023\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/323\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  182.40466690063477\n                ],\n                [\n                  471.0603332519531,\n                  182.40466690063477\n                ],\n                [\n                  471.0603332519531,\n                  193.09997177124023\n                ],\n                [\n                  452.3683776855469,\n                  193.09997177124023\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                182.40466690063477,\n                471.0603332519531,\n                193.09997177124023\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/324\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  182.40466690063477\n                ],\n                [\n                  519.8904418945312,\n                  182.40466690063477\n                ],\n                [\n                  519.8904418945312,\n                  193.09997177124023\n                ],\n                [\n                  471.0997123718262,\n                  193.09997177124023\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                182.40466690063477,\n                519.8904418945312,\n                193.09997177124023\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/325\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Base</td>\",\n              \"polygon\": [\n                [\n                  90.43488693237305,\n                  193.13642120361328\n                ],\n                [\n                  141.75900650024414,\n                  193.13642120361328\n                ],\n                [\n                  141.75900650024414,\n                  202.03008270263672\n                ],\n                [\n                  90.43488693237305,\n                  202.03008270263672\n                ]\n              ],\n              \"bbox\": [\n                90.43488693237305,\n                193.13642120361328,\n                141.75900650024414,\n                202.03008270263672\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/326\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>–</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  193.13642120361328\n                ],\n                [\n                  189.31585693359375,\n                  193.13642120361328\n                ],\n                [\n                  189.31585693359375,\n                  202.03008270263672\n                ],\n                [\n                  141.640869140625,\n                  202.03008270263672\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                193.13642120361328,\n                189.31585693359375,\n                202.03008270263672\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/327\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  193.13642120361328\n                ],\n                [\n                  238.97292709350586,\n                  193.13642120361328\n                ],\n                [\n                  238.97292709350586,\n                  202.03008270263672\n                ],\n                [\n                  189.0139503479004,\n                  202.03008270263672\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                193.13642120361328,\n                238.97292709350586,\n                202.03008270263672\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/328\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>–</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  193.13642120361328\n                ],\n                [\n                  289.8376235961914,\n                  193.13642120361328\n                ],\n                [\n                  289.8376235961914,\n                  202.03008270263672\n                ],\n                [\n                  239.1698226928711,\n                  202.03008270263672\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                193.13642120361328,\n                289.8376235961914,\n                202.03008270263672\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/329\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.599</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  193.13642120361328\n                ],\n                [\n                  369.59346771240234,\n                  193.13642120361328\n                ],\n                [\n                  369.59346771240234,\n                  202.03008270263672\n                ],\n                [\n                  289.62760162353516,\n                  202.03008270263672\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                193.13642120361328,\n                369.59346771240234,\n                202.03008270263672\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/330\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.556</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  193.13642120361328\n                ],\n                [\n                  452.1583557128906,\n                  193.13642120361328\n                ],\n                [\n                  452.1583557128906,\n                  202.03008270263672\n                ],\n                [\n                  369.6197204589844,\n                  202.03008270263672\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                193.13642120361328,\n                452.1583557128906,\n                202.03008270263672\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/331\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  193.13642120361328\n                ],\n                [\n                  471.0603332519531,\n                  193.13642120361328\n                ],\n                [\n                  471.0603332519531,\n                  202.03008270263672\n                ],\n                [\n                  452.3683776855469,\n                  202.03008270263672\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                193.13642120361328,\n                471.0603332519531,\n                202.03008270263672\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/332\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  193.13642120361328\n                ],\n                [\n                  519.8904418945312,\n                  193.13642120361328\n                ],\n                [\n                  519.8904418945312,\n                  202.03008270263672\n                ],\n                [\n                  471.0997123718262,\n                  202.03008270263672\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                193.13642120361328,\n                519.8904418945312,\n                202.03008270263672\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/333\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-Large</td>\",\n              \"polygon\": [\n                [\n                  90.43488693237305,\n                  202.14984512329102\n                ],\n                [\n                  141.75900650024414,\n                  202.14984512329102\n                ],\n                [\n                  141.75900650024414,\n                  211.01226425170898\n                ],\n                [\n                  90.43488693237305,\n                  211.01226425170898\n                ]\n              ],\n              \"bbox\": [\n                90.43488693237305,\n                202.14984512329102,\n                141.75900650024414,\n                211.01226425170898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/334\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>–</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  202.14984512329102\n                ],\n                [\n                  189.31585693359375,\n                  202.14984512329102\n                ],\n                [\n                  189.31585693359375,\n                  211.01226425170898\n                ],\n                [\n                  141.640869140625,\n                  211.01226425170898\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                202.14984512329102,\n                189.31585693359375,\n                211.01226425170898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/335\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>24</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  202.14984512329102\n                ],\n                [\n                  238.97292709350586,\n                  202.14984512329102\n                ],\n                [\n                  238.97292709350586,\n                  211.01226425170898\n                ],\n                [\n                  189.0139503479004,\n                  211.01226425170898\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                202.14984512329102,\n                238.97292709350586,\n                211.01226425170898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/336\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>–</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  202.14984512329102\n                ],\n                [\n                  289.8376235961914,\n                  202.14984512329102\n                ],\n                [\n                  289.8376235961914,\n                  211.01226425170898\n                ],\n                [\n                  239.1698226928711,\n                  211.01226425170898\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                202.14984512329102,\n                289.8376235961914,\n                211.01226425170898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/337\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.402</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  202.14984512329102\n                ],\n                [\n                  369.59346771240234,\n                  202.14984512329102\n                ],\n                [\n                  369.59346771240234,\n                  211.01226425170898\n                ],\n                [\n                  289.62760162353516,\n                  211.01226425170898\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                202.14984512329102,\n                369.59346771240234,\n                211.01226425170898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/338\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.350</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  202.14984512329102\n                ],\n                [\n                  452.1583557128906,\n                  202.14984512329102\n                ],\n                [\n                  452.1583557128906,\n                  211.01226425170898\n                ],\n                [\n                  369.6197204589844,\n                  211.01226425170898\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                202.14984512329102,\n                452.1583557128906,\n                211.01226425170898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/339\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  202.14984512329102\n                ],\n                [\n                  471.0603332519531,\n                  202.14984512329102\n                ],\n                [\n                  471.0603332519531,\n                  211.01226425170898\n                ],\n                [\n                  452.3683776855469,\n                  211.01226425170898\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                202.14984512329102,\n                471.0603332519531,\n                211.01226425170898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/340\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  202.14984512329102\n                ],\n                [\n                  519.8904418945312,\n                  202.14984512329102\n                ],\n                [\n                  519.8904418945312,\n                  211.01226425170898\n                ],\n                [\n                  471.0997123718262,\n                  211.01226425170898\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                202.14984512329102,\n                519.8904418945312,\n                211.01226425170898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/341\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>T5-XXL</td>\",\n              \"polygon\": [\n                [\n                  90.50051879882812,\n                  211.09557723999023\n                ],\n                [\n                  141.75900650024414,\n                  211.09557723999023\n                ],\n                [\n                  141.75900650024414,\n                  221.72839736938477\n                ],\n                [\n                  90.50051879882812,\n                  221.72839736938477\n                ]\n              ],\n              \"bbox\": [\n                90.50051879882812,\n                211.09557723999023,\n                141.75900650024414,\n                221.72839736938477\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/342\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>–</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  211.09557723999023\n                ],\n                [\n                  189.31585693359375,\n                  211.09557723999023\n                ],\n                [\n                  189.31585693359375,\n                  221.72839736938477\n                ],\n                [\n                  141.640869140625,\n                  221.72839736938477\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                211.09557723999023,\n                189.31585693359375,\n                221.72839736938477\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/343\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>24</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  211.09557723999023\n                ],\n                [\n                  238.97292709350586,\n                  211.09557723999023\n                ],\n                [\n                  238.97292709350586,\n                  221.72839736938477\n                ],\n                [\n                  189.0139503479004,\n                  221.72839736938477\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                211.09557723999023,\n                238.97292709350586,\n                221.72839736938477\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/344\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>–</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  211.09557723999023\n                ],\n                [\n                  289.8376235961914,\n                  211.09557723999023\n                ],\n                [\n                  289.8376235961914,\n                  221.72839736938477\n                ],\n                [\n                  239.1698226928711,\n                  221.72839736938477\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                211.09557723999023,\n                289.8376235961914,\n                221.72839736938477\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/345\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.147</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  211.09557723999023\n                ],\n                [\n                  369.59346771240234,\n                  211.09557723999023\n                ],\n                [\n                  369.59346771240234,\n                  221.72839736938477\n                ],\n                [\n                  289.62760162353516,\n                  221.72839736938477\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                211.09557723999023,\n                369.59346771240234,\n                221.72839736938477\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/346\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.095</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  211.09557723999023\n                ],\n                [\n                  452.1583557128906,\n                  211.09557723999023\n                ],\n                [\n                  452.1583557128906,\n                  221.72839736938477\n                ],\n                [\n                  369.6197204589844,\n                  221.72839736938477\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                211.09557723999023,\n                452.1583557128906,\n                221.72839736938477\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/347\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  211.09557723999023\n                ],\n                [\n                  471.0603332519531,\n                  211.09557723999023\n                ],\n                [\n                  471.0603332519531,\n                  221.72839736938477\n                ],\n                [\n                  452.3683776855469,\n                  221.72839736938477\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                211.09557723999023,\n                471.0603332519531,\n                221.72839736938477\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/348\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  211.09557723999023\n                ],\n                [\n                  519.7854309082031,\n                  211.09557723999023\n                ],\n                [\n                  519.7854309082031,\n                  221.72839736938477\n                ],\n                [\n                  471.0997123718262,\n                  221.72839736938477\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                211.09557723999023,\n                519.7854309082031,\n                221.72839736938477\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/349\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Base</td>\",\n              \"polygon\": [\n                [\n                  90.43488693237305,\n                  221.82733154296875\n                ],\n                [\n                  141.75900650024414,\n                  221.82733154296875\n                ],\n                [\n                  141.75900650024414,\n                  232.65802001953125\n                ],\n                [\n                  90.43488693237305,\n                  232.65802001953125\n                ]\n              ],\n              \"bbox\": [\n                90.43488693237305,\n                221.82733154296875,\n                141.75900650024414,\n                232.65802001953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/350\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1/2</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  221.82733154296875\n                ],\n                [\n                  189.31585693359375,\n                  221.82733154296875\n                ],\n                [\n                  189.31585693359375,\n                  232.65802001953125\n                ],\n                [\n                  141.640869140625,\n                  232.65802001953125\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                221.82733154296875,\n                189.31585693359375,\n                232.65802001953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/351\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  221.82733154296875\n                ],\n                [\n                  238.97292709350586,\n                  221.82733154296875\n                ],\n                [\n                  238.97292709350586,\n                  232.65802001953125\n                ],\n                [\n                  189.0139503479004,\n                  232.65802001953125\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                221.82733154296875,\n                238.97292709350586,\n                232.65802001953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/352\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>128</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  221.82733154296875\n                ],\n                [\n                  289.8376235961914,\n                  221.82733154296875\n                ],\n                [\n                  289.8376235961914,\n                  232.65802001953125\n                ],\n                [\n                  239.1698226928711,\n                  232.65802001953125\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                221.82733154296875,\n                289.8376235961914,\n                232.65802001953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/353\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.370</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  221.82733154296875\n                ],\n                [\n                  369.59346771240234,\n                  221.82733154296875\n                ],\n                [\n                  369.59346771240234,\n                  232.65802001953125\n                ],\n                [\n                  289.62760162353516,\n                  232.65802001953125\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                221.82733154296875,\n                369.59346771240234,\n                232.65802001953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/354\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.306</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  221.82733154296875\n                ],\n                [\n                  452.1583557128906,\n                  221.82733154296875\n                ],\n                [\n                  452.1583557128906,\n                  232.65802001953125\n                ],\n                [\n                  369.6197204589844,\n                  232.65802001953125\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                221.82733154296875,\n                452.1583557128906,\n                232.65802001953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/355\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  221.82733154296875\n                ],\n                [\n                  471.0603332519531,\n                  221.82733154296875\n                ],\n                [\n                  471.0603332519531,\n                  232.65802001953125\n                ],\n                [\n                  452.3683776855469,\n                  232.65802001953125\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                221.82733154296875,\n                471.0603332519531,\n                232.65802001953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/356\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  221.82733154296875\n                ],\n                [\n                  519.8904418945312,\n                  221.82733154296875\n                ],\n                [\n                  519.8904418945312,\n                  232.65802001953125\n                ],\n                [\n                  471.0997123718262,\n                  232.65802001953125\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                221.82733154296875,\n                519.8904418945312,\n                232.65802001953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/357\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-Large</td>\",\n              \"polygon\": [\n                [\n                  90.50051879882812,\n                  232.80902481079102\n                ],\n                [\n                  141.75900650024414,\n                  232.80902481079102\n                ],\n                [\n                  141.75900650024414,\n                  241.67144393920898\n                ],\n                [\n                  90.50051879882812,\n                  241.67144393920898\n                ]\n              ],\n              \"bbox\": [\n                90.50051879882812,\n                232.80902481079102,\n                141.75900650024414,\n                241.67144393920898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/358\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1/2</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  232.80902481079102\n                ],\n                [\n                  189.31585693359375,\n                  232.80902481079102\n                ],\n                [\n                  189.31585693359375,\n                  241.67144393920898\n                ],\n                [\n                  141.640869140625,\n                  241.67144393920898\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                232.80902481079102,\n                189.31585693359375,\n                241.67144393920898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/359\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>24</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  232.80902481079102\n                ],\n                [\n                  238.97292709350586,\n                  232.80902481079102\n                ],\n                [\n                  238.97292709350586,\n                  241.67144393920898\n                ],\n                [\n                  189.0139503479004,\n                  241.67144393920898\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                232.80902481079102,\n                238.97292709350586,\n                241.67144393920898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/360\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>128</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  232.80902481079102\n                ],\n                [\n                  289.8376235961914,\n                  232.80902481079102\n                ],\n                [\n                  289.8376235961914,\n                  241.67144393920898\n                ],\n                [\n                  239.1698226928711,\n                  241.67144393920898\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                232.80902481079102,\n                289.8376235961914,\n                241.67144393920898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/361\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.248</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  232.80902481079102\n                ],\n                [\n                  369.59346771240234,\n                  232.80902481079102\n                ],\n                [\n                  369.59346771240234,\n                  241.67144393920898\n                ],\n                [\n                  289.62760162353516,\n                  241.67144393920898\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                232.80902481079102,\n                369.59346771240234,\n                241.67144393920898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/362\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.177</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  232.80902481079102\n                ],\n                [\n                  452.1583557128906,\n                  232.80902481079102\n                ],\n                [\n                  452.1583557128906,\n                  241.67144393920898\n                ],\n                [\n                  369.6197204589844,\n                  241.67144393920898\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                232.80902481079102,\n                452.1583557128906,\n                241.67144393920898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/363\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  232.80902481079102\n                ],\n                [\n                  471.0603332519531,\n                  232.80902481079102\n                ],\n                [\n                  471.0603332519531,\n                  241.67144393920898\n                ],\n                [\n                  452.3683776855469,\n                  241.67144393920898\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                232.80902481079102,\n                471.0603332519531,\n                241.67144393920898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/364\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  232.80902481079102\n                ],\n                [\n                  519.7854309082031,\n                  232.80902481079102\n                ],\n                [\n                  519.7854309082031,\n                  241.67144393920898\n                ],\n                [\n                  471.0997123718262,\n                  241.67144393920898\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                232.80902481079102,\n                519.7854309082031,\n                241.67144393920898\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/365\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-XXL</td>\",\n              \"polygon\": [\n                [\n                  90.43488693237305,\n                  241.89014053344727\n                ],\n                [\n                  141.75900650024414,\n                  241.55688858032227\n                ],\n                [\n                  141.75900650024414,\n                  250.41930770874023\n                ],\n                [\n                  90.43488693237305,\n                  250.75255966186523\n                ]\n              ],\n              \"bbox\": [\n                90.43488693237305,\n                241.55688858032227,\n                141.75900650024414,\n                250.75255966186523\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/366\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1/2</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  241.89014053344727\n                ],\n                [\n                  189.31585693359375,\n                  241.55688858032227\n                ],\n                [\n                  189.31585693359375,\n                  250.41930770874023\n                ],\n                [\n                  141.640869140625,\n                  250.75255966186523\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                241.55688858032227,\n                189.31585693359375,\n                250.75255966186523\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/367\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>24</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  241.89014053344727\n                ],\n                [\n                  238.97292709350586,\n                  241.55688858032227\n                ],\n                [\n                  238.97292709350586,\n                  250.41930770874023\n                ],\n                [\n                  189.0139503479004,\n                  250.75255966186523\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                241.55688858032227,\n                238.97292709350586,\n                250.75255966186523\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/368\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>64</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  241.89014053344727\n                ],\n                [\n                  289.8376235961914,\n                  241.55688858032227\n                ],\n                [\n                  289.8376235961914,\n                  250.41930770874023\n                ],\n                [\n                  239.1698226928711,\n                  250.75255966186523\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                241.55688858032227,\n                289.8376235961914,\n                250.75255966186523\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/369\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.086</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  241.89014053344727\n                ],\n                [\n                  369.59346771240234,\n                  241.55688858032227\n                ],\n                [\n                  369.59346771240234,\n                  250.41930770874023\n                ],\n                [\n                  289.62760162353516,\n                  250.75255966186523\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                241.55688858032227,\n                369.59346771240234,\n                250.75255966186523\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/370\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.008</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  241.89014053344727\n                ],\n                [\n                  452.1583557128906,\n                  241.55688858032227\n                ],\n                [\n                  452.1583557128906,\n                  250.41930770874023\n                ],\n                [\n                  369.6197204589844,\n                  250.75255966186523\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                241.55688858032227,\n                452.1583557128906,\n                250.75255966186523\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/371\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  241.89014053344727\n                ],\n                [\n                  471.0603332519531,\n                  241.55688858032227\n                ],\n                [\n                  471.0603332519531,\n                  250.41930770874023\n                ],\n                [\n                  452.3683776855469,\n                  250.75255966186523\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                241.55688858032227,\n                471.0603332519531,\n                250.75255966186523\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/372\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  241.89014053344727\n                ],\n                [\n                  519.8904418945312,\n                  241.55688858032227\n                ],\n                [\n                  519.8904418945312,\n                  250.41930770874023\n                ],\n                [\n                  471.0997123718262,\n                  250.75255966186523\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                241.55688858032227,\n                519.8904418945312,\n                250.75255966186523\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/373\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Switch-C</td>\",\n              \"polygon\": [\n                [\n                  90.50051879882812,\n                  250.73173141479492\n                ],\n                [\n                  141.75900650024414,\n                  250.39847946166992\n                ],\n                [\n                  141.75900650024414,\n                  261.7394599914551\n                ],\n                [\n                  90.50051879882812,\n                  261.90087890625\n                ]\n              ],\n              \"bbox\": [\n                90.50051879882812,\n                250.39847946166992,\n                141.75900650024414,\n                261.90087890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/374\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1</td>\",\n              \"polygon\": [\n                [\n                  141.640869140625,\n                  250.73173141479492\n                ],\n                [\n                  189.31585693359375,\n                  250.39847946166992\n                ],\n                [\n                  189.31585693359375,\n                  261.7394599914551\n                ],\n                [\n                  141.640869140625,\n                  261.9425354003906\n                ]\n              ],\n              \"bbox\": [\n                141.640869140625,\n                250.39847946166992,\n                189.31585693359375,\n                261.9425354003906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/375\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15</td>\",\n              \"polygon\": [\n                [\n                  189.0139503479004,\n                  250.73173141479492\n                ],\n                [\n                  238.97292709350586,\n                  250.39847946166992\n                ],\n                [\n                  238.97292709350586,\n                  261.7394599914551\n                ],\n                [\n                  189.0139503479004,\n                  261.90087890625\n                ]\n              ],\n              \"bbox\": [\n                189.0139503479004,\n                250.39847946166992,\n                238.97292709350586,\n                261.90087890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/376\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2048</td>\",\n              \"polygon\": [\n                [\n                  239.1698226928711,\n                  250.73173141479492\n                ],\n                [\n                  289.8376235961914,\n                  250.39847946166992\n                ],\n                [\n                  289.8376235961914,\n                  261.7394599914551\n                ],\n                [\n                  239.1698226928711,\n                  261.90087890625\n                ]\n              ],\n              \"bbox\": [\n                239.1698226928711,\n                250.39847946166992,\n                289.8376235961914,\n                261.90087890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/377\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.096</td>\",\n              \"polygon\": [\n                [\n                  289.62760162353516,\n                  250.73173141479492\n                ],\n                [\n                  369.59346771240234,\n                  250.39847946166992\n                ],\n                [\n                  369.59346771240234,\n                  261.7394599914551\n                ],\n                [\n                  289.62760162353516,\n                  261.90087890625\n                ]\n              ],\n              \"bbox\": [\n                289.62760162353516,\n                250.39847946166992,\n                369.59346771240234,\n                261.90087890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/378\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.043</td>\",\n              \"polygon\": [\n                [\n                  369.6197204589844,\n                  250.73173141479492\n                ],\n                [\n                  452.1583557128906,\n                  250.39847946166992\n                ],\n                [\n                  452.1583557128906,\n                  261.7394599914551\n                ],\n                [\n                  369.6197204589844,\n                  261.90087890625\n                ]\n              ],\n              \"bbox\": [\n                369.6197204589844,\n                250.39847946166992,\n                452.1583557128906,\n                261.90087890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/379\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  452.3683776855469,\n                  250.73173141479492\n                ],\n                [\n                  471.0603332519531,\n                  250.39847946166992\n                ],\n                [\n                  471.0603332519531,\n                  261.7394599914551\n                ],\n                [\n                  452.3683776855469,\n                  261.90087890625\n                ]\n              ],\n              \"bbox\": [\n                452.3683776855469,\n                250.39847946166992,\n                471.0603332519531,\n                261.90087890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/22/TableCell/380\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  471.0997123718262,\n                  250.73173141479492\n                ],\n                [\n                  519.7854309082031,\n                  250.39847946166992\n                ],\n                [\n                  519.7854309082031,\n                  261.7394599914551\n                ],\n                [\n                  471.0997123718262,\n                  261.90087890625\n                ]\n              ],\n              \"bbox\": [\n                471.0997123718262,\n                250.39847946166992,\n                519.7854309082031,\n                261.90087890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/19/SectionHeader/4\",\n                \"4\": \"/page/21/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/22/ListItem/2\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-22-0\\\"></span>Table 9: Switch model design and pre-training performance. We compare the hyperparameters and pre-training performance of the T5 models to our Switch Transformer variants. The last two columns record the pre-training model quality on the C4 data set after 250k and 500k steps, respectively. We observe that the Switch-C Transformer variant is 4x faster to a fixed perplexity (with the same compute budget) than the T5-XXL model, with the gap increasing as training progresses.</li>\",\n          \"polygon\": [\n            [\n              90.0,\n              274.1431884765625\n            ],\n            [\n              521.6702270507812,\n              274.1431884765625\n            ],\n            [\n              521.6702270507812,\n              353.07421875\n            ],\n            [\n              90.0,\n              353.07421875\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            274.1431884765625,\n            521.6702270507812,\n            353.07421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">depth, number of heads, and so on, are all much smaller than the T5-XXL model. In contrast, the Switch-XXL is FLOP-matched to the T5-XXL model, which allows for larger dimensions of the hyper-parameters, but at the expense of additional communication costs induced by model-parallelism (see Section <a href=\\\"#page-21-1\\\">5.5</a> for more details).</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              404.98822021484375\n            ],\n            [\n              521.673095703125,\n              404.98822021484375\n            ],\n            [\n              521.673095703125,\n              456.54534912109375\n            ],\n            [\n              89.349609375,\n              456.54534912109375\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            404.98822021484375,\n            521.673095703125,\n            456.54534912109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Sample efficiency versus T5-XXL. In the final two columns of Table <a href=\\\"#page-22-0\\\">9</a> we record the negative log perplexity on the C4 corpus after 250k and 500k steps, respectively. After 250k steps, we find both Switch Transformer variants to improve over the T5-XXL version's negative log perplexity by over 0.061.<a href=\\\"#page-22-1\\\">10</a> To contextualize the significance of a gap of 0.061, we note that the T5-XXL model had to train for an additional 250k steps to increase 0.052. The gap continues to increase with additional training, with the Switch-XXL model out-performing the T5-XXL by 0.087 by 500k steps.</p>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              461.7421875\n            ],\n            [\n              521.9110107421875,\n              461.7421875\n            ],\n            [\n              521.9110107421875,\n              554.5546875\n            ],\n            [\n              89.7978515625,\n              554.5546875\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            461.7421875,\n            521.9110107421875,\n            554.5546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Training instability. However, as described in the introduction, large sparse models can be unstable, and as we increase the scale, we encounter some sporadic issues. We find that the larger Switch-C model, with 1.6T parameters and 2048 experts, exhibits no training instability at all. Instead, the Switch XXL version, with nearly 10x larger FLOPs per sequence, is sometimes unstable. As a result, though this is our better model on a step-basis, we do not pre-train for a full 1M steps, in-line with the final reported results of T5 <a href=\\\"#page-37-0\\\">(Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.,</a> <a href=\\\"#page-37-0\\\">2019)</a>.</p>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              559.6072692871094\n            ],\n            [\n              521.7110595703125,\n              559.6072692871094\n            ],\n            [\n              521.7110595703125,\n              652.39453125\n            ],\n            [\n              89.7978515625,\n              652.39453125\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            559.6072692871094,\n            521.7110595703125,\n            652.39453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/PageFooter/7\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.4716796875,\n              724.9639129638672\n            ],\n            [\n              311.080078125,\n              724.9639129638672\n            ],\n            [\n              311.080078125,\n              735.15234375\n            ],\n            [\n              300.4716796875,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.4716796875,\n            724.9639129638672,\n            311.080078125,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/Footnote/6\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-22-1\\\"></span><sup>10. </sup>This reported quality difference is a lower bound, and may actually be larger. The T5-XXL was pretrained on an easier C4 data set which included duplicated, and thus easily copied, snippets within examples.</p>\",\n          \"polygon\": [\n            [\n              89.072998046875,\n              673.6640625\n            ],\n            [\n              521.7200927734375,\n              673.6640625\n            ],\n            [\n              521.7200927734375,\n              705.375\n            ],\n            [\n              89.072998046875,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            89.072998046875,\n            673.6640625,\n            521.7200927734375,\n            705.375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/19/SectionHeader/4\",\n        \"4\": \"/page/21/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/23/Page/277\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/23/PageHeader/0'></content-ref><content-ref src='/page/23/Text/1'></content-ref><content-ref src='/page/23/Text/2'></content-ref><content-ref src='/page/23/Text/3'></content-ref><content-ref src='/page/23/SectionHeader/4'></content-ref><content-ref src='/page/23/Text/5'></content-ref><content-ref src='/page/23/Text/6'></content-ref><content-ref src='/page/23/PageFooter/7'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/23/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              240.2578125,\n              37.992431640625\n            ],\n            [\n              368.455078125,\n              37.992431640625\n            ],\n            [\n              368.455078125,\n              49.9833984375\n            ],\n            [\n              240.2578125,\n              49.9833984375\n            ]\n          ],\n          \"bbox\": [\n            240.2578125,\n            37.992431640625,\n            368.455078125,\n            49.9833984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Reasoning fine-tuning performance. As a preliminary assessment of the model quality, we use a Switch-XXL model partially pre-trained on 503B tokens, or approximately half the text used by the T5-XXL model. Using this checkpoint, we conduct multi-task training for efficiency, where all tasks are learned jointly, rather than individually fine-tuned. We find that SQuAD accuracy on the validation set increases to 89.7 versus state-of-the-art of 91.3. Next, the average SuperGLUE test score is recorded at 87.5 versus the T5 version obtaining a score of 89.3 compared to the state-of-the-art of 90.0 <a href=\\\"#page-39-5\\\">(Wang</a> <a href=\\\"#page-39-5\\\">et</a> <a href=\\\"#page-39-5\\\">al.,</a> <a href=\\\"#page-39-5\\\">2019)</a>. On ANLI <a href=\\\"#page-37-8\\\">(Nie</a> <a href=\\\"#page-37-8\\\">et</a> <a href=\\\"#page-37-8\\\">al.,</a> <a href=\\\"#page-37-8\\\">2019)</a>, Switch XXL improves over the prior state-of-the-art to get a 65.7 accuracy versus the prior best of 49.4 <a href=\\\"#page-39-6\\\">(Yang</a> <a href=\\\"#page-39-6\\\">et</a> <a href=\\\"#page-39-6\\\">al.,</a> <a href=\\\"#page-39-6\\\">2020)</a>. We note that while the Switch-XXL has state-of-the-art Neg. Log Perp. on the upstream pre-training task, its gains have not yet fully translated to SOTA downstream performance. We study this issue more in Appendix <a href=\\\"#page-31-0\\\">E.</a></p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              93.29522705078125\n            ],\n            [\n              522.052734375,\n              93.29522705078125\n            ],\n            [\n              522.052734375,\n              253.24542236328125\n            ],\n            [\n              89.349609375,\n              253.24542236328125\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            93.29522705078125,\n            522.052734375,\n            253.24542236328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Knowledge-based fine-tuning performance. Finally, we also conduct an early examination of the model's knowledge with three closed-book knowledge-based tasks: Natural Questions, WebQuestions and TriviaQA, without additional pre-training using Salient Span Masking <a href=\\\"#page-36-7\\\">(Guu</a> <a href=\\\"#page-36-7\\\">et</a> <a href=\\\"#page-36-7\\\">al.,</a> <a href=\\\"#page-36-7\\\">2020)</a>. In all three cases, we observe improvements over the prior stateof-the-art T5-XXL model (without SSM). Natural Questions exact match increases to 34.4 versus the prior best of 32.8, Web Questions increases to 41.0 over 37.2, and TriviaQA increases to 47.5 versus 42.9.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              257.3043212890625\n            ],\n            [\n              521.8300170898438,\n              257.3043212890625\n            ],\n            [\n              521.8300170898438,\n              349.787109375\n            ],\n            [\n              89.349609375,\n              349.787109375\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            257.3043212890625,\n            521.8300170898438,\n            349.787109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Summing up, despite training on less than half the data of other models, we already find comparable, and sometimes state-of-the-art, model quality. Currently, the Switch Transformer translates substantial upstream gains better to knowledge-based tasks, than reasoning-tasks (see Appendix <a href=\\\"#page-31-0\\\">E)</a>. Extracting stronger fine-tuning performance from large expert models is an active research question, and the pre-training perplexity indicates future improvements should be possible.</p>\",\n          \"polygon\": [\n            [\n              89.2001953125,\n              353.5673522949219\n            ],\n            [\n              521.6235961914062,\n              353.5673522949219\n            ],\n            [\n              521.6235961914062,\n              432.2225036621094\n            ],\n            [\n              89.2001953125,\n              432.2225036621094\n            ]\n          ],\n          \"bbox\": [\n            89.2001953125,\n            353.5673522949219,\n            521.6235961914062,\n            432.2225036621094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/19/SectionHeader/4\",\n            \"4\": \"/page/21/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-23-0\\\"></span>6. Related Work</h3>\",\n          \"polygon\": [\n            [\n              89.42431640625,\n              453.14385986328125\n            ],\n            [\n              188.08042907714844,\n              453.14385986328125\n            ],\n            [\n              188.08042907714844,\n              465.09906005859375\n            ],\n            [\n              89.42431640625,\n              465.09906005859375\n            ]\n          ],\n          \"bbox\": [\n            89.42431640625,\n            453.14385986328125,\n            188.08042907714844,\n            465.09906005859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/23/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The importance of scale in neural networks is widely recognized and several approaches have been proposed. Recent works have scaled models to billions of parameters through using model parallelism (e.g. splitting weights and tensors across multiple cores) <a href=\\\"#page-38-3\\\">(Shazeer</a> <a href=\\\"#page-38-3\\\">et</a> <a href=\\\"#page-38-3\\\">al.,</a> <a href=\\\"#page-38-3\\\">2018;</a> <a href=\\\"#page-37-9\\\">Rajbhandari</a> <a href=\\\"#page-37-9\\\">et</a> <a href=\\\"#page-37-9\\\">al.,</a> <a href=\\\"#page-37-9\\\">2019;</a> <a href=\\\"#page-37-0\\\">Raffel</a> <a href=\\\"#page-37-0\\\">et</a> <a href=\\\"#page-37-0\\\">al.,</a> <a href=\\\"#page-37-0\\\">2019;</a> <a href=\\\"#page-35-0\\\">Brown</a> <a href=\\\"#page-35-0\\\">et</a> <a href=\\\"#page-35-0\\\">al.,</a> <a href=\\\"#page-35-0\\\">2020;</a> <a href=\\\"#page-38-10\\\">Shoeybi</a> <a href=\\\"#page-38-10\\\">et</a> <a href=\\\"#page-38-10\\\">al.,</a> <a href=\\\"#page-38-10\\\">2019)</a>. Alternatively, <a href=\\\"#page-36-8\\\">Harlap</a> <a href=\\\"#page-36-8\\\">et</a> <a href=\\\"#page-36-8\\\">al.</a> <a href=\\\"#page-36-8\\\">(2018)</a>; <a href=\\\"#page-36-9\\\">Huang</a> <a href=\\\"#page-36-9\\\">et</a> <a href=\\\"#page-36-9\\\">al.</a> <a href=\\\"#page-36-9\\\">(2019)</a> propose using pipeline based model parallelism, where different layers are split across devices and micro-batches are pipelined to the different layers. Finally, Product Key networks <a href=\\\"#page-37-10\\\">(Lample</a> <a href=\\\"#page-37-10\\\">et</a> <a href=\\\"#page-37-10\\\">al.,</a> <a href=\\\"#page-37-10\\\">2019)</a> were proposed to scale up the capacity of neural networks by doing a lookup for learnable embeddings based on the incoming token representations to a given layer.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              476.12939453125\n            ],\n            [\n              521.990234375,\n              476.12939453125\n            ],\n            [\n              521.990234375,\n              595.4325103759766\n            ],\n            [\n              89.349609375,\n              595.4325103759766\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            476.12939453125,\n            521.990234375,\n            595.4325103759766\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/23/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Our work studies a specific model in a class of methods that do conditional computation, where computation decisions are made dynamically based on the input. <a href=\\\"#page-35-8\\\">Cho</a> <a href=\\\"#page-35-8\\\">and</a> <a href=\\\"#page-35-8\\\">Bengio</a> <a href=\\\"#page-35-8\\\">(2014)</a> proposed adaptively selecting weights based on certain bit patterns occuring in the model hidden-states. <a href=\\\"#page-35-9\\\">Eigen</a> <a href=\\\"#page-35-9\\\">et</a> <a href=\\\"#page-35-9\\\">al.</a> <a href=\\\"#page-35-9\\\">(2013)</a> built stacked expert layers with dense matrix multiplications and ReLU activations and showed promising results on jittered MNIST and monotone speech. In computer vision <a href=\\\"#page-37-11\\\">Puigcerver</a> <a href=\\\"#page-37-11\\\">et</a> <a href=\\\"#page-37-11\\\">al.</a> <a href=\\\"#page-37-11\\\">(2020)</a> manually route tokens based on semantic classes during upstream pre-training and then select the relevant experts to be used according to the downstream task.</p>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              599.4140625\n            ],\n            [\n              521.9373779296875,\n              599.4140625\n            ],\n            [\n              521.9373779296875,\n              705.375\n            ],\n            [\n              89.7978515625,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            599.4140625,\n            521.9373779296875,\n            705.375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/23/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/PageFooter/7\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.0234375,\n              724.9631118774414\n            ],\n            [\n              311.37890625,\n              724.9631118774414\n            ],\n            [\n              311.37890625,\n              735.15234375\n            ],\n            [\n              300.0234375,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.0234375,\n            724.9631118774414,\n            311.37890625,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/23/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/23/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/24/Page/269\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/24/PageHeader/0'></content-ref><content-ref src='/page/24/Text/1'></content-ref><content-ref src='/page/24/Text/2'></content-ref><content-ref src='/page/24/SectionHeader/3'></content-ref><content-ref src='/page/24/Text/4'></content-ref><content-ref src='/page/24/Text/5'></content-ref><content-ref src='/page/24/Text/6'></content-ref><content-ref src='/page/24/Text/7'></content-ref><content-ref src='/page/24/Text/8'></content-ref><content-ref src='/page/24/Text/9'></content-ref><content-ref src='/page/24/PageFooter/10'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/24/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.728515625,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              50.03173828125\n            ],\n            [\n              247.728515625,\n              50.03173828125\n            ]\n          ],\n          \"bbox\": [\n            247.728515625,\n            37.992431640625,\n            360.38671875,\n            50.03173828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/23/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Mixture of Experts (MoE), in the context of modern deep learning architectures, was proven effective in <a href=\\\"#page-38-2\\\">Shazeer</a> <a href=\\\"#page-38-2\\\">et</a> <a href=\\\"#page-38-2\\\">al.</a> <a href=\\\"#page-38-2\\\">(2017)</a>. That work added an MoE layer which was stacked between LSTM <a href=\\\"#page-36-10\\\">(Hochreiter</a> <a href=\\\"#page-36-10\\\">and</a> <a href=\\\"#page-36-10\\\">Schmidhuber,</a> <a href=\\\"#page-36-10\\\">1997)</a> layers, and tokens were separately routed to combinations of experts. This resulted in state-of-the-art results in language modeling and machine translation benchmarks. The MoE layer was reintroduced into the Transformer architecture by the Mesh Tensorflow library <a href=\\\"#page-38-3\\\">(Shazeer</a> <a href=\\\"#page-38-3\\\">et</a> <a href=\\\"#page-38-3\\\">al.,</a> <a href=\\\"#page-38-3\\\">2018)</a> where MoE layers were introduced as a substitute of the FFN layers, however, there were no accompanying NLP results. More recently, through advances in machine learning infrastructure, GShard <a href=\\\"#page-37-2\\\">(Lepikhin</a> <a href=\\\"#page-37-2\\\">et</a> <a href=\\\"#page-37-2\\\">al.,</a> <a href=\\\"#page-37-2\\\">2020)</a>, which extended the XLA compiler, used the MoE Transformer to dramatically improve machine translation across 100 languages. Finally <a href=\\\"#page-35-10\\\">Fan</a> <a href=\\\"#page-35-10\\\">et</a> <a href=\\\"#page-35-10\\\">al.</a> <a href=\\\"#page-35-10\\\">(2021)</a> chooses a different deterministic MoE strategy to split the model parameters into non-overlapping groups of languages.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              93.29522705078125\n            ],\n            [\n              522.052734375,\n              93.29522705078125\n            ],\n            [\n              522.052734375,\n              253.30078125\n            ],\n            [\n              89.349609375,\n              253.30078125\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            93.29522705078125,\n            522.052734375,\n            253.30078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/23/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Sparsity along the sequence length dimension (L) in the Transformer attention patterns has been a successful technique to reduce the attention complexity from O(L 2 ) <a href=\\\"#page-35-11\\\">(Child</a> <a href=\\\"#page-35-11\\\">et</a> <a href=\\\"#page-35-11\\\">al.,</a> <a href=\\\"#page-35-11\\\">2019;</a> <a href=\\\"#page-35-12\\\">Correia</a> <a href=\\\"#page-35-12\\\">et</a> <a href=\\\"#page-35-12\\\">al.,</a> <a href=\\\"#page-35-12\\\">2019;</a> <a href=\\\"#page-38-11\\\">Sukhbaatar</a> <a href=\\\"#page-38-11\\\">et</a> <a href=\\\"#page-38-11\\\">al.,</a> <a href=\\\"#page-38-11\\\">2019;</a> <a href=\\\"#page-36-11\\\">Kitaev</a> <a href=\\\"#page-36-11\\\">et</a> <a href=\\\"#page-36-11\\\">al.,</a> <a href=\\\"#page-36-11\\\">2020;</a> <a href=\\\"#page-39-7\\\">Zaheer</a> <a href=\\\"#page-39-7\\\">et</a> <a href=\\\"#page-39-7\\\">al.,</a> <a href=\\\"#page-39-7\\\">2020;</a> <a href=\\\"#page-35-13\\\">Beltagy</a> <a href=\\\"#page-35-13\\\">et</a> <a href=\\\"#page-35-13\\\">al.,</a> <a href=\\\"#page-35-13\\\">2020)</a>. This has enabled learning longer sequences than previously possible. This version of the Switch Transformer does not employ attention sparsity, but these techniques are complimentary, and, as future work, these could be combined to potentially improve learning on tasks requiring long contexts.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              256.77227783203125\n            ],\n            [\n              521.9545288085938,\n              256.77227783203125\n            ],\n            [\n              521.9545288085938,\n              348.9764404296875\n            ],\n            [\n              89.4990234375,\n              348.9764404296875\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            256.77227783203125,\n            521.9545288085938,\n            348.9764404296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/23/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-24-0\\\"></span>7. Discussion</h3>\",\n          \"polygon\": [\n            [\n              89.87255859375,\n              369.3647766113281\n            ],\n            [\n              167.642578125,\n              369.3647766113281\n            ],\n            [\n              167.642578125,\n              381.3199768066406\n            ],\n            [\n              89.87255859375,\n              381.3199768066406\n            ]\n          ],\n          \"bbox\": [\n            89.87255859375,\n            369.3647766113281,\n            167.642578125,\n            381.3199768066406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/24/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We pose and discuss questions about the Switch Transformer, and sparse expert models generally, where sparsity refers to weights, not on attention patterns.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              391.8193054199219\n            ],\n            [\n              521.6185302734375,\n              391.8193054199219\n            ],\n            [\n              521.6185302734375,\n              416.49609375\n            ],\n            [\n              89.4990234375,\n              416.49609375\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            391.8193054199219,\n            521.6185302734375,\n            416.49609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/24/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Isn't Switch Transformer better due to sheer parameter count? Yes, and by design! Parameters, independent of the total FLOPs used, are a useful axis to scale neural language models. Large models have been exhaustively shown to perform better <a href=\\\"#page-36-0\\\">(Kaplan</a> <a href=\\\"#page-36-0\\\">et</a> <a href=\\\"#page-36-0\\\">al.,</a> <a href=\\\"#page-36-0\\\">2020)</a>. But in this case, our model is more sample efficient and faster while using the same computational resources.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              419.8043212890625\n            ],\n            [\n              521.9544067382812,\n              419.8043212890625\n            ],\n            [\n              521.9544067382812,\n              484.9453125\n            ],\n            [\n              89.349609375,\n              484.9453125\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            419.8043212890625,\n            521.9544067382812,\n            484.9453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/24/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I don't have access to a supercomputer—is this still useful for me? Though this work has focused on extremely large models, we also find that models with as few as two experts improves performance while easily fitting within memory constraints of commonly available GPUs or TPUs (details in Appendix <a href=\\\"#page-28-2\\\">D)</a>. We therefore believe our techniques are useful in small-scale settings.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              488.4373474121094\n            ],\n            [\n              521.9791259765625,\n              488.4373474121094\n            ],\n            [\n              521.9791259765625,\n              553.78125\n            ],\n            [\n              89.4990234375,\n              553.78125\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            488.4373474121094,\n            521.9791259765625,\n            553.78125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/24/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Do sparse models outperform dense models on the speed-accuracy Pareto curve? Yes. Across a wide variety of different models sizes, sparse models outperform dense models per step and on wall clock time. Our controlled experiments show for a fixed amount of computation and time, sparse models outperform dense models.</p>\",\n          \"polygon\": [\n            [\n              89.05078125,\n              557.0703887939453\n            ],\n            [\n              521.743408203125,\n              557.0703887939453\n            ],\n            [\n              521.743408203125,\n              608.6264801025391\n            ],\n            [\n              89.05078125,\n              608.6264801025391\n            ]\n          ],\n          \"bbox\": [\n            89.05078125,\n            557.0703887939453,\n            521.743408203125,\n            608.6264801025391\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/24/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I can't deploy a trillion parameter model—can we shrink these models? We cannot fully preserve the model quality, but compression rates of 10 to 100x are achievable by distilling our sparse models into dense models while achieving ≈30% of the quality gain of the expert model.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              612.1533813476562\n            ],\n            [\n              521.9898071289062,\n              612.1533813476562\n            ],\n            [\n              521.9898071289062,\n              663.99609375\n            ],\n            [\n              89.349609375,\n              663.99609375\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            612.1533813476562,\n            521.9898071289062,\n            663.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/24/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">Why use Switch Transformer instead of a model-parallel dense model? On a time basis, Switch Transformers can be far more efficient than dense-models with sharded parameters (Figure <a href=\\\"#page-13-2\\\">6)</a>. Also, we point out that this decision is not mutually exclusive—we</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              667.2373733520508\n            ],\n            [\n              521.9835205078125,\n              667.2373733520508\n            ],\n            [\n              521.9835205078125,\n              705.245475769043\n            ],\n            [\n              89.349609375,\n              705.245475769043\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            667.2373733520508,\n            521.9835205078125,\n            705.245475769043\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/24/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/PageFooter/10\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.1728515625,\n              724.9640960693359\n            ],\n            [\n              310.9815673828125,\n              724.9640960693359\n            ],\n            [\n              310.9815673828125,\n              735.15234375\n            ],\n            [\n              300.1728515625,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.1728515625,\n            724.9640960693359,\n            310.9815673828125,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/24/SectionHeader/3\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/24/SectionHeader/3\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/25/Page/167\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/25/PageHeader/0'></content-ref><content-ref src='/page/25/Text/1'></content-ref><content-ref src='/page/25/Text/2'></content-ref><content-ref src='/page/25/SectionHeader/3'></content-ref><content-ref src='/page/25/Text/4'></content-ref><content-ref src='/page/25/ListGroup/166'></content-ref><content-ref src='/page/25/PageFooter/10'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/25/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              240.4029998779297,\n              37.992431640625\n            ],\n            [\n              369.052734375,\n              37.992431640625\n            ],\n            [\n              369.052734375,\n              50.12841796875\n            ],\n            [\n              240.4029998779297,\n              50.12841796875\n            ]\n          ],\n          \"bbox\": [\n            240.4029998779297,\n            37.992431640625,\n            369.052734375,\n            50.12841796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/24/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">can, and do, use model-parallelism in Switch Transformers, increasing the FLOPs per token, but incurring the slowdown of conventional model-parallelism.</p>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              93.29522705078125\n            ],\n            [\n              522.3515625,\n              93.29522705078125\n            ],\n            [\n              522.3515625,\n              118.0458984375\n            ],\n            [\n              89.7978515625,\n              118.0458984375\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            93.29522705078125,\n            522.3515625,\n            118.0458984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/24/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Why aren't sparse models widely used already? The motivation to try sparse models has been stymied by the massive success of scaling dense models (the success of which is partially driven by co-adaptation with deep learning hardware as argued in <a href=\\\"#page-36-12\\\">Hooker</a> <a href=\\\"#page-36-12\\\">(2020)</a>). Further, sparse models have been subject to multiple issues including (1) model complexity, (2) training difficulties, and (3) communication costs. Switch Transformer makes strides to alleviate these issues.</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              120.65625\n            ],\n            [\n              522.3515625,\n              120.65625\n            ],\n            [\n              522.3515625,\n              199.609375\n            ],\n            [\n              89.6484375,\n              199.609375\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            120.65625,\n            522.3515625,\n            199.609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/24/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-25-0\\\"></span>8. Future Work</h3>\",\n          \"polygon\": [\n            [\n              89.87255859375,\n              219.462890625\n            ],\n            [\n              181.986328125,\n              219.462890625\n            ],\n            [\n              181.986328125,\n              231.62786865234375\n            ],\n            [\n              89.87255859375,\n              231.62786865234375\n            ]\n          ],\n          \"bbox\": [\n            89.87255859375,\n            219.462890625,\n            181.986328125,\n            231.62786865234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/25/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This paper lays out a simplified architecture, improved training procedures, and a study of how sparse models scale. However, there remain many open future directions which we briefly describe here:</p>\",\n          \"polygon\": [\n            [\n              90.0,\n              241.80120849609375\n            ],\n            [\n              521.75390625,\n              241.80120849609375\n            ],\n            [\n              521.75390625,\n              279.984375\n            ],\n            [\n              90.0,\n              279.984375\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            241.80120849609375,\n            521.75390625,\n            279.984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/25/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/ListGroup/166\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/25/ListItem/5'></content-ref><content-ref src='/page/25/ListItem/6'></content-ref><content-ref src='/page/25/ListItem/7'></content-ref><content-ref src='/page/25/ListItem/8'></content-ref><content-ref src='/page/25/ListItem/9'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              102.19921875,\n              297.2102355957031\n            ],\n            [\n              522.94921875,\n              297.2102355957031\n            ],\n            [\n              522.94921875,\n              705.375\n            ],\n            [\n              102.19921875,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            102.19921875,\n            297.2102355957031,\n            522.94921875,\n            705.375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/25/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">1. A significant challenge is further improving training stability for the largest models. While our stability techniques were effective for our Switch-Base, Switch-Large and Switch-C models (no observed instability), they were not sufficient for Switch-XXL. We have taken early steps towards stabilizing these models, which we think may be generally useful for large models, including using regularizers for improving stability and adapted forms of gradient clipping, but this remains unsolved.</li>\",\n              \"polygon\": [\n                [\n                  102.19921875,\n                  297.2102355957031\n                ],\n                [\n                  521.75390625,\n                  297.2102355957031\n                ],\n                [\n                  521.75390625,\n                  375.8653869628906\n                ],\n                [\n                  102.19921875,\n                  375.8653869628906\n                ]\n              ],\n              \"bbox\": [\n                102.19921875,\n                297.2102355957031,\n                521.75390625,\n                375.8653869628906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/25/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/25/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">2. Generally we find that improved pre-training quality leads to better downstream results (Appendix <a href=\\\"#page-31-0\\\">E)</a>, though we sometimes encounter striking anomalies. For instance, despite similar perplexities modeling the C4 data set, the 1.6T parameter Switch-C achieves only an 87.7 exact match score in SQuAD, which compares unfavorably to 89.6 for the smaller Switch-XXL model. One notable difference is that the Switch-XXL model applies ≈10x the FLOPS per token than the Switch-C model, even though it has ≈4x less unique parameters (395B vs 1.6T). This suggests a poorly understood dependence between fine-tuning quality, FLOPS per token and number of parameters.</li>\",\n              \"polygon\": [\n                [\n                  102.19921875,\n                  389.7172546386719\n                ],\n                [\n                  522.3515625,\n                  389.7172546386719\n                ],\n                [\n                  522.3515625,\n                  495.4704284667969\n                ],\n                [\n                  102.19921875,\n                  495.4704284667969\n                ]\n              ],\n              \"bbox\": [\n                102.19921875,\n                389.7172546386719,\n                522.3515625,\n                495.4704284667969\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/25/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/25/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">3. Perform a comprehensive study of scaling relationships to guide the design of architectures blending data, model and expert-parallelism. Ideally, given the specs of a hardware configuration (computation, memory, communication) one could more rapidly design an optimal model. And, vice versa, this may also help in the design of future hardware.</li>\",\n              \"polygon\": [\n                [\n                  102.6474609375,\n                  508.921875\n                ],\n                [\n                  522.3515625,\n                  508.921875\n                ],\n                [\n                  522.3515625,\n                  574.6640625\n                ],\n                [\n                  102.6474609375,\n                  574.6640625\n                ]\n              ],\n              \"bbox\": [\n                102.6474609375,\n                508.921875,\n                522.3515625,\n                574.6640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/25/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/25/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">4. Our work falls within the family of adaptive computation algorithms. Our approach always used identical, homogeneous experts, but future designs (facilitated by more flexible infrastructure) could support heterogeneous experts. This would enable more flexible adaptation by routing to larger experts when more computation is desired perhaps for harder examples.</li>\",\n              \"polygon\": [\n                [\n                  102.796875,\n                  588.19921875\n                ],\n                [\n                  522.3515625,\n                  588.19921875\n                ],\n                [\n                  522.3515625,\n                  653.3854064941406\n                ],\n                [\n                  102.796875,\n                  653.3854064941406\n                ]\n              ],\n              \"bbox\": [\n                102.796875,\n                588.19921875,\n                522.3515625,\n                653.3854064941406\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/25/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/25/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">5. Investigating expert layers outside the FFN layer of the Transformer. We find preliminary evidence that this similarly can improve model quality. In Appendix <a href=\\\"#page-26-1\\\">A,</a> we report quality improvement adding these inside Self-Attention layers, where our</li>\",\n              \"polygon\": [\n                [\n                  102.3486328125,\n                  667.2373046875\n                ],\n                [\n                  522.94921875,\n                  667.2373046875\n                ],\n                [\n                  522.94921875,\n                  705.375\n                ],\n                [\n                  102.3486328125,\n                  705.375\n                ]\n              ],\n              \"bbox\": [\n                102.3486328125,\n                667.2373046875,\n                522.94921875,\n                705.375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/25/SectionHeader/3\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/25/SectionHeader/3\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/25/PageFooter/10\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.1728515625,\n              724.9640197753906\n            ],\n            [\n              311.080078125,\n              724.9640197753906\n            ],\n            [\n              311.080078125,\n              735.92578125\n            ],\n            [\n              300.1728515625,\n              735.92578125\n            ]\n          ],\n          \"bbox\": [\n            300.1728515625,\n            724.9640197753906,\n            311.080078125,\n            735.92578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/25/SectionHeader/3\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/25/SectionHeader/3\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/26/Page/159\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/26/PageHeader/0'></content-ref><content-ref src='/page/26/Text/1'></content-ref><content-ref src='/page/26/ListItem/2'></content-ref><content-ref src='/page/26/Text/3'></content-ref><content-ref src='/page/26/SectionHeader/4'></content-ref><content-ref src='/page/26/Text/5'></content-ref><content-ref src='/page/26/SectionHeader/6'></content-ref><content-ref src='/page/26/Text/7'></content-ref><content-ref src='/page/26/SectionHeader/8'></content-ref><content-ref src='/page/26/Text/9'></content-ref><content-ref src='/page/26/Text/10'></content-ref><content-ref src='/page/26/PageFooter/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/26/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.728515625,\n              37.992431640625\n            ],\n            [\n              360.685546875,\n              37.992431640625\n            ],\n            [\n              360.685546875,\n              50.12841796875\n            ],\n            [\n              247.728515625,\n              50.12841796875\n            ]\n          ],\n          \"bbox\": [\n            247.728515625,\n            37.992431640625,\n            360.685546875,\n            50.12841796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/25/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">layer replaces the weight matrices which produce Q, K, V. However, due to training instabilities with the bfloat16 format, we instead leave this as an area for future work.</p>\",\n          \"polygon\": [\n            [\n              115.9453125,\n              92.42578125\n            ],\n            [\n              523.546875,\n              92.42578125\n            ],\n            [\n              523.546875,\n              117.94921875\n            ],\n            [\n              115.9453125,\n              117.94921875\n            ]\n          ],\n          \"bbox\": [\n            115.9453125,\n            92.42578125,\n            523.546875,\n            117.94921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/25/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/ListItem/2\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">6. Examining Switch Transformer in new and across different modalities. We have thus far only considered language, but we believe that model sparsity can similarly provide advantages in new modalities, as well as multi-modal networks.</li>\",\n          \"polygon\": [\n            [\n              101.7509765625,\n              130.130859375\n            ],\n            [\n              523.546875,\n              130.130859375\n            ],\n            [\n              523.546875,\n              169.014404296875\n            ],\n            [\n              101.7509765625,\n              169.014404296875\n            ]\n          ],\n          \"bbox\": [\n            101.7509765625,\n            130.130859375,\n            523.546875,\n            169.014404296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/25/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This list could easily be extended, but we hope this gives a flavor for the types of challenges that we are thinking about and what we suspect are promising future directions.</p>\",\n          \"polygon\": [\n            [\n              90.00001525878906,\n              184.8515625\n            ],\n            [\n              522.94921875,\n              184.8515625\n            ],\n            [\n              522.94921875,\n              210.181640625\n            ],\n            [\n              90.00001525878906,\n              210.181640625\n            ]\n          ],\n          \"bbox\": [\n            90.00001525878906,\n            184.8515625,\n            522.94921875,\n            210.181640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/25/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-26-0\\\"></span>9. Conclusion</h3>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              229.517578125\n            ],\n            [\n              171.3779296875,\n              229.517578125\n            ],\n            [\n              171.3779296875,\n              241.9959716796875\n            ],\n            [\n              89.6484375,\n              241.9959716796875\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            229.517578125,\n            171.3779296875,\n            241.9959716796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Switch Transformers are scalable and effective natural language learners. We simplify Mixture of Experts to produce an architecture that is easy to understand, stable to train and vastly more sample efficient than equivalently-sized dense models. We find that these models excel across a diverse set of natural language tasks and in different training regimes, including pre-training, fine-tuning and multi-task training. These advances make it possible to train models with hundreds of billion to trillion parameters and which achieve substantial speedups relative to dense T5 baselines. We hope our work motivates sparse models as an effective architecture and that this encourages researchers and practitioners to consider these flexible models in natural language tasks, and beyond.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              250.59375\n            ],\n            [\n              522.650390625,\n              250.59375\n            ],\n            [\n              522.650390625,\n              372.0234375\n            ],\n            [\n              89.349609375,\n              372.0234375\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            250.59375,\n            522.650390625,\n            372.0234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3>Acknowledgments</h3>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              394.646484375\n            ],\n            [\n              196.330078125,\n              394.646484375\n            ],\n            [\n              196.330078125,\n              407.112060546875\n            ],\n            [\n              89.7978515625,\n              407.112060546875\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            394.646484375,\n            196.330078125,\n            407.112060546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The authors would like to thank Margaret Li who provided months of key insights into algorithmic improvements and suggestions for empirical studies. Hugo Larochelle for sage advising and clarifying comments on the draft, Irwan Bello for detailed comments and careful revisions, Colin Raffel and Adam Roberts for timely advice on neural language models and the T5 code-base, Yoshua Bengio for advising and encouragement on research in adaptive computation, Jascha Sohl-dickstein for interesting new directions for stabilizing new large scale models and paper revisions, and the Google Brain Team for useful discussions on the paper. Blake Hechtman who provided invaluable help in profiling and improving the training performance of our models.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              423.84375\n            ],\n            [\n              523.248046875,\n              423.84375\n            ],\n            [\n              523.248046875,\n              543.7265625\n            ],\n            [\n              89.349609375,\n              543.7265625\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            423.84375,\n            523.248046875,\n            543.7265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-26-1\\\"></span>A. Switch for Attention</h3>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              563.0625\n            ],\n            [\n              232.9365234375,\n              563.0625\n            ],\n            [\n              232.9365234375,\n              575.5070648193359\n            ],\n            [\n              89.7978515625,\n              575.5070648193359\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            563.0625,\n            232.9365234375,\n            575.5070648193359\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><a href=\\\"#page-38-3\\\">Shazeer</a> <a href=\\\"#page-38-3\\\">et</a> <a href=\\\"#page-38-3\\\">al.</a> <a href=\\\"#page-38-3\\\">(2018)</a>; <a href=\\\"#page-37-2\\\">Lepikhin</a> <a href=\\\"#page-37-2\\\">et</a> <a href=\\\"#page-37-2\\\">al.</a> <a href=\\\"#page-37-2\\\">(2020)</a> designed MoE Transformers <a href=\\\"#page-38-2\\\">(Shazeer</a> <a href=\\\"#page-38-2\\\">et</a> <a href=\\\"#page-38-2\\\">al.,</a> <a href=\\\"#page-38-2\\\">2017)</a> by adding MoE layers into the dense feedfoward network (FFN) computations of the Transformer. Similarly, our work also replaced the FFN layer in the Transformer, but we briefly explore here an alternate design. We add Switch layers into the Transformer Self-Attention layers. To do so, we replace the trainable weight matrices that produce the queries, keys and values with Switch layers as seen in Figure <a href=\\\"#page-27-0\\\">10.</a></p>\",\n          \"polygon\": [\n            [\n              89.947265625,\n              585.10546875\n            ],\n            [\n              522.650390625,\n              585.10546875\n            ],\n            [\n              522.650390625,\n              664.1855087280273\n            ],\n            [\n              89.947265625,\n              664.1855087280273\n            ]\n          ],\n          \"bbox\": [\n            89.947265625,\n            585.10546875,\n            522.650390625,\n            664.1855087280273\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Table <a href=\\\"#page-27-1\\\">10</a> records the quality after a fixed number of steps as well as training time for several variants. Though we find improvements, we also found these layers to be more unstable when using bfloat16 precision and thus we did not include them in the final variant.</p>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              666.703125\n            ],\n            [\n              522.3515625,\n              666.703125\n            ],\n            [\n              522.3515625,\n              705.375\n            ],\n            [\n              89.7978515625,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            666.703125,\n            522.3515625,\n            705.375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/PageFooter/11\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.0234375,\n              724.7109375\n            ],\n            [\n              311.080078125,\n              724.7109375\n            ],\n            [\n              311.080078125,\n              735.5390625\n            ],\n            [\n              300.0234375,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.0234375,\n            724.7109375,\n            311.080078125,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/26/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/27/Page/318\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/27/PageHeader/0'></content-ref><content-ref src='/page/27/Figure/1'></content-ref><content-ref src='/page/27/ListItem/2'></content-ref><content-ref src='/page/27/Table/3'></content-ref><content-ref src='/page/27/Table/4'></content-ref><content-ref src='/page/27/ListItem/5'></content-ref><content-ref src='/page/27/PageFooter/6'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/27/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              240.1083984375,\n              37.992431640625\n            ],\n            [\n              369.650390625,\n              37.992431640625\n            ],\n            [\n              369.650390625,\n              50.1767578125\n            ],\n            [\n              240.1083984375,\n              50.1767578125\n            ]\n          ],\n          \"bbox\": [\n            240.1083984375,\n            37.992431640625,\n            369.650390625,\n            50.1767578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Figure/1\",\n          \"block_type\": \"Figure\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              119.6806640625,\n              89.6220703125\n            ],\n            [\n              489.48046875,\n              89.6220703125\n            ],\n            [\n              489.48046875,\n              297.7052917480469\n            ],\n            [\n              119.6806640625,\n              297.7052917480469\n            ]\n          ],\n          \"bbox\": [\n            119.6806640625,\n            89.6220703125,\n            489.48046875,\n            297.7052917480469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": {\n            \"/page/27/Figure/1\": \"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XOifEbUbfT5Yd0cCWi4iJJLJ948htw/CgDrPjP8A8kk17/ci/wDRyV2Olf8AIHsv+veP/wBBFecap8KfEOtadNp+pfETUbm0mAEkT2iYbBBGfm9QKsx/DnxZFEkcfxL1RUQBVAtE4A/4FQA745/8kuvP+viD/wBGCvR68q1b4S69rtg1hqnxC1G6tWYM0UlouCQcj+L1q9/wr3xd/wBFN1T/AMBE/wDiqADxX/yW34f/APXK/wD/AESa9HrzzSfhrqVr4w0vxDq3i+81eTThKIop7dVGHQoeQ3HXPTtXodABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUhZVKgsAWOACep6/wBDVe01Czv/ADvsd1DceRIYpfKkDbHGCVOOhGRxXHaX4Au5fFA8R+KNbm1S9t5WawgizFBbLkgEKDy2Oufx3daAL/jKx8Xaq1pp/hzULXTLOYN9tvmBaeIcYEY6ZOTzxjHUVt6FpQ0PRLTTFu7m7Fumzz7p98j85yTWhRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAVtQS7k064Swkjiu2jZYZJBlUYjhiO+OuO+K8V8E/DS50L4jalc2GuyyXmkywC4aeP5bxJo90gODlTnkH5uQPrXudch4c/5KJ41/37L/ANEUAdfRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAcP8UPDF14q8Mvaf2h9k063R7q5VFy85RSUT0C55J55A4qn8IfDF34a8LQEaj9q03UbaC9ihdMPbSPGC6g/xKeD2xjock12XiL/kWdW/685v/QDVTwT/AMiF4d/7Blt/6KWgDdooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACikd1jRndgqKMszHAA9a53QvHGh+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\"\n          }\n        },\n        {\n          \"id\": \"/page/27/ListItem/2\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-27-0\\\"></span>Figure 10: Switch layers in attention. We diagram how to incorporate the Switch layer into the Self-Attention transformer block. For each token (here we show two tokens, x1 = \\\"More\\\" and x2 = \\\"Parameters\\\"), one set of weights produces the query and the other set of unique weights produces the shared keys and values. We experimented with each expert being a linear operation, as well as a FFN, as was the case throughout this work. While we found quality improvements using this, we found this to be more unstable when used with low precision number formats, and thus leave it for future work.</li>\",\n          \"polygon\": [\n            [\n              90.0,\n              315.8431701660156\n            ],\n            [\n              521.7557983398438,\n              315.8431701660156\n            ],\n            [\n              521.7557983398438,\n              421.5973205566406\n            ],\n            [\n              90.0,\n              421.5973205566406\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            315.8431701660156,\n            521.7557983398438,\n            421.5973205566406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Table/3\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><td>However, when these layers do train stably, we believe the preliminary positive results</td></tr><tr><td>suggests a future promising direction.</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              459.044189453125\n            ],\n            [\n              522.052734375,\n              459.044189453125\n            ],\n            [\n              522.052734375,\n              483.5032958984375\n            ],\n            [\n              89.6484375,\n              483.5032958984375\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            459.044189453125,\n            522.052734375,\n            483.5032958984375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/27/TableCell/285\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>However, when these layers do train stably, we believe the preliminary positive results</td>\",\n              \"polygon\": [\n                [\n                  89.6484375,\n                  459.044189453125\n                ],\n                [\n                  90.6484375,\n                  459.044189453125\n                ],\n                [\n                  90.6484375,\n                  460.044189453125\n                ],\n                [\n                  89.6484375,\n                  460.044189453125\n                ]\n              ],\n              \"bbox\": [\n                89.6484375,\n                459.044189453125,\n                90.6484375,\n                460.044189453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/286\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>suggests a future promising direction.</td>\",\n              \"polygon\": [\n                [\n                  89.6484375,\n                  460.044189453125\n                ],\n                [\n                  90.6484375,\n                  460.044189453125\n                ],\n                [\n                  90.6484375,\n                  461.044189453125\n                ],\n                [\n                  89.6484375,\n                  461.044189453125\n                ]\n              ],\n              \"bbox\": [\n                89.6484375,\n                460.044189453125,\n                90.6484375,\n                461.044189453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/27/Table/4\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Model</th><th>Precision</th><th>Quality<br/>@100k Steps (↑)</th><th>Quality<br/>@16H (↑)</th><th>Speed<br/>(ex/sec) (↑)</th></tr><tr><td>Experts FF</td><td>float32</td><td>-1.548</td><td>-1.614</td><td>1480</td></tr><tr><td>Expert Attention</td><td>float32</td><td>-1.524</td><td>-1.606</td><td>1330</td></tr><tr><td>Expert Attention</td><td>bfloat16</td><td>[diverges]</td><td>[diverges]</td><td>-</td></tr><tr><td>Experts FF + Attention</td><td>float32</td><td>-1.513</td><td>-1.607</td><td>1240</td></tr><tr><td>Expert FF + Attention</td><td>bfloat16</td><td>[diverges]</td><td>[diverges]</td><td>-</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              101.00390625,\n              496.546875\n            ],\n            [\n              507.708984375,\n              496.546875\n            ],\n            [\n              507.708984375,\n              597.8671875\n            ],\n            [\n              101.00390625,\n              597.8671875\n            ]\n          ],\n          \"bbox\": [\n            101.00390625,\n            496.546875,\n            507.708984375,\n            597.8671875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/27/TableCell/287\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Model</th>\",\n              \"polygon\": [\n                [\n                  101.00390625,\n                  496.546875\n                ],\n                [\n                  102.00390625,\n                  496.546875\n                ],\n                [\n                  102.00390625,\n                  497.546875\n                ],\n                [\n                  101.00390625,\n                  497.546875\n                ]\n              ],\n              \"bbox\": [\n                101.00390625,\n                496.546875,\n                102.00390625,\n                497.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/288\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Precision</th>\",\n              \"polygon\": [\n                [\n                  102.00390625,\n                  496.546875\n                ],\n                [\n                  103.00390625,\n                  496.546875\n                ],\n                [\n                  103.00390625,\n                  497.546875\n                ],\n                [\n                  102.00390625,\n                  497.546875\n                ]\n              ],\n              \"bbox\": [\n                102.00390625,\n                496.546875,\n                103.00390625,\n                497.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/289\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Quality<br/>@100k Steps (↑)</th>\",\n              \"polygon\": [\n                [\n                  103.00390625,\n                  496.546875\n                ],\n                [\n                  104.00390625,\n                  496.546875\n                ],\n                [\n                  104.00390625,\n                  497.546875\n                ],\n                [\n                  103.00390625,\n                  497.546875\n                ]\n              ],\n              \"bbox\": [\n                103.00390625,\n                496.546875,\n                104.00390625,\n                497.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/290\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Quality<br/>@16H (↑)</th>\",\n              \"polygon\": [\n                [\n                  104.00390625,\n                  496.546875\n                ],\n                [\n                  105.00390625,\n                  496.546875\n                ],\n                [\n                  105.00390625,\n                  497.546875\n                ],\n                [\n                  104.00390625,\n                  497.546875\n                ]\n              ],\n              \"bbox\": [\n                104.00390625,\n                496.546875,\n                105.00390625,\n                497.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/291\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Speed<br/>(ex/sec) (↑)</th>\",\n              \"polygon\": [\n                [\n                  105.00390625,\n                  496.546875\n                ],\n                [\n                  106.00390625,\n                  496.546875\n                ],\n                [\n                  106.00390625,\n                  497.546875\n                ],\n                [\n                  105.00390625,\n                  497.546875\n                ]\n              ],\n              \"bbox\": [\n                105.00390625,\n                496.546875,\n                106.00390625,\n                497.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/292\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Experts FF</td>\",\n              \"polygon\": [\n                [\n                  101.00390625,\n                  497.546875\n                ],\n                [\n                  102.00390625,\n                  497.546875\n                ],\n                [\n                  102.00390625,\n                  498.546875\n                ],\n                [\n                  101.00390625,\n                  498.546875\n                ]\n              ],\n              \"bbox\": [\n                101.00390625,\n                497.546875,\n                102.00390625,\n                498.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/293\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>float32</td>\",\n              \"polygon\": [\n                [\n                  102.00390625,\n                  497.546875\n                ],\n                [\n                  103.00390625,\n                  497.546875\n                ],\n                [\n                  103.00390625,\n                  498.546875\n                ],\n                [\n                  102.00390625,\n                  498.546875\n                ]\n              ],\n              \"bbox\": [\n                102.00390625,\n                497.546875,\n                103.00390625,\n                498.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/294\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.548</td>\",\n              \"polygon\": [\n                [\n                  103.00390625,\n                  497.546875\n                ],\n                [\n                  104.00390625,\n                  497.546875\n                ],\n                [\n                  104.00390625,\n                  498.546875\n                ],\n                [\n                  103.00390625,\n                  498.546875\n                ]\n              ],\n              \"bbox\": [\n                103.00390625,\n                497.546875,\n                104.00390625,\n                498.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/295\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.614</td>\",\n              \"polygon\": [\n                [\n                  104.00390625,\n                  497.546875\n                ],\n                [\n                  105.00390625,\n                  497.546875\n                ],\n                [\n                  105.00390625,\n                  498.546875\n                ],\n                [\n                  104.00390625,\n                  498.546875\n                ]\n              ],\n              \"bbox\": [\n                104.00390625,\n                497.546875,\n                105.00390625,\n                498.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/296\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1480</td>\",\n              \"polygon\": [\n                [\n                  105.00390625,\n                  497.546875\n                ],\n                [\n                  106.00390625,\n                  497.546875\n                ],\n                [\n                  106.00390625,\n                  498.546875\n                ],\n                [\n                  105.00390625,\n                  498.546875\n                ]\n              ],\n              \"bbox\": [\n                105.00390625,\n                497.546875,\n                106.00390625,\n                498.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/297\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Expert Attention</td>\",\n              \"polygon\": [\n                [\n                  101.00390625,\n                  498.546875\n                ],\n                [\n                  102.00390625,\n                  498.546875\n                ],\n                [\n                  102.00390625,\n                  499.546875\n                ],\n                [\n                  101.00390625,\n                  499.546875\n                ]\n              ],\n              \"bbox\": [\n                101.00390625,\n                498.546875,\n                102.00390625,\n                499.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/298\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>float32</td>\",\n              \"polygon\": [\n                [\n                  102.00390625,\n                  498.546875\n                ],\n                [\n                  103.00390625,\n                  498.546875\n                ],\n                [\n                  103.00390625,\n                  499.546875\n                ],\n                [\n                  102.00390625,\n                  499.546875\n                ]\n              ],\n              \"bbox\": [\n                102.00390625,\n                498.546875,\n                103.00390625,\n                499.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/299\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.524</td>\",\n              \"polygon\": [\n                [\n                  103.00390625,\n                  498.546875\n                ],\n                [\n                  104.00390625,\n                  498.546875\n                ],\n                [\n                  104.00390625,\n                  499.546875\n                ],\n                [\n                  103.00390625,\n                  499.546875\n                ]\n              ],\n              \"bbox\": [\n                103.00390625,\n                498.546875,\n                104.00390625,\n                499.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/300\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.606</td>\",\n              \"polygon\": [\n                [\n                  104.00390625,\n                  498.546875\n                ],\n                [\n                  105.00390625,\n                  498.546875\n                ],\n                [\n                  105.00390625,\n                  499.546875\n                ],\n                [\n                  104.00390625,\n                  499.546875\n                ]\n              ],\n              \"bbox\": [\n                104.00390625,\n                498.546875,\n                105.00390625,\n                499.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/301\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1330</td>\",\n              \"polygon\": [\n                [\n                  105.00390625,\n                  498.546875\n                ],\n                [\n                  106.00390625,\n                  498.546875\n                ],\n                [\n                  106.00390625,\n                  499.546875\n                ],\n                [\n                  105.00390625,\n                  499.546875\n                ]\n              ],\n              \"bbox\": [\n                105.00390625,\n                498.546875,\n                106.00390625,\n                499.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/302\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Expert Attention</td>\",\n              \"polygon\": [\n                [\n                  101.00390625,\n                  499.546875\n                ],\n                [\n                  102.00390625,\n                  499.546875\n                ],\n                [\n                  102.00390625,\n                  500.546875\n                ],\n                [\n                  101.00390625,\n                  500.546875\n                ]\n              ],\n              \"bbox\": [\n                101.00390625,\n                499.546875,\n                102.00390625,\n                500.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/303\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>bfloat16</td>\",\n              \"polygon\": [\n                [\n                  102.00390625,\n                  499.546875\n                ],\n                [\n                  103.00390625,\n                  499.546875\n                ],\n                [\n                  103.00390625,\n                  500.546875\n                ],\n                [\n                  102.00390625,\n                  500.546875\n                ]\n              ],\n              \"bbox\": [\n                102.00390625,\n                499.546875,\n                103.00390625,\n                500.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/304\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>[diverges]</td>\",\n              \"polygon\": [\n                [\n                  103.00390625,\n                  499.546875\n                ],\n                [\n                  104.00390625,\n                  499.546875\n                ],\n                [\n                  104.00390625,\n                  500.546875\n                ],\n                [\n                  103.00390625,\n                  500.546875\n                ]\n              ],\n              \"bbox\": [\n                103.00390625,\n                499.546875,\n                104.00390625,\n                500.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/305\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>[diverges]</td>\",\n              \"polygon\": [\n                [\n                  104.00390625,\n                  499.546875\n                ],\n                [\n                  105.00390625,\n                  499.546875\n                ],\n                [\n                  105.00390625,\n                  500.546875\n                ],\n                [\n                  104.00390625,\n                  500.546875\n                ]\n              ],\n              \"bbox\": [\n                104.00390625,\n                499.546875,\n                105.00390625,\n                500.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/306\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-</td>\",\n              \"polygon\": [\n                [\n                  105.00390625,\n                  499.546875\n                ],\n                [\n                  106.00390625,\n                  499.546875\n                ],\n                [\n                  106.00390625,\n                  500.546875\n                ],\n                [\n                  105.00390625,\n                  500.546875\n                ]\n              ],\n              \"bbox\": [\n                105.00390625,\n                499.546875,\n                106.00390625,\n                500.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/307\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Experts FF + Attention</td>\",\n              \"polygon\": [\n                [\n                  101.00390625,\n                  500.546875\n                ],\n                [\n                  102.00390625,\n                  500.546875\n                ],\n                [\n                  102.00390625,\n                  501.546875\n                ],\n                [\n                  101.00390625,\n                  501.546875\n                ]\n              ],\n              \"bbox\": [\n                101.00390625,\n                500.546875,\n                102.00390625,\n                501.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/308\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>float32</td>\",\n              \"polygon\": [\n                [\n                  102.00390625,\n                  500.546875\n                ],\n                [\n                  103.00390625,\n                  500.546875\n                ],\n                [\n                  103.00390625,\n                  501.546875\n                ],\n                [\n                  102.00390625,\n                  501.546875\n                ]\n              ],\n              \"bbox\": [\n                102.00390625,\n                500.546875,\n                103.00390625,\n                501.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/309\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.513</td>\",\n              \"polygon\": [\n                [\n                  103.00390625,\n                  500.546875\n                ],\n                [\n                  104.00390625,\n                  500.546875\n                ],\n                [\n                  104.00390625,\n                  501.546875\n                ],\n                [\n                  103.00390625,\n                  501.546875\n                ]\n              ],\n              \"bbox\": [\n                103.00390625,\n                500.546875,\n                104.00390625,\n                501.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/310\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.607</td>\",\n              \"polygon\": [\n                [\n                  104.00390625,\n                  500.546875\n                ],\n                [\n                  105.00390625,\n                  500.546875\n                ],\n                [\n                  105.00390625,\n                  501.546875\n                ],\n                [\n                  104.00390625,\n                  501.546875\n                ]\n              ],\n              \"bbox\": [\n                104.00390625,\n                500.546875,\n                105.00390625,\n                501.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/311\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1240</td>\",\n              \"polygon\": [\n                [\n                  105.00390625,\n                  500.546875\n                ],\n                [\n                  106.00390625,\n                  500.546875\n                ],\n                [\n                  106.00390625,\n                  501.546875\n                ],\n                [\n                  105.00390625,\n                  501.546875\n                ]\n              ],\n              \"bbox\": [\n                105.00390625,\n                500.546875,\n                106.00390625,\n                501.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/312\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Expert FF + Attention</td>\",\n              \"polygon\": [\n                [\n                  101.00390625,\n                  501.546875\n                ],\n                [\n                  102.00390625,\n                  501.546875\n                ],\n                [\n                  102.00390625,\n                  502.546875\n                ],\n                [\n                  101.00390625,\n                  502.546875\n                ]\n              ],\n              \"bbox\": [\n                101.00390625,\n                501.546875,\n                102.00390625,\n                502.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/313\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>bfloat16</td>\",\n              \"polygon\": [\n                [\n                  102.00390625,\n                  501.546875\n                ],\n                [\n                  103.00390625,\n                  501.546875\n                ],\n                [\n                  103.00390625,\n                  502.546875\n                ],\n                [\n                  102.00390625,\n                  502.546875\n                ]\n              ],\n              \"bbox\": [\n                102.00390625,\n                501.546875,\n                103.00390625,\n                502.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/314\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>[diverges]</td>\",\n              \"polygon\": [\n                [\n                  103.00390625,\n                  501.546875\n                ],\n                [\n                  104.00390625,\n                  501.546875\n                ],\n                [\n                  104.00390625,\n                  502.546875\n                ],\n                [\n                  103.00390625,\n                  502.546875\n                ]\n              ],\n              \"bbox\": [\n                103.00390625,\n                501.546875,\n                104.00390625,\n                502.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/315\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>[diverges]</td>\",\n              \"polygon\": [\n                [\n                  104.00390625,\n                  501.546875\n                ],\n                [\n                  105.00390625,\n                  501.546875\n                ],\n                [\n                  105.00390625,\n                  502.546875\n                ],\n                [\n                  104.00390625,\n                  502.546875\n                ]\n              ],\n              \"bbox\": [\n                104.00390625,\n                501.546875,\n                105.00390625,\n                502.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/TableCell/316\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-</td>\",\n              \"polygon\": [\n                [\n                  105.00390625,\n                  501.546875\n                ],\n                [\n                  106.00390625,\n                  501.546875\n                ],\n                [\n                  106.00390625,\n                  502.546875\n                ],\n                [\n                  105.00390625,\n                  502.546875\n                ]\n              ],\n              \"bbox\": [\n                105.00390625,\n                501.546875,\n                106.00390625,\n                502.546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/26/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/27/ListItem/5\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-27-1\\\"></span>Table 10: Switch attention layer results. All models have 32 experts and train with 524k tokens per batch. Experts FF is when experts replace the FFN in the Transformer, which is our standard setup throughout the paper. Experts FF + Attention is when experts are used to replace both the FFN and the Self-Attention layers. When training with bfloat16 precision the models that have experts attention diverge.</li>\",\n          \"polygon\": [\n            [\n              90.0,\n              612.5131988525391\n            ],\n            [\n              521.75390625,\n              612.5131988525391\n            ],\n            [\n              521.75390625,\n              691.453125\n            ],\n            [\n              90.0,\n              691.453125\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            612.5131988525391,\n            521.75390625,\n            691.453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/PageFooter/6\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.4716796875,\n              724.9639053344727\n            ],\n            [\n              311.080078125,\n              724.9639053344727\n            ],\n            [\n              311.080078125,\n              735.15234375\n            ],\n            [\n              300.4716796875,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.4716796875,\n            724.9639053344727,\n            311.080078125,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/26/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/28/Page/175\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/28/PageHeader/0'></content-ref><content-ref src='/page/28/SectionHeader/1'></content-ref><content-ref src='/page/28/Text/2'></content-ref><content-ref src='/page/28/Text/3'></content-ref><content-ref src='/page/28/SectionHeader/4'></content-ref><content-ref src='/page/28/Text/5'></content-ref><content-ref src='/page/28/Text/6'></content-ref><content-ref src='/page/28/SectionHeader/7'></content-ref><content-ref src='/page/28/Text/8'></content-ref><content-ref src='/page/28/PageFooter/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/28/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.5791015625,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              49.9833984375\n            ],\n            [\n              247.5791015625,\n              49.9833984375\n            ]\n          ],\n          \"bbox\": [\n            247.5791015625,\n            37.992431640625,\n            359.7890625,\n            49.9833984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/26/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-28-0\\\"></span>B. Preventing Token Dropping with No-Token-Left-Behind</h3>\",\n          \"polygon\": [\n            [\n              89.2001953125,\n              92.4776611328125\n            ],\n            [\n              443.4609375,\n              92.4776611328125\n            ],\n            [\n              443.4609375,\n              104.432861328125\n            ],\n            [\n              89.2001953125,\n              104.432861328125\n            ]\n          ],\n          \"bbox\": [\n            89.2001953125,\n            92.4776611328125,\n            443.4609375,\n            104.432861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Due to software constraints on TPU accelerators, the shapes of our Tensors must be statically sized. As a result, each expert has a finite and fixed capacity to process token representations. This, however, presents an issue for our model which dynamically routes tokens at run-time that may result in an uneven distribution over experts. If the number of tokens sent to an expert is less than the expert capacity, then the computation may simply be padded – an inefficient use of the hardware, but mathematically correct. However, when the number of tokens sent to an expert is larger than its capacity (expert overflow), a protocol is needed to handle this. <a href=\\\"#page-37-2\\\">Lepikhin</a> <a href=\\\"#page-37-2\\\">et</a> <a href=\\\"#page-37-2\\\">al.</a> <a href=\\\"#page-37-2\\\">(2020)</a> adapts a Mixture-of-Expert model and addresses expert overflow by passing its representation to the next layer without processing through a residual connection which we also follow.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              114.04425048828125\n            ],\n            [\n              522.052734375,\n              114.04425048828125\n            ],\n            [\n              522.052734375,\n              246.89642333984375\n            ],\n            [\n              89.349609375,\n              246.89642333984375\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            114.04425048828125,\n            522.052734375,\n            246.89642333984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We suspected that having no computation applied to tokens could be very wasteful, especially since if there is overflow on one expert, that means another expert will have extra capacity. With this intuition we create No-Token-Left-Behind, which iteratively reroutes any tokens that are at first routed to an expert that is overflowing. Figure <a href=\\\"#page-29-0\\\">11</a> shows a graphical description of this method, which will allow us to guarantee almost no tokens will be dropped during training and inference. We hypothesised that this could improve performance and further stabilize training, but we found no empirical benefits. We suspect that once the network learns associations between different tokens and experts, if this association is changed (e.g. sending a token to its second highest expert) then performance could be degraded.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              249.53631591796875\n            ],\n            [\n              521.8411865234375,\n              249.53631591796875\n            ],\n            [\n              521.8411865234375,\n              383.044921875\n            ],\n            [\n              89.4990234375,\n              383.044921875\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            249.53631591796875,\n            521.8411865234375,\n            383.044921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-28-1\\\"></span>C. Encouraging Exploration Across Experts</h3>\",\n          \"polygon\": [\n            [\n              89.2001953125,\n              401.88983154296875\n            ],\n            [\n              350.2265625,\n              401.88983154296875\n            ],\n            [\n              350.2265625,\n              413.84503173828125\n            ],\n            [\n              89.2001953125,\n              413.84503173828125\n            ]\n          ],\n          \"bbox\": [\n            89.2001953125,\n            401.88983154296875,\n            350.2265625,\n            413.84503173828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">At each expert-layer, the router determines to which expert to send the token. This is a discrete decision over the available experts, conditioned on information about the token's representation. Based on the incoming token representation, the router determines the best expert, however, it receives no counterfactual information about how well it would have done selecting an alternate expert. As in reinforcement learning, a classic explorationexploitation dilemma arises <a href=\\\"#page-38-12\\\">(Sutton</a> <a href=\\\"#page-38-12\\\">and</a> <a href=\\\"#page-38-12\\\">Barto,</a> <a href=\\\"#page-38-12\\\">2018)</a>. These issues have been similarly noted and addressed differently by <a href=\\\"#page-38-13\\\">Rosenbaum</a> <a href=\\\"#page-38-13\\\">et</a> <a href=\\\"#page-38-13\\\">al.</a> <a href=\\\"#page-38-13\\\">(2017)</a> which demonstrated success in multi-task learning. This particular setting most closely matches that of a contextual bandit <a href=\\\"#page-37-12\\\">(Robbins,</a> <a href=\\\"#page-37-12\\\">1952)</a>. Deterministically selecting the top expert always amounts to an exploitative strategy – we consider balancing exploration to seek better expert assignment.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              423.4573669433594\n            ],\n            [\n              521.75390625,\n              423.4573669433594\n            ],\n            [\n              521.75390625,\n              556.3085327148438\n            ],\n            [\n              89.4990234375,\n              556.3085327148438\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            423.4573669433594,\n            521.75390625,\n            556.3085327148438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To introduce exploration, we consider several approaches: 1) deterministic or argmax 2) sampling from the softmax distribution 3) input dropout on the incoming representation 4) multiplicative jitter noise on the incoming representation. The resulting impact on model quality is reported in Table <a href=\\\"#page-29-1\\\">11.</a> Throughout this work, we use input jitter to inject noise as we have found it to empirically perform the best.</p>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              574.6124267578125\n            ],\n            [\n              521.601806640625,\n              574.6124267578125\n            ],\n            [\n              521.601806640625,\n              639.7185211181641\n            ],\n            [\n              89.4990234375,\n              639.7185211181641\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            574.6124267578125,\n            521.601806640625,\n            639.7185211181641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-28-2\\\"></span>D. Switch Transformers in Lower Compute Regimes</h3>\",\n          \"polygon\": [\n            [\n              89.05078125,\n              659.2198486328125\n            ],\n            [\n              398.935546875,\n              659.2198486328125\n            ],\n            [\n              398.935546875,\n              671.175048828125\n            ],\n            [\n              89.05078125,\n              671.175048828125\n            ]\n          ],\n          \"bbox\": [\n            89.05078125,\n            659.2198486328125,\n            398.935546875,\n            671.175048828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Switch Transformer is also an effective architecture at small scales as well as in regimes with thousands of cores and trillions of parameters. Many of our prior experiments were</p>\",\n          \"polygon\": [\n            [\n              88.751953125,\n              680.7864151000977\n            ],\n            [\n              521.75390625,\n              680.7864151000977\n            ],\n            [\n              521.75390625,\n              705.2455139160156\n            ],\n            [\n              88.751953125,\n              705.2455139160156\n            ]\n          ],\n          \"bbox\": [\n            88.751953125,\n            680.7864151000977,\n            521.75390625,\n            705.2455139160156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/PageFooter/9\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.1728515625,\n              724.9641342163086\n            ],\n            [\n              310.9815673828125,\n              724.9641342163086\n            ],\n            [\n              310.9815673828125,\n              735.15234375\n            ],\n            [\n              300.1728515625,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.1728515625,\n            724.9641342163086,\n            310.9815673828125,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/28/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/29/Page/202\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/29/PageHeader/0'></content-ref><content-ref src='/page/29/Figure/1'></content-ref><content-ref src='/page/29/ListItem/2'></content-ref><content-ref src='/page/29/Table/3'></content-ref><content-ref src='/page/29/ListItem/4'></content-ref><content-ref src='/page/29/Text/5'></content-ref><content-ref src='/page/29/PageFooter/6'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/29/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              240.1083984375,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              50.41845703125\n            ],\n            [\n              240.1083984375,\n              50.41845703125\n            ]\n          ],\n          \"bbox\": [\n            240.1083984375,\n            37.992431640625,\n            368.75390625,\n            50.41845703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/29/Figure/1\",\n          \"block_type\": \"Figure\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              193.341796875,\n              89.71875\n            ],\n            [\n              413.578125,\n              89.71875\n            ],\n            [\n              413.578125,\n              347.87579345703125\n            ],\n            [\n              193.341796875,\n              347.87579345703125\n            ]\n          ],\n          \"bbox\": [\n            193.341796875,\n            89.71875,\n            413.578125,\n            347.87579345703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {\n            \"/page/29/Figure/1\": \"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iigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKpajNKghhhfY8z7d+MlQASce/FVvsjf8/l3/39rnnXUZcqVzSMLq5rUVk/ZG/5/Lv/AL+mg20ygmK9uQ46bn3DPuDU/Wf7o/Z+ZrUVysE13qMK3U15PGZOVjhbYqjsPepPIm/6CF7/AN/jWqqX1SOb2h01Fcz5E3/QQvf+/wAauaTczpfyWU0zzJ5Xmoz/AHl5wQT36imp62aGp3djaooorQsKKKKACiiigAooooAKKKzNfvptO0iSa32+ezpFGWGQrMwXJ+mc0m7K5UYuUlFdTTorjfsVyeX1jUmY9SJ9oJ+gGBS/YZv+gtqf/gSaj2nkdH1b+8djRXHfYrgcrq+pg9j9oz+hFOsX1DUoDLd6lOCjtEotz5YO04LHHckfStaa5zGtD2STvc6+iua+wSf9BLUP/Ag0fYJP+glqH/gQa19l5nP7TyOlorn7Ca5s9WhtHuZbiC4RyPOOWRlwevcEetdBWco8rsVGV0FFFFSUFFFFABRRRQAUUUUAFFYOuXdyb630+3ne3V42llkTG4gEAKD269fas/7LN/0E9R/8CDVqF1cpROuorkfss3/QT1H/AMCDVbUbm90bTbnUoL+6la1iaUxTyb0cKMkEds46inyeYOJ29FeaRQ6peQpc3mv6n58qh3FvN5Uak9lUDgD86d9guv8AoPa1/wCBjUez8zH2nkek0V5t9gu/+g9rX/gYa6Hwdqd7ctqOm31wbmSxdNlwwAZ0dcgNjgkYIz34pOFlcand2OooooqCwooooAKKKKACiiigAooooAK8F13Xptc+JmtaPr3ja+8LWVkypZRW8hhWX/aZ+B6Hn146V71Xjniz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6uiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA8n8VPrUfxv0xtBhspr3+xn+W9kZI9vmHPKgnNab+GfF/ifxBpF34ofR7XT9LuPtUdvp7SO8soHG4sAAB7V0U/hXzviBa+KvtuPIsWs/s3lfey2d27PH0x+NdHQB5L4f0WTxB448VXeparqLWelaqHtrOOcrHvChssO44GB06+tHhPwxF8Q9Dl8T69qOpNe3k0v2UW948S2aKxVQiqQM8Z5zXdeHvDH9hanr14bvzxq159q2eVt8r5cbc5O768VzkfgLxFoxu7Pwx4pSw0i6leX7PPZCZ7Yt97y23Dj0B6UAcRd32qeJ/Bfhe1vNRlF9D4l+wfb14dgm4Bwf72D19RXR61oSfD3X/AA3qOh32oeXfagljfW9xdPMtwHz85DE4YYzkVsah8LbWfwpo2hWGqT2K6bdC7+0iMPJJJzluoAJJznnpjFT2fgrWrzXrDUvFPiCPU001jJZ28FoIE8zGPMfk5IHboKAON1f+wdV8S6yb2fxN4kvEnKRJo8cyw2AA4QMGCbgepJxVC6u9S8QfBzwsbm/nF6+uRQLdSHdIuJHVST3YDHPtXb2fgDX9IuL+00fxULPRb24e4eL7Erzxl/vBJCcfiQcVSj+E90fB0fhmbxAVtbbUReWs0Vv+9RASdpO772W+92x0oAq+JPD6fD260PXND1DUfNl1GK0vY7m7eZbtJDglgxxu78YrM8R3VxNpnxZilnlkjhaARo7khAVGQB2/Cuxh8Ea5qGsafc+KPEaanaabL51tbQ2YhDyD7ryHJyR6DinX/wAOvt0Hi+P+1dn/AAkRjOfs+fs+0Y/vfNn8KAMeZZL74geHdKe5uY7O58OSCRIZmTngZGOh965LQ9PGkfA/xVqdnd3sd0000Qb7Q2FCTYBUZ4PPJHWvV08IbPFmk679uz/Z+nGx8nyf9ZnHzbt3HTpg/WuetfhnqEPhnxD4ck8QI2mak7Paj7IN1uWfcxJ3Dd2HUUAc34i1yTVfFlnoN/aeIL7SbPS4Z5bXRlYvPK4HMhVgdoHv1rQ8Hvr8WoeINN0ax8QWelPp5l04a5EwMFz02qzE/Kc5wT2rp9V8DXp1Kx1rQNYGnavbWi2ckkluJYrmMdAy54OeQQadpngSUxaxN4g1aXU9R1aD7PNMieSkUWOFjUE49c9zQB5nZiy0ldPfWJvE3hnxOkyedqd95s9rcvn5lJDbCrfhivfgQVBBBBHUV5tJ8PPE2oaVF4f1XxdHc6DHsVkSwCzyxqQQhfccdByBmvSI0WONY0GFUAAegFADqKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA/9k=\"\n          }\n        },\n        {\n          \"id\": \"/page/29/ListItem/2\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-29-0\\\"></span>Figure 11: Diagram of the No-Token-Left-Behind Routing. Stage 1 is equivalent to Switch routing where tokens are routed to the expert with the highest probability from the router. In Stage 2 we look at all tokens that have overflowed and route them to the expert with which has the second highest probability. Tokens can still be overflowed if their second highest expert has too many tokens, but this allows most of the tokens to be routed. This process can be iterated to guarantee virtually no tokens are dropped at all.</li>\",\n          \"polygon\": [\n            [\n              90.0,\n              366.9101867675781\n            ],\n            [\n              522.052734375,\n              366.9101867675781\n            ],\n            [\n              522.052734375,\n              460.1953125\n            ],\n            [\n              90.0,\n              460.1953125\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            366.9101867675781,\n            522.052734375,\n            460.1953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/29/Table/3\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Model</th><th>Quality (Neg. Log Perp.) (↑)</th></tr><tr><td>Argmax</td><td>-1.471</td></tr><tr><td>Sample softmax</td><td>-1.570</td></tr><tr><td>Input dropout</td><td>-1.480</td></tr><tr><td>Input jitter</td><td>-1.468</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              190.0546875,\n              483.01171875\n            ],\n            [\n              426.12890625,\n              483.01171875\n            ],\n            [\n              426.12890625,\n              555.71484375\n            ],\n            [\n              190.0546875,\n              555.71484375\n            ]\n          ],\n          \"bbox\": [\n            190.0546875,\n            483.01171875,\n            426.12890625,\n            555.71484375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/29/TableCell/191\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Model</th>\",\n              \"polygon\": [\n                [\n                  190.0546875,\n                  483.01171875\n                ],\n                [\n                  191.0546875,\n                  483.01171875\n                ],\n                [\n                  191.0546875,\n                  484.01171875\n                ],\n                [\n                  190.0546875,\n                  484.01171875\n                ]\n              ],\n              \"bbox\": [\n                190.0546875,\n                483.01171875,\n                191.0546875,\n                484.01171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/TableCell/192\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Quality (Neg. Log Perp.) (↑)</th>\",\n              \"polygon\": [\n                [\n                  191.0546875,\n                  483.01171875\n                ],\n                [\n                  192.0546875,\n                  483.01171875\n                ],\n                [\n                  192.0546875,\n                  484.01171875\n                ],\n                [\n                  191.0546875,\n                  484.01171875\n                ]\n              ],\n              \"bbox\": [\n                191.0546875,\n                483.01171875,\n                192.0546875,\n                484.01171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/TableCell/193\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Argmax</td>\",\n              \"polygon\": [\n                [\n                  190.0546875,\n                  484.01171875\n                ],\n                [\n                  191.0546875,\n                  484.01171875\n                ],\n                [\n                  191.0546875,\n                  485.01171875\n                ],\n                [\n                  190.0546875,\n                  485.01171875\n                ]\n              ],\n              \"bbox\": [\n                190.0546875,\n                484.01171875,\n                191.0546875,\n                485.01171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/TableCell/194\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.471</td>\",\n              \"polygon\": [\n                [\n                  191.0546875,\n                  484.01171875\n                ],\n                [\n                  192.0546875,\n                  484.01171875\n                ],\n                [\n                  192.0546875,\n                  485.01171875\n                ],\n                [\n                  191.0546875,\n                  485.01171875\n                ]\n              ],\n              \"bbox\": [\n                191.0546875,\n                484.01171875,\n                192.0546875,\n                485.01171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/TableCell/195\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Sample softmax</td>\",\n              \"polygon\": [\n                [\n                  190.0546875,\n                  485.01171875\n                ],\n                [\n                  191.0546875,\n                  485.01171875\n                ],\n                [\n                  191.0546875,\n                  486.01171875\n                ],\n                [\n                  190.0546875,\n                  486.01171875\n                ]\n              ],\n              \"bbox\": [\n                190.0546875,\n                485.01171875,\n                191.0546875,\n                486.01171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/TableCell/196\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.570</td>\",\n              \"polygon\": [\n                [\n                  191.0546875,\n                  485.01171875\n                ],\n                [\n                  192.0546875,\n                  485.01171875\n                ],\n                [\n                  192.0546875,\n                  486.01171875\n                ],\n                [\n                  191.0546875,\n                  486.01171875\n                ]\n              ],\n              \"bbox\": [\n                191.0546875,\n                485.01171875,\n                192.0546875,\n                486.01171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/TableCell/197\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Input dropout</td>\",\n              \"polygon\": [\n                [\n                  190.0546875,\n                  486.01171875\n                ],\n                [\n                  191.0546875,\n                  486.01171875\n                ],\n                [\n                  191.0546875,\n                  487.01171875\n                ],\n                [\n                  190.0546875,\n                  487.01171875\n                ]\n              ],\n              \"bbox\": [\n                190.0546875,\n                486.01171875,\n                191.0546875,\n                487.01171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/TableCell/198\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.480</td>\",\n              \"polygon\": [\n                [\n                  191.0546875,\n                  486.01171875\n                ],\n                [\n                  192.0546875,\n                  486.01171875\n                ],\n                [\n                  192.0546875,\n                  487.01171875\n                ],\n                [\n                  191.0546875,\n                  487.01171875\n                ]\n              ],\n              \"bbox\": [\n                191.0546875,\n                486.01171875,\n                192.0546875,\n                487.01171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/TableCell/199\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Input jitter</td>\",\n              \"polygon\": [\n                [\n                  190.0546875,\n                  487.01171875\n                ],\n                [\n                  191.0546875,\n                  487.01171875\n                ],\n                [\n                  191.0546875,\n                  488.01171875\n                ],\n                [\n                  190.0546875,\n                  488.01171875\n                ]\n              ],\n              \"bbox\": [\n                190.0546875,\n                487.01171875,\n                191.0546875,\n                488.01171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/TableCell/200\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>-1.468</td>\",\n              \"polygon\": [\n                [\n                  191.0546875,\n                  487.01171875\n                ],\n                [\n                  192.0546875,\n                  487.01171875\n                ],\n                [\n                  192.0546875,\n                  488.01171875\n                ],\n                [\n                  191.0546875,\n                  488.01171875\n                ]\n              ],\n              \"bbox\": [\n                191.0546875,\n                487.01171875,\n                192.0546875,\n                488.01171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/29/ListItem/4\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-29-1\\\"></span>Table 11: Router Exploration Strategies. Quality of the Switch Transformer, measured by the negative log perplexity, under different randomness-strategies for selecting the expert (lower is better). There is no material speed performance difference between the variants.</li>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              567.31640625\n            ],\n            [\n              521.6160888671875,\n              567.31640625\n            ],\n            [\n              521.6160888671875,\n              619.1502838134766\n            ],\n            [\n              89.6484375,\n              619.1502838134766\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            567.31640625,\n            521.6160888671875,\n            619.1502838134766\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/29/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">at the scale of 10B+ parameter models, but we show in Figure <a href=\\\"#page-30-0\\\">12</a> as few as 2 experts produce compelling gains over a FLOP-matched counterpart. Even if a super computer is not readily available, training Switch Transformers with 2, 4, or 8 experts (as we typically recommend one expert per core) results in solid improvements over T5 dense baselines.</p>\",\n          \"polygon\": [\n            [\n              89.05078125,\n              639.1251831054688\n            ],\n            [\n              521.75390625,\n              639.1251831054688\n            ],\n            [\n              521.75390625,\n              691.453125\n            ],\n            [\n              89.05078125,\n              691.453125\n            ]\n          ],\n          \"bbox\": [\n            89.05078125,\n            639.1251831054688,\n            521.75390625,\n            691.453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/29/PageFooter/6\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.1728515625,\n              724.9638977050781\n            ],\n            [\n              310.9815673828125,\n              724.9638977050781\n            ],\n            [\n              310.9815673828125,\n              735.15234375\n            ],\n            [\n              300.1728515625,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.1728515625,\n            724.9638977050781,\n            310.9815673828125,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/28/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/30/Page/71\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/30/PageHeader/0'></content-ref><content-ref src='/page/30/FigureGroup/70'></content-ref><content-ref src='/page/30/PageFooter/3'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/30/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.130859375,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              50.32177734375\n            ],\n            [\n              247.130859375,\n              50.32177734375\n            ]\n          ],\n          \"bbox\": [\n            247.130859375,\n            37.992431640625,\n            359.7890625,\n            50.32177734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/30/FigureGroup/70\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/30/Figure/1'></content-ref><content-ref src='/page/30/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              90.0,\n              273.216796875\n            ],\n            [\n              521.6766357421875,\n              273.216796875\n            ],\n            [\n              521.6766357421875,\n              531.73828125\n            ],\n            [\n              90.0,\n              531.73828125\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            273.216796875,\n            521.6766357421875,\n            531.73828125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/30/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  169.5849609375,\n                  273.216796875\n                ],\n                [\n                  425.102294921875,\n                  273.216796875\n                ],\n                [\n                  425.102294921875,\n                  468.703125\n                ],\n                [\n                  169.5849609375,\n                  468.703125\n                ]\n              ],\n              \"bbox\": [\n                169.5849609375,\n                273.216796875,\n                425.102294921875,\n                468.703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {\n                \"/page/30/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/30/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-30-0\\\"></span>Figure 12: Switch Transformer with few experts. Switch Transformer improves over the baseline even with very few experts. Here we show scaling properties at very small scales, where we improve over the T5-Base model using 2, 4, and 8 experts.</p>\",\n              \"polygon\": [\n                [\n                  90.0,\n                  492.8201904296875\n                ],\n                [\n                  521.6766357421875,\n                  492.8201904296875\n                ],\n                [\n                  521.6766357421875,\n                  531.73828125\n                ],\n                [\n                  90.0,\n                  531.73828125\n                ]\n              ],\n              \"bbox\": [\n                90.0,\n                492.8201904296875,\n                521.6766357421875,\n                531.73828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/28/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/30/PageFooter/3\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.322265625,\n              724.9639434814453\n            ],\n            [\n              310.9815673828125,\n              724.9639434814453\n            ],\n            [\n              310.9815673828125,\n              735.15234375\n            ],\n            [\n              300.322265625,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.322265625,\n            724.9639434814453,\n            310.9815673828125,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/28/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/31/Page/198\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/31/PageHeader/0'></content-ref><content-ref src='/page/31/SectionHeader/1'></content-ref><content-ref src='/page/31/Text/2'></content-ref><content-ref src='/page/31/FigureGroup/196'></content-ref><content-ref src='/page/31/Text/5'></content-ref><content-ref src='/page/31/PageFooter/6'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/31/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.958984375,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              50.080078125\n            ],\n            [\n              239.958984375,\n              50.080078125\n            ]\n          ],\n          \"bbox\": [\n            239.958984375,\n            37.992431640625,\n            368.75390625,\n            50.080078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/28/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/31/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-31-0\\\"></span>E. Relation of Upstream to Downstream Model Performance</h3>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              92.4776611328125\n            ],\n            [\n              450.2102355957031,\n              92.4776611328125\n            ],\n            [\n              450.2102355957031,\n              104.432861328125\n            ],\n            [\n              89.7978515625,\n              104.432861328125\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            92.4776611328125,\n            450.2102355957031,\n            104.432861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/31/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/31/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There is no guarantee that a model's quality on a pre-training objective will translate to downstream task results. Figure <a href=\\\"#page-31-1\\\">13</a> presents the correlation of the upstream model quality, for both dense and Switch models, on the C4 pre-training task with two downstream task measures: average SuperGLUE performance and TriviaQA score. We choose these two tasks as one probes the model's reasoning and the other factual knowledge.</p>\",\n          \"polygon\": [\n            [\n              89.6484375,\n              113.9853515625\n            ],\n            [\n              522.052734375,\n              113.9853515625\n            ],\n            [\n              522.052734375,\n              179.3408203125\n            ],\n            [\n              89.6484375,\n              179.3408203125\n            ]\n          ],\n          \"bbox\": [\n            89.6484375,\n            113.9853515625,\n            522.052734375,\n            179.3408203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/31/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/31/FigureGroup/196\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/31/Figure/3'></content-ref><content-ref src='/page/31/Caption/4'></content-ref>\",\n          \"polygon\": [\n            [\n              90.0,\n              208.0546875\n            ],\n            [\n              521.6874389648438,\n              208.0546875\n            ],\n            [\n              521.6874389648438,\n              537.119384765625\n            ],\n            [\n              90.0,\n              537.119384765625\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            208.0546875,\n            521.6874389648438,\n            537.119384765625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/31/Figure/3\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  98.61328125,\n                  208.0546875\n                ],\n                [\n                  501.732421875,\n                  208.0546875\n                ],\n                [\n                  501.732421875,\n                  354.62109375\n                ],\n                [\n                  98.61328125,\n                  354.62109375\n                ]\n              ],\n              \"bbox\": [\n                98.61328125,\n                208.0546875,\n                501.732421875,\n                354.62109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/31/SectionHeader/1\"\n              },\n              \"images\": {\n                \"/page/31/Figure/3\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/31/Caption/4\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-31-1\\\"></span>Figure 13: Upstream pre-trained quality to downstream model quality. We correlate the upstream performance with downstream quality on both SuperGLUE and TriviaQA (SOTA recorded without SSM), reasoning and knowledge-heavy benchmarks, respectively (validation sets). We find that, as with the baseline, the Switch model scales with improvements in the upstream pre-training task. For SuperGLUE, we find a loosely linear relation between negative log perplexity and the average SuperGLUE score. However, the dense model often performs better for a fixed perplexity, particularly in the large-scale regime. Conversely, on the knowledge-heavy task, TriviaQA, we find that the Switch Transformer may follow an improved scaling relationship – for a given upstream perplexity, it does better than a dense counterpart. Further statistics (expensive to collect and left to future work) would be necessary to confirm these observations.</p>\",\n              \"polygon\": [\n                [\n                  90.0,\n                  377.169189453125\n                ],\n                [\n                  521.6874389648438,\n                  377.169189453125\n                ],\n                [\n                  521.6874389648438,\n                  537.119384765625\n                ],\n                [\n                  90.0,\n                  537.119384765625\n                ]\n              ],\n              \"bbox\": [\n                90.0,\n                377.169189453125,\n                521.6874389648438,\n                537.119384765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/31/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/31/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/31/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We find a consistent correlation, indicating that for both baseline and Switch models, improved pre-training leads to better downstream results. Additionally, for a fixed upstream perplexity we find that both Switch and dense models perform similarly in the small to medium model size regime. However, in the largest model regime (T5-11B/T5-XXL) our largest Switch models, as mentioned in Section <a href=\\\"#page-21-2\\\">5.6,</a> do not always translate their upstream perplexity well to downstream fine-tuning on the SuperGLUE task. This warrants future investigation and study to fully realize the potential of sparse models. Understanding the fine-tuning dynamics with expert-models is very complicated and is dependent on regularization, load-balancing, and fine-tuning hyper-parameters.</p>\",\n          \"polygon\": [\n            [\n              89.349609375,\n              564.2762908935547\n            ],\n            [\n              521.6838989257812,\n              564.2762908935547\n            ],\n            [\n              521.6838989257812,\n              683.71875\n            ],\n            [\n              89.349609375,\n              683.71875\n            ]\n          ],\n          \"bbox\": [\n            89.349609375,\n            564.2762908935547,\n            521.6838989257812,\n            683.71875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/31/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/31/PageFooter/6\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.322265625,\n              724.7109375\n            ],\n            [\n              310.9815673828125,\n              724.7109375\n            ],\n            [\n              310.9815673828125,\n              735.5390625\n            ],\n            [\n              300.322265625,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.322265625,\n            724.7109375,\n            310.9815673828125,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/31/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/31/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/32/Page/483\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/32/PageHeader/0'></content-ref><content-ref src='/page/32/SectionHeader/1'></content-ref><content-ref src='/page/32/Text/2'></content-ref><content-ref src='/page/32/Code/3'></content-ref><content-ref src='/page/32/ListItem/4'></content-ref><content-ref src='/page/32/PageFooter/5'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/32/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.728515625,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              37.992431640625\n            ],\n            [\n              359.7890625,\n              49.9833984375\n            ],\n            [\n              247.728515625,\n              49.9833984375\n            ]\n          ],\n          \"bbox\": [\n            247.728515625,\n            37.992431640625,\n            359.7890625,\n            49.9833984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/31/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-32-0\\\"></span>F. Pseudo Code for Switch Transformers</h3>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              91.99072265625\n            ],\n            [\n              331.5787353515625,\n              91.99072265625\n            ],\n            [\n              331.5787353515625,\n              104.432861328125\n            ],\n            [\n              89.4990234375,\n              104.432861328125\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            91.99072265625,\n            331.5787353515625,\n            104.432861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Pseudocode for Switch Transformers in Mesh Tensorflow <a href=\\\"#page-38-3\\\">(Shazeer</a> <a href=\\\"#page-38-3\\\">et</a> <a href=\\\"#page-38-3\\\">al.,</a> <a href=\\\"#page-38-3\\\">2018)</a>. No model parallelism is being used for the below code (see <a href=\\\"#page-21-0\\\">5.4</a> for more details).</p>\",\n          \"polygon\": [\n            [\n              89.2001953125,\n              113.888671875\n            ],\n            [\n              522.94921875,\n              113.888671875\n            ],\n            [\n              522.94921875,\n              138.50238037109375\n            ],\n            [\n              89.2001953125,\n              138.50238037109375\n            ]\n          ],\n          \"bbox\": [\n            89.2001953125,\n            113.888671875,\n            522.94921875,\n            138.50238037109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>import mesh tensorflow as mtf\\ndef load balance loss(router probs, expert mask):\\n   \\\"\\\"\\\"Calculate load−balancing loss to ensure diverse expert routing.\\\"\\\"\\\"\\n   # router probs is the probability assigned for each expert per token.\\n   # router probs shape: [num cores, tokens per core, num experts]\\n   # expert index contains the expert with the highest router probability in one−hot format.\\n   # expert mask shape: [num cores, tokens per core, num experts]\\n   # For each core, get the fraction of tokens routed to each expert.\\n   # density 1 shape: [num cores, num experts]\\n   density 1 = mtf.reduce mean(expert mask, reduced dim=tokens per core)\\n   # For each core, get fraction of probability mass assigned to each expert\\n   # from the router across all tokens.\\n   # density 1 proxy shape: [num cores, num experts]\\n   density 1 proxy = mtf.reduce mean(router probs, reduced dim=tokens per core)\\n   # density l for a single core: vector of length num experts that sums to 1.\\n   # density l proxy for a single core: vector of length num experts that sums to 1.\\n   # Want both vectors to have uniform allocation (1/num experts) across all num expert elements.\\n   # The two vectors will be pushed towards uniform allocation when the dot product is minimized.\\n   loss = mtf.reduce mean(density 1 proxy ∗ density 1) ∗ (num experts ˆ 2)\\n   return loss</pre>\",\n          \"polygon\": [\n            [\n              90.0,\n              156.5263671875\n            ],\n            [\n              477.30706787109375,\n              156.5263671875\n            ],\n            [\n              477.30706787109375,\n              360.80859375\n            ],\n            [\n              90.0,\n              360.80859375\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            156.5263671875,\n            477.30706787109375,\n            360.80859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/ListItem/4\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">Figure 14: Pseudo code for the load balance loss for Switch Transformers in Mesh Tensorflow.</li>\",\n          \"polygon\": [\n            [\n              90.0,\n              382.27618408203125\n            ],\n            [\n              521.640380859375,\n              382.27618408203125\n            ],\n            [\n              521.640380859375,\n              406.73431396484375\n            ],\n            [\n              90.0,\n              406.73431396484375\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            382.27618408203125,\n            521.640380859375,\n            406.73431396484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/PageFooter/5\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.1728515625,\n              724.9639129638672\n            ],\n            [\n              311.080078125,\n              724.9639129638672\n            ],\n            [\n              311.080078125,\n              735.15234375\n            ],\n            [\n              300.1728515625,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.1728515625,\n            724.9639129638672,\n            311.080078125,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/32/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/33/Page/873\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/33/PageHeader/0'></content-ref><content-ref src='/page/33/Code/1'></content-ref><content-ref src='/page/33/Code/2'></content-ref><content-ref src='/page/33/SectionHeader/3'></content-ref><content-ref src='/page/33/Code/4'></content-ref><content-ref src='/page/33/SectionHeader/5'></content-ref><content-ref src='/page/33/Text/6'></content-ref><content-ref src='/page/33/Text/7'></content-ref><content-ref src='/page/33/Code/8'></content-ref><content-ref src='/page/33/Code/9'></content-ref><content-ref src='/page/33/Code/10'></content-ref><content-ref src='/page/33/Text/11'></content-ref><content-ref src='/page/33/PageFooter/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/33/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.8095703125,\n              37.992431640625\n            ],\n            [\n              367.8744812011719,\n              37.992431640625\n            ],\n            [\n              367.8744812011719,\n              49.83837890625\n            ],\n            [\n              239.8095703125,\n              49.83837890625\n            ]\n          ],\n          \"bbox\": [\n            239.8095703125,\n            37.992431640625,\n            367.8744812011719,\n            49.83837890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>import mesh tensorflow as mtf</pre>\",\n          \"polygon\": [\n            [\n              90.0,\n              96.58636474609375\n            ],\n            [\n              205.1455078125,\n              96.58636474609375\n            ],\n            [\n              205.1455078125,\n              104.05841064453125\n            ],\n            [\n              90.0,\n              104.05841064453125\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            96.58636474609375,\n            205.1455078125,\n            104.05841064453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def router(inputs, capacity factor):\\n   \\\"\\\"\\\"Produce the combine and dispatch tensors used for sending and\\n   receiving tokens from their highest probability expert. \\\"\\\"\\\"\\n   # Core layout is split across num cores for all tensors and operations.\\n   # inputs shape: [num cores, tokens per core, d model]</pre>\",\n          \"polygon\": [\n            [\n              90.0,\n              110.21484375\n            ],\n            [\n              384.9657287597656,\n              110.21484375\n            ],\n            [\n              384.9657287597656,\n              156.234375\n            ],\n            [\n              90.0,\n              156.234375\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            110.21484375,\n            384.9657287597656,\n            156.234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4>router weights = mtf.Variable(shape=[d model, num experts])</h4>\",\n          \"polygon\": [\n            [\n              103.61865234375,\n              164.2587890625\n            ],\n            [\n              335.138671875,\n              164.2587890625\n            ],\n            [\n              335.138671875,\n              171.804443359375\n            ],\n            [\n              103.61865234375,\n              171.804443359375\n            ]\n          ],\n          \"bbox\": [\n            103.61865234375,\n            164.2587890625,\n            335.138671875,\n            171.804443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># router logits shape: [num cores, tokens per core, num experts]\\nrouter logits = mtf.einsum([inputs, router weights], reduced dim=d model)</pre>\",\n          \"polygon\": [\n            [\n              103.76806640625,\n              180.8876953125\n            ],\n            [\n              389.60577392578125,\n              180.8876953125\n            ],\n            [\n              389.60577392578125,\n              197.20843505859375\n            ],\n            [\n              103.76806640625,\n              197.20843505859375\n            ]\n          ],\n          \"bbox\": [\n            103.76806640625,\n            180.8876953125,\n            389.60577392578125,\n            197.20843505859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4>if is training:</h4>\",\n          \"polygon\": [\n            [\n              102.57275390625,\n              206.5078125\n            ],\n            [\n              162.7036895751953,\n              206.5078125\n            ],\n            [\n              162.7036895751953,\n              214.2421875\n            ],\n            [\n              102.57275390625,\n              214.2421875\n            ]\n          ],\n          \"bbox\": [\n            102.57275390625,\n            206.5078125,\n            162.7036895751953,\n            214.2421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"># Add noise for exploration across experts. router logits += mtf.random uniform(shape=router logits.shape, minval=1−eps, maxval=1+eps)</p>\",\n          \"polygon\": [\n            [\n              111.462890625,\n              214.2421875\n            ],\n            [\n              472.4738464355469,\n              214.2421875\n            ],\n            [\n              472.4738464355469,\n              231.64453125\n            ],\n            [\n              111.462890625,\n              231.64453125\n            ]\n          ],\n          \"bbox\": [\n            111.462890625,\n            214.2421875,\n            472.4738464355469,\n            231.64453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"># Convert input to softmax operation from bfloat16 to float32 for stability. router logits = mtf.to float32(router logits)</p>\",\n          \"polygon\": [\n            [\n              104.28999328613281,\n              240.54638671875\n            ],\n            [\n              405.8747863769531,\n              240.54638671875\n            ],\n            [\n              405.8747863769531,\n              256.4864501953125\n            ],\n            [\n              104.28999328613281,\n              256.4864501953125\n            ]\n          ],\n          \"bbox\": [\n            104.28999328613281,\n            240.54638671875,\n            405.8747863769531,\n            256.4864501953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># Probabilities for each token of what expert it should be sent to.\\nrouter probs = mtf.softmax(router logits, axis=−1)</pre>\",\n          \"polygon\": [\n            [\n              104.28999328613281,\n              265.950439453125\n            ],\n            [\n              371.443359375,\n              265.950439453125\n            ],\n            [\n              371.443359375,\n              281.8904113769531\n            ],\n            [\n              104.28999328613281,\n              281.8904113769531\n            ]\n          ],\n          \"bbox\": [\n            104.28999328613281,\n            265.950439453125,\n            371.443359375,\n            281.8904113769531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># Get the top−1 expert for each token. expert gate is the top−1 probability\\n# from the router for each token. expert index is what expert each token\\n# is going to be routed to.\\n# expert gate shape: [num cores, tokens per core]\\n# expert index shape: [num cores, tokens per core]\\nexpert gate, expert index = mtf.top 1(router probs, reduced dim=num experts)\\n# expert mask shape: [num cores, tokens per core, num experts]\\nexpert mask = mtf.one hot(expert index, dimension=num experts)\\n# Compute load balancing loss.\\naux loss = load balance loss(router probs, expert mask)\\n# Experts have a fixed capacity, ensure we do not exceed it. Construct\\n# the batch indices, to each expert, with position in expert\\n# make sure that not more that expert capacity examples can be routed to\\n# each expert.\\nposition in expert = mtf.cumsum(expert mask, dimension=tokens per core) ∗ expert mask\\n# Keep only tokens that fit within expert capacity.\\nexpert mask ∗= mtf.less(position in expert, expert capacity)\\nexpert mask flat = mtf.reduce sum(expert mask, reduced dim=experts dim)\\n# Mask out the experts that have overflowed the expert capacity.\\nexpert gate ∗= expert mask flat\\n# combine tensor used for combining expert outputs and scaling with router probability.\\n# combine tensor shape: [num cores, tokens per core, num experts, expert capacity]\\ncombine tensor = (\\n   expert gate ∗ expert mask flat ∗\\n   mtf.one hot(expert index, dimension=num experts) ∗\\n   mtf.one hot(position in expert, dimension=expert capacity))\\n# Cast back outputs to bfloat16 for the rest of the layer.\\ncombine tensor = mtf.to bfloat16(combine tensor)\\n# Create binary dispatch tensor that is 1 if the token gets routed to the corresponding expert.\\n# dispatch tensor shape: [num cores, tokens per core, num experts, expert capacity]\\ndispatch tensor = mtf.cast(combine tensor, tf.bool)</pre>\",\n          \"polygon\": [\n            [\n              97.5673828125,\n              290.9898986816406\n            ],\n            [\n              481.2746887207031,\n              290.9898986816406\n            ],\n            [\n              481.2746887207031,\n              627.64453125\n            ],\n            [\n              97.5673828125,\n              627.64453125\n            ]\n          ],\n          \"bbox\": [\n            97.5673828125,\n            290.9898986816406,\n            481.2746887207031,\n            627.64453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>return dispatch tensor, combine tensor, aux loss</pre>\",\n          \"polygon\": [\n            [\n              104.28999328613281,\n              630.0844573974609\n            ],\n            [\n              291.4835205078125,\n              630.0844573974609\n            ],\n            [\n              291.4835205078125,\n              637.5564575195312\n            ],\n            [\n              104.28999328613281,\n              637.5564575195312\n            ]\n          ],\n          \"bbox\": [\n            104.28999328613281,\n            630.0844573974609,\n            291.4835205078125,\n            637.5564575195312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-33-0\\\"></span>Figure 15: Pseudo code for the router for Switch Transformers in Mesh Tensorflow.</p>\",\n          \"polygon\": [\n            [\n              106.77299499511719,\n              659.0721893310547\n            ],\n            [\n              505.01953125,\n              659.0721893310547\n            ],\n            [\n              505.01953125,\n              669.9812927246094\n            ],\n            [\n              106.77299499511719,\n              669.9812927246094\n            ]\n          ],\n          \"bbox\": [\n            106.77299499511719,\n            659.0721893310547,\n            505.01953125,\n            669.9812927246094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/PageFooter/12\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.322265625,\n              724.9639129638672\n            ],\n            [\n              311.37890625,\n              724.9639129638672\n            ],\n            [\n              311.37890625,\n              734.926513671875\n            ],\n            [\n              300.322265625,\n              734.926513671875\n            ]\n          ],\n          \"bbox\": [\n            300.322265625,\n            724.9639129638672,\n            311.37890625,\n            734.926513671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/32/SectionHeader/1\",\n        \"4\": \"/page/33/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/34/Page/1108\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/34/PageHeader/0'></content-ref><content-ref src='/page/34/Code/1'></content-ref><content-ref src='/page/34/Text/5'></content-ref><content-ref src='/page/34/Code/2'></content-ref><content-ref src='/page/34/Text/3'></content-ref><content-ref src='/page/34/PageFooter/4'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/34/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.728515625,\n              37.992431640625\n            ],\n            [\n              359.490234375,\n              37.992431640625\n            ],\n            [\n              359.490234375,\n              49.74169921875\n            ],\n            [\n              247.728515625,\n              49.74169921875\n            ]\n          ],\n          \"bbox\": [\n            247.728515625,\n            37.992431640625,\n            359.490234375,\n            49.74169921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>import mesh tensorflow as mtf</pre>\",\n          \"polygon\": [\n            [\n              89.7978515625,\n              96.58636474609375\n            ],\n            [\n              209.77734375,\n              96.58636474609375\n            ],\n            [\n              209.77734375,\n              104.220703125\n            ],\n            [\n              89.7978515625,\n              104.220703125\n            ]\n          ],\n          \"bbox\": [\n            89.7978515625,\n            96.58636474609375,\n            209.77734375,\n            104.220703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">def switch layer(inputs, n, capacity factor, num experts): \\\"\\\"\\\"Distributed switch transformer feed−forward layer.\\\"\\\"\\\"</p>\",\n          \"polygon\": [\n            [\n              90.0,\n              113.5223388671875\n            ],\n            [\n              326.82220458984375,\n              113.5223388671875\n            ],\n            [\n              326.82220458984375,\n              129.594970703125\n            ],\n            [\n              90.0,\n              129.594970703125\n            ]\n          ],\n          \"bbox\": [\n            90.0,\n            113.5223388671875,\n            326.82220458984375,\n            129.594970703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># num cores (n) = total cores for training the model (scalar).\\n# d model = model hidden size (scalar).\\n# num experts = total number of experts.\\n# capacity factor = extra buffer for each expert.\\n# inputs shape: [batch, seq len, d model]\\nbatch, seq len, d model = inputs.get shape()\\n# Each core will route tokens per core tokens to the correct experts.\\ntokens per core = batch ∗ seq len / num cores\\n# Each expert will have shape [num cores, expert capacity, d model].\\n# Each core is responsible for sending expert capacity tokens\\n# to each expert.\\nexpert capacity = tokens per core ∗ capacity factor / num experts\\n# Reshape to setup per core expert dispatching.\\n# shape: [batch, seq len, d model] −&gt; [num cores, tokens per core, d model]\\n# Core layout: [n, 1, 1] −&gt; [n, 1, 1]\\ninputs = mtf.reshape(inputs, [num cores, tokens per core, d model])\\n# Core Layout: [n, 1, 1] −&gt; [n, 1, 1, 1], [n, 1, 1, 1]\\n# dispatch tensor (boolean) shape: [num cores, tokens per core, num experts, expert capacity]\\n# dispatch tensor is used for routing tokens to the correct expert.\\n# combine tensor (float) shape: [num cores, tokens per core, num experts, expert capacity]\\n# combine tensor used for combining expert outputs and scaling with router\\n# probability.\\ndispatch tensor, combine tensor, aux loss = router(inputs, expert capacity)\\n# Matmul with large boolean tensor to assign tokens to the correct expert.\\n# Core Layout: [n, 1, 1], −&gt; [1, n, 1, 1]\\n# expert inputs shape: [num experts, num cores, expert capacity, d model]\\nexpert inputs = mtf.einsum([inputs, dispatch tensor], reduce dims=[tokens per core])\\n# All−to−All communication. Cores split across num cores and now we want to split\\n# across num experts. This sends tokens, routed locally, to the correct expert now\\n# split across different cores.\\n# Core layout: [1, n, 1, 1] −&gt; [n, 1, 1, 1]\\nexpert inputs = mtf.reshape(expert inputs, [num experts, num cores, expert capacity, d model])\\n# Standard feed forward computation, where each expert will have its own\\n# unique set of parameters.\\n# Total unique parameters created: num experts ∗ (d model ∗ d ff ∗ 2).\\n# expert outputs shape: [num experts, num cores, expert capacity, d model]\\nexpert outputs = feed forward(expert inputs)\\n# All−to−All communication. Cores are currently split across the experts\\n# dimension, which needs to be switched back to being split across num cores.\\n# Core Layout: [n, 1, 1, 1] −&gt; [1, n, 1, 1]\\nexpert outputs = mtf.reshape(expert outputs, [num experts, num cores, expert capacity, d model])\\n# Convert back to input shape and multiply outputs of experts by the routing probability.\\n# expert outputs shape: [num experts, num cores, tokens per core, d model]\\n# expert outputs combined shape: [num cores, tokens per core, d model]\\n# Core Layout: [1, n, 1, 1] −&gt; [n, 1, 1]\\nexpert outputs combined = mtf.einsum([expert outputs, combine tensor], reduce dims=[tokens per core])\\n# Remove tokens per core shapes used for local routing dispatching to match input shape.\\n# Core Layout: [n, 1, 1] −&gt; [n, 1, 1]\\noutputs = mtf.reshape(expert outputs combined, [batch, seq len, d model])\\nreturn outputs, aux loss</pre>\",\n          \"polygon\": [\n            [\n              97.5673828125,\n              130.45941162109375\n            ],\n            [\n              497.41680908203125,\n              130.45941162109375\n            ],\n            [\n              497.41680908203125,\n              640.01953125\n            ],\n            [\n              97.5673828125,\n              640.01953125\n            ]\n          ],\n          \"bbox\": [\n            97.5673828125,\n            130.45941162109375,\n            497.41680908203125,\n            640.01953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure 16: Pseudo code of the Switch Transformer layer in Mesh Tensorflow.</p>\",\n          \"polygon\": [\n            [\n              122.60599517822266,\n              659.0721893310547\n            ],\n            [\n              489.0754089355469,\n              659.0721893310547\n            ],\n            [\n              489.0754089355469,\n              669.9812927246094\n            ],\n            [\n              122.60599517822266,\n              669.9812927246094\n            ]\n          ],\n          \"bbox\": [\n            122.60599517822266,\n            659.0721893310547,\n            489.0754089355469,\n            669.9812927246094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/PageFooter/4\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.1728515625,\n              724.9639129638672\n            ],\n            [\n              310.9815673828125,\n              724.9639129638672\n            ],\n            [\n              310.9815673828125,\n              734.926513671875\n            ],\n            [\n              300.1728515625,\n              734.926513671875\n            ]\n          ],\n          \"bbox\": [\n            300.1728515625,\n            724.9639129638672,\n            310.9815673828125,\n            734.926513671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/32/SectionHeader/1\",\n        \"4\": \"/page/33/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/35/Page/195\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/35/PageHeader/0'></content-ref><content-ref src='/page/35/SectionHeader/1'></content-ref><content-ref src='/page/35/ListGroup/181'></content-ref><content-ref src='/page/35/PageFooter/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/35/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              239.8095703125,\n              37.992431640625\n            ],\n            [\n              368.455078125,\n              37.992431640625\n            ],\n            [\n              368.455078125,\n              50.3701171875\n            ],\n            [\n              239.8095703125,\n              50.3701171875\n            ]\n          ],\n          \"bbox\": [\n            239.8095703125,\n            37.992431640625,\n            368.455078125,\n            50.3701171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3>References</h3>\",\n          \"polygon\": [\n            [\n              89.4990234375,\n              92.4776611328125\n            ],\n            [\n              153.1494140625,\n              92.4776611328125\n            ],\n            [\n              153.1494140625,\n              104.80078125\n            ],\n            [\n              89.4990234375,\n              104.80078125\n            ]\n          ],\n          \"bbox\": [\n            89.4990234375,\n            92.4776611328125,\n            153.1494140625,\n            104.80078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/ListGroup/181\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/35/ListItem/2'></content-ref><content-ref src='/page/35/ListItem/3'></content-ref><content-ref src='/page/35/ListItem/4'></content-ref><content-ref src='/page/35/ListItem/5'></content-ref><content-ref src='/page/35/ListItem/6'></content-ref><content-ref src='/page/35/ListItem/7'></content-ref><content-ref src='/page/35/ListItem/8'></content-ref><content-ref src='/page/35/ListItem/9'></content-ref><content-ref src='/page/35/ListItem/10'></content-ref><content-ref src='/page/35/ListItem/11'></content-ref><content-ref src='/page/35/ListItem/12'></content-ref><content-ref src='/page/35/ListItem/13'></content-ref><content-ref src='/page/35/ListItem/14'></content-ref><content-ref src='/page/35/ListItem/15'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              88.6025390625,\n              114.04425048828125\n            ],\n            [\n              522.3515625,\n              114.04425048828125\n            ],\n            [\n              522.3515625,\n              705.375\n            ],\n            [\n              88.6025390625,\n              705.375\n            ]\n          ],\n          \"bbox\": [\n            88.6025390625,\n            114.04425048828125,\n            522.3515625,\n            705.375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/35/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-3\\\"></span>Mart´ın Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: A system for large-scale machine learning. In 12th {USENIX} symposium on operating systems design and implementation ({OSDI} 16), pages 265–283, 2016.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  114.04425048828125\n                ],\n                [\n                  522.3515625,\n                  114.04425048828125\n                ],\n                [\n                  522.3515625,\n                  165.60137939453125\n                ],\n                [\n                  89.2001953125,\n                  165.60137939453125\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                114.04425048828125,\n                522.3515625,\n                165.60137939453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-13\\\"></span>Iz Beltagy, Matthew E Peters, and Arman Cohan. Longformer: The long-document transformer. arXiv preprint arXiv:2004.05150, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.4990234375,\n                  176.4002685546875\n                ],\n                [\n                  521.6513061523438,\n                  176.4002685546875\n                ],\n                [\n                  521.6513061523438,\n                  201.09375\n                ],\n                [\n                  89.4990234375,\n                  201.09375\n                ]\n              ],\n              \"bbox\": [\n                89.4990234375,\n                176.4002685546875,\n                521.6513061523438,\n                201.09375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-7\\\"></span>Jonathan Berant, Andrew Chou, Roy Frostig, and Percy Liang. Semantic parsing on freebase from question-answer pairs. In Proceedings of the 2013 conference on empirical methods in natural language processing, pages 1533–1544, 2013.</li>\",\n              \"polygon\": [\n                [\n                  89.349609375,\n                  211.65826416015625\n                ],\n                [\n                  521.8908081054688,\n                  211.65826416015625\n                ],\n                [\n                  521.8908081054688,\n                  249.6654052734375\n                ],\n                [\n                  89.349609375,\n                  249.6654052734375\n                ]\n              ],\n              \"bbox\": [\n                89.349609375,\n                211.65826416015625,\n                521.8908081054688,\n                249.6654052734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-0\\\"></span>Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.4990234375,\n                  260.46527099609375\n                ],\n                [\n                  521.6295166015625,\n                  260.46527099609375\n                ],\n                [\n                  521.6295166015625,\n                  298.472412109375\n                ],\n                [\n                  89.4990234375,\n                  298.472412109375\n                ]\n              ],\n              \"bbox\": [\n                89.4990234375,\n                260.46527099609375,\n                521.6295166015625,\n                298.472412109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-11\\\"></span>Rewon Child, Scott Gray, Alec Radford, and Ilya Sutskever. Generating long sequences with sparse transformers. arXiv preprint arXiv:1904.10509, 2019.</li>\",\n              \"polygon\": [\n                [\n                  89.4990234375,\n                  309.27130126953125\n                ],\n                [\n                  521.6075439453125,\n                  309.27130126953125\n                ],\n                [\n                  521.6075439453125,\n                  333.931640625\n                ],\n                [\n                  89.4990234375,\n                  333.931640625\n                ]\n              ],\n              \"bbox\": [\n                89.4990234375,\n                309.27130126953125,\n                521.6075439453125,\n                333.931640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-8\\\"></span>Kyunghyun Cho and Yoshua Bengio. Exponentially increasing the capacity-to-computation ratio for conditional computation in deep learning. arXiv preprint arXiv:1406.7362, 2014.</li>\",\n              \"polygon\": [\n                [\n                  89.6484375,\n                  344.529296875\n                ],\n                [\n                  521.985595703125,\n                  344.529296875\n                ],\n                [\n                  521.985595703125,\n                  369.123046875\n                ],\n                [\n                  89.6484375,\n                  369.123046875\n                ]\n              ],\n              \"bbox\": [\n                89.6484375,\n                344.529296875,\n                521.985595703125,\n                369.123046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-6\\\"></span>Peter Clark, Isaac Cowhey, Oren Etzioni, Tushar Khot, Ashish Sabharwal, Carissa Schoenick, and Oyvind Tafjord. Think you have solved question answering? try arc, the ai2 reasoning challenge. arXiv preprint arXiv:1803.05457, 2018.</li>\",\n              \"polygon\": [\n                [\n                  89.349609375,\n                  379.7873229980469\n                ],\n                [\n                  521.6404418945312,\n                  379.7873229980469\n                ],\n                [\n                  521.6404418945312,\n                  417.7944641113281\n                ],\n                [\n                  89.349609375,\n                  417.7944641113281\n                ]\n              ],\n              \"bbox\": [\n                89.349609375,\n                379.7873229980469,\n                521.6404418945312,\n                417.7944641113281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-12\\\"></span>Gon¸calo M Correia, Vlad Niculae, and Andr´e FT Martins. Adaptively sparse transformers. arXiv preprint arXiv:1909.00015, 2019.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  428.5933532714844\n                ],\n                [\n                  521.607666015625,\n                  428.5933532714844\n                ],\n                [\n                  521.607666015625,\n                  453.0524597167969\n                ],\n                [\n                  89.2001953125,\n                  453.0524597167969\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                428.5933532714844,\n                521.607666015625,\n                453.0524597167969\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-5\\\"></span>Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pretraining of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018.</li>\",\n              \"polygon\": [\n                [\n                  89.4990234375,\n                  463.8513488769531\n                ],\n                [\n                  521.9456787109375,\n                  463.8513488769531\n                ],\n                [\n                  521.9456787109375,\n                  501.8584899902344\n                ],\n                [\n                  89.4990234375,\n                  501.8584899902344\n                ]\n              ],\n              \"bbox\": [\n                89.4990234375,\n                463.8513488769531,\n                521.9456787109375,\n                501.8584899902344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-9\\\"></span>David Eigen, Marc'Aurelio Ranzato, and Ilya Sutskever. Learning factored representations in a deep mixture of experts. arXiv preprint arXiv:1312.4314, 2013.</li>\",\n              \"polygon\": [\n                [\n                  89.349609375,\n                  512.6583862304688\n                ],\n                [\n                  521.574951171875,\n                  512.6583862304688\n                ],\n                [\n                  521.574951171875,\n                  537.15234375\n                ],\n                [\n                  89.349609375,\n                  537.15234375\n                ]\n              ],\n              \"bbox\": [\n                89.349609375,\n                512.6583862304688,\n                521.574951171875,\n                537.15234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-10\\\"></span>Angela Fan, Shruti Bhosale, Holger Schwenk, Zhiyi Ma, Ahmed El-Kishky, Siddharth Goyal, Mandeep Baines, Onur Celebi, Guillaume Wenzek, Vishrav Chaudhary, et al. Beyond english-centric multilingual machine translation. Journal of Machine Learning Research, 22(107):1–48, 2021.</li>\",\n              \"polygon\": [\n                [\n                  89.6484375,\n                  547.9154205322266\n                ],\n                [\n                  521.9918212890625,\n                  547.9154205322266\n                ],\n                [\n                  521.9918212890625,\n                  599.4725189208984\n                ],\n                [\n                  89.6484375,\n                  599.4725189208984\n                ]\n              ],\n              \"bbox\": [\n                89.6484375,\n                547.9154205322266,\n                521.9918212890625,\n                599.4725189208984\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-4\\\"></span>William Fedus, Ian Goodfellow, and Andrew M Dai. Maskgan: Better text generation via filling in the . arXiv preprint arXiv:1801.07736, 2018.</li>\",\n              \"polygon\": [\n                [\n                  89.349609375,\n                  610.2714080810547\n                ],\n                [\n                  521.6075439453125,\n                  610.2714080810547\n                ],\n                [\n                  521.6075439453125,\n                  634.9921875\n                ],\n                [\n                  89.349609375,\n                  634.9921875\n                ]\n              ],\n              \"bbox\": [\n                89.349609375,\n                610.2714080810547,\n                521.6075439453125,\n                634.9921875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-2\\\"></span>Trevor Gale, Matei Zaharia, Cliff Young, and Erich Elsen. Sparse gpu kernels for deep learning. arXiv preprint arXiv:2006.10901, 2020.</li>\",\n              \"polygon\": [\n                [\n                  88.9013671875,\n                  645.5291900634766\n                ],\n                [\n                  521.75390625,\n                  645.5291900634766\n                ],\n                [\n                  521.75390625,\n                  669.9872817993164\n                ],\n                [\n                  88.9013671875,\n                  669.9872817993164\n                ]\n              ],\n              \"bbox\": [\n                88.9013671875,\n                645.5291900634766,\n                521.75390625,\n                669.9872817993164\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/35/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-35-1\\\"></span>Scott Gray, Alec Radford, and Diederik P Kingma. Gpu kernels for block-sparse weights. https://openai.com/blog/block-sparse-gpu-kernels/, 2017.</li>\",\n              \"polygon\": [\n                [\n                  88.6025390625,\n                  680.7871856689453\n                ],\n                [\n                  521.5858764648438,\n                  680.7871856689453\n                ],\n                [\n                  521.5858764648438,\n                  705.375\n                ],\n                [\n                  88.6025390625,\n                  705.375\n                ]\n              ],\n              \"bbox\": [\n                88.6025390625,\n                680.7871856689453,\n                521.5858764648438,\n                705.375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/35/PageFooter/16\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.322265625,\n              724.9638977050781\n            ],\n            [\n              310.9815979003906,\n              724.9638977050781\n            ],\n            [\n              310.9815979003906,\n              735.5390625\n            ],\n            [\n              300.322265625,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.322265625,\n            724.9638977050781,\n            310.9815979003906,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/35/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/36/Page/180\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/36/PageHeader/0'></content-ref><content-ref src='/page/36/ListGroup/167'></content-ref><content-ref src='/page/36/PageFooter/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/36/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              248.1767578125,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              50.12841796875\n            ],\n            [\n              248.1767578125,\n              50.12841796875\n            ]\n          ],\n          \"bbox\": [\n            248.1767578125,\n            37.992431640625,\n            360.38671875,\n            50.12841796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/36/ListGroup/167\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/36/ListItem/1'></content-ref><content-ref src='/page/36/ListItem/2'></content-ref><content-ref src='/page/36/ListItem/3'></content-ref><content-ref src='/page/36/ListItem/4'></content-ref><content-ref src='/page/36/ListItem/5'></content-ref><content-ref src='/page/36/ListItem/6'></content-ref><content-ref src='/page/36/ListItem/7'></content-ref><content-ref src='/page/36/ListItem/8'></content-ref><content-ref src='/page/36/ListItem/9'></content-ref><content-ref src='/page/36/ListItem/10'></content-ref><content-ref src='/page/36/ListItem/11'></content-ref><content-ref src='/page/36/ListItem/12'></content-ref><content-ref src='/page/36/ListItem/13'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              88.9013671875,\n              93.29522705078125\n            ],\n            [\n              522.94921875,\n              93.29522705078125\n            ],\n            [\n              522.94921875,\n              705.2453689575195\n            ],\n            [\n              88.9013671875,\n              705.2453689575195\n            ]\n          ],\n          \"bbox\": [\n            88.9013671875,\n            93.29522705078125,\n            522.94921875,\n            705.2453689575195\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/36/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-7\\\"></span>Kelvin Guu, Kenton Lee, Zora Tung, Panupong Pasupat, and Ming-Wei Chang. Realm: Retrieval-augmented language model pre-training. arXiv preprint arXiv:2002.08909, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  93.29522705078125\n                ],\n                [\n                  522.94921875,\n                  93.29522705078125\n                ],\n                [\n                  522.94921875,\n                  131.5810546875\n                ],\n                [\n                  89.2001953125,\n                  131.5810546875\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                93.29522705078125,\n                522.94921875,\n                131.5810546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-8\\\"></span>Aaron Harlap, Deepak Narayanan, Amar Phanishayee, Vivek Seshadri, Nikhil Devanur, Greg Ganger, and Phil Gibbons. Pipedream: Fast and efficient pipeline parallel dnn training. arXiv preprint arXiv:1806.03377, 2018.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  143.3812255859375\n                ],\n                [\n                  522.3515625,\n                  143.3812255859375\n                ],\n                [\n                  522.3515625,\n                  181.7578125\n                ],\n                [\n                  89.2001953125,\n                  181.7578125\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                143.3812255859375,\n                522.3515625,\n                181.7578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-4\\\"></span>Karl Moritz Hermann, Tomas Kocisky, Edward Grefenstette, Lasse Espeholt, Will Kay, Mustafa Suleyman, and Phil Blunsom. Teaching machines to read and comprehend. In C. Cortes, N. Lawrence, D. Lee, M. Sugiyama, and R. Garnett, editors, Advances in Neural Information Processing Systems, volume 28, pages 1693–1701. Curran Associates, Inc., 2015. URL <a href=\\\"https://proceedings.neurips.cc/paper/2015/file/afdec7005cc9f14302cd0474fd0f3c96-Paper.pdf\\\">https://proceedings.neurips.cc/paper/2015/file/</a> <a href=\\\"https://proceedings.neurips.cc/paper/2015/file/afdec7005cc9f14302cd0474fd0f3c96-Paper.pdf\\\">afdec7005cc9f14302cd0474fd0f3c96-Paper.pdf</a>.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  193.46820068359375\n                ],\n                [\n                  522.0030517578125,\n                  193.46820068359375\n                ],\n                [\n                  522.0030517578125,\n                  272.64739990234375\n                ],\n                [\n                  89.2001953125,\n                  272.64739990234375\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                193.46820068359375,\n                522.0030517578125,\n                272.64739990234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-3\\\"></span>Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Distilling the knowledge in a neural network. arXiv preprint arXiv:1503.02531, 2015.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  284.2022399902344\n                ],\n                [\n                  521.5530395507812,\n                  284.2022399902344\n                ],\n                [\n                  521.5530395507812,\n                  308.6613464355469\n                ],\n                [\n                  89.2001953125,\n                  308.6613464355469\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                284.2022399902344,\n                521.5530395507812,\n                308.6613464355469\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-10\\\"></span>Sepp Hochreiter and J¨urgen Schmidhuber. Long short-term memory. Neural computation, 9(8):1735–1780, 1997.</li>\",\n              \"polygon\": [\n                [\n                  89.4990234375,\n                  320.740234375\n                ],\n                [\n                  521.9917602539062,\n                  320.740234375\n                ],\n                [\n                  521.9917602539062,\n                  345.1983642578125\n                ],\n                [\n                  89.4990234375,\n                  345.1983642578125\n                ]\n              ],\n              \"bbox\": [\n                89.4990234375,\n                320.740234375,\n                521.9917602539062,\n                345.1983642578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-12\\\"></span>Sara Hooker. The hardware lottery. arXiv preprint arXiv:2009.06489, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  357.27825927734375\n                ],\n                [\n                  453.62109375,\n                  357.27825927734375\n                ],\n                [\n                  453.62109375,\n                  368.1873779296875\n                ],\n                [\n                  89.2001953125,\n                  368.1873779296875\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                357.27825927734375,\n                453.62109375,\n                368.1873779296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-9\\\"></span>Yanping Huang, Youlong Cheng, Ankur Bapna, Orhan Firat, Dehao Chen, Mia Chen, HyoukJoong Lee, Jiquan Ngiam, Quoc V Le, Yonghui Wu, et al. Gpipe: Efficient training of giant neural networks using pipeline parallelism. In Advances in neural information processing systems, pages 103–112, 2019.</li>\",\n              \"polygon\": [\n                [\n                  89.05078125,\n                  380.2662658691406\n                ],\n                [\n                  522.052734375,\n                  380.2662658691406\n                ],\n                [\n                  522.052734375,\n                  432.3515625\n                ],\n                [\n                  89.05078125,\n                  432.3515625\n                ]\n              ],\n              \"bbox\": [\n                89.05078125,\n                380.2662658691406,\n                522.052734375,\n                432.3515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-1\\\"></span>Robert A Jacobs, Michael I Jordan, Steven J Nowlan, and Geoffrey E Hinton. Adaptive mixtures of local experts. Neural computation, 3(1):79–87, 1991.</li>\",\n              \"polygon\": [\n                [\n                  88.9013671875,\n                  443.90228271484375\n                ],\n                [\n                  521.75390625,\n                  443.90228271484375\n                ],\n                [\n                  521.75390625,\n                  468.36041259765625\n                ],\n                [\n                  88.9013671875,\n                  468.36041259765625\n                ]\n              ],\n              \"bbox\": [\n                88.9013671875,\n                443.90228271484375,\n                521.75390625,\n                468.36041259765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-2\\\"></span>Michael I Jordan and Robert A Jacobs. Hierarchical mixtures of experts and the em algorithm. Neural computation, 6(2):181–214, 1994.</li>\",\n              \"polygon\": [\n                [\n                  89.05078125,\n                  480.4393005371094\n                ],\n                [\n                  521.75390625,\n                  480.4393005371094\n                ],\n                [\n                  521.75390625,\n                  504.8984069824219\n                ],\n                [\n                  89.05078125,\n                  504.8984069824219\n                ]\n              ],\n              \"bbox\": [\n                89.05078125,\n                480.4393005371094,\n                521.75390625,\n                504.8984069824219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-6\\\"></span>Mandar Joshi, Eunsol Choi, Daniel S Weld, and Luke Zettlemoyer. Triviaqa: A large scale distantly supervised challenge dataset for reading comprehension. arXiv preprint arXiv:1705.03551, 2017.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  516.977294921875\n                ],\n                [\n                  521.9459228515625,\n                  516.977294921875\n                ],\n                [\n                  521.9459228515625,\n                  555.328125\n                ],\n                [\n                  89.2001953125,\n                  555.328125\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                516.977294921875,\n                521.9459228515625,\n                555.328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-0\\\"></span>Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei. Scaling laws for neural language models. arXiv preprint arXiv:2001.08361, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  567.0643005371094\n                ],\n                [\n                  521.75390625,\n                  567.0643005371094\n                ],\n                [\n                  521.75390625,\n                  605.21484375\n                ],\n                [\n                  89.2001953125,\n                  605.21484375\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                567.0643005371094,\n                521.75390625,\n                605.21484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-11\\\"></span>Nikita Kitaev, Lukasz Kaiser, and Anselm Levskaya. Reformer: The efficient transformer. arXiv preprint arXiv:2001.04451, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  617.1502838134766\n                ],\n                [\n                  521.5966186523438,\n                  617.1502838134766\n                ],\n                [\n                  521.5966186523438,\n                  641.6093902587891\n                ],\n                [\n                  89.2001953125,\n                  641.6093902587891\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                617.1502838134766,\n                521.5966186523438,\n                641.6093902587891\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-36-5\\\"></span>Tom Kwiatkowski, Jennimaria Palomaki, Olivia Redfield, Michael Collins, Ankur Parikh, Chris Alberti, Danielle Epstein, Illia Polosukhin, Jacob Devlin, Kenton Lee, et al. Natural questions: a benchmark for question answering research. Transactions of the Association for Computational Linguistics, 7:453–466, 2019.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  653.6882781982422\n                ],\n                [\n                  521.8890991210938,\n                  653.6882781982422\n                ],\n                [\n                  521.8890991210938,\n                  705.2453689575195\n                ],\n                [\n                  89.2001953125,\n                  705.2453689575195\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                653.6882781982422,\n                521.8890991210938,\n                705.2453689575195\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/36/PageFooter/14\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.4716796875,\n              724.9639892578125\n            ],\n            [\n              310.9815368652344,\n              724.9639892578125\n            ],\n            [\n              310.9815368652344,\n              735.15234375\n            ],\n            [\n              300.4716796875,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.4716796875,\n            724.9639892578125,\n            310.9815368652344,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/35/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/37/Page/176\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/37/PageHeader/0'></content-ref><content-ref src='/page/37/ListGroup/163'></content-ref><content-ref src='/page/37/PageFooter/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/37/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              240.4029998779297,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              50.1767578125\n            ],\n            [\n              240.4029998779297,\n              50.1767578125\n            ]\n          ],\n          \"bbox\": [\n            240.4029998779297,\n            37.992431640625,\n            368.75390625,\n            50.1767578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/ListGroup/163\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/37/ListItem/1'></content-ref><content-ref src='/page/37/ListItem/2'></content-ref><content-ref src='/page/37/ListItem/3'></content-ref><content-ref src='/page/37/ListItem/4'></content-ref><content-ref src='/page/37/ListItem/5'></content-ref><content-ref src='/page/37/ListItem/6'></content-ref><content-ref src='/page/37/ListItem/7'></content-ref><content-ref src='/page/37/ListItem/8'></content-ref><content-ref src='/page/37/ListItem/9'></content-ref><content-ref src='/page/37/ListItem/10'></content-ref><content-ref src='/page/37/ListItem/11'></content-ref><content-ref src='/page/37/ListItem/12'></content-ref><content-ref src='/page/37/ListItem/13'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              88.6025390625,\n              93.29522705078125\n            ],\n            [\n              522.94921875,\n              93.29522705078125\n            ],\n            [\n              522.94921875,\n              705.2454452514648\n            ],\n            [\n              88.6025390625,\n              705.2454452514648\n            ]\n          ],\n          \"bbox\": [\n            88.6025390625,\n            93.29522705078125,\n            522.94921875,\n            705.2454452514648\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/37/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-10\\\"></span>Guillaume Lample, Alexandre Sablayrolles, Marc'Aurelio Ranzato, Ludovic Denoyer, and Herv´e J´egou. Large memory layers with product keys. In Advances in Neural Information Processing Systems, pages 8548–8559, 2019.</li>\",\n              \"polygon\": [\n                [\n                  88.9013671875,\n                  93.29522705078125\n                ],\n                [\n                  522.94921875,\n                  93.29522705078125\n                ],\n                [\n                  522.94921875,\n                  131.677734375\n                ],\n                [\n                  88.9013671875,\n                  131.677734375\n                ]\n              ],\n              \"bbox\": [\n                88.9013671875,\n                93.29522705078125,\n                522.94921875,\n                131.677734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-5\\\"></span>Katherine Lee, Daphne Ippolito, Andrew Nystrom, Chiyuan Zhang, Douglas Eck, Chris Callison-Burch, and Nicholas Carlini. Deduplicating training data makes language models better. arXiv preprint arXiv:2107.06499, 2021.</li>\",\n              \"polygon\": [\n                [\n                  88.9013671875,\n                  144.51123046875\n                ],\n                [\n                  522.3515625,\n                  144.51123046875\n                ],\n                [\n                  522.3515625,\n                  182.51837158203125\n                ],\n                [\n                  88.9013671875,\n                  182.51837158203125\n                ]\n              ],\n              \"bbox\": [\n                88.9013671875,\n                144.51123046875,\n                522.3515625,\n                182.51837158203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-2\\\"></span>Dmitry Lepikhin, HyoukJoong Lee, Yuanzhong Xu, Dehao Chen, Orhan Firat, Yanping Huang, Maxim Krikun, Noam Shazeer, and Zhifeng Chen. Gshard: Scaling giant models with conditional computation and automatic sharding. arXiv preprint arXiv:2006.16668, 2020.</li>\",\n              \"polygon\": [\n                [\n                  88.751953125,\n                  195.3896484375\n                ],\n                [\n                  522.052734375,\n                  195.3896484375\n                ],\n                [\n                  522.052734375,\n                  247.28338623046875\n                ],\n                [\n                  88.751953125,\n                  247.28338623046875\n                ]\n              ],\n              \"bbox\": [\n                88.751953125,\n                195.3896484375,\n                522.052734375,\n                247.28338623046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-4\\\"></span>Paulius Micikevicius, Sharan Narang, Jonah Alben, Gregory Diamos, Erich Elsen, David Garcia, Boris Ginsburg, Michael Houston, Oleksii Kuchaiev, Ganesh Venkatesh, et al. Mixed precision training. arXiv preprint arXiv:1710.03740, 2017.</li>\",\n              \"polygon\": [\n                [\n                  88.6025390625,\n                  260.49127197265625\n                ],\n                [\n                  521.75390625,\n                  260.49127197265625\n                ],\n                [\n                  521.75390625,\n                  298.4993896484375\n                ],\n                [\n                  88.6025390625,\n                  298.4993896484375\n                ]\n              ],\n              \"bbox\": [\n                88.6025390625,\n                260.49127197265625,\n                521.75390625,\n                298.4993896484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-6\\\"></span>Shashi Narayan, Shay B Cohen, and Mirella Lapata. Don't give me the details, just the summary! topic-aware convolutional neural networks for extreme summarization. arXiv preprint arXiv:1808.08745, 2018.</li>\",\n              \"polygon\": [\n                [\n                  88.751953125,\n                  311.707275390625\n                ],\n                [\n                  522.052734375,\n                  311.707275390625\n                ],\n                [\n                  522.052734375,\n                  349.787109375\n                ],\n                [\n                  88.751953125,\n                  349.787109375\n                ]\n              ],\n              \"bbox\": [\n                88.751953125,\n                311.707275390625,\n                522.052734375,\n                349.787109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-8\\\"></span>Yixin Nie, Adina Williams, Emily Dinan, Mohit Bansal, Jason Weston, and Douwe Kiela. Adversarial nli: A new benchmark for natural language understanding. arXiv preprint arXiv:1910.14599, 2019.</li>\",\n              \"polygon\": [\n                [\n                  89.05078125,\n                  362.92327880859375\n                ],\n                [\n                  522.052734375,\n                  362.92327880859375\n                ],\n                [\n                  522.052734375,\n                  400.931396484375\n                ],\n                [\n                  89.05078125,\n                  400.931396484375\n                ]\n              ],\n              \"bbox\": [\n                89.05078125,\n                362.92327880859375,\n                522.052734375,\n                400.931396484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-11\\\"></span>Joan Puigcerver, Carlos Riquelme, Basil Mustafa, Cedric Renggli, Andr´e Susano Pinto, Sylvain Gelly, Daniel Keysers, and Neil Houlsby. Scalable transfer learning with expert models. arXiv preprint arXiv:2009.13239, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.05078125,\n                  414.1392822265625\n                ],\n                [\n                  521.75390625,\n                  414.1392822265625\n                ],\n                [\n                  521.75390625,\n                  452.14642333984375\n                ],\n                [\n                  89.05078125,\n                  452.14642333984375\n                ]\n              ],\n              \"bbox\": [\n                89.05078125,\n                414.1392822265625,\n                521.75390625,\n                452.14642333984375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-1\\\"></span>Alec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language understanding by generative pre-training, 2018.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  465.3553161621094\n                ],\n                [\n                  521.75390625,\n                  465.3553161621094\n                ],\n                [\n                  521.75390625,\n                  490.359375\n                ],\n                [\n                  89.2001953125,\n                  490.359375\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                465.3553161621094,\n                521.75390625,\n                490.359375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-0\\\"></span>Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. arXiv preprint arXiv:1910.10683, 2019.</li>\",\n              \"polygon\": [\n                [\n                  88.9013671875,\n                  503.0223388671875\n                ],\n                [\n                  521.75390625,\n                  503.0223388671875\n                ],\n                [\n                  521.75390625,\n                  541.0294647216797\n                ],\n                [\n                  88.9013671875,\n                  541.0294647216797\n                ]\n              ],\n              \"bbox\": [\n                88.9013671875,\n                503.0223388671875,\n                521.75390625,\n                541.0294647216797\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-9\\\"></span>Samyam Rajbhandari, Jeff Rasley, Olatunji Ruwase, and Yuxiong He. Zero: Memory optimization towards training a trillion parameter models. arXiv preprint arXiv:1910.02054, 2019.</li>\",\n              \"polygon\": [\n                [\n                  88.9013671875,\n                  554.2373657226562\n                ],\n                [\n                  521.9918212890625,\n                  554.2373657226562\n                ],\n                [\n                  521.9918212890625,\n                  592.2454681396484\n                ],\n                [\n                  88.9013671875,\n                  592.2454681396484\n                ]\n              ],\n              \"bbox\": [\n                88.9013671875,\n                554.2373657226562,\n                521.9918212890625,\n                592.2454681396484\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-7\\\"></span>Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. Squad: 100,000+ questions for machine comprehension of text. arXiv preprint arXiv:1606.05250, 2016.</li>\",\n              \"polygon\": [\n                [\n                  88.9013671875,\n                  605.453369140625\n                ],\n                [\n                  521.6403198242188,\n                  605.453369140625\n                ],\n                [\n                  521.6403198242188,\n                  630.3515625\n                ],\n                [\n                  88.9013671875,\n                  630.3515625\n                ]\n              ],\n              \"bbox\": [\n                88.9013671875,\n                605.453369140625,\n                521.6403198242188,\n                630.3515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-3\\\"></span>Prajit Ramachandran and Quoc V Le. Diversity and depth in per-example routing models. In International Conference on Learning Representations, 2018.</li>\",\n              \"polygon\": [\n                [\n                  89.05078125,\n                  643.120361328125\n                ],\n                [\n                  521.607666015625,\n                  643.120361328125\n                ],\n                [\n                  521.607666015625,\n                  667.5784530639648\n                ],\n                [\n                  89.05078125,\n                  667.5784530639648\n                ]\n              ],\n              \"bbox\": [\n                89.05078125,\n                643.120361328125,\n                521.607666015625,\n                667.5784530639648\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/37/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-37-12\\\"></span>Herbert Robbins. Some aspects of the sequential design of experiments. Bulletin of the American Mathematical Society, 58(5):527–535, 1952.</li>\",\n              \"polygon\": [\n                [\n                  89.05078125,\n                  680.787353515625\n                ],\n                [\n                  521.94482421875,\n                  680.787353515625\n                ],\n                [\n                  521.94482421875,\n                  705.2454452514648\n                ],\n                [\n                  89.05078125,\n                  705.2454452514648\n                ]\n              ],\n              \"bbox\": [\n                89.05078125,\n                680.787353515625,\n                521.94482421875,\n                705.2454452514648\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/37/PageFooter/14\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.4716796875,\n              724.9640655517578\n            ],\n            [\n              310.98162841796875,\n              724.9640655517578\n            ],\n            [\n              310.98162841796875,\n              735.15234375\n            ],\n            [\n              300.4716796875,\n              735.15234375\n            ]\n          ],\n          \"bbox\": [\n            300.4716796875,\n            724.9640655517578,\n            310.98162841796875,\n            735.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/35/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/38/Page/175\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/38/PageHeader/0'></content-ref><content-ref src='/page/38/ListGroup/161'></content-ref><content-ref src='/page/38/PageFooter/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/38/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              247.8779296875,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              37.992431640625\n            ],\n            [\n              360.38671875,\n              49.9833984375\n            ],\n            [\n              247.8779296875,\n              49.9833984375\n            ]\n          ],\n          \"bbox\": [\n            247.8779296875,\n            37.992431640625,\n            360.38671875,\n            49.9833984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/ListGroup/161\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/38/ListItem/1'></content-ref><content-ref src='/page/38/ListItem/2'></content-ref><content-ref src='/page/38/ListItem/3'></content-ref><content-ref src='/page/38/ListItem/4'></content-ref><content-ref src='/page/38/ListItem/5'></content-ref><content-ref src='/page/38/ListItem/6'></content-ref><content-ref src='/page/38/ListItem/7'></content-ref><content-ref src='/page/38/ListItem/8'></content-ref><content-ref src='/page/38/ListItem/9'></content-ref><content-ref src='/page/38/ListItem/10'></content-ref><content-ref src='/page/38/ListItem/11'></content-ref><content-ref src='/page/38/ListItem/12'></content-ref><content-ref src='/page/38/ListItem/13'></content-ref><content-ref src='/page/38/ListItem/14'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              88.6025390625,\n              93.29522705078125\n            ],\n            [\n              529.6558837890625,\n              93.29522705078125\n            ],\n            [\n              529.6558837890625,\n              705.2453536987305\n            ],\n            [\n              88.6025390625,\n              705.2453536987305\n            ]\n          ],\n          \"bbox\": [\n            88.6025390625,\n            93.29522705078125,\n            529.6558837890625,\n            705.2453536987305\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/38/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-6\\\"></span>Adam Roberts, Colin Raffel, and Noam Shazeer. How much knowledge can you pack into the parameters of a language model? arXiv preprint arXiv:2002.08910, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.349609375,\n                  93.29522705078125\n                ],\n                [\n                  522.650390625,\n                  93.29522705078125\n                ],\n                [\n                  522.650390625,\n                  117.75335693359375\n                ],\n                [\n                  89.349609375,\n                  117.75335693359375\n                ]\n              ],\n              \"bbox\": [\n                89.349609375,\n                93.29522705078125,\n                522.650390625,\n                117.75335693359375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-13\\\"></span>Clemens Rosenbaum, Tim Klinger, and Matthew Riemer. Routing networks: Adaptive selection of non-linear functions for multi-task learning. arXiv preprint arXiv:1711.01239, 2017.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  131.19122314453125\n                ],\n                [\n                  522.3515625,\n                  131.19122314453125\n                ],\n                [\n                  522.3515625,\n                  169.1983642578125\n                ],\n                [\n                  89.2001953125,\n                  169.1983642578125\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                131.19122314453125,\n                522.3515625,\n                169.1983642578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-7\\\"></span>Keisuke Sakaguchi, Ronan Le Bras, Chandra Bhagavatula, and Yejin Choi. Winogrande: An adversarial winograd schema challenge at scale. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 34, pages 8732–8740, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  182.63623046875\n                ],\n                [\n                  522.3515625,\n                  182.63623046875\n                ],\n                [\n                  522.3515625,\n                  220.64337158203125\n                ],\n                [\n                  89.2001953125,\n                  220.64337158203125\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                182.63623046875,\n                522.3515625,\n                220.64337158203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-8\\\"></span>Victor Sanh, Lysandre Debut, Julien Chaumond, and Thomas Wolf. Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter, 2019.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  233.96484375\n                ],\n                [\n                  521.75390625,\n                  233.96484375\n                ],\n                [\n                  521.75390625,\n                  258.53936767578125\n                ],\n                [\n                  89.2001953125,\n                  258.53936767578125\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                233.96484375,\n                521.75390625,\n                258.53936767578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-9\\\"></span>Noam Shazeer. Glu variants improve transformer, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.42431640625,\n                  271.86328125\n                ],\n                [\n                  357.1093444824219,\n                  271.86328125\n                ],\n                [\n                  357.1093444824219,\n                  282.8863525390625\n                ],\n                [\n                  89.42431640625,\n                  282.8863525390625\n                ]\n              ],\n              \"bbox\": [\n                89.42431640625,\n                271.86328125,\n                357.1093444824219,\n                282.8863525390625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-2\\\"></span>Noam Shazeer, Azalia Mirhoseini, Krzysztof Maziarz, Andy Davis, Quoc Le, Geoffrey Hinton, and Jeff Dean. Outrageously large neural networks: The sparsely-gated mixture-ofexperts layer. arXiv preprint arXiv:1701.06538, 2017.</li>\",\n              \"polygon\": [\n                [\n                  89.05078125,\n                  296.32421875\n                ],\n                [\n                  521.6185913085938,\n                  296.32421875\n                ],\n                [\n                  521.6185913085938,\n                  334.51171875\n                ],\n                [\n                  89.05078125,\n                  334.51171875\n                ]\n              ],\n              \"bbox\": [\n                89.05078125,\n                296.32421875,\n                521.6185913085938,\n                334.51171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-3\\\"></span>Noam Shazeer, Youlong Cheng, Niki Parmar, Dustin Tran, Ashish Vaswani, Penporn Koanantakool, Peter Hawkins, HyoukJoong Lee, Mingsheng Hong, Cliff Young, et al. Mesh-tensorflow: Deep learning for supercomputers. In Advances in Neural Information Processing Systems, pages 10414–10423, 2018.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  347.76922607421875\n                ],\n                [\n                  521.8939819335938,\n                  347.76922607421875\n                ],\n                [\n                  521.8939819335938,\n                  399.32537841796875\n                ],\n                [\n                  89.2001953125,\n                  399.32537841796875\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                347.76922607421875,\n                521.8939819335938,\n                399.32537841796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-10\\\"></span>Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan Catanzaro. Megatron-lm: Training multi-billion parameter language models using gpu model parallelism. arXiv preprint arXiv:1909.08053, 2019.</li>\",\n              \"polygon\": [\n                [\n                  88.6025390625,\n                  412.76324462890625\n                ],\n                [\n                  521.75390625,\n                  412.76324462890625\n                ],\n                [\n                  521.75390625,\n                  450.7713623046875\n                ],\n                [\n                  88.6025390625,\n                  450.7713623046875\n                ]\n              ],\n              \"bbox\": [\n                88.6025390625,\n                412.76324462890625,\n                521.75390625,\n                450.7713623046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-5\\\"></span>Nitish Srivastava, Geoffrey E. Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. Journal of Machine Learning Research, 15(1):1929–1958, 2014. URL <a href=\\\"http://www.cs.toronto.edu/~rsalakhu/papers/srivastava14a.pdf\\\">http://www.cs.</a> <a href=\\\"http://www.cs.toronto.edu/~rsalakhu/papers/srivastava14a.pdf\\\">toronto.edu/~rsalakhu/papers/srivastava14a.pdf</a>.</li>\",\n              \"polygon\": [\n                [\n                  89.05078125,\n                  464.0625\n                ],\n                [\n                  522.0009155273438,\n                  464.0625\n                ],\n                [\n                  522.0009155273438,\n                  518.4024353027344\n                ],\n                [\n                  89.05078125,\n                  518.4024353027344\n                ]\n              ],\n              \"bbox\": [\n                89.05078125,\n                464.0625,\n                522.0009155273438,\n                518.4024353027344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-1\\\"></span>Emma Strubell, Ananya Ganesh, and Andrew McCallum. Energy and policy considerations for deep learning in nlp. arXiv preprint arXiv:1906.02243, 2019.</li>\",\n              \"polygon\": [\n                [\n                  89.4990234375,\n                  529.2032775878906\n                ],\n                [\n                  522.3515625,\n                  529.2032775878906\n                ],\n                [\n                  522.3515625,\n                  553.661376953125\n                ],\n                [\n                  89.4990234375,\n                  553.661376953125\n                ]\n              ],\n              \"bbox\": [\n                89.4990234375,\n                529.2032775878906,\n                522.3515625,\n                553.661376953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-11\\\"></span>Sainbayar Sukhbaatar, Edouard Grave, Piotr Bojanowski, and Armand Joulin. Adaptive attention span in transformers. arXiv preprint arXiv:1905.07799, 2019.</li>\",\n              \"polygon\": [\n                [\n                  89.349609375,\n                  567.0992736816406\n                ],\n                [\n                  522.650390625,\n                  567.0992736816406\n                ],\n                [\n                  522.650390625,\n                  592.06640625\n                ],\n                [\n                  89.349609375,\n                  592.06640625\n                ]\n              ],\n              \"bbox\": [\n                89.349609375,\n                567.0992736816406,\n                522.650390625,\n                592.06640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-0\\\"></span>Rich Sutton. The Bitter Lesson. http://www.incompleteideas.net/IncIdeas/BitterLesson.html, 2019.</li>\",\n              \"polygon\": [\n                [\n                  89.6484375,\n                  604.9952697753906\n                ],\n                [\n                  529.6558837890625,\n                  604.9952697753906\n                ],\n                [\n                  529.6558837890625,\n                  629.453369140625\n                ],\n                [\n                  89.6484375,\n                  629.453369140625\n                ]\n              ],\n              \"bbox\": [\n                89.6484375,\n                604.9952697753906,\n                529.6558837890625,\n                629.453369140625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-12\\\"></span>Richard S Sutton and Andrew G Barto. Reinforcement learning: An introduction. Stanford University, 2018.</li>\",\n              \"polygon\": [\n                [\n                  89.6484375,\n                  642.8912658691406\n                ],\n                [\n                  522.94921875,\n                  642.8912658691406\n                ],\n                [\n                  522.94921875,\n                  667.4765625\n                ],\n                [\n                  89.6484375,\n                  667.4765625\n                ]\n              ],\n              \"bbox\": [\n                89.6484375,\n                642.8912658691406,\n                522.94921875,\n                667.4765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-38-4\\\"></span>Wilson L Taylor. \\\"cloze procedure\\\": A new tool for measuring readability. Journalism quarterly, 30(4):415–433, 1953.</li>\",\n              \"polygon\": [\n                [\n                  89.4990234375,\n                  680.7872619628906\n                ],\n                [\n                  522.3515625,\n                  680.7872619628906\n                ],\n                [\n                  522.3515625,\n                  705.2453536987305\n                ],\n                [\n                  89.4990234375,\n                  705.2453536987305\n                ]\n              ],\n              \"bbox\": [\n                89.4990234375,\n                680.7872619628906,\n                522.3515625,\n                705.2453536987305\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/38/PageFooter/15\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.1728515625,\n              724.9639739990234\n            ],\n            [\n              310.98162841796875,\n              724.9639739990234\n            ],\n            [\n              310.98162841796875,\n              735.5390625\n            ],\n            [\n              300.1728515625,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.1728515625,\n            724.9639739990234,\n            310.98162841796875,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/35/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/39/Page/97\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/39/PageHeader/0'></content-ref><content-ref src='/page/39/ListGroup/89'></content-ref><content-ref src='/page/39/PageFooter/8'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/39/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              240.4029998779297,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              37.992431640625\n            ],\n            [\n              368.75390625,\n              50.22509765625\n            ],\n            [\n              240.4029998779297,\n              50.22509765625\n            ]\n          ],\n          \"bbox\": [\n            240.4029998779297,\n            37.992431640625,\n            368.75390625,\n            50.22509765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/ListGroup/89\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/39/ListItem/1'></content-ref><content-ref src='/page/39/ListItem/2'></content-ref><content-ref src='/page/39/ListItem/3'></content-ref><content-ref src='/page/39/ListItem/4'></content-ref><content-ref src='/page/39/ListItem/5'></content-ref><content-ref src='/page/39/ListItem/6'></content-ref><content-ref src='/page/39/ListItem/7'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              89.05078125,\n              93.29522705078125\n            ],\n            [\n              523.248046875,\n              93.29522705078125\n            ],\n            [\n              523.248046875,\n              428.9864501953125\n            ],\n            [\n              89.05078125,\n              428.9864501953125\n            ]\n          ],\n          \"bbox\": [\n            89.05078125,\n            93.29522705078125,\n            523.248046875,\n            428.9864501953125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/39/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-39-1\\\"></span><span id=\\\"page-39-0\\\"></span>Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in neural information processing systems, pages 5998–6008, 2017.</li>\",\n              \"polygon\": [\n                [\n                  89.349609375,\n                  93.29522705078125\n                ],\n                [\n                  523.248046875,\n                  93.29522705078125\n                ],\n                [\n                  523.248046875,\n                  131.3023681640625\n                ],\n                [\n                  89.349609375,\n                  131.3023681640625\n                ]\n              ],\n              \"bbox\": [\n                89.349609375,\n                93.29522705078125,\n                523.248046875,\n                131.3023681640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/39/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-39-4\\\"></span>Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel R Bowman. Glue: A multi-task benchmark and analysis platform for natural language understanding. arXiv preprint arXiv:1804.07461, 2018.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  142.90924072265625\n                ],\n                [\n                  521.75390625,\n                  142.90924072265625\n                ],\n                [\n                  521.75390625,\n                  180.9163818359375\n                ],\n                [\n                  89.2001953125,\n                  180.9163818359375\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                142.90924072265625,\n                521.75390625,\n                180.9163818359375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/39/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-39-5\\\"></span>Alex Wang, Yada Pruksachatkun, Nikita Nangia, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel Bowman. Superglue: A stickier benchmark for generalpurpose language understanding systems. In Advances in Neural Information Processing Systems, pages 3266–3280, 2019.</li>\",\n              \"polygon\": [\n                [\n                  89.2001953125,\n                  192.52325439453125\n                ],\n                [\n                  521.8546752929688,\n                  192.52325439453125\n                ],\n                [\n                  521.8546752929688,\n                  244.07940673828125\n                ],\n                [\n                  89.2001953125,\n                  244.07940673828125\n                ]\n              ],\n              \"bbox\": [\n                89.2001953125,\n                192.52325439453125,\n                521.8546752929688,\n                244.07940673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/39/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-39-3\\\"></span>Shibo Wang and Pankaj Kanwar. Bfloat16: The secret to high performance on cloud tpus. Google Cloud Blog, 2019.</li>\",\n              \"polygon\": [\n                [\n                  89.05078125,\n                  255.62109375\n                ],\n                [\n                  521.6512451171875,\n                  255.62109375\n                ],\n                [\n                  521.6512451171875,\n                  280.1444091796875\n                ],\n                [\n                  89.05078125,\n                  280.1444091796875\n                ]\n              ],\n              \"bbox\": [\n                89.05078125,\n                255.62109375,\n                521.6512451171875,\n                280.1444091796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/39/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-39-2\\\"></span>Linting Xue, Noah Constant, Adam Roberts, Mihir Kale, Rami Al-Rfou, Aditya Siddhant, Aditya Barua, and Colin Raffel. mt5: A massively multilingual pre-trained text-to-text transformer. arXiv preprint arXiv:2010.11934, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.349609375,\n                  291.5859375\n                ],\n                [\n                  521.6185302734375,\n                  291.5859375\n                ],\n                [\n                  521.6185302734375,\n                  329.7584228515625\n                ],\n                [\n                  89.349609375,\n                  329.7584228515625\n                ]\n              ],\n              \"bbox\": [\n                89.349609375,\n                291.5859375,\n                521.6185302734375,\n                329.7584228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/39/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-39-6\\\"></span>Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Ruslan Salakhutdinov, and Quoc V. Le. Xlnet: Generalized autoregressive pretraining for language understanding, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.4990234375,\n                  341.36431884765625\n                ],\n                [\n                  521.651123046875,\n                  341.36431884765625\n                ],\n                [\n                  521.651123046875,\n                  379.7578125\n                ],\n                [\n                  89.4990234375,\n                  379.7578125\n                ]\n              ],\n              \"bbox\": [\n                89.4990234375,\n                341.36431884765625,\n                521.651123046875,\n                379.7578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/39/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><span id=\\\"page-39-7\\\"></span>Manzil Zaheer, Guru Guruganesh, Avinava Dubey, Joshua Ainslie, Chris Alberti, Santiago Ontanon, Philip Pham, Anirudh Ravula, Qifan Wang, Li Yang, et al. Big bird: Transformers for longer sequences. arXiv preprint arXiv:2007.14062, 2020.</li>\",\n              \"polygon\": [\n                [\n                  89.05078125,\n                  390.97833251953125\n                ],\n                [\n                  522.052734375,\n                  390.97833251953125\n                ],\n                [\n                  522.052734375,\n                  428.9864501953125\n                ],\n                [\n                  89.05078125,\n                  428.9864501953125\n                ]\n              ],\n              \"bbox\": [\n                89.05078125,\n                390.97833251953125,\n                522.052734375,\n                428.9864501953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/0/SectionHeader/2\",\n                \"2\": \"/page/3/SectionHeader/8\",\n                \"3\": \"/page/35/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/39/PageFooter/8\",\n          \"block_type\": \"PageFooter\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              300.322265625,\n              724.9640655517578\n            ],\n            [\n              310.9815673828125,\n              724.9640655517578\n            ],\n            [\n              310.9815673828125,\n              735.5390625\n            ],\n            [\n              300.322265625,\n              735.5390625\n            ]\n          ],\n          \"bbox\": [\n            300.322265625,\n            724.9640655517578,\n            310.9815673828125,\n            735.5390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/0/SectionHeader/2\",\n            \"2\": \"/page/3/SectionHeader/8\",\n            \"3\": \"/page/35/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/0/SectionHeader/2\",\n        \"2\": \"/page/3/SectionHeader/8\",\n        \"3\": \"/page/35/SectionHeader/1\"\n      },\n      \"images\": null\n    }\n  ],\n  \"block_type\": \"Document\"\n}"
  },
  {
    "path": "data/examples/json/thinkpython.json",
    "content": "{\n  \"children\": [\n    {\n      \"id\": \"/page/0/Page/10\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/0/SectionHeader/0'></content-ref><content-ref src='/page/0/SectionHeader/1'></content-ref><content-ref src='/page/0/Text/2'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/0/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2>Think Python</h2>\",\n          \"polygon\": [\n            [\n              398.935546875,\n              265.095703125\n            ],\n            [\n              525.6013793945312,\n              265.095703125\n            ],\n            [\n              525.6013793945312,\n              289.6333312988281\n            ],\n            [\n              398.935546875,\n              289.6333312988281\n            ]\n          ],\n          \"bbox\": [\n            398.935546875,\n            265.095703125,\n            525.6013793945312,\n            289.6333312988281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"2\": \"/page/0/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2>How to Think Like a Computer Scientist</h2>\",\n          \"polygon\": [\n            [\n              267.3017578125,\n              306.861328125\n            ],\n            [\n              525.6033325195312,\n              306.861328125\n            ],\n            [\n              525.6033325195312,\n              323.876953125\n            ],\n            [\n              267.3017578125,\n              323.876953125\n            ]\n          ],\n          \"bbox\": [\n            267.3017578125,\n            306.861328125,\n            525.6033325195312,\n            323.876953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"2\": \"/page/0/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/0/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Version 2.0.17</p>\",\n          \"polygon\": [\n            [\n              464.677734375,\n              373.18359375\n            ],\n            [\n              525.638671875,\n              373.18359375\n            ],\n            [\n              525.638671875,\n              384.78515625\n            ],\n            [\n              464.677734375,\n              384.78515625\n            ]\n          ],\n          \"bbox\": [\n            464.677734375,\n            373.18359375,\n            525.638671875,\n            384.78515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"2\": \"/page/0/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"2\": \"/page/0/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/1/Page/0\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/1/Text/0'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/1/Text/0\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p></p>\\n\",\n          \"polygon\": [\n            [\n              31.974609375,\n              28.810546875\n            ],\n            [\n              580.623046875,\n              28.810546875\n            ],\n            [\n              580.623046875,\n              727.8046875\n            ],\n            [\n              31.974609375,\n              727.8046875\n            ]\n          ],\n          \"bbox\": [\n            31.974609375,\n            28.810546875,\n            580.623046875,\n            727.8046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"2\": \"/page/0/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"2\": \"/page/0/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/2/Page/22\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/2/SectionHeader/0'></content-ref><content-ref src='/page/2/SectionHeader/1'></content-ref><content-ref src='/page/2/Text/2'></content-ref><content-ref src='/page/2/Text/3'></content-ref><content-ref src='/page/2/Text/4'></content-ref><content-ref src='/page/2/Text/5'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/2/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1>Think Python</h1>\",\n          \"polygon\": [\n            [\n              398.63671875,\n              264.90234375\n            ],\n            [\n              525.6013793945312,\n              264.90234375\n            ],\n            [\n              525.6013793945312,\n              289.6333312988281\n            ],\n            [\n              398.63671875,\n              289.6333312988281\n            ]\n          ],\n          \"bbox\": [\n            398.63671875,\n            264.90234375,\n            525.6013793945312,\n            289.6333312988281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2>How to Think Like a Computer Scientist</h2>\",\n          \"polygon\": [\n            [\n              267.451171875,\n              306.66796875\n            ],\n            [\n              525.6033325195312,\n              306.66796875\n            ],\n            [\n              525.6033325195312,\n              323.7117614746094\n            ],\n            [\n              267.451171875,\n              323.7117614746094\n            ]\n          ],\n          \"bbox\": [\n            267.451171875,\n            306.66796875,\n            525.6033325195312,\n            323.7117614746094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/0\",\n            \"2\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Version 2.0.17</p>\",\n          \"polygon\": [\n            [\n              463.78125,\n              372.41015625\n            ],\n            [\n              525.9375,\n              372.41015625\n            ],\n            [\n              525.9375,\n              384.3984375\n            ],\n            [\n              463.78125,\n              384.3984375\n            ]\n          ],\n          \"bbox\": [\n            463.78125,\n            372.41015625,\n            525.9375,\n            384.3984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/0\",\n            \"2\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Allen Downey</p>\",\n          \"polygon\": [\n            [\n              431.5078125,\n              469.08984375\n            ],\n            [\n              525.9375,\n              469.08984375\n            ],\n            [\n              525.9375,\n              483.78515625\n            ],\n            [\n              431.5078125,\n              483.78515625\n            ]\n          ],\n          \"bbox\": [\n            431.5078125,\n            469.08984375,\n            525.9375,\n            483.78515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/0\",\n            \"2\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Green Tea Press</p>\",\n          \"polygon\": [\n            [\n              424.037109375,\n              519.75\n            ],\n            [\n              525.6011962890625,\n              519.75\n            ],\n            [\n              525.6011962890625,\n              535.21875\n            ],\n            [\n              424.037109375,\n              535.21875\n            ]\n          ],\n          \"bbox\": [\n            424.037109375,\n            519.75,\n            525.6011962890625,\n            535.21875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/0\",\n            \"2\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/2/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Needham, Massachusetts</p>\",\n          \"polygon\": [\n            [\n              422.841796875,\n              542.56640625\n            ],\n            [\n              525.638671875,\n              542.56640625\n            ],\n            [\n              525.638671875,\n              554.16796875\n            ],\n            [\n              422.841796875,\n              554.16796875\n            ]\n          ],\n          \"bbox\": [\n            422.841796875,\n            542.56640625,\n            525.638671875,\n            554.16796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/0\",\n            \"2\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/2/SectionHeader/0\",\n        \"2\": \"/page/2/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/3/Page/46\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/3/Text/0'></content-ref><content-ref src='/page/3/Text/1'></content-ref><content-ref src='/page/3/Text/2'></content-ref><content-ref src='/page/3/Text/3'></content-ref><content-ref src='/page/3/Text/4'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/3/Text/0\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Copyright © 2012 Allen Downey.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              87.591796875\n            ],\n            [\n              218.2939453125,\n              87.591796875\n            ],\n            [\n              218.2939453125,\n              98.51611328125\n            ],\n            [\n              85.9130859375,\n              98.51611328125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            87.591796875,\n            218.2939453125,\n            98.51611328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/0\",\n            \"2\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Green Tea Press 9 Washburn Ave Needham MA 02492</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              116.015625\n            ],\n            [\n              167.94140625,\n              116.015625\n            ],\n            [\n              167.94140625,\n              150.422119140625\n            ],\n            [\n              85.3154296875,\n              150.422119140625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            116.015625,\n            167.94140625,\n            150.422119140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/0\",\n            \"2\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Permission is granted to copy, distribute, and/or modify this document under the terms of the Creative Commons Attribution-NonCommercial 3.0 Unported License, which is available at <a href=\\\"http://creativecommons.org/licenses/by-nc/3.0/\\\">http:</a> <a href=\\\"http://creativecommons.org/licenses/by-nc/3.0/\\\">//creativecommons.org/licenses/by-nc/3.0/</a>.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              154.880859375\n            ],\n            [\n              484.1015625,\n              154.880859375\n            ],\n            [\n              484.1015625,\n              187.9281005859375\n            ],\n            [\n              86.0625,\n              187.9281005859375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            154.880859375,\n            484.1015625,\n            187.9281005859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/0\",\n            \"2\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The original form of this book is LATEX source code. Compiling this LATEX source has the effect of generating a device-independent representation of a textbook, which can be converted to other formats and printed.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              196.5498046875\n            ],\n            [\n              484.998046875,\n              196.5498046875\n            ],\n            [\n              484.998046875,\n              229.405029296875\n            ],\n            [\n              85.46484375,\n              229.405029296875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            196.5498046875,\n            484.998046875,\n            229.405029296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/0\",\n            \"2\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/3/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The LATEX source for this book is available from <a href=\\\"http://www.thinkpython.com\\\">http://www.thinkpython.com</a></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              238.412109375\n            ],\n            [\n              398.337890625,\n              238.412109375\n            ],\n            [\n              398.337890625,\n              250.6290283203125\n            ],\n            [\n              85.763671875,\n              250.6290283203125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            238.412109375,\n            398.337890625,\n            250.6290283203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/2/SectionHeader/0\",\n            \"2\": \"/page/2/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/2/SectionHeader/0\",\n        \"2\": \"/page/2/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/4/Page/110\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/4/SectionHeader/0'></content-ref><content-ref src='/page/4/SectionHeader/1'></content-ref><content-ref src='/page/4/Text/2'></content-ref><content-ref src='/page/4/Text/3'></content-ref><content-ref src='/page/4/Text/4'></content-ref><content-ref src='/page/4/ListGroup/109'></content-ref><content-ref src='/page/4/Text/9'></content-ref><content-ref src='/page/4/Text/10'></content-ref><content-ref src='/page/4/Text/11'></content-ref><content-ref src='/page/4/Text/12'></content-ref><content-ref src='/page/4/Text/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/4/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><span id=\\\"page-4-0\\\"></span><b>Preface</b></h1>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              165.322265625\n            ],\n            [\n              213.662109375,\n              165.322265625\n            ],\n            [\n              213.662109375,\n              190.65838623046875\n            ],\n            [\n              128.49609375,\n              190.65838623046875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            165.322265625,\n            213.662109375,\n            190.65838623046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><b>The strange history of this book</b></h2>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              237.638671875\n            ],\n            [\n              338.8106384277344,\n              237.638671875\n            ],\n            [\n              338.8106384277344,\n              253.55902099609375\n            ],\n            [\n              129.392578125,\n              253.55902099609375\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            237.638671875,\n            338.8106384277344,\n            253.55902099609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In January 1999 I was preparing to teach an introductory programming class in Java. I had taught it three times and I was getting frustrated. The failure rate in the class was too high and, even for students who succeeded, the overall level of achievement was too low.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              263.35546875\n            ],\n            [\n              527.431640625,\n              263.35546875\n            ],\n            [\n              527.431640625,\n              299.2049560546875\n            ],\n            [\n              128.197265625,\n              299.2049560546875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            263.35546875,\n            527.431640625,\n            299.2049560546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One of the problems I saw was the books. They were too big, with too much unnecessary detail about Java, and not enough high-level guidance about how to program. And they all suffered from the trap door effect: they would start out easy, proceed gradually, and then somewhere around Chapter 5 the bottom would fall out. The students would get too much new material, too fast, and I would spend the rest of the semester picking up the pieces.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              307.44140625\n            ],\n            [\n              527.1328125,\n              307.44140625\n            ],\n            [\n              527.1328125,\n              366.58990478515625\n            ],\n            [\n              128.3466796875,\n              366.58990478515625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            307.44140625,\n            527.1328125,\n            366.58990478515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Two weeks before the first day of classes, I decided to write my own book. My goals were:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              374.73046875\n            ],\n            [\n              526.53515625,\n              374.73046875\n            ],\n            [\n              526.53515625,\n              386.1549072265625\n            ],\n            [\n              128.3466796875,\n              386.1549072265625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            374.73046875,\n            526.53515625,\n            386.1549072265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/ListGroup/109\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/4/ListItem/5'></content-ref><content-ref src='/page/4/ListItem/6'></content-ref><content-ref src='/page/4/ListItem/7'></content-ref><content-ref src='/page/4/ListItem/8'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.3916015625,\n              397.546875\n            ],\n            [\n              527.1328125,\n              397.546875\n            ],\n            [\n              527.1328125,\n              503.9388427734375\n            ],\n            [\n              142.3916015625,\n              503.9388427734375\n            ]\n          ],\n          \"bbox\": [\n            142.3916015625,\n            397.546875,\n            527.1328125,\n            503.9388427734375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/4/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Keep it short. It is better for students to read 10 pages than not read 50 pages.</li>\",\n              \"polygon\": [\n                [\n                  143.138671875,\n                  397.546875\n                ],\n                [\n                  494.560546875,\n                  397.546875\n                ],\n                [\n                  494.560546875,\n                  409.14990234375\n                ],\n                [\n                  143.138671875,\n                  409.14990234375\n                ]\n              ],\n              \"bbox\": [\n                143.138671875,\n                397.546875,\n                494.560546875,\n                409.14990234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/4/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/4/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Be careful with vocabulary. I tried to minimize the jargon and define each term at first use.</li>\",\n              \"polygon\": [\n                [\n                  143.4375,\n                  418.04296875\n                ],\n                [\n                  526.53515625,\n                  418.04296875\n                ],\n                [\n                  526.53515625,\n                  440.74688720703125\n                ],\n                [\n                  143.4375,\n                  440.74688720703125\n                ]\n              ],\n              \"bbox\": [\n                143.4375,\n                418.04296875,\n                526.53515625,\n                440.74688720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/4/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/4/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Build gradually. To avoid trap doors, I took the most difficult topics and split them into a series of small steps.</li>\",\n              \"polygon\": [\n                [\n                  142.3916015625,\n                  449.3671875\n                ],\n                [\n                  527.1328125,\n                  449.3671875\n                ],\n                [\n                  527.1328125,\n                  472.3428649902344\n                ],\n                [\n                  142.3916015625,\n                  472.3428649902344\n                ]\n              ],\n              \"bbox\": [\n                142.3916015625,\n                449.3671875,\n                527.1328125,\n                472.3428649902344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/4/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/4/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Focus on programming, not the programming language. I included the minimum useful subset of Java and left out the rest.</li>\",\n              \"polygon\": [\n                [\n                  143.48800659179688,\n                  481.078125\n                ],\n                [\n                  527.1328125,\n                  481.078125\n                ],\n                [\n                  527.1328125,\n                  503.9388427734375\n                ],\n                [\n                  143.48800659179688,\n                  503.9388427734375\n                ]\n              ],\n              \"bbox\": [\n                143.48800659179688,\n                481.078125,\n                527.1328125,\n                503.9388427734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/4/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/4/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I needed a title, so on a whim I chose <i>How to Think Like a Computer Scientist</i>.</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              516.26953125\n            ],\n            [\n              459.896484375,\n              516.26953125\n            ],\n            [\n              459.896484375,\n              526.933837890625\n            ],\n            [\n              127.599609375,\n              526.933837890625\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            516.26953125,\n            459.896484375,\n            526.933837890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">My first version was rough, but it worked. Students did the reading, and they understood enough that I could spend class time on the hard topics, the interesting topics and (most important) letting the students practice.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              535.9921875\n            ],\n            [\n              527.1328125,\n              535.9921875\n            ],\n            [\n              527.1328125,\n              570.4088439941406\n            ],\n            [\n              128.0478515625,\n              570.4088439941406\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            535.9921875,\n            527.1328125,\n            570.4088439941406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I released the book under the GNU Free Documentation License, which allows users to copy, modify, and distribute the book.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              579.69140625\n            ],\n            [\n              527.1328125,\n              579.69140625\n            ],\n            [\n              527.1328125,\n              601.9288482666016\n            ],\n            [\n              128.3466796875,\n              601.9288482666016\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            579.69140625,\n            527.1328125,\n            601.9288482666016\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">What happened next is the cool part. Jeff Elkner, a high school teacher in Virginia, adopted my book and translated it into Python. He sent me a copy of his translation, and I had the unusual experience of learning Python by reading my own book. As Green Tea Press, I published the first Python version in 2001.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              610.62890625\n            ],\n            [\n              527.1328125,\n              610.62890625\n            ],\n            [\n              527.1328125,\n              657.3598480224609\n            ],\n            [\n              128.49609375,\n              657.3598480224609\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            610.62890625,\n            527.1328125,\n            657.3598480224609\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/4/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In 2003 I started teaching at Olin College and I got to teach Python for the first time. The contrast with Java was striking. Students struggled less, learned more, worked on more interesting projects, and generally had a lot more fun.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              666.703125\n            ],\n            [\n              527.1328125,\n              666.703125\n            ],\n            [\n              527.1328125,\n              700.8348617553711\n            ],\n            [\n              128.3466796875,\n              700.8348617553711\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            666.703125,\n            527.1328125,\n            700.8348617553711\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/4/SectionHeader/0\",\n        \"2\": \"/page/4/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/5/Page/124\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/5/PageHeader/0'></content-ref><content-ref src='/page/5/PageHeader/17'></content-ref><content-ref src='/page/5/Text/1'></content-ref><content-ref src='/page/5/Text/2'></content-ref><content-ref src='/page/5/ListGroup/124'></content-ref><content-ref src='/page/5/Text/8'></content-ref><content-ref src='/page/5/Text/9'></content-ref><content-ref src='/page/5/Text/10'></content-ref><content-ref src='/page/5/SectionHeader/11'></content-ref><content-ref src='/page/5/Text/12'></content-ref><content-ref src='/page/5/Text/13'></content-ref><content-ref src='/page/5/Text/14'></content-ref><content-ref src='/page/5/Text/15'></content-ref><content-ref src='/page/5/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/5/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.134765625\n            ],\n            [\n              482.607421875,\n              60.134765625\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.134765625,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              60.6181640625\n            ],\n            [\n              97.04443359375,\n              60.6181640625\n            ],\n            [\n              97.04443359375,\n              70.3828125\n            ],\n            [\n              85.98779296875,\n              70.3828125\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            60.6181640625,\n            97.04443359375,\n            70.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Over the last nine years I continued to develop the book, correcting errors, improving some of the examples and adding material, especially exercises.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              87.978515625\n            ],\n            [\n              484.1015625,\n              87.978515625\n            ],\n            [\n              484.1015625,\n              110.98828125\n            ],\n            [\n              85.763671875,\n              110.98828125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            87.978515625,\n            484.1015625,\n            110.98828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The result is this book, now with the less grandiose title <i>Think Python</i>. Some of the changes are:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              122.4931640625\n            ],\n            [\n              483.50390625,\n              122.4931640625\n            ],\n            [\n              483.50390625,\n              145.6962890625\n            ],\n            [\n              85.763671875,\n              145.6962890625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            122.4931640625,\n            483.50390625,\n            145.6962890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/ListGroup/124\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/5/ListItem/3'></content-ref><content-ref src='/page/5/ListItem/4'></content-ref><content-ref src='/page/5/ListItem/5'></content-ref><content-ref src='/page/5/ListItem/6'></content-ref><content-ref src='/page/5/ListItem/7'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              100.28800964355469,\n              162.615234375\n            ],\n            [\n              484.69921875,\n              162.615234375\n            ],\n            [\n              484.69921875,\n              353.8519287109375\n            ],\n            [\n              100.28800964355469,\n              353.8519287109375\n            ]\n          ],\n          \"bbox\": [\n            100.28800964355469,\n            162.615234375,\n            484.69921875,\n            353.8519287109375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/5/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> I added a section about debugging at the end of each chapter. These sections present general techniques for finding and avoiding bugs, and warnings about Python pitfalls.</li>\",\n              \"polygon\": [\n                [\n                  100.28802490234375,\n                  162.615234375\n                ],\n                [\n                  483.50390625,\n                  162.615234375\n                ],\n                [\n                  483.50390625,\n                  197.61328125\n                ],\n                [\n                  100.28802490234375,\n                  197.61328125\n                ]\n              ],\n              \"bbox\": [\n                100.28802490234375,\n                162.615234375,\n                483.50390625,\n                197.61328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/4/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/5/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> I added more exercises, ranging from short tests of understanding to a few substantial projects. And I wrote solutions for most of them.</li>\",\n              \"polygon\": [\n                [\n                  100.28802490234375,\n                  209.794921875\n                ],\n                [\n                  484.69921875,\n                  209.794921875\n                ],\n                [\n                  484.69921875,\n                  233.58294677734375\n                ],\n                [\n                  100.28802490234375,\n                  233.58294677734375\n                ]\n              ],\n              \"bbox\": [\n                100.28802490234375,\n                209.794921875,\n                484.69921875,\n                233.58294677734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/4/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/5/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> I added a series of case studies—longer examples with exercises, solutions, and discussion. Some are based on Swampy, a suite of Python programs I wrote for use in my classes. Swampy, code examples, and some solutions are available from <a href=\\\"http://thinkpython.com\\\">http://thinkpython.com</a>.</li>\",\n              \"polygon\": [\n                [\n                  100.28802490234375,\n                  245.953125\n                ],\n                [\n                  484.69921875,\n                  245.953125\n                ],\n                [\n                  484.69921875,\n                  293.59796142578125\n                ],\n                [\n                  100.28802490234375,\n                  293.59796142578125\n                ]\n              ],\n              \"bbox\": [\n                100.28802490234375,\n                245.953125,\n                484.69921875,\n                293.59796142578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/4/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/5/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> I expanded the discussion of program development plans and basic design patterns.</li>\",\n              \"polygon\": [\n                [\n                  100.28800964355469,\n                  306.087890625\n                ],\n                [\n                  482.607421875,\n                  306.087890625\n                ],\n                [\n                  482.607421875,\n                  317.7479553222656\n                ],\n                [\n                  100.28800964355469,\n                  317.7479553222656\n                ]\n              ],\n              \"bbox\": [\n                100.28800964355469,\n                306.087890625,\n                482.607421875,\n                317.7479553222656\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/4/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/5/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> I added appendices about debugging, analysis of algorithms, and UML diagrams with Lumpy.</li>\",\n              \"polygon\": [\n                [\n                  100.28800964355469,\n                  330.2578125\n                ],\n                [\n                  484.69921875,\n                  330.2578125\n                ],\n                [\n                  484.69921875,\n                  353.8519287109375\n                ],\n                [\n                  100.28800964355469,\n                  353.8519287109375\n                ]\n              ],\n              \"bbox\": [\n                100.28800964355469,\n                330.2578125,\n                484.69921875,\n                353.8519287109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/4/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/5/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I hope you enjoy working with this book, and that it helps you learn to program and think, at least a little bit, like a computer scientist.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              370.86328125\n            ],\n            [\n              484.400390625,\n              370.86328125\n            ],\n            [\n              484.400390625,\n              394.29290771484375\n            ],\n            [\n              85.46484375,\n              394.29290771484375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            370.86328125,\n            484.400390625,\n            394.29290771484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Allen B. Downey Needham MA</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              406.0546875\n            ],\n            [\n              162.861328125,\n              406.0546875\n            ],\n            [\n              162.861328125,\n              428.6228942871094\n            ],\n            [\n              85.83837890625,\n              428.6228942871094\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            406.0546875,\n            162.861328125,\n            428.6228942871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Allen Downey is a Professor of Computer Science at the Franklin W. Olin College of Engineering.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              452.07421875\n            ],\n            [\n              483.205078125,\n              452.07421875\n            ],\n            [\n              483.205078125,\n              475.27734375\n            ],\n            [\n              86.0625,\n              475.27734375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            452.07421875,\n            483.205078125,\n            475.27734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/4/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><b>Acknowledgments</b></h2>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              510.08203125\n            ],\n            [\n              211.5703125,\n              510.08203125\n            ],\n            [\n              211.5703125,\n              526.0249328613281\n            ],\n            [\n              85.83837890625,\n              526.0249328613281\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            510.08203125,\n            211.5703125,\n            526.0249328613281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/5/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Many thanks to Jeff Elkner, who translated my Java book into Python, which got this project started and introduced me to what has turned out to be my favorite language.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              540.6328125\n            ],\n            [\n              484.1015625,\n              540.6328125\n            ],\n            [\n              484.1015625,\n              563.515869140625\n            ],\n            [\n              85.6142578125,\n              563.515869140625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            540.6328125,\n            484.1015625,\n            563.515869140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/5/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Thanks also to Chris Meyers, who contributed several sections to <i>How to Think Like a Com</i><i>puter Scientist</i>.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              574.27734375\n            ],\n            [\n              484.1015625,\n              574.27734375\n            ],\n            [\n              484.1015625,\n              597.8458709716797\n            ],\n            [\n              85.9130859375,\n              597.8458709716797\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            574.27734375,\n            484.1015625,\n            597.8458709716797\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/5/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Thanks to the Free Software Foundation for developing the GNU Free Documentation License, which helped make my collaboration with Jeff and Chris possible, and Creative Commons for the license I am using now.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              608.30859375\n            ],\n            [\n              484.400390625,\n              608.30859375\n            ],\n            [\n              484.400390625,\n              644.1308746337891\n            ],\n            [\n              85.763671875,\n              644.1308746337891\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            608.30859375,\n            484.400390625,\n            644.1308746337891\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/5/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Thanks to the editors at Lulu who worked on <i>How to Think Like a Computer Scientist</i>.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              655.48828125\n            ],\n            [\n              454.81640625,\n              655.48828125\n            ],\n            [\n              454.81640625,\n              666.5058822631836\n            ],\n            [\n              86.0625,\n              666.5058822631836\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            655.48828125,\n            454.81640625,\n            666.5058822631836\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/5/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/5/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Thanks to all the students who worked with earlier versions of this book and all the contributors (listed below) who sent in corrections and suggestions.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              677.91796875\n            ],\n            [\n              484.1015625,\n              677.91796875\n            ],\n            [\n              484.1015625,\n              700.8348846435547\n            ],\n            [\n              85.9130859375,\n              700.8348846435547\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            677.91796875,\n            484.1015625,\n            700.8348846435547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/5/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/4/SectionHeader/0\",\n        \"2\": \"/page/5/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/6/Page/155\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/6/PageHeader/24'></content-ref><content-ref src='/page/6/SectionHeader/0'></content-ref><content-ref src='/page/6/Text/1'></content-ref><content-ref src='/page/6/Text/2'></content-ref><content-ref src='/page/6/Text/3'></content-ref><content-ref src='/page/6/ListGroup/155'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/6/PageHeader/24\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              512.490234375,\n              60.56982421875\n            ],\n            [\n              526.833984375,\n              60.56982421875\n            ],\n            [\n              526.833984375,\n              71.13372802734375\n            ],\n            [\n              512.490234375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            512.490234375,\n            60.56982421875,\n            526.833984375,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/5/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><b>Contributor List</b></h2>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              84.54638671875\n            ],\n            [\n              236.07421875,\n              84.54638671875\n            ],\n            [\n              236.07421875,\n              100.29998779296875\n            ],\n            [\n              128.12255859375,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            84.54638671875,\n            236.07421875,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">More than 100 sharp-eyed and thoughtful readers have sent in suggestions and corrections over the past few years. Their contributions, and enthusiasm for this project, have been a huge help.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              110.21484375\n            ],\n            [\n              527.73046875,\n              110.21484375\n            ],\n            [\n              527.73046875,\n              145.885009765625\n            ],\n            [\n              128.6455078125,\n              145.885009765625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            110.21484375,\n            527.73046875,\n            145.885009765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you have a suggestion or correction, please send email to feedback@thinkpython.com. If I make a change based on your feedback, I will add you to the contributor list (unless you ask to be omitted).</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              153.8173828125\n            ],\n            [\n              527.73046875,\n              153.8173828125\n            ],\n            [\n              527.73046875,\n              189.299072265625\n            ],\n            [\n              128.6455078125,\n              189.299072265625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            153.8173828125,\n            527.73046875,\n            189.299072265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you include at least part of the sentence the error appears in, that makes it easy for me to search. Page and section numbers are fine, too, but not quite as easy to work with. Thanks!</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              197.806640625\n            ],\n            [\n              527.1328125,\n              197.806640625\n            ],\n            [\n              527.1328125,\n              221.009765625\n            ],\n            [\n              128.3466796875,\n              221.009765625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            197.806640625,\n            527.1328125,\n            221.009765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/6/ListGroup/155\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/6/ListItem/4'></content-ref><content-ref src='/page/6/ListItem/5'></content-ref><content-ref src='/page/6/ListItem/6'></content-ref><content-ref src='/page/6/ListItem/7'></content-ref><content-ref src='/page/6/ListItem/8'></content-ref><content-ref src='/page/6/ListItem/9'></content-ref><content-ref src='/page/6/ListItem/10'></content-ref><content-ref src='/page/6/ListItem/11'></content-ref><content-ref src='/page/6/ListItem/12'></content-ref><content-ref src='/page/6/ListItem/13'></content-ref><content-ref src='/page/6/ListItem/14'></content-ref><content-ref src='/page/6/ListItem/15'></content-ref><content-ref src='/page/6/ListItem/16'></content-ref><content-ref src='/page/6/ListItem/17'></content-ref><content-ref src='/page/6/ListItem/18'></content-ref><content-ref src='/page/6/ListItem/19'></content-ref><content-ref src='/page/6/ListItem/20'></content-ref><content-ref src='/page/6/ListItem/21'></content-ref><content-ref src='/page/6/ListItem/22'></content-ref><content-ref src='/page/6/ListItem/23'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.76513671875,\n              231.064453125\n            ],\n            [\n              527.431640625,\n              231.064453125\n            ],\n            [\n              527.431640625,\n              700.5533828735352\n            ],\n            [\n              142.76513671875,\n              700.5533828735352\n            ]\n          ],\n          \"bbox\": [\n            142.76513671875,\n            231.064453125,\n            527.431640625,\n            700.5533828735352\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/6/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Lloyd Hugh Allen sent in a correction to Section 8.4.</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  231.064453125\n                ],\n                [\n                  361.0699157714844,\n                  231.064453125\n                ],\n                [\n                  361.0699157714844,\n                  242.5283203125\n                ],\n                [\n                  144.09201049804688,\n                  242.5283203125\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                231.064453125,\n                361.0699157714844,\n                242.5283203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Yvon Boulianne sent in a correction of a semantic error in Chapter 5.</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  249.626953125\n                ],\n                [\n                  424.2471008300781,\n                  249.626953125\n                ],\n                [\n                  424.2471008300781,\n                  261.34033203125\n                ],\n                [\n                  144.09201049804688,\n                  261.34033203125\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                249.626953125,\n                424.2471008300781,\n                261.34033203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Fred Bremmer submitted a correction in Section 2.1.</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  268.76953125\n                ],\n                [\n                  360.38671875,\n                  268.76953125\n                ],\n                [\n                  360.38671875,\n                  280.15130615234375\n                ],\n                [\n                  144.09201049804688,\n                  280.15130615234375\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                268.76953125,\n                360.38671875,\n                280.15130615234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Jonah Cohen wrote the Perl scripts to convert the LaTeX source for this book into beautiful HTML.</li>\",\n              \"polygon\": [\n                [\n                  143.8857421875,\n                  287.525390625\n                ],\n                [\n                  527.1328125,\n                  287.525390625\n                ],\n                [\n                  527.1328125,\n                  310.1413269042969\n                ],\n                [\n                  143.8857421875,\n                  310.1413269042969\n                ]\n              ],\n              \"bbox\": [\n                143.8857421875,\n                287.525390625,\n                527.1328125,\n                310.1413269042969\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Michael Conlon sent in a grammar correction in Chapter 2 and an improvement in style in Chapter 1, and he initiated discussion on the technical aspects of interpreters.</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  317.8828125\n                ],\n                [\n                  526.833984375,\n                  317.8828125\n                ],\n                [\n                  526.833984375,\n                  340.13134765625\n                ],\n                [\n                  144.09201049804688,\n                  340.13134765625\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                317.8828125,\n                526.833984375,\n                340.13134765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Benoit Girard sent in a correction to a humorous mistake in Section 5.6.</li>\",\n              \"polygon\": [\n                [\n                  143.96044921875,\n                  347.66015625\n                ],\n                [\n                  437.185546875,\n                  347.66015625\n                ],\n                [\n                  437.185546875,\n                  358.943359375\n                ],\n                [\n                  143.96044921875,\n                  358.943359375\n                ]\n              ],\n              \"bbox\": [\n                143.96044921875,\n                347.66015625,\n                437.185546875,\n                358.943359375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Courtney Gleason and Katherine Smith wrote horsebet.py, which was used as a case study in an earlier version of the book. Their program can now be found on the website.</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  366.416015625\n                ],\n                [\n                  527.1328125,\n                  366.416015625\n                ],\n                [\n                  527.1328125,\n                  388.933349609375\n                ],\n                [\n                  144.09201049804688,\n                  388.933349609375\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                366.416015625,\n                527.1328125,\n                388.933349609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Lee Harr submitted more corrections than we have room to list here, and indeed he should be listed as one of the principal editors of the text.</li>\",\n              \"polygon\": [\n                [\n                  144.09205627441406,\n                  396.0\n                ],\n                [\n                  527.1328125,\n                  396.0\n                ],\n                [\n                  527.1328125,\n                  418.92236328125\n                ],\n                [\n                  144.09205627441406,\n                  418.92236328125\n                ]\n              ],\n              \"bbox\": [\n                144.09205627441406,\n                396.0,\n                527.1328125,\n                418.92236328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> James Kaylin is a student using the text. He has submitted numerous corrections.</li>\",\n              \"polygon\": [\n                [\n                  143.138671875,\n                  426.1640625\n                ],\n                [\n                  477.228515625,\n                  426.1640625\n                ],\n                [\n                  477.228515625,\n                  437.734375\n                ],\n                [\n                  143.138671875,\n                  437.734375\n                ]\n              ],\n              \"bbox\": [\n                143.138671875,\n                426.1640625,\n                477.228515625,\n                437.734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> David Kershaw fixed the broken catTwice function in Section 3.10.</li>\",\n              \"polygon\": [\n                [\n                  143.5869140625,\n                  445.5\n                ],\n                [\n                  420.75,\n                  445.5\n                ],\n                [\n                  420.75,\n                  456.54638671875\n                ],\n                [\n                  143.5869140625,\n                  456.54638671875\n                ]\n              ],\n              \"bbox\": [\n                143.5869140625,\n                445.5,\n                420.75,\n                456.54638671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Eddie Lam has sent in numerous corrections to Chapters 1, 2, and 3. He also fixed the Makefile so that it creates an index the first time it is run and helped us set up a versioning scheme.</li>\",\n              \"polygon\": [\n                [\n                  144.09205627441406,\n                  464.0625\n                ],\n                [\n                  526.833984375,\n                  464.0625\n                ],\n                [\n                  526.833984375,\n                  486.536376953125\n                ],\n                [\n                  144.09205627441406,\n                  486.536376953125\n                ]\n              ],\n              \"bbox\": [\n                144.09205627441406,\n                464.0625,\n                526.833984375,\n                486.536376953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Man-Yong Lee sent in a correction to the example code in Section 2.4.</li>\",\n              \"polygon\": [\n                [\n                  143.51220703125,\n                  494.2265625\n                ],\n                [\n                  428.220703125,\n                  494.2265625\n                ],\n                [\n                  428.220703125,\n                  505.3473815917969\n                ],\n                [\n                  143.51220703125,\n                  505.3473815917969\n                ]\n              ],\n              \"bbox\": [\n                143.51220703125,\n                494.2265625,\n                428.220703125,\n                505.3473815917969\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> David Mayo pointed out that the word \\\"unconsciously\\\" in Chapter 1 needed to be changed to \\\"subconsciously\\\".</li>\",\n              \"polygon\": [\n                [\n                  144.09205627441406,\n                  512.7890625\n                ],\n                [\n                  527.1328125,\n                  512.7890625\n                ],\n                [\n                  527.1328125,\n                  535.33740234375\n                ],\n                [\n                  144.09205627441406,\n                  535.33740234375\n                ]\n              ],\n              \"bbox\": [\n                144.09205627441406,\n                512.7890625,\n                527.1328125,\n                535.33740234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Chris McAloon sent in several corrections to Sections 3.9 and 3.10.</li>\",\n              \"polygon\": [\n                [\n                  143.5869140625,\n                  542.56640625\n                ],\n                [\n                  417.76171875,\n                  542.56640625\n                ],\n                [\n                  417.76171875,\n                  554.1493988037109\n                ],\n                [\n                  143.5869140625,\n                  554.1493988037109\n                ]\n              ],\n              \"bbox\": [\n                143.5869140625,\n                542.56640625,\n                417.76171875,\n                554.1493988037109\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Matthew J. Moelter has been a long-time contributor who sent in numerous corrections and suggestions to the book.</li>\",\n              \"polygon\": [\n                [\n                  143.4375,\n                  562.2890625\n                ],\n                [\n                  526.53515625,\n                  562.2890625\n                ],\n                [\n                  526.53515625,\n                  584.139404296875\n                ],\n                [\n                  143.4375,\n                  584.139404296875\n                ]\n              ],\n              \"bbox\": [\n                143.4375,\n                562.2890625,\n                526.53515625,\n                584.139404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/19\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Simon Dicon Montford reported a missing function definition and several typos in Chapter 3. He also found errors in the increment function in Chapter 13.</li>\",\n              \"polygon\": [\n                [\n                  144.09205627441406,\n                  592.06640625\n                ],\n                [\n                  527.1328125,\n                  592.06640625\n                ],\n                [\n                  527.1328125,\n                  614.1284027099609\n                ],\n                [\n                  144.09205627441406,\n                  614.1284027099609\n                ]\n              ],\n              \"bbox\": [\n                144.09205627441406,\n                592.06640625,\n                527.1328125,\n                614.1284027099609\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> John Ouzts corrected the definition of \\\"return value\\\" in Chapter 3.</li>\",\n              \"polygon\": [\n                [\n                  142.76513671875,\n                  622.23046875\n                ],\n                [\n                  416.56640625,\n                  622.23046875\n                ],\n                [\n                  416.56640625,\n                  633.05859375\n                ],\n                [\n                  142.76513671875,\n                  633.05859375\n                ]\n              ],\n              \"bbox\": [\n                142.76513671875,\n                622.23046875,\n                416.56640625,\n                633.05859375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/21\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Kevin Parks sent in valuable comments and suggestions as to how to improve the distribution of the book.</li>\",\n              \"polygon\": [\n                [\n                  144.09207153320312,\n                  641.1796875\n                ],\n                [\n                  527.431640625,\n                  641.1796875\n                ],\n                [\n                  527.431640625,\n                  663.609375\n                ],\n                [\n                  144.09207153320312,\n                  663.609375\n                ]\n              ],\n              \"bbox\": [\n                144.09207153320312,\n                641.1796875,\n                527.431640625,\n                663.609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/22\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> David Pool sent in a typo in the glossary of Chapter 1, as well as kind words of encouragement.</li>\",\n              \"polygon\": [\n                [\n                  144.09207153320312,\n                  671.34375\n                ],\n                [\n                  527.1328125,\n                  671.34375\n                ],\n                [\n                  527.1328125,\n                  681.7423858642578\n                ],\n                [\n                  144.09207153320312,\n                  681.7423858642578\n                ]\n              ],\n              \"bbox\": [\n                144.09207153320312,\n                671.34375,\n                527.1328125,\n                681.7423858642578\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/6/ListItem/23\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Michael Schmitt sent in a correction to the chapter on files and exceptions.</li>\",\n              \"polygon\": [\n                [\n                  143.736328125,\n                  689.90625\n                ],\n                [\n                  447.943359375,\n                  689.90625\n                ],\n                [\n                  447.943359375,\n                  700.5533828735352\n                ],\n                [\n                  143.736328125,\n                  700.5533828735352\n                ]\n              ],\n              \"bbox\": [\n                143.736328125,\n                689.90625,\n                447.943359375,\n                700.5533828735352\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/4/SectionHeader/0\",\n        \"2\": \"/page/6/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/7/Page/154\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/7/PageHeader/0'></content-ref><content-ref src='/page/7/PageHeader/26'></content-ref><content-ref src='/page/7/ListGroup/154'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/7/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.71484375\n            ],\n            [\n              482.607421875,\n              60.71484375\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.71484375,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/PageHeader/26\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              61.294921875\n            ],\n            [\n              102.42333984375,\n              61.294921875\n            ],\n            [\n              102.42333984375,\n              70.189453125\n            ],\n            [\n              85.39013671875,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            61.294921875,\n            102.42333984375,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/7/ListGroup/154\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/7/ListItem/1'></content-ref><content-ref src='/page/7/ListItem/2'></content-ref><content-ref src='/page/7/ListItem/3'></content-ref><content-ref src='/page/7/ListItem/4'></content-ref><content-ref src='/page/7/ListItem/5'></content-ref><content-ref src='/page/7/ListItem/6'></content-ref><content-ref src='/page/7/ListItem/7'></content-ref><content-ref src='/page/7/ListItem/8'></content-ref><content-ref src='/page/7/ListItem/9'></content-ref><content-ref src='/page/7/ListItem/10'></content-ref><content-ref src='/page/7/ListItem/11'></content-ref><content-ref src='/page/7/ListItem/12'></content-ref><content-ref src='/page/7/ListItem/13'></content-ref><content-ref src='/page/7/ListItem/14'></content-ref><content-ref src='/page/7/ListItem/15'></content-ref><content-ref src='/page/7/ListItem/16'></content-ref><content-ref src='/page/7/ListItem/17'></content-ref><content-ref src='/page/7/ListItem/18'></content-ref><content-ref src='/page/7/ListItem/19'></content-ref><content-ref src='/page/7/ListItem/20'></content-ref><content-ref src='/page/7/ListItem/21'></content-ref><content-ref src='/page/7/ListItem/22'></content-ref><content-ref src='/page/7/ListItem/23'></content-ref><content-ref src='/page/7/ListItem/24'></content-ref><content-ref src='/page/7/ListItem/25'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              100.40625,\n              88.99365234375\n            ],\n            [\n              483.50390625,\n              88.99365234375\n            ],\n            [\n              483.50390625,\n              700.5532379150391\n            ],\n            [\n              100.40625,\n              700.5532379150391\n            ]\n          ],\n          \"bbox\": [\n            100.40625,\n            88.99365234375,\n            483.50390625,\n            700.5532379150391\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/7/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Robin Shaw pointed out an error in Section 13.1, where the printTime function was used in an example without being defined.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  88.99365234375\n                ],\n                [\n                  483.50390625,\n                  88.99365234375\n                ],\n                [\n                  483.50390625,\n                  109.694091796875\n                ],\n                [\n                  100.89199829101562,\n                  109.694091796875\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                88.99365234375,\n                483.50390625,\n                109.694091796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Paul Sleigh found an error in Chapter 7 and a bug in Jonah Cohen's Perl script that generates HTML from LaTeX.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  118.6259765625\n                ],\n                [\n                  482.607421875,\n                  118.6259765625\n                ],\n                [\n                  482.607421875,\n                  139.902099609375\n                ],\n                [\n                  100.89199829101562,\n                  139.902099609375\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                118.6259765625,\n                482.607421875,\n                139.902099609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Craig T. Snydal is testing the text in a course at Drew University. He has contributed several valuable suggestions and corrections.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  149.2734375\n                ],\n                [\n                  482.90625,\n                  149.2734375\n                ],\n                [\n                  482.90625,\n                  170.110107421875\n                ],\n                [\n                  100.89199829101562,\n                  170.110107421875\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                149.2734375,\n                482.90625,\n                170.110107421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Ian Thomas and his students are using the text in a programming course. They are the first ones to test the chapters in the latter half of the book, and they have made numerous corrections and suggestions.</li>\",\n              \"polygon\": [\n                [\n                  100.8544921875,\n                  179.3408203125\n                ],\n                [\n                  482.4032897949219,\n                  179.3408203125\n                ],\n                [\n                  482.4032897949219,\n                  211.49713134765625\n                ],\n                [\n                  100.8544921875,\n                  211.49713134765625\n                ]\n              ],\n              \"bbox\": [\n                100.8544921875,\n                179.3408203125,\n                482.4032897949219,\n                211.49713134765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Keith Verheyden sent in a correction in Chapter 3.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  220.81640625\n                ],\n                [\n                  308.4641418457031,\n                  220.81640625\n                ],\n                [\n                  308.4641418457031,\n                  230.52716064453125\n                ],\n                [\n                  100.89199829101562,\n                  230.52716064453125\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                220.81640625,\n                308.4641418457031,\n                230.52716064453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Peter Winstanley let us know about a longstanding error in our Latin in Chapter 3.</li>\",\n              \"polygon\": [\n                [\n                  100.8544921875,\n                  239.37890625\n                ],\n                [\n                  438.08203125,\n                  239.37890625\n                ],\n                [\n                  438.08203125,\n                  249.55718994140625\n                ],\n                [\n                  100.8544921875,\n                  249.55718994140625\n                ]\n              ],\n              \"bbox\": [\n                100.8544921875,\n                239.37890625,\n                438.08203125,\n                249.55718994140625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Chris Wrobel made corrections to the code in the chapter on file I/O and exceptions.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  259.1015625\n                ],\n                [\n                  445.8515625,\n                  259.1015625\n                ],\n                [\n                  445.8515625,\n                  268.58721923828125\n                ],\n                [\n                  100.89199829101562,\n                  268.58721923828125\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                259.1015625,\n                445.8515625,\n                268.58721923828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Moshe Zadka has made invaluable contributions to this project. In addition to writing the first draft of the chapter on Dictionaries, he provided continual guidance in the early stages of the book.</li>\",\n              \"polygon\": [\n                [\n                  100.8544921875,\n                  278.05078125\n                ],\n                [\n                  482.90625,\n                  278.05078125\n                ],\n                [\n                  482.90625,\n                  309.9732360839844\n                ],\n                [\n                  100.8544921875,\n                  309.9732360839844\n                ]\n              ],\n              \"bbox\": [\n                100.8544921875,\n                278.05078125,\n                482.90625,\n                309.9732360839844\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Christoph Zwerschke sent several corrections and pedagogic suggestions, and explained the difference between <i>gleich</i> and <i>selbe</i>.</li>\",\n              \"polygon\": [\n                [\n                  100.705078125,\n                  319.236328125\n                ],\n                [\n                  483.205078125,\n                  319.236328125\n                ],\n                [\n                  483.205078125,\n                  340.1822204589844\n                ],\n                [\n                  100.705078125,\n                  340.1822204589844\n                ]\n              ],\n              \"bbox\": [\n                100.705078125,\n                319.236328125,\n                483.205078125,\n                340.1822204589844\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> James Mayer sent us a whole slew of spelling and typographical errors, including two in the contributor list.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  349.98046875\n                ],\n                [\n                  483.50390625,\n                  349.98046875\n                ],\n                [\n                  483.50390625,\n                  370.3902282714844\n                ],\n                [\n                  100.89199829101562,\n                  370.3902282714844\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                349.98046875,\n                483.50390625,\n                370.3902282714844\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Hayden McAfee caught a potentially confusing inconsistency between two examples.</li>\",\n              \"polygon\": [\n                [\n                  100.8544921875,\n                  379.951171875\n                ],\n                [\n                  449.89105224609375,\n                  379.951171875\n                ],\n                [\n                  449.89105224609375,\n                  389.42022705078125\n                ],\n                [\n                  100.8544921875,\n                  389.42022705078125\n                ]\n              ],\n              \"bbox\": [\n                100.8544921875,\n                379.951171875,\n                449.89105224609375,\n                389.42022705078125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Angel Arnal is part of an international team of translators working on the Spanish version of the text. He has also found several errors in the English version.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  398.70703125\n                ],\n                [\n                  483.50390625,\n                  398.70703125\n                ],\n                [\n                  483.50390625,\n                  419.62823486328125\n                ],\n                [\n                  100.89199829101562,\n                  419.62823486328125\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                398.70703125,\n                483.50390625,\n                419.62823486328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Tauhidul Hoque and Lex Berezhny created the illustrations in Chapter 1 and improved many of the other illustrations.</li>\",\n              \"polygon\": [\n                [\n                  100.8544921875,\n                  428.484375\n                ],\n                [\n                  482.90625,\n                  428.484375\n                ],\n                [\n                  482.90625,\n                  449.83624267578125\n                ],\n                [\n                  100.8544921875,\n                  449.83624267578125\n                ]\n              ],\n              \"bbox\": [\n                100.8544921875,\n                428.484375,\n                482.90625,\n                449.83624267578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Dr. Michele Alzetta caught an error in Chapter 8 and sent some interesting pedagogic comments and suggestions about Fibonacci and Old Maid.</li>\",\n              \"polygon\": [\n                [\n                  100.8544921875,\n                  459.421875\n                ],\n                [\n                  482.4033203125,\n                  459.421875\n                ],\n                [\n                  482.4033203125,\n                  480.3046875\n                ],\n                [\n                  100.8544921875,\n                  480.3046875\n                ]\n              ],\n              \"bbox\": [\n                100.8544921875,\n                459.421875,\n                482.4033203125,\n                480.3046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Andy Mitchell caught a typo in Chapter 1 and a broken example in Chapter 2.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  489.5859375\n                ],\n                [\n                  420.75,\n                  489.5859375\n                ],\n                [\n                  420.75,\n                  499.0742492675781\n                ],\n                [\n                  100.89199829101562,\n                  499.0742492675781\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                489.5859375,\n                420.75,\n                499.0742492675781\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Kalin Harvey suggested a clarification in Chapter 7 and caught some typos.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  508.53515625\n                ],\n                [\n                  411.78515625,\n                  508.53515625\n                ],\n                [\n                  411.78515625,\n                  518.1052551269531\n                ],\n                [\n                  100.89199829101562,\n                  518.1052551269531\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                508.53515625,\n                411.78515625,\n                518.1052551269531\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Christopher P. Smith caught several typos and helped us update the book for Python 2.2.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  527.87109375\n                ],\n                [\n                  462.7848205566406,\n                  527.87109375\n                ],\n                [\n                  462.7848205566406,\n                  537.15234375\n                ],\n                [\n                  100.89199829101562,\n                  537.15234375\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                527.87109375,\n                462.7848205566406,\n                537.15234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> David Hutchins caught a typo in the Foreword.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  546.43359375\n                ],\n                [\n                  299.42578125,\n                  546.43359375\n                ],\n                [\n                  299.42578125,\n                  556.1652526855469\n                ],\n                [\n                  100.89199829101562,\n                  556.1652526855469\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                546.43359375,\n                299.42578125,\n                556.1652526855469\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/19\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Gregor Lingl is teaching Python at a high school in Vienna, Austria. He is working on a German translation of the book, and he caught a couple of bad errors in Chapter 5.</li>\",\n              \"polygon\": [\n                [\n                  100.40625,\n                  565.76953125\n                ],\n                [\n                  482.607421875,\n                  565.76953125\n                ],\n                [\n                  482.607421875,\n                  586.3732452392578\n                ],\n                [\n                  100.40625,\n                  586.3732452392578\n                ]\n              ],\n              \"bbox\": [\n                100.40625,\n                565.76953125,\n                482.607421875,\n                586.3732452392578\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Julie Peters caught a typo in the Preface.</li>\",\n              \"polygon\": [\n                [\n                  100.77978515625,\n                  595.93359375\n                ],\n                [\n                  270.1866149902344,\n                  595.93359375\n                ],\n                [\n                  270.1866149902344,\n                  605.4032440185547\n                ],\n                [\n                  100.77978515625,\n                  605.4032440185547\n                ]\n              ],\n              \"bbox\": [\n                100.77978515625,\n                595.93359375,\n                270.1866149902344,\n                605.4032440185547\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/21\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Florin Oprina sent in an improvement in makeTime, a correction in printTime, and a nice typo.</li>\",\n              \"polygon\": [\n                [\n                  100.89199829101562,\n                  615.2393646240234\n                ],\n                [\n                  482.607421875,\n                  615.2393646240234\n                ],\n                [\n                  482.607421875,\n                  624.4332427978516\n                ],\n                [\n                  100.89199829101562,\n                  624.4332427978516\n                ]\n              ],\n              \"bbox\": [\n                100.89199829101562,\n                615.2393646240234,\n                482.607421875,\n                624.4332427978516\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/22\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> D. J. Webre suggested a clarification in Chapter 3.</li>\",\n              \"polygon\": [\n                [\n                  100.77978515625,\n                  633.83203125\n                ],\n                [\n                  306.6888122558594,\n                  633.83203125\n                ],\n                [\n                  306.6888122558594,\n                  643.4632415771484\n                ],\n                [\n                  100.77978515625,\n                  643.4632415771484\n                ]\n              ],\n              \"bbox\": [\n                100.77978515625,\n                633.83203125,\n                306.6888122558594,\n                643.4632415771484\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/23\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Ken found a fistful of errors in Chapters 8, 9 and 11.</li>\",\n              \"polygon\": [\n                [\n                  100.705078125,\n                  652.39453125\n                ],\n                [\n                  317.35546875,\n                  652.39453125\n                ],\n                [\n                  317.35546875,\n                  662.4932403564453\n                ],\n                [\n                  100.705078125,\n                  662.4932403564453\n                ]\n              ],\n              \"bbox\": [\n                100.705078125,\n                652.39453125,\n                317.35546875,\n                662.4932403564453\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/24\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Ivo Wever caught a typo in Chapter 5 and suggested a clarification in Chapter 3.</li>\",\n              \"polygon\": [\n                [\n                  100.8544921875,\n                  672.1171875\n                ],\n                [\n                  428.51953125,\n                  672.1171875\n                ],\n                [\n                  428.51953125,\n                  681.5232391357422\n                ],\n                [\n                  100.8544921875,\n                  681.5232391357422\n                ]\n              ],\n              \"bbox\": [\n                100.8544921875,\n                672.1171875,\n                428.51953125,\n                681.5232391357422\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/7/ListItem/25\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Curtis Yanko suggested a clarification in Chapter 2.</li>\",\n              \"polygon\": [\n                [\n                  100.77978515625,\n                  691.06640625\n                ],\n                [\n                  315.263671875,\n                  691.06640625\n                ],\n                [\n                  315.263671875,\n                  700.5532379150391\n                ],\n                [\n                  100.77978515625,\n                  700.5532379150391\n                ]\n              ],\n              \"bbox\": [\n                100.77978515625,\n                691.06640625,\n                315.263671875,\n                700.5532379150391\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/4/SectionHeader/0\",\n        \"2\": \"/page/6/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/8/Page/140\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/8/PageHeader/28'></content-ref><content-ref src='/page/8/ListGroup/140'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/8/PageHeader/28\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              61.171142578125\n            ],\n            [\n              525.599853515625,\n              61.171142578125\n            ],\n            [\n              525.599853515625,\n              71.13372802734375\n            ],\n            [\n              514.880859375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            61.171142578125,\n            525.599853515625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/8/ListGroup/140\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/8/ListItem/0'></content-ref><content-ref src='/page/8/ListItem/1'></content-ref><content-ref src='/page/8/ListItem/2'></content-ref><content-ref src='/page/8/ListItem/3'></content-ref><content-ref src='/page/8/ListItem/4'></content-ref><content-ref src='/page/8/ListItem/5'></content-ref><content-ref src='/page/8/ListItem/6'></content-ref><content-ref src='/page/8/ListItem/7'></content-ref><content-ref src='/page/8/ListItem/8'></content-ref><content-ref src='/page/8/ListItem/9'></content-ref><content-ref src='/page/8/ListItem/10'></content-ref><content-ref src='/page/8/ListItem/11'></content-ref><content-ref src='/page/8/ListItem/12'></content-ref><content-ref src='/page/8/ListItem/13'></content-ref><content-ref src='/page/8/ListItem/14'></content-ref><content-ref src='/page/8/ListItem/15'></content-ref><content-ref src='/page/8/ListItem/16'></content-ref><content-ref src='/page/8/ListItem/17'></content-ref><content-ref src='/page/8/ListItem/18'></content-ref><content-ref src='/page/8/ListItem/19'></content-ref><content-ref src='/page/8/ListItem/20'></content-ref><content-ref src='/page/8/ListItem/21'></content-ref><content-ref src='/page/8/ListItem/22'></content-ref><content-ref src='/page/8/ListItem/23'></content-ref><content-ref src='/page/8/ListItem/24'></content-ref><content-ref src='/page/8/ListItem/25'></content-ref><content-ref src='/page/8/ListItem/26'></content-ref><content-ref src='/page/8/ListItem/27'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.46630859375,\n              88.6552734375\n            ],\n            [\n              526.53515625,\n              88.6552734375\n            ],\n            [\n              526.53515625,\n              700.5530853271484\n            ],\n            [\n              142.46630859375,\n              700.5530853271484\n            ]\n          ],\n          \"bbox\": [\n            142.46630859375,\n            88.6552734375,\n            526.53515625,\n            700.5530853271484\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/8/ListItem/0\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Ben Logan sent in a number of typos and problems with translating the book into HTML.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  88.6552734375\n                ],\n                [\n                  508.3699035644531,\n                  88.6552734375\n                ],\n                [\n                  508.3699035644531,\n                  98.51611328125\n                ],\n                [\n                  144.0919952392578,\n                  98.51611328125\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                88.6552734375,\n                508.3699035644531,\n                98.51611328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Jason Armstrong saw the missing word in Chapter 2.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  108.3779296875\n                ],\n                [\n                  364.5937194824219,\n                  108.3779296875\n                ],\n                [\n                  364.5937194824219,\n                  118.33013916015625\n                ],\n                [\n                  144.0919952392578,\n                  118.33013916015625\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                108.3779296875,\n                364.5937194824219,\n                118.33013916015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Louis Cordier noticed a spot in Chapter 16 where the code didn't match the text.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  128.8740234375\n                ],\n                [\n                  472.4504089355469,\n                  128.8740234375\n                ],\n                [\n                  472.4504089355469,\n                  138.14312744140625\n                ],\n                [\n                  144.0919952392578,\n                  138.14312744140625\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                128.8740234375,\n                472.4504089355469,\n                138.14312744140625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Brian Cain suggested several clarifications in Chapters 2 and 3.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  148.4033203125\n                ],\n                [\n                  403.5257873535156,\n                  148.4033203125\n                ],\n                [\n                  403.5257873535156,\n                  157.9571533203125\n                ],\n                [\n                  144.0919952392578,\n                  157.9571533203125\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                148.4033203125,\n                403.5257873535156,\n                157.9571533203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Rob Black sent in a passel of corrections, including some changes for Python 2.2.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  168.416015625\n                ],\n                [\n                  472.1366882324219,\n                  168.416015625\n                ],\n                [\n                  472.1366882324219,\n                  177.77117919921875\n                ],\n                [\n                  144.0919952392578,\n                  177.77117919921875\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                168.416015625,\n                472.1366882324219,\n                177.77117919921875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Jean-Philippe Rey at Ecole Centrale Paris sent a number of patches, including some updates for Python 2.2 and other thoughtful improvements.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  188.0419921875\n                ],\n                [\n                  526.53515625,\n                  188.0419921875\n                ],\n                [\n                  526.53515625,\n                  208.76214599609375\n                ],\n                [\n                  144.0919952392578,\n                  208.76214599609375\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                188.0419921875,\n                526.53515625,\n                208.76214599609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Jason Mader at George Washington University made a number of useful suggestions and corrections.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  219.26953125\n                ],\n                [\n                  525.9375,\n                  219.26953125\n                ],\n                [\n                  525.9375,\n                  239.754150390625\n                ],\n                [\n                  144.0919952392578,\n                  239.754150390625\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                219.26953125,\n                525.9375,\n                239.754150390625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Jan Gundtofte-Bruun reminded us that \\\"a error\\\" is an error.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  250.20703125\n                ],\n                [\n                  392.361328125,\n                  250.20703125\n                ],\n                [\n                  392.361328125,\n                  259.56817626953125\n                ],\n                [\n                  144.0919952392578,\n                  259.56817626953125\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                250.20703125,\n                392.361328125,\n                259.56817626953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Abel David and Alexis Dinno reminded us that the plural of \\\"matrix\\\" is \\\"matrices\\\", not \\\"matrixes\\\". This error was in the book for years, but two readers with the same initials reported it on the same day. Weird.</li>\",\n              \"polygon\": [\n                [\n                  143.5869140625,\n                  269.9296875\n                ],\n                [\n                  525.9375,\n                  269.9296875\n                ],\n                [\n                  525.9375,\n                  301.7381591796875\n                ],\n                [\n                  143.5869140625,\n                  301.7381591796875\n                ]\n              ],\n              \"bbox\": [\n                143.5869140625,\n                269.9296875,\n                525.9375,\n                301.7381591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Charles Thayer encouraged us to get rid of the semi-colons we had put at the ends of some statements and to clean up our use of \\\"argument\\\" and \\\"parameter\\\".</li>\",\n              \"polygon\": [\n                [\n                  143.8857421875,\n                  312.08203125\n                ],\n                [\n                  525.9375,\n                  312.08203125\n                ],\n                [\n                  525.9375,\n                  332.7291564941406\n                ],\n                [\n                  143.8857421875,\n                  332.7291564941406\n                ]\n              ],\n              \"bbox\": [\n                143.8857421875,\n                312.08203125,\n                525.9375,\n                332.7291564941406\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Roger Sperberg pointed out a twisted piece of logic in Chapter 3.</li>\",\n              \"polygon\": [\n                [\n                  142.6904296875,\n                  343.5767517089844\n                ],\n                [\n                  411.78515625,\n                  343.5767517089844\n                ],\n                [\n                  411.78515625,\n                  352.54315185546875\n                ],\n                [\n                  142.6904296875,\n                  352.54315185546875\n                ]\n              ],\n              \"bbox\": [\n                142.6904296875,\n                343.5767517089844,\n                411.78515625,\n                352.54315185546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Sam Bull pointed out a confusing paragraph in Chapter 2.</li>\",\n              \"polygon\": [\n                [\n                  143.81103515625,\n                  362.935546875\n                ],\n                [\n                  383.78179931640625,\n                  362.935546875\n                ],\n                [\n                  383.78179931640625,\n                  372.3571472167969\n                ],\n                [\n                  143.81103515625,\n                  372.3571472167969\n                ]\n              ],\n              \"bbox\": [\n                143.81103515625,\n                362.935546875,\n                383.78179931640625,\n                372.3571472167969\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Andrew Cheung pointed out two instances of \\\"use before def.\\\"</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  383.044921875\n                ],\n                [\n                  406.107421875,\n                  383.044921875\n                ],\n                [\n                  406.107421875,\n                  392.1701354980469\n                ],\n                [\n                  144.0919952392578,\n                  392.1701354980469\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                383.044921875,\n                406.107421875,\n                392.1701354980469\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> C. Corey Capel spotted the missing word in the Third Theorem of Debugging and a typo in Chapter 4.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  402.1875\n                ],\n                [\n                  525.603271484375,\n                  402.1875\n                ],\n                [\n                  525.603271484375,\n                  423.1621398925781\n                ],\n                [\n                  144.0919952392578,\n                  423.1621398925781\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                402.1875,\n                525.603271484375,\n                423.1621398925781\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Alessandra helped clear up some Turtle confusion.</li>\",\n              \"polygon\": [\n                [\n                  143.81103515625,\n                  433.125\n                ],\n                [\n                  355.60546875,\n                  433.125\n                ],\n                [\n                  355.60546875,\n                  442.97613525390625\n                ],\n                [\n                  143.81103515625,\n                  442.97613525390625\n                ]\n              ],\n              \"bbox\": [\n                143.81103515625,\n                433.125,\n                355.60546875,\n                442.97613525390625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Wim Champagne found a brain-o in a dictionary example.</li>\",\n              \"polygon\": [\n                [\n                  142.46630859375,\n                  453.234375\n                ],\n                [\n                  386.68359375,\n                  453.234375\n                ],\n                [\n                  386.68359375,\n                  462.78912353515625\n                ],\n                [\n                  142.46630859375,\n                  462.78912353515625\n                ]\n              ],\n              \"bbox\": [\n                142.46630859375,\n                453.234375,\n                386.68359375,\n                462.78912353515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Douglas Wright pointed out a problem with floor division in arc.</li>\",\n              \"polygon\": [\n                [\n                  143.8857421875,\n                  472.95703125\n                ],\n                [\n                  413.578125,\n                  472.95703125\n                ],\n                [\n                  413.578125,\n                  482.6031188964844\n                ],\n                [\n                  143.8857421875,\n                  482.6031188964844\n                ]\n              ],\n              \"bbox\": [\n                143.8857421875,\n                472.95703125,\n                413.578125,\n                482.6031188964844\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Jared Spindor found some jetsam at the end of a sentence.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  493.4507141113281\n                ],\n                [\n                  384.591796875,\n                  493.4507141113281\n                ],\n                [\n                  384.591796875,\n                  502.4171142578125\n                ],\n                [\n                  144.09197998046875,\n                  502.4171142578125\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                493.4507141113281,\n                384.591796875,\n                502.4171142578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Lin Peiheng sent a number of very helpful suggestions.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  512.7890625\n                ],\n                [\n                  373.0848693847656,\n                  512.7890625\n                ],\n                [\n                  373.0848693847656,\n                  522.2301025390625\n                ],\n                [\n                  144.09197998046875,\n                  522.2301025390625\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                512.7890625,\n                373.0848693847656,\n                522.2301025390625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/19\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Ray Hagtvedt sent in two errors and a not-quite-error.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  532.125\n                ],\n                [\n                  368.4851379394531,\n                  532.125\n                ],\n                [\n                  368.4851379394531,\n                  542.0440979003906\n                ],\n                [\n                  144.09197998046875,\n                  542.0440979003906\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                532.125,\n                368.4851379394531,\n                542.0440979003906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Torsten Hübsch pointed out an inconsistency in Swampy.</li>\",\n              \"polygon\": [\n                [\n                  143.736328125,\n                  552.62109375\n                ],\n                [\n                  383.09765625,\n                  552.62109375\n                ],\n                [\n                  383.09765625,\n                  561.8580932617188\n                ],\n                [\n                  143.736328125,\n                  561.8580932617188\n                ]\n              ],\n              \"bbox\": [\n                143.736328125,\n                552.62109375,\n                383.09765625,\n                561.8580932617188\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/21\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Inga Petuhhov corrected an example in Chapter 14.</li>\",\n              \"polygon\": [\n                [\n                  143.736328125,\n                  572.34375\n                ],\n                [\n                  357.6716003417969,\n                  572.34375\n                ],\n                [\n                  357.6716003417969,\n                  581.6710968017578\n                ],\n                [\n                  143.736328125,\n                  581.6710968017578\n                ]\n              ],\n              \"bbox\": [\n                143.736328125,\n                572.34375,\n                357.6716003417969,\n                581.6710968017578\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/22\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Arne Babenhauserheide sent several helpful corrections.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  592.453125\n                ],\n                [\n                  378.31640625,\n                  592.453125\n                ],\n                [\n                  378.31640625,\n                  601.4850921630859\n                ],\n                [\n                  144.09197998046875,\n                  601.4850921630859\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                592.453125,\n                378.31640625,\n                601.4850921630859\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/23\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Mark E. Casida is is good at spotting repeated words.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  612.17578125\n                ],\n                [\n                  366.1449279785156,\n                  612.17578125\n                ],\n                [\n                  366.1449279785156,\n                  621.2990875244141\n                ],\n                [\n                  144.09197998046875,\n                  621.2990875244141\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                612.17578125,\n                366.1449279785156,\n                621.2990875244141\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/24\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Scott Tyler filled in a that was missing. And then sent in a heap of corrections.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  631.8984375\n                ],\n                [\n                  462.3453369140625,\n                  631.8984375\n                ],\n                [\n                  462.3453369140625,\n                  641.1120910644531\n                ],\n                [\n                  144.09197998046875,\n                  641.1120910644531\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                631.8984375,\n                462.3453369140625,\n                641.1120910644531\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/25\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Gordon Shephard sent in several corrections, all in separate emails.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  651.9596862792969\n                ],\n                [\n                  420.1763916015625,\n                  651.9596862792969\n                ],\n                [\n                  420.1763916015625,\n                  660.9260864257812\n                ],\n                [\n                  144.09197998046875,\n                  660.9260864257812\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                651.9596862792969,\n                420.1763916015625,\n                660.9260864257812\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/26\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Andrew Turner spotted an error in Chapter 8.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  671.5462036132812\n                ],\n                [\n                  337.3531799316406,\n                  671.5462036132812\n                ],\n                [\n                  337.3531799316406,\n                  680.7400817871094\n                ],\n                [\n                  144.09197998046875,\n                  680.7400817871094\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                671.5462036132812,\n                337.3531799316406,\n                680.7400817871094\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/8/ListItem/27\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Adam Hobart fixed a problem with floor division in arc.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  691.3592071533203\n                ],\n                [\n                  379.51171875,\n                  691.3592071533203\n                ],\n                [\n                  379.51171875,\n                  700.5530853271484\n                ],\n                [\n                  144.09197998046875,\n                  700.5530853271484\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                691.3592071533203,\n                379.51171875,\n                700.5530853271484\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/4/SectionHeader/0\",\n        \"2\": \"/page/6/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/9/Page/150\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/9/PageHeader/0'></content-ref><content-ref src='/page/9/PageHeader/29'></content-ref><content-ref src='/page/9/ListGroup/150'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/9/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.908203125\n            ],\n            [\n              482.607421875,\n              60.908203125\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.908203125,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/9/PageHeader/29\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              62.1650390625\n            ],\n            [\n              92.56201171875,\n              62.1650390625\n            ],\n            [\n              92.56201171875,\n              70.6728515625\n            ],\n            [\n              85.53955078125,\n              70.6728515625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            62.1650390625,\n            92.56201171875,\n            70.6728515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/9/ListGroup/150\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/9/ListItem/1'></content-ref><content-ref src='/page/9/ListItem/2'></content-ref><content-ref src='/page/9/ListItem/3'></content-ref><content-ref src='/page/9/ListItem/4'></content-ref><content-ref src='/page/9/ListItem/5'></content-ref><content-ref src='/page/9/ListItem/6'></content-ref><content-ref src='/page/9/ListItem/7'></content-ref><content-ref src='/page/9/ListItem/8'></content-ref><content-ref src='/page/9/ListItem/9'></content-ref><content-ref src='/page/9/ListItem/10'></content-ref><content-ref src='/page/9/ListItem/11'></content-ref><content-ref src='/page/9/ListItem/12'></content-ref><content-ref src='/page/9/ListItem/13'></content-ref><content-ref src='/page/9/ListItem/14'></content-ref><content-ref src='/page/9/ListItem/15'></content-ref><content-ref src='/page/9/ListItem/16'></content-ref><content-ref src='/page/9/ListItem/17'></content-ref><content-ref src='/page/9/ListItem/18'></content-ref><content-ref src='/page/9/ListItem/19'></content-ref><content-ref src='/page/9/ListItem/20'></content-ref><content-ref src='/page/9/ListItem/21'></content-ref><content-ref src='/page/9/ListItem/22'></content-ref><content-ref src='/page/9/ListItem/23'></content-ref><content-ref src='/page/9/ListItem/24'></content-ref><content-ref src='/page/9/ListItem/25'></content-ref><content-ref src='/page/9/ListItem/26'></content-ref><content-ref src='/page/9/ListItem/27'></content-ref><content-ref src='/page/9/ListItem/28'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              100.48095703125,\n              88.9453125\n            ],\n            [\n              483.802734375,\n              88.9453125\n            ],\n            [\n              483.802734375,\n              700.5530700683594\n            ],\n            [\n              100.48095703125,\n              700.5530700683594\n            ]\n          ],\n          \"bbox\": [\n            100.48095703125,\n            88.9453125,\n            483.802734375,\n            700.5530700683594\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/9/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Daryl Hammond and Sarah Zimmerman pointed out that I served up math.pi too early. And Zim spotted a typo.</li>\",\n              \"polygon\": [\n                [\n                  100.5556640625,\n                  88.9453125\n                ],\n                [\n                  483.50390625,\n                  88.9453125\n                ],\n                [\n                  483.50390625,\n                  109.694091796875\n                ],\n                [\n                  100.5556640625,\n                  109.694091796875\n                ]\n              ],\n              \"bbox\": [\n                100.5556640625,\n                88.9453125,\n                483.50390625,\n                109.694091796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> George Sass found a bug in a Debugging section.</li>\",\n              \"polygon\": [\n                [\n                  100.89197540283203,\n                  119.49609375\n                ],\n                [\n                  305.8505859375,\n                  119.49609375\n                ],\n                [\n                  305.8505859375,\n                  129.50811767578125\n                ],\n                [\n                  100.89197540283203,\n                  129.50811767578125\n                ]\n              ],\n              \"bbox\": [\n                100.89197540283203,\n                119.49609375,\n                305.8505859375,\n                129.50811767578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Brian Bingham suggested Exercise <a href=\\\"#page-132-0\\\">11.10.</a></li>\",\n              \"polygon\": [\n                [\n                  100.77978515625,\n                  139.60546875\n                ],\n                [\n                  272.3653869628906,\n                  139.60546875\n                ],\n                [\n                  272.3653869628906,\n                  149.32110595703125\n                ],\n                [\n                  100.77978515625,\n                  149.32110595703125\n                ]\n              ],\n              \"bbox\": [\n                100.77978515625,\n                139.60546875,\n                272.3653869628906,\n                149.32110595703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Leah Engelbert-Fenton pointed out that I used tuple as a variable name, contrary to my own advice. And then found a bunch of typos and a \\\"use before def.\\\"</li>\",\n              \"polygon\": [\n                [\n                  100.89197540283203,\n                  159.0380859375\n                ],\n                [\n                  483.802734375,\n                  159.0380859375\n                ],\n                [\n                  483.802734375,\n                  180.3131103515625\n                ],\n                [\n                  100.89197540283203,\n                  180.3131103515625\n                ]\n              ],\n              \"bbox\": [\n                100.89197540283203,\n                159.0380859375,\n                483.802734375,\n                180.3131103515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Joe Funke spotted a typo.</li>\",\n              \"polygon\": [\n                [\n                  100.8544921875,\n                  190.3623046875\n                ],\n                [\n                  211.958740234375,\n                  190.3623046875\n                ],\n                [\n                  211.958740234375,\n                  200.12713623046875\n                ],\n                [\n                  100.8544921875,\n                  200.12713623046875\n                ]\n              ],\n              \"bbox\": [\n                100.8544921875,\n                190.3623046875,\n                211.958740234375,\n                200.12713623046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Chao-chao Chen found an inconsistency in the Fibonacci example.</li>\",\n              \"polygon\": [\n                [\n                  100.77978515625,\n                  210.375\n                ],\n                [\n                  374.1328125,\n                  210.375\n                ],\n                [\n                  374.1328125,\n                  219.94012451171875\n                ],\n                [\n                  100.77978515625,\n                  219.94012451171875\n                ]\n              ],\n              \"bbox\": [\n                100.77978515625,\n                210.375,\n                374.1328125,\n                219.94012451171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Jeff Paine knows the difference between space and spam.</li>\",\n              \"polygon\": [\n                [\n                  100.8919448852539,\n                  229.904296875\n                ],\n                [\n                  337.078125,\n                  229.904296875\n                ],\n                [\n                  337.078125,\n                  239.754150390625\n                ],\n                [\n                  100.8919448852539,\n                  239.754150390625\n                ]\n              ],\n              \"bbox\": [\n                100.8919448852539,\n                229.904296875,\n                337.078125,\n                239.754150390625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Lubos Pintes sent in a typo.</li>\",\n              \"polygon\": [\n                [\n                  100.8919448852539,\n                  250.20703125\n                ],\n                [\n                  220.53515625,\n                  250.20703125\n                ],\n                [\n                  220.53515625,\n                  259.56817626953125\n                ],\n                [\n                  100.8919448852539,\n                  259.56817626953125\n                ]\n              ],\n              \"bbox\": [\n                100.8919448852539,\n                250.20703125,\n                220.53515625,\n                259.56817626953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Gregg Lind and Abigail Heithoff suggested Exercise <a href=\\\"#page-160-0\\\">14.4.</a></li>\",\n              \"polygon\": [\n                [\n                  100.48095703125,\n                  270.123046875\n                ],\n                [\n                  338.2734375,\n                  270.123046875\n                ],\n                [\n                  338.2734375,\n                  279.38116455078125\n                ],\n                [\n                  100.48095703125,\n                  279.38116455078125\n                ]\n              ],\n              \"bbox\": [\n                100.48095703125,\n                270.123046875,\n                338.2734375,\n                279.38116455078125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Max Hailperin has sent in a number of corrections and suggestions. Max is one of the authors of the extraordinary <i>Concrete Abstractions</i>, which you might want to read when you are done with this book.</li>\",\n              \"polygon\": [\n                [\n                  100.8919448852539,\n                  290.0390625\n                ],\n                [\n                  483.50390625,\n                  290.0390625\n                ],\n                [\n                  483.50390625,\n                  321.5511779785156\n                ],\n                [\n                  100.8919448852539,\n                  321.5511779785156\n                ]\n              ],\n              \"bbox\": [\n                100.8919448852539,\n                290.0390625,\n                483.50390625,\n                321.5511779785156\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Chotipat Pornavalai found an error in an error message.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  331.998046875\n                ],\n                [\n                  333.4921875,\n                  331.998046875\n                ],\n                [\n                  333.4921875,\n                  341.36517333984375\n                ],\n                [\n                  100.89192962646484,\n                  341.36517333984375\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                331.998046875,\n                333.4921875,\n                341.36517333984375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Stanislaw Antol sent a list of very helpful suggestions.</li>\",\n              \"polygon\": [\n                [\n                  100.705078125,\n                  351.720703125\n                ],\n                [\n                  327.814453125,\n                  351.720703125\n                ],\n                [\n                  327.814453125,\n                  361.1791687011719\n                ],\n                [\n                  100.705078125,\n                  361.1791687011719\n                ]\n              ],\n              \"bbox\": [\n                100.705078125,\n                351.720703125,\n                327.814453125,\n                361.1791687011719\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Eric Pashman sent a number of corrections for Chapters 4–11.</li>\",\n              \"polygon\": [\n                [\n                  100.63037109375,\n                  371.63671875\n                ],\n                [\n                  356.501953125,\n                  371.63671875\n                ],\n                [\n                  356.501953125,\n                  380.9921569824219\n                ],\n                [\n                  100.63037109375,\n                  380.9921569824219\n                ]\n              ],\n              \"bbox\": [\n                100.63037109375,\n                371.63671875,\n                356.501953125,\n                380.9921569824219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Miguel Azevedo found some typos.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  391.166015625\n                ],\n                [\n                  253.27589416503906,\n                  391.166015625\n                ],\n                [\n                  253.27589416503906,\n                  400.80615234375\n                ],\n                [\n                  100.89192962646484,\n                  400.80615234375\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                391.166015625,\n                253.27589416503906,\n                400.80615234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Jianhua Liu sent in a long list of corrections.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  410.30859375\n                ],\n                [\n                  284.9811096191406,\n                  410.30859375\n                ],\n                [\n                  284.9811096191406,\n                  420.6201477050781\n                ],\n                [\n                  100.89192962646484,\n                  420.6201477050781\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                410.30859375,\n                284.9811096191406,\n                420.6201477050781\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Nick King found a missing word.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  430.8046875\n                ],\n                [\n                  243.7445831298828,\n                  430.8046875\n                ],\n                [\n                  243.7445831298828,\n                  440.4331359863281\n                ],\n                [\n                  100.89192962646484,\n                  440.4331359863281\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                430.8046875,\n                243.7445831298828,\n                440.4331359863281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Martin Zuther sent a long list of suggestions.</li>\",\n              \"polygon\": [\n                [\n                  100.8544921875,\n                  450.52734375\n                ],\n                [\n                  289.7138671875,\n                  450.52734375\n                ],\n                [\n                  289.7138671875,\n                  460.24713134765625\n                ],\n                [\n                  100.8544921875,\n                  460.24713134765625\n                ]\n              ],\n              \"bbox\": [\n                100.8544921875,\n                450.52734375,\n                289.7138671875,\n                460.24713134765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Adam Zimmerman found an inconsistency in my instance of an \\\"instance\\\" and several other errors.</li>\",\n              \"polygon\": [\n                [\n                  100.5556640625,\n                  470.63671875\n                ],\n                [\n                  482.90625,\n                  470.63671875\n                ],\n                [\n                  482.90625,\n                  491.2391052246094\n                ],\n                [\n                  100.5556640625,\n                  491.2391052246094\n                ]\n              ],\n              \"bbox\": [\n                100.5556640625,\n                470.63671875,\n                482.90625,\n                491.2391052246094\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/19\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Ratnakar Tiwari suggested a footnote explaining degenerate triangles.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  501.9609375\n                ],\n                [\n                  388.8747863769531,\n                  501.9609375\n                ],\n                [\n                  388.8747863769531,\n                  511.0520935058594\n                ],\n                [\n                  100.89192962646484,\n                  511.0520935058594\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                501.9609375,\n                388.8747863769531,\n                511.0520935058594\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Anurag Goel suggested another solution for is_abecedarian and sent some additional corrections. And he knows how to spell Jane Austen.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  520.91015625\n                ],\n                [\n                  483.50390625,\n                  520.91015625\n                ],\n                [\n                  483.50390625,\n                  542.0440826416016\n                ],\n                [\n                  100.89192962646484,\n                  542.0440826416016\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                520.91015625,\n                483.50390625,\n                542.0440826416016\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/21\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Kelli Kratzer spotted one of the typos.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  552.62109375\n                ],\n                [\n                  262.072265625,\n                  552.62109375\n                ],\n                [\n                  262.072265625,\n                  561.90234375\n                ],\n                [\n                  100.89192962646484,\n                  561.90234375\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                552.62109375,\n                262.072265625,\n                561.90234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/22\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Mark Griffiths pointed out a confusing example in Chapter 3.</li>\",\n              \"polygon\": [\n                [\n                  100.705078125,\n                  572.34375\n                ],\n                [\n                  355.0078125,\n                  572.34375\n                ],\n                [\n                  355.0078125,\n                  581.6710815429688\n                ],\n                [\n                  100.705078125,\n                  581.6710815429688\n                ]\n              ],\n              \"bbox\": [\n                100.705078125,\n                572.34375,\n                355.0078125,\n                581.6710815429688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/23\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Roydan Ongie found an error in my Newton's method.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  592.06640625\n                ],\n                [\n                  330.0372314453125,\n                  592.06640625\n                ],\n                [\n                  330.0372314453125,\n                  601.4850769042969\n                ],\n                [\n                  100.89192962646484,\n                  601.4850769042969\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                592.06640625,\n                330.0372314453125,\n                601.4850769042969\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/24\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Patryk Wolowiec helped me with a problem in the HTML version.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  611.7890625\n                ],\n                [\n                  373.46148681640625,\n                  611.7890625\n                ],\n                [\n                  373.46148681640625,\n                  621.299072265625\n                ],\n                [\n                  100.89192962646484,\n                  621.299072265625\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                611.7890625,\n                373.46148681640625,\n                621.299072265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/25\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Mark Chonofsky told me about a new keyword in Python 3.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  631.125\n                ],\n                [\n                  349.927734375,\n                  631.125\n                ],\n                [\n                  349.927734375,\n                  641.1120758056641\n                ],\n                [\n                  100.89192962646484,\n                  641.1120758056641\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                631.125,\n                349.927734375,\n                641.1120758056641\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/26\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Russell Coleman helped me with my geometry.</li>\",\n              \"polygon\": [\n                [\n                  100.8544921875,\n                  651.62109375\n                ],\n                [\n                  298.75347900390625,\n                  651.62109375\n                ],\n                [\n                  298.75347900390625,\n                  660.9260711669922\n                ],\n                [\n                  100.8544921875,\n                  660.9260711669922\n                ]\n              ],\n              \"bbox\": [\n                100.8544921875,\n                651.62109375,\n                298.75347900390625,\n                660.9260711669922\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/27\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Wei Huang spotted several typographical errors.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  671.34375\n                ],\n                [\n                  304.0975036621094,\n                  671.34375\n                ],\n                [\n                  304.0975036621094,\n                  680.7400665283203\n                ],\n                [\n                  100.89192962646484,\n                  680.7400665283203\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                671.34375,\n                304.0975036621094,\n                680.7400665283203\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/9/ListItem/28\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Karen Barber spotted the the oldest typo in the book.</li>\",\n              \"polygon\": [\n                [\n                  100.89192962646484,\n                  691.453125\n                ],\n                [\n                  320.94140625,\n                  691.453125\n                ],\n                [\n                  320.94140625,\n                  700.5530700683594\n                ],\n                [\n                  100.89192962646484,\n                  700.5530700683594\n                ]\n              ],\n              \"bbox\": [\n                100.89192962646484,\n                691.453125,\n                320.94140625,\n                700.5530700683594\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/4/SectionHeader/0\",\n        \"2\": \"/page/6/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/10/Page/143\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/10/PageHeader/29'></content-ref><content-ref src='/page/10/ListGroup/143'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/10/PageHeader/29\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              516.375,\n              61.171142578125\n            ],\n            [\n              525.599853515625,\n              61.171142578125\n            ],\n            [\n              525.599853515625,\n              71.13372802734375\n            ],\n            [\n              516.375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            516.375,\n            61.171142578125,\n            525.599853515625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/10/ListGroup/143\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/10/ListItem/0'></content-ref><content-ref src='/page/10/ListItem/1'></content-ref><content-ref src='/page/10/ListItem/2'></content-ref><content-ref src='/page/10/ListItem/3'></content-ref><content-ref src='/page/10/ListItem/4'></content-ref><content-ref src='/page/10/ListItem/5'></content-ref><content-ref src='/page/10/ListItem/6'></content-ref><content-ref src='/page/10/ListItem/7'></content-ref><content-ref src='/page/10/ListItem/8'></content-ref><content-ref src='/page/10/ListItem/9'></content-ref><content-ref src='/page/10/ListItem/10'></content-ref><content-ref src='/page/10/ListItem/11'></content-ref><content-ref src='/page/10/ListItem/12'></content-ref><content-ref src='/page/10/ListItem/13'></content-ref><content-ref src='/page/10/ListItem/14'></content-ref><content-ref src='/page/10/ListItem/15'></content-ref><content-ref src='/page/10/ListItem/16'></content-ref><content-ref src='/page/10/ListItem/17'></content-ref><content-ref src='/page/10/ListItem/18'></content-ref><content-ref src='/page/10/ListItem/19'></content-ref><content-ref src='/page/10/ListItem/20'></content-ref><content-ref src='/page/10/ListItem/21'></content-ref><content-ref src='/page/10/ListItem/22'></content-ref><content-ref src='/page/10/ListItem/23'></content-ref><content-ref src='/page/10/ListItem/24'></content-ref><content-ref src='/page/10/ListItem/25'></content-ref><content-ref src='/page/10/ListItem/26'></content-ref><content-ref src='/page/10/ListItem/27'></content-ref><content-ref src='/page/10/ListItem/28'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              143.06396484375,\n              87.93017578125\n            ],\n            [\n              526.53515625,\n              87.93017578125\n            ],\n            [\n              526.53515625,\n              679.8515625\n            ],\n            [\n              143.06396484375,\n              679.8515625\n            ]\n          ],\n          \"bbox\": [\n            143.06396484375,\n            87.93017578125,\n            526.53515625,\n            679.8515625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/10/ListItem/0\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Nam Nguyen found a typo and pointed out that I used the Decorator pattern but didn't mention it by name.</li>\",\n              \"polygon\": [\n                [\n                  143.8857421875,\n                  87.93017578125\n                ],\n                [\n                  525.6031494140625,\n                  87.93017578125\n                ],\n                [\n                  525.6031494140625,\n                  109.694091796875\n                ],\n                [\n                  143.8857421875,\n                  109.694091796875\n                ]\n              ],\n              \"bbox\": [\n                143.8857421875,\n                87.93017578125,\n                525.6031494140625,\n                109.694091796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Stéphane Morin sent in several corrections and suggestions.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  118.529296875\n                ],\n                [\n                  392.0625,\n                  118.529296875\n                ],\n                [\n                  392.0625,\n                  128.84210205078125\n                ],\n                [\n                  144.0919952392578,\n                  128.84210205078125\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                118.529296875,\n                392.0625,\n                128.84210205078125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Paul Stoop corrected a typo in uses_only.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  138.4453125\n                ],\n                [\n                  320.5526123046875,\n                  138.4453125\n                ],\n                [\n                  320.5526123046875,\n                  147.9910888671875\n                ],\n                [\n                  144.0919952392578,\n                  147.9910888671875\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                138.4453125,\n                320.5526123046875,\n                147.9910888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Eric Bronner pointed out a confusion in the discussion of the order of operations.</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  156.9111328125\n                ],\n                [\n                  474.7637939453125,\n                  156.9111328125\n                ],\n                [\n                  474.7637939453125,\n                  167.13909912109375\n                ],\n                [\n                  144.09201049804688,\n                  167.13909912109375\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                156.9111328125,\n                474.7637939453125,\n                167.13909912109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Alexandros Gezerlis set a new standard for the number and quality of suggestions he submitted. We are deeply grateful!</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  176.150390625\n                ],\n                [\n                  525.6033935546875,\n                  176.150390625\n                ],\n                [\n                  525.6033935546875,\n                  197.465087890625\n                ],\n                [\n                  144.09201049804688,\n                  197.465087890625\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                176.150390625,\n                525.6033935546875,\n                197.465087890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Gray Thomas knows his right from his left.</li>\",\n              \"polygon\": [\n                [\n                  143.4375,\n                  206.5078125\n                ],\n                [\n                  326.3203125,\n                  206.5078125\n                ],\n                [\n                  326.3203125,\n                  216.61309814453125\n                ],\n                [\n                  143.4375,\n                  216.61309814453125\n                ]\n              ],\n              \"bbox\": [\n                143.4375,\n                206.5078125,\n                326.3203125,\n                216.61309814453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Giovanni Escobar Sosa sent a long list of corrections and suggestions.</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  226.037109375\n                ],\n                [\n                  429.1171875,\n                  226.037109375\n                ],\n                [\n                  429.1171875,\n                  235.7620849609375\n                ],\n                [\n                  144.09201049804688,\n                  235.7620849609375\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                226.037109375,\n                429.1171875,\n                235.7620849609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Alix Etienne fixed one of the URLs.</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  244.986328125\n                ],\n                [\n                  293.84881591796875,\n                  244.986328125\n                ],\n                [\n                  293.84881591796875,\n                  254.91009521484375\n                ],\n                [\n                  144.09201049804688,\n                  254.91009521484375\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                244.986328125,\n                293.84881591796875,\n                254.91009521484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Kuang He found a typo.</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  264.322265625\n                ],\n                [\n                  250.72938537597656,\n                  264.322265625\n                ],\n                [\n                  250.72938537597656,\n                  274.05810546875\n                ],\n                [\n                  144.09201049804688,\n                  274.05810546875\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                264.322265625,\n                250.72938537597656,\n                274.05810546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Daniel Neilson corrected an error about the order of operations.</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  283.658203125\n                ],\n                [\n                  406.7089538574219,\n                  283.658203125\n                ],\n                [\n                  406.7089538574219,\n                  293.20611572265625\n                ],\n                [\n                  144.09201049804688,\n                  293.20611572265625\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                283.658203125,\n                406.7089538574219,\n                293.20611572265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Will McGinnis pointed out that polyline was defined differently in two places.</li>\",\n              \"polygon\": [\n                [\n                  144.09201049804688,\n                  302.607421875\n                ],\n                [\n                  468.93780517578125,\n                  302.607421875\n                ],\n                [\n                  468.93780517578125,\n                  312.3551025390625\n                ],\n                [\n                  144.09201049804688,\n                  312.3551025390625\n                ]\n              ],\n              \"bbox\": [\n                144.09201049804688,\n                302.607421875,\n                468.93780517578125,\n                312.3551025390625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Swarup Sahoo spotted a missing semi-colon.</li>\",\n              \"polygon\": [\n                [\n                  143.736328125,\n                  322.330078125\n                ],\n                [\n                  331.4269714355469,\n                  322.330078125\n                ],\n                [\n                  331.4269714355469,\n                  331.50311279296875\n                ],\n                [\n                  143.736328125,\n                  331.50311279296875\n                ]\n              ],\n              \"bbox\": [\n                143.736328125,\n                322.330078125,\n                331.4269714355469,\n                331.50311279296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Frank Hecker pointed out an exercise that was under-specified, and some broken links.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  341.0859375\n                ],\n                [\n                  499.07177734375,\n                  341.0859375\n                ],\n                [\n                  499.07177734375,\n                  350.651123046875\n                ],\n                [\n                  144.09197998046875,\n                  350.651123046875\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                341.0859375,\n                499.07177734375,\n                350.651123046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Animesh B helped me clean up a confusing example.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  360.228515625\n                ],\n                [\n                  364.2709045410156,\n                  360.228515625\n                ],\n                [\n                  364.2709045410156,\n                  369.79913330078125\n                ],\n                [\n                  144.09197998046875,\n                  369.79913330078125\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                360.228515625,\n                364.2709045410156,\n                369.79913330078125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Martin Caspersen found two round-off errors.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  379.177734375\n                ],\n                [\n                  337.376953125,\n                  379.177734375\n                ],\n                [\n                  337.376953125,\n                  388.9471435546875\n                ],\n                [\n                  144.09197998046875,\n                  388.9471435546875\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                379.177734375,\n                337.376953125,\n                388.9471435546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Gregor Ulm sent several corrections and suggestions.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  398.3203125\n                ],\n                [\n                  365.765625,\n                  398.3203125\n                ],\n                [\n                  365.765625,\n                  408.09613037109375\n                ],\n                [\n                  144.09197998046875,\n                  408.09613037109375\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                398.3203125,\n                365.765625,\n                408.09613037109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Dimitrios Tsirigkas suggested I clarify an exercise.</li>\",\n              \"polygon\": [\n                [\n                  143.96044921875,\n                  418.04296875\n                ],\n                [\n                  352.72216796875,\n                  418.04296875\n                ],\n                [\n                  352.72216796875,\n                  427.32421875\n                ],\n                [\n                  143.96044921875,\n                  427.32421875\n                ]\n              ],\n              \"bbox\": [\n                143.96044921875,\n                418.04296875,\n                352.72216796875,\n                427.32421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Carlos Tafur sent a page of corrections and suggestions.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  437.37890625\n                ],\n                [\n                  375.92578125,\n                  437.37890625\n                ],\n                [\n                  375.92578125,\n                  446.39215087890625\n                ],\n                [\n                  144.09197998046875,\n                  446.39215087890625\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                437.37890625,\n                375.92578125,\n                446.39215087890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Martin Nordsletten found a bug in an exercise solution.</li>\",\n              \"polygon\": [\n                [\n                  143.96044921875,\n                  455.94140625\n                ],\n                [\n                  374.73046875,\n                  455.94140625\n                ],\n                [\n                  374.73046875,\n                  465.5401611328125\n                ],\n                [\n                  143.96044921875,\n                  465.5401611328125\n                ]\n              ],\n              \"bbox\": [\n                143.96044921875,\n                455.94140625,\n                374.73046875,\n                465.5401611328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/19\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Lars O.D. Christensen found a broken reference.</li>\",\n              \"polygon\": [\n                [\n                  143.36279296875,\n                  475.27734375\n                ],\n                [\n                  345.5759582519531,\n                  475.27734375\n                ],\n                [\n                  345.5759582519531,\n                  484.68914794921875\n                ],\n                [\n                  143.36279296875,\n                  484.68914794921875\n                ]\n              ],\n              \"bbox\": [\n                143.36279296875,\n                475.27734375,\n                345.5759582519531,\n                484.68914794921875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Victor Simeone found a typo.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  494.2265625\n                ],\n                [\n                  270.2402648925781,\n                  494.2265625\n                ],\n                [\n                  270.2402648925781,\n                  503.837158203125\n                ],\n                [\n                  144.09197998046875,\n                  503.837158203125\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                494.2265625,\n                270.2402648925781,\n                503.837158203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/21\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Sven Hoexter pointed out that a variable named input shadows a built-in function.</li>\",\n              \"polygon\": [\n                [\n                  144.09197998046875,\n                  513.5625\n                ],\n                [\n                  484.2014465332031,\n                  513.5625\n                ],\n                [\n                  484.2014465332031,\n                  522.9851684570312\n                ],\n                [\n                  144.09197998046875,\n                  522.9851684570312\n                ]\n              ],\n              \"bbox\": [\n                144.09197998046875,\n                513.5625,\n                484.2014465332031,\n                522.9851684570312\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/22\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Viet Le found a typo.</li>\",\n              \"polygon\": [\n                [\n                  144.09202575683594,\n                  532.51171875\n                ],\n                [\n                  238.0166015625,\n                  532.51171875\n                ],\n                [\n                  238.0166015625,\n                  542.1331634521484\n                ],\n                [\n                  144.09202575683594,\n                  542.1331634521484\n                ]\n              ],\n              \"bbox\": [\n                144.09202575683594,\n                532.51171875,\n                238.0166015625,\n                542.1331634521484\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/23\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Stephen Gregory pointed out the problem with cmp in Python 3.</li>\",\n              \"polygon\": [\n                [\n                  143.66162109375,\n                  551.84765625\n                ],\n                [\n                  407.3612976074219,\n                  551.84765625\n                ],\n                [\n                  407.3612976074219,\n                  561.2821655273438\n                ],\n                [\n                  143.66162109375,\n                  561.2821655273438\n                ]\n              ],\n              \"bbox\": [\n                143.66162109375,\n                551.84765625,\n                407.3612976074219,\n                561.2821655273438\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/24\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Matthew Shultz let me know about a broken link.</li>\",\n              \"polygon\": [\n                [\n                  143.06396484375,\n                  571.18359375\n                ],\n                [\n                  350.74957275390625,\n                  571.18359375\n                ],\n                [\n                  350.74957275390625,\n                  580.46484375\n                ],\n                [\n                  143.06396484375,\n                  580.46484375\n                ]\n              ],\n              \"bbox\": [\n                143.06396484375,\n                571.18359375,\n                350.74957275390625,\n                580.46484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/25\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Lokesh Kumar Makani let me know about some broken links and some changes in error messages.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  590.1328125\n                ],\n                [\n                  526.53515625,\n                  590.1328125\n                ],\n                [\n                  526.53515625,\n                  611.015625\n                ],\n                [\n                  144.0919952392578,\n                  611.015625\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                590.1328125,\n                526.53515625,\n                611.015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/26\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Ishwar Bhat corrected my statement of Fermat's last theorem.</li>\",\n              \"polygon\": [\n                [\n                  143.96044921875,\n                  620.68359375\n                ],\n                [\n                  397.84112548828125,\n                  620.68359375\n                ],\n                [\n                  397.84112548828125,\n                  629.9041442871094\n                ],\n                [\n                  143.96044921875,\n                  629.9041442871094\n                ]\n              ],\n              \"bbox\": [\n                143.96044921875,\n                620.68359375,\n                397.84112548828125,\n                629.9041442871094\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/27\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Brian McGhie suggested a clarification.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  639.6328125\n                ],\n                [\n                  309.6834716796875,\n                  639.6328125\n                ],\n                [\n                  309.6834716796875,\n                  649.0531463623047\n                ],\n                [\n                  144.0919952392578,\n                  649.0531463623047\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                639.6328125,\n                309.6834716796875,\n                649.0531463623047\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/10/ListItem/28\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Andrea Zanella translated the book into Italian, and sent a number of corrections along the way.</li>\",\n              \"polygon\": [\n                [\n                  144.0919952392578,\n                  658.96875\n                ],\n                [\n                  526.53515625,\n                  658.96875\n                ],\n                [\n                  526.53515625,\n                  679.8515625\n                ],\n                [\n                  144.0919952392578,\n                  679.8515625\n                ]\n              ],\n              \"bbox\": [\n                144.0919952392578,\n                658.96875,\n                526.53515625,\n                679.8515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/4/SectionHeader/0\",\n                \"2\": \"/page/6/SectionHeader/0\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/4/SectionHeader/0\",\n        \"2\": \"/page/6/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/11/Page/3\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/11/PageHeader/0'></content-ref><content-ref src='/page/11/PageHeader/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/11/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.2314453125\n            ],\n            [\n              482.40338134765625,\n              60.2314453125\n            ],\n            [\n              482.40338134765625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.2314453125,\n            482.40338134765625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/11/PageHeader/1\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              60.76318359375\n            ],\n            [\n              97.716796875,\n              60.76318359375\n            ],\n            [\n              97.716796875,\n              70.72119140625\n            ],\n            [\n              85.3154296875,\n              70.72119140625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            60.76318359375,\n            97.716796875,\n            70.72119140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/4/SectionHeader/0\",\n            \"2\": \"/page/6/SectionHeader/0\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/4/SectionHeader/0\",\n        \"2\": \"/page/6/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/12/Page/388\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/12/SectionHeader/0'></content-ref><content-ref src='/page/12/TableOfContents/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/12/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Contents</b></h1>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              165.40826416015625\n            ],\n            [\n              231.47499084472656,\n              165.40826416015625\n            ],\n            [\n              231.47499084472656,\n              190.1953125\n            ],\n            [\n              128.197265625,\n              190.1953125\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            165.40826416015625,\n            231.47499084472656,\n            190.1953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/12/TableOfContents/1\",\n          \"block_type\": \"TableOfContents\",\n          \"html\": \"<table><tbody><tr><th></th><th colspan=4>Preface</th></tr><tr><th>1</th><th></th><th>The way of the program</th><th>1</th></tr><tr><td></td><td>1.1</td><td>The Python programming language</td><td>1</td></tr><tr><td></td><td>1.2</td><td>What is a program?</td><td>3</td></tr><tr><td></td><td>1.3</td><td>What is debugging?</td><td>3</td></tr><tr><td></td><td>1.4</td><td>Formal and natural languages</td><td>5</td></tr><tr><td></td><td>1.5</td><td>The first program</td><td>6</td></tr><tr><td></td><td>1.6</td><td>Debugging</td><td>7</td></tr><tr><td></td><td>1.7</td><td>Glossary</td><td>7</td></tr><tr><td></td><td>1.8</td><td>Exercises</td><td>9</td></tr><tr><th>2</th><th colspan=4>Variables, expressions and statements</th></tr><tr><td></td><td>2.1</td><td>Values and types</td><td>11</td></tr><tr><td></td><td>2.2</td><td>Variables</td><td>12</td></tr><tr><td></td><td>2.3</td><td>Variable names and keywords</td><td>12</td></tr><tr><td></td><td>2.4</td><td>Operators and operands</td><td>13</td></tr><tr><td></td><td>2.5</td><td>Expressions and statements</td><td>14</td></tr><tr><td></td><td>2.6</td><td>Interactive mode and script mode</td><td>14</td></tr><tr><td></td><td>2.7</td><td>Order of operations</td><td>15</td></tr><tr><td></td><td>2.8</td><td>String operations</td><td>15</td></tr><tr><td></td><td>2.9</td><td>Comments</td><td>16</td></tr><tr><td></td><td>2.10</td><td>Debugging</td><td>16</td></tr><tr><td></td><td>2.11</td><td>Glossary</td><td>17</td></tr><tr><td></td><td>2.12</td><td>Exercises</td><td>18</td></tr><tr><th>3</th><th>Functions</th><th></th><th>19</th></tr><tr><td></td><td>3.1</td><td>Function calls</td><td>19</td></tr><tr><td></td><td>3.2</td><td>Type conversion functions</td><td>19</td></tr><tr><td></td><td>3.3</td><td>Math functions</td><td>20</td></tr><tr><td></td><td>3.4</td><td>Composition</td><td>21</td></tr><tr><td></td><td>3.5</td><td>Adding new functions</td><td>21</td></tr><tr><td></td><td>3.6</td><td>Definitions and uses</td><td>22</td></tr><tr><td></td><td>3.7</td><td>Flow of execution</td><td>23</td></tr><tr><td></td><td>3.8</td><td>Parameters and arguments</td><td>23</td></tr><tr><td></td><td>3.9</td><td>Variables and parameters are local</td><td>24</td></tr><tr><td></td><td>3.10</td><td>Stack diagrams</td><td>25</td></tr><tr><td></td><td>3.11</td><td>Fruitful functions and void functions</td><td>26</td></tr><tr><td></td><td>3.12</td><td>Why functions?</td><td>26</td></tr><tr><td></td><td>3.13</td><td>Importing with from</td><td>27</td></tr><tr><td></td><td>3.14</td><td>Debugging</td><td>27</td></tr><tr><td></td><td>3.15</td><td>Glossary</td><td>28</td></tr><tr><td></td><td>3.16</td><td>Exercises</td><td>29</td></tr><tr><th>4</th><th>Case study: interface design</th><th></th><th>31</th></tr><tr><td></td><td>4.1</td><td>TurtleWorld</td><td>31</td></tr><tr><td></td><td>4.2</td><td>Simple repetition</td><td>32</td></tr><tr><td></td><td>4.3</td><td>Exercises</td><td>33</td></tr><tr><td></td><td>4.4</td><td>Encapsulation</td><td>34</td></tr><tr><td></td><td>4.5</td><td>Generalization</td><td>34</td></tr><tr><td></td><td>4.6</td><td>Interface design</td><td>35</td></tr><tr><td></td><td>4.7</td><td>Refactoring</td><td>36</td></tr><tr><td></td><td>4.8</td><td>A development plan</td><td>37</td></tr><tr><td></td><td>4.9</td><td>docstring</td><td>37</td></tr><tr><td></td><td>4.10</td><td>Debugging</td><td>38</td></tr><tr><td></td><td>4.11</td><td>Glossary</td><td>38</td></tr><tr><td></td><td>4.12</td><td>Exercises</td><td>39</td></tr><tr><th>5</th><th></th><th>Conditionals and recursion</th><th>41</th></tr><tr><td></td><td>5.1</td><td>Modulus operator</td><td>41</td></tr><tr><td></td><td>5.2</td><td>Boolean expressions</td><td>41</td></tr><tr><td></td><td>5.3</td><td>Logical operators</td><td>42</td></tr><tr><td></td><td>5.4</td><td>Conditional execution</td><td>42</td></tr><tr><td></td><td>5.5</td><td>Alternative execution</td><td>43</td></tr><tr><td></td><td>5.6</td><td>Chained conditionals</td><td>43</td></tr><tr><td></td><td>5.7</td><td>Nested conditionals</td><td>43</td></tr><tr><td></td><td>5.8</td><td>Recursion</td><td>44</td></tr><tr><td></td><td>5.9</td><td>Stack diagrams for recursive functions</td><td>45</td></tr><tr><td></td><td>5.10</td><td>Infinite recursion</td><td>46</td></tr><tr><td></td><td>5.11</td><td>Keyboard input</td><td>46</td></tr><tr><td></td><td>5.12</td><td>Debugging</td><td>47</td></tr><tr><td></td><td>5.13</td><td>Glossary</td><td>48</td></tr><tr><td></td><td>5.14</td><td>Exercises</td><td>49</td></tr><tr><th>6</th><th></th><th>Fruitful functions</th><th>51</th></tr><tr><td></td><td>6.1</td><td>Return values</td><td>51</td></tr><tr><td></td><td>6.2</td><td>Incremental development</td><td>52</td></tr><tr><td></td><td>6.3</td><td>Composition</td><td>54</td></tr><tr><td></td><td>6.4</td><td>Boolean functions</td><td>54</td></tr><tr><td></td><td>6.5</td><td>More recursion</td><td>55</td></tr><tr><td></td><td>6.6</td><td>Leap of faith</td><td>57</td></tr><tr><td></td><td>6.7</td><td>One more example</td><td>57</td></tr><tr><td></td><td>6.8</td><td>Checking types</td><td>58</td></tr><tr><td></td><td>6.9</td><td>Debugging</td><td>59</td></tr><tr><td></td><td>6.10</td><td>Glossary</td><td>60</td></tr><tr><th>7</th><th>Iteration</th><th></th><th>6</th></tr><tr><td></td><td>7.1</td><td>Multiple assignment</td><td>6</td></tr><tr><td></td><td>7.2</td><td>Updating variables</td><td>6</td></tr><tr><td></td><td>7.3</td><td>The while statement</td><td>6</td></tr><tr><td></td><td>7.4</td><td>break</td><td>6</td></tr><tr><td></td><td>7.5</td><td>Square roots</td><td>6</td></tr><tr><td></td><td>7.6</td><td>Algorithms</td><td>6</td></tr><tr><td></td><td>7.7</td><td>Debugging</td><td>6</td></tr><tr><td></td><td>7.8</td><td>Glossary</td><td>6</td></tr><tr><td></td><td>7.9</td><td>Exercises</td><td>6</td></tr><tr><th>8</th><th>Strings</th><th></th><th>7</th></tr><tr><td></td><td>8.1</td><td>A string is a sequence</td><td>7</td></tr><tr><td></td><td>8.2</td><td>len</td><td>7</td></tr><tr><td></td><td>8.3</td><td>Traversal with a for loop</td><td>7</td></tr><tr><td></td><td>8.4</td><td>String slices</td><td>7</td></tr><tr><td></td><td>8.5</td><td>Strings are immutable</td><td>7</td></tr><tr><td></td><td>8.6</td><td>Searching</td><td>7</td></tr><tr><td></td><td>8.7</td><td>Looping and counting</td><td>7</td></tr><tr><td></td><td>8.8</td><td>String methods</td><td>7</td></tr><tr><td></td><td>8.9</td><td>The in operator</td><td>7</td></tr><tr><td></td><td>8.10</td><td>String comparison</td><td>7</td></tr><tr><td></td><td>8.11</td><td>Debugging</td><td>7</td></tr><tr><td></td><td>8.12</td><td>Glossary</td><td>7</td></tr><tr><td></td><td>8.13</td><td>Exercises</td><td>7</td></tr><tr><th>9</th><td colspan=2>Case study: word play</td><th>8</th></tr><tr><td></td><td>9.1</td><td>Reading word lists</td><td>8</td></tr><tr><td></td><td>9.2</td><td>Exercises</td><td>8</td></tr><tr><td></td><td>9.3</td><td>Search</td><td>8</td></tr><tr><td></td><td>9.4</td><td>Looping with indices</td><td>8</td></tr><tr><td></td><td>9.5</td><td>Debugging</td><td>8</td></tr><tr><td></td><td>9.6</td><td>Glossary</td><td>8</td></tr><tr><td></td><td>9.7</td><td>Exercises</td><td>8</td></tr><tr><th></th><th>10 Lists</th><th></th><th>87</th></tr><tr><td></td><td>10.1</td><td>A list is a sequence</td><td>87</td></tr><tr><td></td><td>10.2</td><td>Lists are mutable</td><td>87</td></tr><tr><td></td><td>10.3</td><td>Traversing a list</td><td>89</td></tr><tr><td></td><td>10.4</td><td>List operations</td><td>89</td></tr><tr><td></td><td>10.5</td><td>List slices</td><td>89</td></tr><tr><td></td><td>10.6</td><td>List methods</td><td>90</td></tr><tr><td></td><td>10.7</td><td>Map, filter and reduce</td><td>91</td></tr><tr><td></td><td>10.8</td><td>Deleting elements</td><td>92</td></tr><tr><td></td><td>10.9</td><td>Lists and strings</td><td>93</td></tr><tr><td></td><td>10.10</td><td>Objects and values</td><td>93</td></tr><tr><td></td><td>10.11</td><td>Aliasing</td><td>94</td></tr><tr><td></td><td>10.12</td><td>List arguments</td><td>95</td></tr><tr><td></td><td>10.13</td><td>Debugging</td><td>96</td></tr><tr><td></td><td>10.14</td><td>Glossary</td><td>97</td></tr><tr><td></td><td>10.15</td><td>Exercises</td><td>98</td></tr><tr><th></th><th></th><th></th><th></th></tr><tr><th></th><th></th><th>11 Dictionaries</th><th>101</th></tr><tr><td></td><td>11.1</td><td>Dictionary as a set of counters</td><td>102</td></tr><tr><td></td><td>11.2</td><td>Looping and dictionaries</td><td>103</td></tr><tr><td></td><td>11.3</td><td>Reverse lookup</td><td>104</td></tr><tr><td></td><td>11.4</td><td>Dictionaries and lists</td><td>105</td></tr><tr><td></td><td>11.5</td><td>Memos</td><td>106</td></tr><tr><td></td><td>11.6</td><td>Global variables</td><td>108</td></tr><tr><td></td><td>11.7</td><td>Long integers</td><td>109</td></tr><tr><td></td><td>11.8</td><td>Debugging</td><td>109</td></tr><tr><td></td><td>11.9</td><td>Glossary</td><td>110</td></tr><tr><td></td><td>11.10</td><td>Exercises</td><td>111</td></tr><tr><th></th><th>12 Tuples</th><th></th><th>113</th></tr><tr><td></td><td>12.1</td><td>Tuples are immutable</td><td>113</td></tr><tr><td></td><td>12.2</td><td>Tuple assignment</td><td>114</td></tr><tr><td></td><td>12.3</td><td>Tuples as return values</td><td>115</td></tr><tr><td></td><td>12.4</td><td>Variable-length argument tuples</td><td>115</td></tr><tr><td></td><td>12.5</td><td>Lists and tuples</td><td>116</td></tr><tr><td></td><td>12.6</td><td>Dictionaries and tuples</td><td>117</td></tr><tr><td></td><td>12.7</td><td>Comparing tuples</td><td>118</td></tr><tr><td></td><td>12.8</td><td>Sequences of sequences</td><td>119</td></tr><tr><td></td><td>12.9</td><td>Debugging</td><td>120</td></tr><tr><td></td><td>12.10</td><td>Glossary</td><td>121</td></tr><tr><td></td><td>12.11</td><td>Exercises</td><td>121</td></tr><tr><th></th><th></th><th>13 Case study: data structure selection</th><th>123</th></tr><tr><td></td><td>13.1</td><td>Word frequency analysis</td><td>123</td></tr><tr><td></td><td>13.2</td><td>Random numbers</td><td>124</td></tr><tr><td></td><td>13.3</td><td>Word histogram</td><td>125</td></tr><tr><td></td><td>13.4</td><td>Most common words</td><td>126</td></tr><tr><td></td><td>13.5</td><td>Optional parameters</td><td>126</td></tr><tr><td></td><td>13.6</td><td>Dictionary subtraction</td><td>127</td></tr><tr><td></td><td>13.7</td><td>Random words</td><td>127</td></tr><tr><td></td><td>13.8</td><td>Markov analysis</td><td>128</td></tr><tr><td></td><td>13.9</td><td>Data structures</td><td>129</td></tr><tr><td></td><td>13.10</td><td>Debugging</td><td>131</td></tr><tr><td></td><td>13.11</td><td>Glossary</td><td>132</td></tr><tr><td></td><td>13.12</td><td>Exercises</td><td>132</td></tr><tr><td></td><td></td><td></td><td></td></tr><tr><td></td><td>14 Files</td><td></td><td>133</td></tr><tr><td></td><td>14.1</td><td>Persistence</td><td>133</td></tr><tr><td></td><td>14.2</td><td>Reading and writing</td><td>133</td></tr><tr><td></td><td>14.3</td><td>Format operator</td><td>134</td></tr><tr><td></td><td>14.4</td><td>Filenames and paths</td><td>135</td></tr><tr><th></th><th></th><th></th><th></th></tr><tr><td></td><td>14.5</td><td>Catching exceptions</td><td>136</td></tr><tr><td></td><td>14.6</td><td>Databases</td><td>137</td></tr><tr><td></td><td>14.7</td><td>Pickling</td><td>137</td></tr><tr><td></td><td>14.8</td><td>Pipes</td><td>138</td></tr><tr><td></td><td>14.9</td><td>Writing modules</td><td>139</td></tr><tr><td></td><td>14.10</td><td>Debugging</td><td>140</td></tr><tr><td></td><td>14.11</td><td>Glossary</td><td>141</td></tr><tr><td></td><td>14.12</td><td>Exercises</td><td>141</td></tr><tr><th>15</th><th colspan=3>Classes and objects</th></tr><tr><td></td><td>15.1</td><td>User-defined types</td><td>143</td></tr><tr><td></td><td>15.2</td><td>Attributes</td><td>144</td></tr><tr><td></td><td>15.3</td><td>Rectangles</td><td>145</td></tr><tr><td></td><td>15.4</td><td>Instances as return values</td><td>146</td></tr><tr><td></td><td>15.5</td><td>Objects are mutable</td><td>146</td></tr><tr><td></td><td>15.6</td><td>Copying</td><td>147</td></tr><tr><td></td><td>15.7</td><td>Debugging</td><td>148</td></tr><tr><td></td><td>15.8</td><td>Glossary</td><td>149</td></tr><tr><td></td><td>15.9</td><td>Exercises</td><td>149</td></tr><tr><th>16</th><th colspan=3>Classes and functions</th></tr><tr><td></td><td>16.1</td><td>Time</td><td>151</td></tr><tr><td></td><td>16.2</td><td>Pure functions</td><td>151</td></tr><tr><td></td><td>16.3</td><td>Modifiers</td><td>153</td></tr><tr><td></td><td>16.4</td><td>Prototyping versus planning</td><td>154</td></tr><tr><td></td><td>16.5</td><td>Debugging</td><td>155</td></tr><tr><td></td><td>16.6</td><td>Glossary</td><td>155</td></tr><tr><td></td><td>16.7</td><td>Exercises</td><td>156</td></tr><tr><th></th><th></th><th>17 Classes and methods</th><th>157</th></tr><tr><td></td><td>17.1</td><td>Object-oriented features</td><td>157</td></tr><tr><td></td><td>17.2</td><td>Printing objects</td><td>158</td></tr><tr><td></td><td>17.3</td><td>Another example</td><td>159</td></tr><tr><td></td><td>17.4</td><td>A more complicated example</td><td>160</td></tr><tr><td></td><td>17.5</td><td>The init method</td><td>160</td></tr><tr><td></td><td>17.6</td><td>The __str__ method</td><td>161</td></tr><tr><td></td><td>17.7</td><td>Operator overloading</td><td>161</td></tr><tr><td></td><td>17.8</td><td>Type-based dispatch</td><td>162</td></tr><tr><td></td><td>17.9</td><td>Polymorphism</td><td>163</td></tr><tr><td></td><td>17.10</td><td>Debugging</td><td>164</td></tr><tr><td></td><td>17.11</td><td>Interface and implementation</td><td>164</td></tr><tr><td></td><td>17.12</td><td>Glossary</td><td>165</td></tr><tr><td></td><td>17.13</td><td>Exercises</td><td>165</td></tr><tr><th></th><th></th><th>18 Inheritance</th><th>167</th></tr><tr><td></td><td>18.1</td><td>Card objects</td><td>167</td></tr><tr><td></td><td>18.2</td><td>Class attributes</td><td>168</td></tr><tr><td></td><td>18.3</td><td>Comparing cards</td><td>169</td></tr><tr><td></td><td>18.4</td><td>Decks</td><td>170</td></tr><tr><td></td><td>18.5</td><td>Printing the deck</td><td>171</td></tr><tr><td></td><td>18.6</td><td>Add, remove, shuffle and sort</td><td>171</td></tr><tr><td></td><td>18.7</td><td>Inheritance</td><td>172</td></tr><tr><td></td><td>18.8</td><td>Class diagrams</td><td>173</td></tr><tr><td></td><td>18.9</td><td>Debugging</td><td>174</td></tr><tr><td></td><td>18.10</td><td>Data encapsulation</td><td>175</td></tr><tr><td></td><td>18.11</td><td>Glossary</td><td>176</td></tr><tr><th></th><th></th><th>19 Case study: Tkinter</th><th>179</th></tr><tr><td></td><td>19.1</td><td>GUI</td><td>179</td></tr><tr><td></td><td>19.2</td><td>Buttons and callbacks</td><td>180</td></tr><tr><td></td><td>19.3</td><td>Canvas widgets</td><td>181</td></tr><tr><td></td><td>19.4</td><td>Coordinate sequences</td><td>182</td></tr><tr><td></td><td>19.5</td><td>More widgets</td><td>182</td></tr><tr><td></td><td>19.6</td><td>Packing widgets</td><td>183</td></tr><tr><td></td><td>19.7</td><td>Menus and Callables</td><td>185</td></tr><tr><td></td><td>19.8</td><td>Binding</td><td>186</td></tr><tr><td></td><td>19.9</td><td>Debugging</td><td>188</td></tr><tr><td></td><td>19.10</td><td>Glossary</td><td>189</td></tr><tr><td></td><td>19.11</td><td>Exercises</td><td>190</td></tr><tr><th>A</th><th>Debugging</th><th></th><th>193</th></tr><tr><td></td><td>A.1</td><td>Syntax errors</td><td>193</td></tr><tr><td></td><td>A.2</td><td>Runtime errors</td><td>195</td></tr><tr><td></td><td>A.3</td><td>Semantic errors</td><td>198</td></tr><tr><th>B</th><th>Analysis of Algorithms</th><th></th><th>201</th></tr><tr><td></td><td>B.1</td><td>Order of growth</td><td>202</td></tr><tr><td></td><td>B.2</td><td>Analysis of basic Python operations</td><td>204</td></tr><tr><td></td><td>B.3</td><td>Analysis of search algorithms</td><td>205</td></tr><tr><td></td><td>B.4</td><td>Hashtables</td><td>206</td></tr><tr><th>C</th><th>Lumpy</th><th></th><th>211</th></tr><tr><td></td><td>C.1</td><td>State diagram</td><td>211</td></tr><tr><td></td><td>C.2</td><td>Stack diagram</td><td>212</td></tr><tr><td></td><td>C.3</td><td>Object diagrams</td><td>213</td></tr><tr><td></td><td>C.4</td><td>Function and class objects</td><td>215</td></tr><tr><td></td><td>C.5</td><td>Class Diagrams</td><td>216</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              239.765625\n            ],\n            [\n              527.73046875,\n              239.765625\n            ],\n            [\n              527.73046875,\n              700.8348770141602\n            ],\n            [\n              128.0478515625,\n              700.8348770141602\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            239.765625,\n            527.73046875,\n            700.8348770141602\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/12/TableCell/301\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  239.765625\n                ],\n                [\n                  129.0478515625,\n                  239.765625\n                ],\n                [\n                  129.0478515625,\n                  240.765625\n                ],\n                [\n                  128.0478515625,\n                  240.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                239.765625,\n                129.0478515625,\n                240.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/302\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th colspan=\\\"4\\\">Preface</th>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  239.765625\n                ],\n                [\n                  133.0478515625,\n                  239.765625\n                ],\n                [\n                  133.0478515625,\n                  240.765625\n                ],\n                [\n                  129.0478515625,\n                  240.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                239.765625,\n                133.0478515625,\n                240.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/303\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>1</th>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  240.765625\n                ],\n                [\n                  129.0478515625,\n                  240.765625\n                ],\n                [\n                  129.0478515625,\n                  241.765625\n                ],\n                [\n                  128.0478515625,\n                  241.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                240.765625,\n                129.0478515625,\n                241.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/304\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  240.765625\n                ],\n                [\n                  130.0478515625,\n                  240.765625\n                ],\n                [\n                  130.0478515625,\n                  241.765625\n                ],\n                [\n                  129.0478515625,\n                  241.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                240.765625,\n                130.0478515625,\n                241.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/305\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>The way of the program</th>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  240.765625\n                ],\n                [\n                  131.0478515625,\n                  240.765625\n                ],\n                [\n                  131.0478515625,\n                  241.765625\n                ],\n                [\n                  130.0478515625,\n                  241.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                240.765625,\n                131.0478515625,\n                241.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/306\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>1</th>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  240.765625\n                ],\n                [\n                  132.0478515625,\n                  240.765625\n                ],\n                [\n                  132.0478515625,\n                  241.765625\n                ],\n                [\n                  131.0478515625,\n                  241.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                240.765625,\n                132.0478515625,\n                241.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/307\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  241.765625\n                ],\n                [\n                  129.0478515625,\n                  241.765625\n                ],\n                [\n                  129.0478515625,\n                  242.765625\n                ],\n                [\n                  128.0478515625,\n                  242.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                241.765625,\n                129.0478515625,\n                242.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/308\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.1</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  241.765625\n                ],\n                [\n                  130.0478515625,\n                  241.765625\n                ],\n                [\n                  130.0478515625,\n                  242.765625\n                ],\n                [\n                  129.0478515625,\n                  242.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                241.765625,\n                130.0478515625,\n                242.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/309\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>The Python programming language</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  241.765625\n                ],\n                [\n                  131.0478515625,\n                  241.765625\n                ],\n                [\n                  131.0478515625,\n                  242.765625\n                ],\n                [\n                  130.0478515625,\n                  242.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                241.765625,\n                131.0478515625,\n                242.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/310\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  241.765625\n                ],\n                [\n                  132.0478515625,\n                  241.765625\n                ],\n                [\n                  132.0478515625,\n                  242.765625\n                ],\n                [\n                  131.0478515625,\n                  242.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                241.765625,\n                132.0478515625,\n                242.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/311\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  242.765625\n                ],\n                [\n                  129.0478515625,\n                  242.765625\n                ],\n                [\n                  129.0478515625,\n                  243.765625\n                ],\n                [\n                  128.0478515625,\n                  243.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                242.765625,\n                129.0478515625,\n                243.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/312\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.2</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  242.765625\n                ],\n                [\n                  130.0478515625,\n                  242.765625\n                ],\n                [\n                  130.0478515625,\n                  243.765625\n                ],\n                [\n                  129.0478515625,\n                  243.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                242.765625,\n                130.0478515625,\n                243.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/313\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>What is a program?</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  242.765625\n                ],\n                [\n                  131.0478515625,\n                  242.765625\n                ],\n                [\n                  131.0478515625,\n                  243.765625\n                ],\n                [\n                  130.0478515625,\n                  243.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                242.765625,\n                131.0478515625,\n                243.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/314\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  242.765625\n                ],\n                [\n                  132.0478515625,\n                  242.765625\n                ],\n                [\n                  132.0478515625,\n                  243.765625\n                ],\n                [\n                  131.0478515625,\n                  243.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                242.765625,\n                132.0478515625,\n                243.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/315\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  243.765625\n                ],\n                [\n                  129.0478515625,\n                  243.765625\n                ],\n                [\n                  129.0478515625,\n                  244.765625\n                ],\n                [\n                  128.0478515625,\n                  244.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                243.765625,\n                129.0478515625,\n                244.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/316\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.3</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  243.765625\n                ],\n                [\n                  130.0478515625,\n                  243.765625\n                ],\n                [\n                  130.0478515625,\n                  244.765625\n                ],\n                [\n                  129.0478515625,\n                  244.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                243.765625,\n                130.0478515625,\n                244.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/317\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>What is debugging?</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  243.765625\n                ],\n                [\n                  131.0478515625,\n                  243.765625\n                ],\n                [\n                  131.0478515625,\n                  244.765625\n                ],\n                [\n                  130.0478515625,\n                  244.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                243.765625,\n                131.0478515625,\n                244.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/318\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  243.765625\n                ],\n                [\n                  132.0478515625,\n                  243.765625\n                ],\n                [\n                  132.0478515625,\n                  244.765625\n                ],\n                [\n                  131.0478515625,\n                  244.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                243.765625,\n                132.0478515625,\n                244.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/319\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  244.765625\n                ],\n                [\n                  129.0478515625,\n                  244.765625\n                ],\n                [\n                  129.0478515625,\n                  245.765625\n                ],\n                [\n                  128.0478515625,\n                  245.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                244.765625,\n                129.0478515625,\n                245.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/320\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.4</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  244.765625\n                ],\n                [\n                  130.0478515625,\n                  244.765625\n                ],\n                [\n                  130.0478515625,\n                  245.765625\n                ],\n                [\n                  129.0478515625,\n                  245.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                244.765625,\n                130.0478515625,\n                245.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/321\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Formal and natural languages</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  244.765625\n                ],\n                [\n                  131.0478515625,\n                  244.765625\n                ],\n                [\n                  131.0478515625,\n                  245.765625\n                ],\n                [\n                  130.0478515625,\n                  245.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                244.765625,\n                131.0478515625,\n                245.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/322\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  244.765625\n                ],\n                [\n                  132.0478515625,\n                  244.765625\n                ],\n                [\n                  132.0478515625,\n                  245.765625\n                ],\n                [\n                  131.0478515625,\n                  245.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                244.765625,\n                132.0478515625,\n                245.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/323\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  245.765625\n                ],\n                [\n                  129.0478515625,\n                  245.765625\n                ],\n                [\n                  129.0478515625,\n                  246.765625\n                ],\n                [\n                  128.0478515625,\n                  246.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                245.765625,\n                129.0478515625,\n                246.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/324\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.5</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  245.765625\n                ],\n                [\n                  130.0478515625,\n                  245.765625\n                ],\n                [\n                  130.0478515625,\n                  246.765625\n                ],\n                [\n                  129.0478515625,\n                  246.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                245.765625,\n                130.0478515625,\n                246.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/325\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>The first program</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  245.765625\n                ],\n                [\n                  131.0478515625,\n                  245.765625\n                ],\n                [\n                  131.0478515625,\n                  246.765625\n                ],\n                [\n                  130.0478515625,\n                  246.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                245.765625,\n                131.0478515625,\n                246.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/326\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  245.765625\n                ],\n                [\n                  132.0478515625,\n                  245.765625\n                ],\n                [\n                  132.0478515625,\n                  246.765625\n                ],\n                [\n                  131.0478515625,\n                  246.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                245.765625,\n                132.0478515625,\n                246.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/327\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  246.765625\n                ],\n                [\n                  129.0478515625,\n                  246.765625\n                ],\n                [\n                  129.0478515625,\n                  247.765625\n                ],\n                [\n                  128.0478515625,\n                  247.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                246.765625,\n                129.0478515625,\n                247.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/328\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.6</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  246.765625\n                ],\n                [\n                  130.0478515625,\n                  246.765625\n                ],\n                [\n                  130.0478515625,\n                  247.765625\n                ],\n                [\n                  129.0478515625,\n                  247.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                246.765625,\n                130.0478515625,\n                247.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/329\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  246.765625\n                ],\n                [\n                  131.0478515625,\n                  246.765625\n                ],\n                [\n                  131.0478515625,\n                  247.765625\n                ],\n                [\n                  130.0478515625,\n                  247.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                246.765625,\n                131.0478515625,\n                247.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/330\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  246.765625\n                ],\n                [\n                  132.0478515625,\n                  246.765625\n                ],\n                [\n                  132.0478515625,\n                  247.765625\n                ],\n                [\n                  131.0478515625,\n                  247.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                246.765625,\n                132.0478515625,\n                247.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/331\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  247.765625\n                ],\n                [\n                  129.0478515625,\n                  247.765625\n                ],\n                [\n                  129.0478515625,\n                  248.765625\n                ],\n                [\n                  128.0478515625,\n                  248.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                247.765625,\n                129.0478515625,\n                248.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/332\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.7</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  247.765625\n                ],\n                [\n                  130.0478515625,\n                  247.765625\n                ],\n                [\n                  130.0478515625,\n                  248.765625\n                ],\n                [\n                  129.0478515625,\n                  248.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                247.765625,\n                130.0478515625,\n                248.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/333\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  247.765625\n                ],\n                [\n                  131.0478515625,\n                  247.765625\n                ],\n                [\n                  131.0478515625,\n                  248.765625\n                ],\n                [\n                  130.0478515625,\n                  248.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                247.765625,\n                131.0478515625,\n                248.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/334\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  247.765625\n                ],\n                [\n                  132.0478515625,\n                  247.765625\n                ],\n                [\n                  132.0478515625,\n                  248.765625\n                ],\n                [\n                  131.0478515625,\n                  248.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                247.765625,\n                132.0478515625,\n                248.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/335\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  248.765625\n                ],\n                [\n                  129.0478515625,\n                  248.765625\n                ],\n                [\n                  129.0478515625,\n                  249.765625\n                ],\n                [\n                  128.0478515625,\n                  249.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                248.765625,\n                129.0478515625,\n                249.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/336\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1.8</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  248.765625\n                ],\n                [\n                  130.0478515625,\n                  248.765625\n                ],\n                [\n                  130.0478515625,\n                  249.765625\n                ],\n                [\n                  129.0478515625,\n                  249.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                248.765625,\n                130.0478515625,\n                249.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/337\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  248.765625\n                ],\n                [\n                  131.0478515625,\n                  248.765625\n                ],\n                [\n                  131.0478515625,\n                  249.765625\n                ],\n                [\n                  130.0478515625,\n                  249.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                248.765625,\n                131.0478515625,\n                249.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/338\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>9</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  248.765625\n                ],\n                [\n                  132.0478515625,\n                  248.765625\n                ],\n                [\n                  132.0478515625,\n                  249.765625\n                ],\n                [\n                  131.0478515625,\n                  249.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                248.765625,\n                132.0478515625,\n                249.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/339\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>2</th>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  249.765625\n                ],\n                [\n                  129.0478515625,\n                  249.765625\n                ],\n                [\n                  129.0478515625,\n                  250.765625\n                ],\n                [\n                  128.0478515625,\n                  250.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                249.765625,\n                129.0478515625,\n                250.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/340\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th colspan=\\\"4\\\">Variables, expressions and statements</th>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  249.765625\n                ],\n                [\n                  133.0478515625,\n                  249.765625\n                ],\n                [\n                  133.0478515625,\n                  250.765625\n                ],\n                [\n                  129.0478515625,\n                  250.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                249.765625,\n                133.0478515625,\n                250.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/341\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  250.765625\n                ],\n                [\n                  129.0478515625,\n                  250.765625\n                ],\n                [\n                  129.0478515625,\n                  251.765625\n                ],\n                [\n                  128.0478515625,\n                  251.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                250.765625,\n                129.0478515625,\n                251.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/342\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.1</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  250.765625\n                ],\n                [\n                  130.0478515625,\n                  250.765625\n                ],\n                [\n                  130.0478515625,\n                  251.765625\n                ],\n                [\n                  129.0478515625,\n                  251.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                250.765625,\n                130.0478515625,\n                251.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/343\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Values and types</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  250.765625\n                ],\n                [\n                  131.0478515625,\n                  250.765625\n                ],\n                [\n                  131.0478515625,\n                  251.765625\n                ],\n                [\n                  130.0478515625,\n                  251.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                250.765625,\n                131.0478515625,\n                251.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/344\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  250.765625\n                ],\n                [\n                  132.0478515625,\n                  250.765625\n                ],\n                [\n                  132.0478515625,\n                  251.765625\n                ],\n                [\n                  131.0478515625,\n                  251.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                250.765625,\n                132.0478515625,\n                251.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/345\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  251.765625\n                ],\n                [\n                  129.0478515625,\n                  251.765625\n                ],\n                [\n                  129.0478515625,\n                  252.765625\n                ],\n                [\n                  128.0478515625,\n                  252.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                251.765625,\n                129.0478515625,\n                252.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/346\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.2</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  251.765625\n                ],\n                [\n                  130.0478515625,\n                  251.765625\n                ],\n                [\n                  130.0478515625,\n                  252.765625\n                ],\n                [\n                  129.0478515625,\n                  252.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                251.765625,\n                130.0478515625,\n                252.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/347\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Variables</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  251.765625\n                ],\n                [\n                  131.0478515625,\n                  251.765625\n                ],\n                [\n                  131.0478515625,\n                  252.765625\n                ],\n                [\n                  130.0478515625,\n                  252.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                251.765625,\n                131.0478515625,\n                252.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/348\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  251.765625\n                ],\n                [\n                  132.0478515625,\n                  251.765625\n                ],\n                [\n                  132.0478515625,\n                  252.765625\n                ],\n                [\n                  131.0478515625,\n                  252.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                251.765625,\n                132.0478515625,\n                252.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/349\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  252.765625\n                ],\n                [\n                  129.0478515625,\n                  252.765625\n                ],\n                [\n                  129.0478515625,\n                  253.765625\n                ],\n                [\n                  128.0478515625,\n                  253.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                252.765625,\n                129.0478515625,\n                253.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/350\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.3</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  252.765625\n                ],\n                [\n                  130.0478515625,\n                  252.765625\n                ],\n                [\n                  130.0478515625,\n                  253.765625\n                ],\n                [\n                  129.0478515625,\n                  253.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                252.765625,\n                130.0478515625,\n                253.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/351\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Variable names and keywords</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  252.765625\n                ],\n                [\n                  131.0478515625,\n                  252.765625\n                ],\n                [\n                  131.0478515625,\n                  253.765625\n                ],\n                [\n                  130.0478515625,\n                  253.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                252.765625,\n                131.0478515625,\n                253.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/352\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  252.765625\n                ],\n                [\n                  132.0478515625,\n                  252.765625\n                ],\n                [\n                  132.0478515625,\n                  253.765625\n                ],\n                [\n                  131.0478515625,\n                  253.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                252.765625,\n                132.0478515625,\n                253.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/353\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  253.765625\n                ],\n                [\n                  129.0478515625,\n                  253.765625\n                ],\n                [\n                  129.0478515625,\n                  254.765625\n                ],\n                [\n                  128.0478515625,\n                  254.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                253.765625,\n                129.0478515625,\n                254.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/354\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.4</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  253.765625\n                ],\n                [\n                  130.0478515625,\n                  253.765625\n                ],\n                [\n                  130.0478515625,\n                  254.765625\n                ],\n                [\n                  129.0478515625,\n                  254.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                253.765625,\n                130.0478515625,\n                254.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/355\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Operators and operands</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  253.765625\n                ],\n                [\n                  131.0478515625,\n                  253.765625\n                ],\n                [\n                  131.0478515625,\n                  254.765625\n                ],\n                [\n                  130.0478515625,\n                  254.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                253.765625,\n                131.0478515625,\n                254.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/356\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  253.765625\n                ],\n                [\n                  132.0478515625,\n                  253.765625\n                ],\n                [\n                  132.0478515625,\n                  254.765625\n                ],\n                [\n                  131.0478515625,\n                  254.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                253.765625,\n                132.0478515625,\n                254.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/357\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  254.765625\n                ],\n                [\n                  129.0478515625,\n                  254.765625\n                ],\n                [\n                  129.0478515625,\n                  255.765625\n                ],\n                [\n                  128.0478515625,\n                  255.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                254.765625,\n                129.0478515625,\n                255.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/358\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.5</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  254.765625\n                ],\n                [\n                  130.0478515625,\n                  254.765625\n                ],\n                [\n                  130.0478515625,\n                  255.765625\n                ],\n                [\n                  129.0478515625,\n                  255.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                254.765625,\n                130.0478515625,\n                255.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/359\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Expressions and statements</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  254.765625\n                ],\n                [\n                  131.0478515625,\n                  254.765625\n                ],\n                [\n                  131.0478515625,\n                  255.765625\n                ],\n                [\n                  130.0478515625,\n                  255.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                254.765625,\n                131.0478515625,\n                255.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/360\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  254.765625\n                ],\n                [\n                  132.0478515625,\n                  254.765625\n                ],\n                [\n                  132.0478515625,\n                  255.765625\n                ],\n                [\n                  131.0478515625,\n                  255.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                254.765625,\n                132.0478515625,\n                255.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/361\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  255.765625\n                ],\n                [\n                  129.0478515625,\n                  255.765625\n                ],\n                [\n                  129.0478515625,\n                  256.765625\n                ],\n                [\n                  128.0478515625,\n                  256.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                255.765625,\n                129.0478515625,\n                256.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/362\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.6</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  255.765625\n                ],\n                [\n                  130.0478515625,\n                  255.765625\n                ],\n                [\n                  130.0478515625,\n                  256.765625\n                ],\n                [\n                  129.0478515625,\n                  256.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                255.765625,\n                130.0478515625,\n                256.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/363\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Interactive mode and script mode</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  255.765625\n                ],\n                [\n                  131.0478515625,\n                  255.765625\n                ],\n                [\n                  131.0478515625,\n                  256.765625\n                ],\n                [\n                  130.0478515625,\n                  256.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                255.765625,\n                131.0478515625,\n                256.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/364\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  255.765625\n                ],\n                [\n                  132.0478515625,\n                  255.765625\n                ],\n                [\n                  132.0478515625,\n                  256.765625\n                ],\n                [\n                  131.0478515625,\n                  256.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                255.765625,\n                132.0478515625,\n                256.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/365\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  256.765625\n                ],\n                [\n                  129.0478515625,\n                  256.765625\n                ],\n                [\n                  129.0478515625,\n                  257.765625\n                ],\n                [\n                  128.0478515625,\n                  257.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                256.765625,\n                129.0478515625,\n                257.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/366\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.7</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  256.765625\n                ],\n                [\n                  130.0478515625,\n                  256.765625\n                ],\n                [\n                  130.0478515625,\n                  257.765625\n                ],\n                [\n                  129.0478515625,\n                  257.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                256.765625,\n                130.0478515625,\n                257.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/367\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Order of operations</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  256.765625\n                ],\n                [\n                  131.0478515625,\n                  256.765625\n                ],\n                [\n                  131.0478515625,\n                  257.765625\n                ],\n                [\n                  130.0478515625,\n                  257.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                256.765625,\n                131.0478515625,\n                257.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/368\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  256.765625\n                ],\n                [\n                  132.0478515625,\n                  256.765625\n                ],\n                [\n                  132.0478515625,\n                  257.765625\n                ],\n                [\n                  131.0478515625,\n                  257.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                256.765625,\n                132.0478515625,\n                257.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/369\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  257.765625\n                ],\n                [\n                  129.0478515625,\n                  257.765625\n                ],\n                [\n                  129.0478515625,\n                  258.765625\n                ],\n                [\n                  128.0478515625,\n                  258.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                257.765625,\n                129.0478515625,\n                258.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/370\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.8</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  257.765625\n                ],\n                [\n                  130.0478515625,\n                  257.765625\n                ],\n                [\n                  130.0478515625,\n                  258.765625\n                ],\n                [\n                  129.0478515625,\n                  258.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                257.765625,\n                130.0478515625,\n                258.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/371\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>String operations</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  257.765625\n                ],\n                [\n                  131.0478515625,\n                  257.765625\n                ],\n                [\n                  131.0478515625,\n                  258.765625\n                ],\n                [\n                  130.0478515625,\n                  258.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                257.765625,\n                131.0478515625,\n                258.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/372\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  257.765625\n                ],\n                [\n                  132.0478515625,\n                  257.765625\n                ],\n                [\n                  132.0478515625,\n                  258.765625\n                ],\n                [\n                  131.0478515625,\n                  258.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                257.765625,\n                132.0478515625,\n                258.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/373\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  258.765625\n                ],\n                [\n                  129.0478515625,\n                  258.765625\n                ],\n                [\n                  129.0478515625,\n                  259.765625\n                ],\n                [\n                  128.0478515625,\n                  259.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                258.765625,\n                129.0478515625,\n                259.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/374\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.9</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  258.765625\n                ],\n                [\n                  130.0478515625,\n                  258.765625\n                ],\n                [\n                  130.0478515625,\n                  259.765625\n                ],\n                [\n                  129.0478515625,\n                  259.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                258.765625,\n                130.0478515625,\n                259.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/375\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Comments</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  258.765625\n                ],\n                [\n                  131.0478515625,\n                  258.765625\n                ],\n                [\n                  131.0478515625,\n                  259.765625\n                ],\n                [\n                  130.0478515625,\n                  259.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                258.765625,\n                131.0478515625,\n                259.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/376\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>16</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  258.765625\n                ],\n                [\n                  132.0478515625,\n                  258.765625\n                ],\n                [\n                  132.0478515625,\n                  259.765625\n                ],\n                [\n                  131.0478515625,\n                  259.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                258.765625,\n                132.0478515625,\n                259.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/377\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  259.765625\n                ],\n                [\n                  129.0478515625,\n                  259.765625\n                ],\n                [\n                  129.0478515625,\n                  260.765625\n                ],\n                [\n                  128.0478515625,\n                  260.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                259.765625,\n                129.0478515625,\n                260.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/378\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.10</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  259.765625\n                ],\n                [\n                  130.0478515625,\n                  259.765625\n                ],\n                [\n                  130.0478515625,\n                  260.765625\n                ],\n                [\n                  129.0478515625,\n                  260.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                259.765625,\n                130.0478515625,\n                260.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/379\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  259.765625\n                ],\n                [\n                  131.0478515625,\n                  259.765625\n                ],\n                [\n                  131.0478515625,\n                  260.765625\n                ],\n                [\n                  130.0478515625,\n                  260.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                259.765625,\n                131.0478515625,\n                260.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/380\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>16</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  259.765625\n                ],\n                [\n                  132.0478515625,\n                  259.765625\n                ],\n                [\n                  132.0478515625,\n                  260.765625\n                ],\n                [\n                  131.0478515625,\n                  260.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                259.765625,\n                132.0478515625,\n                260.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/381\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  260.765625\n                ],\n                [\n                  129.0478515625,\n                  260.765625\n                ],\n                [\n                  129.0478515625,\n                  261.765625\n                ],\n                [\n                  128.0478515625,\n                  261.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                260.765625,\n                129.0478515625,\n                261.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/382\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.11</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  260.765625\n                ],\n                [\n                  130.0478515625,\n                  260.765625\n                ],\n                [\n                  130.0478515625,\n                  261.765625\n                ],\n                [\n                  129.0478515625,\n                  261.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                260.765625,\n                130.0478515625,\n                261.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/383\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  260.765625\n                ],\n                [\n                  131.0478515625,\n                  260.765625\n                ],\n                [\n                  131.0478515625,\n                  261.765625\n                ],\n                [\n                  130.0478515625,\n                  261.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                260.765625,\n                131.0478515625,\n                261.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/384\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  260.765625\n                ],\n                [\n                  132.0478515625,\n                  260.765625\n                ],\n                [\n                  132.0478515625,\n                  261.765625\n                ],\n                [\n                  131.0478515625,\n                  261.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                260.765625,\n                132.0478515625,\n                261.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/385\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  261.765625\n                ],\n                [\n                  129.0478515625,\n                  261.765625\n                ],\n                [\n                  129.0478515625,\n                  262.765625\n                ],\n                [\n                  128.0478515625,\n                  262.765625\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                261.765625,\n                129.0478515625,\n                262.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/386\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>2.12</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  261.765625\n                ],\n                [\n                  130.0478515625,\n                  261.765625\n                ],\n                [\n                  130.0478515625,\n                  262.765625\n                ],\n                [\n                  129.0478515625,\n                  262.765625\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                261.765625,\n                130.0478515625,\n                262.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/387\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  261.765625\n                ],\n                [\n                  131.0478515625,\n                  261.765625\n                ],\n                [\n                  131.0478515625,\n                  262.765625\n                ],\n                [\n                  130.0478515625,\n                  262.765625\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                261.765625,\n                131.0478515625,\n                262.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/12/TableCell/388\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  261.765625\n                ],\n                [\n                  132.0478515625,\n                  261.765625\n                ],\n                [\n                  132.0478515625,\n                  262.765625\n                ],\n                [\n                  131.0478515625,\n                  262.765625\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                261.765625,\n                132.0478515625,\n                262.765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/374\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>3</th>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  85.271484375\n                ],\n                [\n                  87.39999389648438,\n                  85.271484375\n                ],\n                [\n                  87.39999389648438,\n                  86.271484375\n                ],\n                [\n                  86.39999389648438,\n                  86.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                85.271484375,\n                87.39999389648438,\n                86.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/375\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Functions</th>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  85.271484375\n                ],\n                [\n                  88.39999389648438,\n                  85.271484375\n                ],\n                [\n                  88.39999389648438,\n                  86.271484375\n                ],\n                [\n                  87.39999389648438,\n                  86.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                85.271484375,\n                88.39999389648438,\n                86.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/376\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  85.271484375\n                ],\n                [\n                  89.39999389648438,\n                  85.271484375\n                ],\n                [\n                  89.39999389648438,\n                  86.271484375\n                ],\n                [\n                  88.39999389648438,\n                  86.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                85.271484375,\n                89.39999389648438,\n                86.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/377\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>19</th>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  85.271484375\n                ],\n                [\n                  90.39999389648438,\n                  85.271484375\n                ],\n                [\n                  90.39999389648438,\n                  86.271484375\n                ],\n                [\n                  89.39999389648438,\n                  86.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                85.271484375,\n                90.39999389648438,\n                86.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/378\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  86.271484375\n                ],\n                [\n                  87.39999389648438,\n                  86.271484375\n                ],\n                [\n                  87.39999389648438,\n                  87.271484375\n                ],\n                [\n                  86.39999389648438,\n                  87.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                86.271484375,\n                87.39999389648438,\n                87.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/379\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.1</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  86.271484375\n                ],\n                [\n                  88.39999389648438,\n                  86.271484375\n                ],\n                [\n                  88.39999389648438,\n                  87.271484375\n                ],\n                [\n                  87.39999389648438,\n                  87.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                86.271484375,\n                88.39999389648438,\n                87.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/380\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Function calls</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  86.271484375\n                ],\n                [\n                  89.39999389648438,\n                  86.271484375\n                ],\n                [\n                  89.39999389648438,\n                  87.271484375\n                ],\n                [\n                  88.39999389648438,\n                  87.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                86.271484375,\n                89.39999389648438,\n                87.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/381\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  86.271484375\n                ],\n                [\n                  90.39999389648438,\n                  86.271484375\n                ],\n                [\n                  90.39999389648438,\n                  87.271484375\n                ],\n                [\n                  89.39999389648438,\n                  87.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                86.271484375,\n                90.39999389648438,\n                87.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/382\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  87.271484375\n                ],\n                [\n                  87.39999389648438,\n                  87.271484375\n                ],\n                [\n                  87.39999389648438,\n                  88.271484375\n                ],\n                [\n                  86.39999389648438,\n                  88.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                87.271484375,\n                87.39999389648438,\n                88.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/383\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.2</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  87.271484375\n                ],\n                [\n                  88.39999389648438,\n                  87.271484375\n                ],\n                [\n                  88.39999389648438,\n                  88.271484375\n                ],\n                [\n                  87.39999389648438,\n                  88.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                87.271484375,\n                88.39999389648438,\n                88.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/384\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Type conversion functions</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  87.271484375\n                ],\n                [\n                  89.39999389648438,\n                  87.271484375\n                ],\n                [\n                  89.39999389648438,\n                  88.271484375\n                ],\n                [\n                  88.39999389648438,\n                  88.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                87.271484375,\n                89.39999389648438,\n                88.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/385\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  87.271484375\n                ],\n                [\n                  90.39999389648438,\n                  87.271484375\n                ],\n                [\n                  90.39999389648438,\n                  88.271484375\n                ],\n                [\n                  89.39999389648438,\n                  88.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                87.271484375,\n                90.39999389648438,\n                88.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/386\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  88.271484375\n                ],\n                [\n                  87.39999389648438,\n                  88.271484375\n                ],\n                [\n                  87.39999389648438,\n                  89.271484375\n                ],\n                [\n                  86.39999389648438,\n                  89.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                88.271484375,\n                87.39999389648438,\n                89.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/387\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.3</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  88.271484375\n                ],\n                [\n                  88.39999389648438,\n                  88.271484375\n                ],\n                [\n                  88.39999389648438,\n                  89.271484375\n                ],\n                [\n                  87.39999389648438,\n                  89.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                88.271484375,\n                88.39999389648438,\n                89.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/388\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Math functions</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  88.271484375\n                ],\n                [\n                  89.39999389648438,\n                  88.271484375\n                ],\n                [\n                  89.39999389648438,\n                  89.271484375\n                ],\n                [\n                  88.39999389648438,\n                  89.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                88.271484375,\n                89.39999389648438,\n                89.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/389\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>20</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  88.271484375\n                ],\n                [\n                  90.39999389648438,\n                  88.271484375\n                ],\n                [\n                  90.39999389648438,\n                  89.271484375\n                ],\n                [\n                  89.39999389648438,\n                  89.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                88.271484375,\n                90.39999389648438,\n                89.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/390\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  89.271484375\n                ],\n                [\n                  87.39999389648438,\n                  89.271484375\n                ],\n                [\n                  87.39999389648438,\n                  90.271484375\n                ],\n                [\n                  86.39999389648438,\n                  90.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                89.271484375,\n                87.39999389648438,\n                90.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/391\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.4</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  89.271484375\n                ],\n                [\n                  88.39999389648438,\n                  89.271484375\n                ],\n                [\n                  88.39999389648438,\n                  90.271484375\n                ],\n                [\n                  87.39999389648438,\n                  90.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                89.271484375,\n                88.39999389648438,\n                90.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/392\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Composition</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  89.271484375\n                ],\n                [\n                  89.39999389648438,\n                  89.271484375\n                ],\n                [\n                  89.39999389648438,\n                  90.271484375\n                ],\n                [\n                  88.39999389648438,\n                  90.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                89.271484375,\n                89.39999389648438,\n                90.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/393\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>21</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  89.271484375\n                ],\n                [\n                  90.39999389648438,\n                  89.271484375\n                ],\n                [\n                  90.39999389648438,\n                  90.271484375\n                ],\n                [\n                  89.39999389648438,\n                  90.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                89.271484375,\n                90.39999389648438,\n                90.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/394\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  90.271484375\n                ],\n                [\n                  87.39999389648438,\n                  90.271484375\n                ],\n                [\n                  87.39999389648438,\n                  91.271484375\n                ],\n                [\n                  86.39999389648438,\n                  91.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                90.271484375,\n                87.39999389648438,\n                91.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/395\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.5</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  90.271484375\n                ],\n                [\n                  88.39999389648438,\n                  90.271484375\n                ],\n                [\n                  88.39999389648438,\n                  91.271484375\n                ],\n                [\n                  87.39999389648438,\n                  91.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                90.271484375,\n                88.39999389648438,\n                91.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/396\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Adding new functions</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  90.271484375\n                ],\n                [\n                  89.39999389648438,\n                  90.271484375\n                ],\n                [\n                  89.39999389648438,\n                  91.271484375\n                ],\n                [\n                  88.39999389648438,\n                  91.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                90.271484375,\n                89.39999389648438,\n                91.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/397\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>21</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  90.271484375\n                ],\n                [\n                  90.39999389648438,\n                  90.271484375\n                ],\n                [\n                  90.39999389648438,\n                  91.271484375\n                ],\n                [\n                  89.39999389648438,\n                  91.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                90.271484375,\n                90.39999389648438,\n                91.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/398\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  91.271484375\n                ],\n                [\n                  87.39999389648438,\n                  91.271484375\n                ],\n                [\n                  87.39999389648438,\n                  92.271484375\n                ],\n                [\n                  86.39999389648438,\n                  92.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                91.271484375,\n                87.39999389648438,\n                92.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/399\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.6</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  91.271484375\n                ],\n                [\n                  88.39999389648438,\n                  91.271484375\n                ],\n                [\n                  88.39999389648438,\n                  92.271484375\n                ],\n                [\n                  87.39999389648438,\n                  92.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                91.271484375,\n                88.39999389648438,\n                92.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/400\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Definitions and uses</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  91.271484375\n                ],\n                [\n                  89.39999389648438,\n                  91.271484375\n                ],\n                [\n                  89.39999389648438,\n                  92.271484375\n                ],\n                [\n                  88.39999389648438,\n                  92.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                91.271484375,\n                89.39999389648438,\n                92.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/401\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>22</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  91.271484375\n                ],\n                [\n                  90.39999389648438,\n                  91.271484375\n                ],\n                [\n                  90.39999389648438,\n                  92.271484375\n                ],\n                [\n                  89.39999389648438,\n                  92.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                91.271484375,\n                90.39999389648438,\n                92.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/402\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  92.271484375\n                ],\n                [\n                  87.39999389648438,\n                  92.271484375\n                ],\n                [\n                  87.39999389648438,\n                  93.271484375\n                ],\n                [\n                  86.39999389648438,\n                  93.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                92.271484375,\n                87.39999389648438,\n                93.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/403\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.7</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  92.271484375\n                ],\n                [\n                  88.39999389648438,\n                  92.271484375\n                ],\n                [\n                  88.39999389648438,\n                  93.271484375\n                ],\n                [\n                  87.39999389648438,\n                  93.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                92.271484375,\n                88.39999389648438,\n                93.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/404\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Flow of execution</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  92.271484375\n                ],\n                [\n                  89.39999389648438,\n                  92.271484375\n                ],\n                [\n                  89.39999389648438,\n                  93.271484375\n                ],\n                [\n                  88.39999389648438,\n                  93.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                92.271484375,\n                89.39999389648438,\n                93.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/405\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>23</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  92.271484375\n                ],\n                [\n                  90.39999389648438,\n                  92.271484375\n                ],\n                [\n                  90.39999389648438,\n                  93.271484375\n                ],\n                [\n                  89.39999389648438,\n                  93.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                92.271484375,\n                90.39999389648438,\n                93.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/406\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  93.271484375\n                ],\n                [\n                  87.39999389648438,\n                  93.271484375\n                ],\n                [\n                  87.39999389648438,\n                  94.271484375\n                ],\n                [\n                  86.39999389648438,\n                  94.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                93.271484375,\n                87.39999389648438,\n                94.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/407\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.8</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  93.271484375\n                ],\n                [\n                  88.39999389648438,\n                  93.271484375\n                ],\n                [\n                  88.39999389648438,\n                  94.271484375\n                ],\n                [\n                  87.39999389648438,\n                  94.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                93.271484375,\n                88.39999389648438,\n                94.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/408\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Parameters and arguments</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  93.271484375\n                ],\n                [\n                  89.39999389648438,\n                  93.271484375\n                ],\n                [\n                  89.39999389648438,\n                  94.271484375\n                ],\n                [\n                  88.39999389648438,\n                  94.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                93.271484375,\n                89.39999389648438,\n                94.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/409\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>23</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  93.271484375\n                ],\n                [\n                  90.39999389648438,\n                  93.271484375\n                ],\n                [\n                  90.39999389648438,\n                  94.271484375\n                ],\n                [\n                  89.39999389648438,\n                  94.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                93.271484375,\n                90.39999389648438,\n                94.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/410\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  94.271484375\n                ],\n                [\n                  87.39999389648438,\n                  94.271484375\n                ],\n                [\n                  87.39999389648438,\n                  95.271484375\n                ],\n                [\n                  86.39999389648438,\n                  95.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                94.271484375,\n                87.39999389648438,\n                95.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/411\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.9</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  94.271484375\n                ],\n                [\n                  88.39999389648438,\n                  94.271484375\n                ],\n                [\n                  88.39999389648438,\n                  95.271484375\n                ],\n                [\n                  87.39999389648438,\n                  95.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                94.271484375,\n                88.39999389648438,\n                95.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/412\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Variables and parameters are local</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  94.271484375\n                ],\n                [\n                  89.39999389648438,\n                  94.271484375\n                ],\n                [\n                  89.39999389648438,\n                  95.271484375\n                ],\n                [\n                  88.39999389648438,\n                  95.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                94.271484375,\n                89.39999389648438,\n                95.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/413\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>24</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  94.271484375\n                ],\n                [\n                  90.39999389648438,\n                  94.271484375\n                ],\n                [\n                  90.39999389648438,\n                  95.271484375\n                ],\n                [\n                  89.39999389648438,\n                  95.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                94.271484375,\n                90.39999389648438,\n                95.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/414\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  95.271484375\n                ],\n                [\n                  87.39999389648438,\n                  95.271484375\n                ],\n                [\n                  87.39999389648438,\n                  96.271484375\n                ],\n                [\n                  86.39999389648438,\n                  96.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                95.271484375,\n                87.39999389648438,\n                96.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/415\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.10</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  95.271484375\n                ],\n                [\n                  88.39999389648438,\n                  95.271484375\n                ],\n                [\n                  88.39999389648438,\n                  96.271484375\n                ],\n                [\n                  87.39999389648438,\n                  96.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                95.271484375,\n                88.39999389648438,\n                96.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/416\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Stack diagrams</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  95.271484375\n                ],\n                [\n                  89.39999389648438,\n                  95.271484375\n                ],\n                [\n                  89.39999389648438,\n                  96.271484375\n                ],\n                [\n                  88.39999389648438,\n                  96.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                95.271484375,\n                89.39999389648438,\n                96.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/417\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>25</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  95.271484375\n                ],\n                [\n                  90.39999389648438,\n                  95.271484375\n                ],\n                [\n                  90.39999389648438,\n                  96.271484375\n                ],\n                [\n                  89.39999389648438,\n                  96.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                95.271484375,\n                90.39999389648438,\n                96.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/418\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  96.271484375\n                ],\n                [\n                  87.39999389648438,\n                  96.271484375\n                ],\n                [\n                  87.39999389648438,\n                  97.271484375\n                ],\n                [\n                  86.39999389648438,\n                  97.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                96.271484375,\n                87.39999389648438,\n                97.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/419\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.11</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  96.271484375\n                ],\n                [\n                  88.39999389648438,\n                  96.271484375\n                ],\n                [\n                  88.39999389648438,\n                  97.271484375\n                ],\n                [\n                  87.39999389648438,\n                  97.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                96.271484375,\n                88.39999389648438,\n                97.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/420\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Fruitful functions and void functions</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  96.271484375\n                ],\n                [\n                  89.39999389648438,\n                  96.271484375\n                ],\n                [\n                  89.39999389648438,\n                  97.271484375\n                ],\n                [\n                  88.39999389648438,\n                  97.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                96.271484375,\n                89.39999389648438,\n                97.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/421\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>26</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  96.271484375\n                ],\n                [\n                  90.39999389648438,\n                  96.271484375\n                ],\n                [\n                  90.39999389648438,\n                  97.271484375\n                ],\n                [\n                  89.39999389648438,\n                  97.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                96.271484375,\n                90.39999389648438,\n                97.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/422\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  97.271484375\n                ],\n                [\n                  87.39999389648438,\n                  97.271484375\n                ],\n                [\n                  87.39999389648438,\n                  98.271484375\n                ],\n                [\n                  86.39999389648438,\n                  98.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                97.271484375,\n                87.39999389648438,\n                98.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/423\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.12</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  97.271484375\n                ],\n                [\n                  88.39999389648438,\n                  97.271484375\n                ],\n                [\n                  88.39999389648438,\n                  98.271484375\n                ],\n                [\n                  87.39999389648438,\n                  98.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                97.271484375,\n                88.39999389648438,\n                98.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/424\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Why functions?</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  97.271484375\n                ],\n                [\n                  89.39999389648438,\n                  97.271484375\n                ],\n                [\n                  89.39999389648438,\n                  98.271484375\n                ],\n                [\n                  88.39999389648438,\n                  98.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                97.271484375,\n                89.39999389648438,\n                98.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/425\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>26</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  97.271484375\n                ],\n                [\n                  90.39999389648438,\n                  97.271484375\n                ],\n                [\n                  90.39999389648438,\n                  98.271484375\n                ],\n                [\n                  89.39999389648438,\n                  98.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                97.271484375,\n                90.39999389648438,\n                98.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/426\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  98.271484375\n                ],\n                [\n                  87.39999389648438,\n                  98.271484375\n                ],\n                [\n                  87.39999389648438,\n                  99.271484375\n                ],\n                [\n                  86.39999389648438,\n                  99.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                98.271484375,\n                87.39999389648438,\n                99.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/427\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.13</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  98.271484375\n                ],\n                [\n                  88.39999389648438,\n                  98.271484375\n                ],\n                [\n                  88.39999389648438,\n                  99.271484375\n                ],\n                [\n                  87.39999389648438,\n                  99.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                98.271484375,\n                88.39999389648438,\n                99.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/428\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Importing with from</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  98.271484375\n                ],\n                [\n                  89.39999389648438,\n                  98.271484375\n                ],\n                [\n                  89.39999389648438,\n                  99.271484375\n                ],\n                [\n                  88.39999389648438,\n                  99.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                98.271484375,\n                89.39999389648438,\n                99.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/429\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>27</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  98.271484375\n                ],\n                [\n                  90.39999389648438,\n                  98.271484375\n                ],\n                [\n                  90.39999389648438,\n                  99.271484375\n                ],\n                [\n                  89.39999389648438,\n                  99.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                98.271484375,\n                90.39999389648438,\n                99.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/430\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  99.271484375\n                ],\n                [\n                  87.39999389648438,\n                  99.271484375\n                ],\n                [\n                  87.39999389648438,\n                  100.271484375\n                ],\n                [\n                  86.39999389648438,\n                  100.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                99.271484375,\n                87.39999389648438,\n                100.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/431\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.14</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  99.271484375\n                ],\n                [\n                  88.39999389648438,\n                  99.271484375\n                ],\n                [\n                  88.39999389648438,\n                  100.271484375\n                ],\n                [\n                  87.39999389648438,\n                  100.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                99.271484375,\n                88.39999389648438,\n                100.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/432\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  99.271484375\n                ],\n                [\n                  89.39999389648438,\n                  99.271484375\n                ],\n                [\n                  89.39999389648438,\n                  100.271484375\n                ],\n                [\n                  88.39999389648438,\n                  100.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                99.271484375,\n                89.39999389648438,\n                100.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/433\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>27</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  99.271484375\n                ],\n                [\n                  90.39999389648438,\n                  99.271484375\n                ],\n                [\n                  90.39999389648438,\n                  100.271484375\n                ],\n                [\n                  89.39999389648438,\n                  100.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                99.271484375,\n                90.39999389648438,\n                100.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/434\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  100.271484375\n                ],\n                [\n                  87.39999389648438,\n                  100.271484375\n                ],\n                [\n                  87.39999389648438,\n                  101.271484375\n                ],\n                [\n                  86.39999389648438,\n                  101.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                100.271484375,\n                87.39999389648438,\n                101.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/435\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.15</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  100.271484375\n                ],\n                [\n                  88.39999389648438,\n                  100.271484375\n                ],\n                [\n                  88.39999389648438,\n                  101.271484375\n                ],\n                [\n                  87.39999389648438,\n                  101.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                100.271484375,\n                88.39999389648438,\n                101.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/436\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  100.271484375\n                ],\n                [\n                  89.39999389648438,\n                  100.271484375\n                ],\n                [\n                  89.39999389648438,\n                  101.271484375\n                ],\n                [\n                  88.39999389648438,\n                  101.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                100.271484375,\n                89.39999389648438,\n                101.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/437\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>28</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  100.271484375\n                ],\n                [\n                  90.39999389648438,\n                  100.271484375\n                ],\n                [\n                  90.39999389648438,\n                  101.271484375\n                ],\n                [\n                  89.39999389648438,\n                  101.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                100.271484375,\n                90.39999389648438,\n                101.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/438\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  101.271484375\n                ],\n                [\n                  87.39999389648438,\n                  101.271484375\n                ],\n                [\n                  87.39999389648438,\n                  102.271484375\n                ],\n                [\n                  86.39999389648438,\n                  102.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                101.271484375,\n                87.39999389648438,\n                102.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/439\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>3.16</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  101.271484375\n                ],\n                [\n                  88.39999389648438,\n                  101.271484375\n                ],\n                [\n                  88.39999389648438,\n                  102.271484375\n                ],\n                [\n                  87.39999389648438,\n                  102.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                101.271484375,\n                88.39999389648438,\n                102.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/440\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  101.271484375\n                ],\n                [\n                  89.39999389648438,\n                  101.271484375\n                ],\n                [\n                  89.39999389648438,\n                  102.271484375\n                ],\n                [\n                  88.39999389648438,\n                  102.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                101.271484375,\n                89.39999389648438,\n                102.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/441\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>29</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  101.271484375\n                ],\n                [\n                  90.39999389648438,\n                  101.271484375\n                ],\n                [\n                  90.39999389648438,\n                  102.271484375\n                ],\n                [\n                  89.39999389648438,\n                  102.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                101.271484375,\n                90.39999389648438,\n                102.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/442\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>4</th>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  102.271484375\n                ],\n                [\n                  87.39999389648438,\n                  102.271484375\n                ],\n                [\n                  87.39999389648438,\n                  103.271484375\n                ],\n                [\n                  86.39999389648438,\n                  103.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                102.271484375,\n                87.39999389648438,\n                103.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/443\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Case study: interface design</th>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  102.271484375\n                ],\n                [\n                  88.39999389648438,\n                  102.271484375\n                ],\n                [\n                  88.39999389648438,\n                  103.271484375\n                ],\n                [\n                  87.39999389648438,\n                  103.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                102.271484375,\n                88.39999389648438,\n                103.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/444\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  102.271484375\n                ],\n                [\n                  89.39999389648438,\n                  102.271484375\n                ],\n                [\n                  89.39999389648438,\n                  103.271484375\n                ],\n                [\n                  88.39999389648438,\n                  103.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                102.271484375,\n                89.39999389648438,\n                103.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/445\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>31</th>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  102.271484375\n                ],\n                [\n                  90.39999389648438,\n                  102.271484375\n                ],\n                [\n                  90.39999389648438,\n                  103.271484375\n                ],\n                [\n                  89.39999389648438,\n                  103.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                102.271484375,\n                90.39999389648438,\n                103.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/446\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  103.271484375\n                ],\n                [\n                  87.39999389648438,\n                  103.271484375\n                ],\n                [\n                  87.39999389648438,\n                  104.271484375\n                ],\n                [\n                  86.39999389648438,\n                  104.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                103.271484375,\n                87.39999389648438,\n                104.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/447\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.1</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  103.271484375\n                ],\n                [\n                  88.39999389648438,\n                  103.271484375\n                ],\n                [\n                  88.39999389648438,\n                  104.271484375\n                ],\n                [\n                  87.39999389648438,\n                  104.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                103.271484375,\n                88.39999389648438,\n                104.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/448\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>TurtleWorld</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  103.271484375\n                ],\n                [\n                  89.39999389648438,\n                  103.271484375\n                ],\n                [\n                  89.39999389648438,\n                  104.271484375\n                ],\n                [\n                  88.39999389648438,\n                  104.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                103.271484375,\n                89.39999389648438,\n                104.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/449\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>31</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  103.271484375\n                ],\n                [\n                  90.39999389648438,\n                  103.271484375\n                ],\n                [\n                  90.39999389648438,\n                  104.271484375\n                ],\n                [\n                  89.39999389648438,\n                  104.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                103.271484375,\n                90.39999389648438,\n                104.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/450\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  104.271484375\n                ],\n                [\n                  87.39999389648438,\n                  104.271484375\n                ],\n                [\n                  87.39999389648438,\n                  105.271484375\n                ],\n                [\n                  86.39999389648438,\n                  105.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                104.271484375,\n                87.39999389648438,\n                105.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/451\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.2</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  104.271484375\n                ],\n                [\n                  88.39999389648438,\n                  104.271484375\n                ],\n                [\n                  88.39999389648438,\n                  105.271484375\n                ],\n                [\n                  87.39999389648438,\n                  105.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                104.271484375,\n                88.39999389648438,\n                105.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/452\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Simple repetition</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  104.271484375\n                ],\n                [\n                  89.39999389648438,\n                  104.271484375\n                ],\n                [\n                  89.39999389648438,\n                  105.271484375\n                ],\n                [\n                  88.39999389648438,\n                  105.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                104.271484375,\n                89.39999389648438,\n                105.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/453\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>32</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  104.271484375\n                ],\n                [\n                  90.39999389648438,\n                  104.271484375\n                ],\n                [\n                  90.39999389648438,\n                  105.271484375\n                ],\n                [\n                  89.39999389648438,\n                  105.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                104.271484375,\n                90.39999389648438,\n                105.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/454\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  105.271484375\n                ],\n                [\n                  87.39999389648438,\n                  105.271484375\n                ],\n                [\n                  87.39999389648438,\n                  106.271484375\n                ],\n                [\n                  86.39999389648438,\n                  106.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                105.271484375,\n                87.39999389648438,\n                106.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/455\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.3</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  105.271484375\n                ],\n                [\n                  88.39999389648438,\n                  105.271484375\n                ],\n                [\n                  88.39999389648438,\n                  106.271484375\n                ],\n                [\n                  87.39999389648438,\n                  106.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                105.271484375,\n                88.39999389648438,\n                106.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/456\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  105.271484375\n                ],\n                [\n                  89.39999389648438,\n                  105.271484375\n                ],\n                [\n                  89.39999389648438,\n                  106.271484375\n                ],\n                [\n                  88.39999389648438,\n                  106.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                105.271484375,\n                89.39999389648438,\n                106.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/457\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>33</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  105.271484375\n                ],\n                [\n                  90.39999389648438,\n                  105.271484375\n                ],\n                [\n                  90.39999389648438,\n                  106.271484375\n                ],\n                [\n                  89.39999389648438,\n                  106.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                105.271484375,\n                90.39999389648438,\n                106.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/458\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  106.271484375\n                ],\n                [\n                  87.39999389648438,\n                  106.271484375\n                ],\n                [\n                  87.39999389648438,\n                  107.271484375\n                ],\n                [\n                  86.39999389648438,\n                  107.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                106.271484375,\n                87.39999389648438,\n                107.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/459\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.4</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  106.271484375\n                ],\n                [\n                  88.39999389648438,\n                  106.271484375\n                ],\n                [\n                  88.39999389648438,\n                  107.271484375\n                ],\n                [\n                  87.39999389648438,\n                  107.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                106.271484375,\n                88.39999389648438,\n                107.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/460\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Encapsulation</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  106.271484375\n                ],\n                [\n                  89.39999389648438,\n                  106.271484375\n                ],\n                [\n                  89.39999389648438,\n                  107.271484375\n                ],\n                [\n                  88.39999389648438,\n                  107.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                106.271484375,\n                89.39999389648438,\n                107.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/461\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>34</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  106.271484375\n                ],\n                [\n                  90.39999389648438,\n                  106.271484375\n                ],\n                [\n                  90.39999389648438,\n                  107.271484375\n                ],\n                [\n                  89.39999389648438,\n                  107.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                106.271484375,\n                90.39999389648438,\n                107.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/462\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  107.271484375\n                ],\n                [\n                  87.39999389648438,\n                  107.271484375\n                ],\n                [\n                  87.39999389648438,\n                  108.271484375\n                ],\n                [\n                  86.39999389648438,\n                  108.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                107.271484375,\n                87.39999389648438,\n                108.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/463\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.5</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  107.271484375\n                ],\n                [\n                  88.39999389648438,\n                  107.271484375\n                ],\n                [\n                  88.39999389648438,\n                  108.271484375\n                ],\n                [\n                  87.39999389648438,\n                  108.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                107.271484375,\n                88.39999389648438,\n                108.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/464\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Generalization</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  107.271484375\n                ],\n                [\n                  89.39999389648438,\n                  107.271484375\n                ],\n                [\n                  89.39999389648438,\n                  108.271484375\n                ],\n                [\n                  88.39999389648438,\n                  108.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                107.271484375,\n                89.39999389648438,\n                108.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/465\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>34</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  107.271484375\n                ],\n                [\n                  90.39999389648438,\n                  107.271484375\n                ],\n                [\n                  90.39999389648438,\n                  108.271484375\n                ],\n                [\n                  89.39999389648438,\n                  108.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                107.271484375,\n                90.39999389648438,\n                108.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/466\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  108.271484375\n                ],\n                [\n                  87.39999389648438,\n                  108.271484375\n                ],\n                [\n                  87.39999389648438,\n                  109.271484375\n                ],\n                [\n                  86.39999389648438,\n                  109.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                108.271484375,\n                87.39999389648438,\n                109.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/467\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.6</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  108.271484375\n                ],\n                [\n                  88.39999389648438,\n                  108.271484375\n                ],\n                [\n                  88.39999389648438,\n                  109.271484375\n                ],\n                [\n                  87.39999389648438,\n                  109.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                108.271484375,\n                88.39999389648438,\n                109.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/468\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Interface design</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  108.271484375\n                ],\n                [\n                  89.39999389648438,\n                  108.271484375\n                ],\n                [\n                  89.39999389648438,\n                  109.271484375\n                ],\n                [\n                  88.39999389648438,\n                  109.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                108.271484375,\n                89.39999389648438,\n                109.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/469\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>35</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  108.271484375\n                ],\n                [\n                  90.39999389648438,\n                  108.271484375\n                ],\n                [\n                  90.39999389648438,\n                  109.271484375\n                ],\n                [\n                  89.39999389648438,\n                  109.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                108.271484375,\n                90.39999389648438,\n                109.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/470\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  109.271484375\n                ],\n                [\n                  87.39999389648438,\n                  109.271484375\n                ],\n                [\n                  87.39999389648438,\n                  110.271484375\n                ],\n                [\n                  86.39999389648438,\n                  110.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                109.271484375,\n                87.39999389648438,\n                110.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/471\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.7</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  109.271484375\n                ],\n                [\n                  88.39999389648438,\n                  109.271484375\n                ],\n                [\n                  88.39999389648438,\n                  110.271484375\n                ],\n                [\n                  87.39999389648438,\n                  110.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                109.271484375,\n                88.39999389648438,\n                110.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/472\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Refactoring</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  109.271484375\n                ],\n                [\n                  89.39999389648438,\n                  109.271484375\n                ],\n                [\n                  89.39999389648438,\n                  110.271484375\n                ],\n                [\n                  88.39999389648438,\n                  110.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                109.271484375,\n                89.39999389648438,\n                110.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/473\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>36</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  109.271484375\n                ],\n                [\n                  90.39999389648438,\n                  109.271484375\n                ],\n                [\n                  90.39999389648438,\n                  110.271484375\n                ],\n                [\n                  89.39999389648438,\n                  110.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                109.271484375,\n                90.39999389648438,\n                110.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/474\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  110.271484375\n                ],\n                [\n                  87.39999389648438,\n                  110.271484375\n                ],\n                [\n                  87.39999389648438,\n                  111.271484375\n                ],\n                [\n                  86.39999389648438,\n                  111.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                110.271484375,\n                87.39999389648438,\n                111.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/475\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.8</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  110.271484375\n                ],\n                [\n                  88.39999389648438,\n                  110.271484375\n                ],\n                [\n                  88.39999389648438,\n                  111.271484375\n                ],\n                [\n                  87.39999389648438,\n                  111.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                110.271484375,\n                88.39999389648438,\n                111.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/476\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>A development plan</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  110.271484375\n                ],\n                [\n                  89.39999389648438,\n                  110.271484375\n                ],\n                [\n                  89.39999389648438,\n                  111.271484375\n                ],\n                [\n                  88.39999389648438,\n                  111.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                110.271484375,\n                89.39999389648438,\n                111.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/477\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>37</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  110.271484375\n                ],\n                [\n                  90.39999389648438,\n                  110.271484375\n                ],\n                [\n                  90.39999389648438,\n                  111.271484375\n                ],\n                [\n                  89.39999389648438,\n                  111.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                110.271484375,\n                90.39999389648438,\n                111.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/478\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  111.271484375\n                ],\n                [\n                  87.39999389648438,\n                  111.271484375\n                ],\n                [\n                  87.39999389648438,\n                  112.271484375\n                ],\n                [\n                  86.39999389648438,\n                  112.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                111.271484375,\n                87.39999389648438,\n                112.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/479\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.9</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  111.271484375\n                ],\n                [\n                  88.39999389648438,\n                  111.271484375\n                ],\n                [\n                  88.39999389648438,\n                  112.271484375\n                ],\n                [\n                  87.39999389648438,\n                  112.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                111.271484375,\n                88.39999389648438,\n                112.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/480\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>docstring</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  111.271484375\n                ],\n                [\n                  89.39999389648438,\n                  111.271484375\n                ],\n                [\n                  89.39999389648438,\n                  112.271484375\n                ],\n                [\n                  88.39999389648438,\n                  112.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                111.271484375,\n                89.39999389648438,\n                112.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/481\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>37</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  111.271484375\n                ],\n                [\n                  90.39999389648438,\n                  111.271484375\n                ],\n                [\n                  90.39999389648438,\n                  112.271484375\n                ],\n                [\n                  89.39999389648438,\n                  112.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                111.271484375,\n                90.39999389648438,\n                112.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/482\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  112.271484375\n                ],\n                [\n                  87.39999389648438,\n                  112.271484375\n                ],\n                [\n                  87.39999389648438,\n                  113.271484375\n                ],\n                [\n                  86.39999389648438,\n                  113.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                112.271484375,\n                87.39999389648438,\n                113.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/483\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.10</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  112.271484375\n                ],\n                [\n                  88.39999389648438,\n                  112.271484375\n                ],\n                [\n                  88.39999389648438,\n                  113.271484375\n                ],\n                [\n                  87.39999389648438,\n                  113.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                112.271484375,\n                88.39999389648438,\n                113.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/484\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  112.271484375\n                ],\n                [\n                  89.39999389648438,\n                  112.271484375\n                ],\n                [\n                  89.39999389648438,\n                  113.271484375\n                ],\n                [\n                  88.39999389648438,\n                  113.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                112.271484375,\n                89.39999389648438,\n                113.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/485\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>38</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  112.271484375\n                ],\n                [\n                  90.39999389648438,\n                  112.271484375\n                ],\n                [\n                  90.39999389648438,\n                  113.271484375\n                ],\n                [\n                  89.39999389648438,\n                  113.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                112.271484375,\n                90.39999389648438,\n                113.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/486\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  113.271484375\n                ],\n                [\n                  87.39999389648438,\n                  113.271484375\n                ],\n                [\n                  87.39999389648438,\n                  114.271484375\n                ],\n                [\n                  86.39999389648438,\n                  114.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                113.271484375,\n                87.39999389648438,\n                114.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/487\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.11</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  113.271484375\n                ],\n                [\n                  88.39999389648438,\n                  113.271484375\n                ],\n                [\n                  88.39999389648438,\n                  114.271484375\n                ],\n                [\n                  87.39999389648438,\n                  114.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                113.271484375,\n                88.39999389648438,\n                114.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/488\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  113.271484375\n                ],\n                [\n                  89.39999389648438,\n                  113.271484375\n                ],\n                [\n                  89.39999389648438,\n                  114.271484375\n                ],\n                [\n                  88.39999389648438,\n                  114.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                113.271484375,\n                89.39999389648438,\n                114.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/489\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>38</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  113.271484375\n                ],\n                [\n                  90.39999389648438,\n                  113.271484375\n                ],\n                [\n                  90.39999389648438,\n                  114.271484375\n                ],\n                [\n                  89.39999389648438,\n                  114.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                113.271484375,\n                90.39999389648438,\n                114.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/490\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39999389648438,\n                  114.271484375\n                ],\n                [\n                  87.39999389648438,\n                  114.271484375\n                ],\n                [\n                  87.39999389648438,\n                  115.271484375\n                ],\n                [\n                  86.39999389648438,\n                  115.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.39999389648438,\n                114.271484375,\n                87.39999389648438,\n                115.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/491\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>4.12</td>\",\n              \"polygon\": [\n                [\n                  87.39999389648438,\n                  114.271484375\n                ],\n                [\n                  88.39999389648438,\n                  114.271484375\n                ],\n                [\n                  88.39999389648438,\n                  115.271484375\n                ],\n                [\n                  87.39999389648438,\n                  115.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.39999389648438,\n                114.271484375,\n                88.39999389648438,\n                115.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/492\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  88.39999389648438,\n                  114.271484375\n                ],\n                [\n                  89.39999389648438,\n                  114.271484375\n                ],\n                [\n                  89.39999389648438,\n                  115.271484375\n                ],\n                [\n                  88.39999389648438,\n                  115.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.39999389648438,\n                114.271484375,\n                89.39999389648438,\n                115.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/13/TableCell/493\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>39</td>\",\n              \"polygon\": [\n                [\n                  89.39999389648438,\n                  114.271484375\n                ],\n                [\n                  90.39999389648438,\n                  114.271484375\n                ],\n                [\n                  90.39999389648438,\n                  115.271484375\n                ],\n                [\n                  89.39999389648438,\n                  115.271484375\n                ]\n              ],\n              \"bbox\": [\n                89.39999389648438,\n                114.271484375,\n                90.39999389648438,\n                115.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/331\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>5</th>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  81.404296875\n                ],\n                [\n                  130.60000610351562,\n                  81.404296875\n                ],\n                [\n                  130.60000610351562,\n                  82.404296875\n                ],\n                [\n                  129.60000610351562,\n                  82.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                81.404296875,\n                130.60000610351562,\n                82.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/332\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  81.404296875\n                ],\n                [\n                  131.60000610351562,\n                  81.404296875\n                ],\n                [\n                  131.60000610351562,\n                  82.404296875\n                ],\n                [\n                  130.60000610351562,\n                  82.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                81.404296875,\n                131.60000610351562,\n                82.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/333\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Conditionals and recursion</th>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  81.404296875\n                ],\n                [\n                  132.60000610351562,\n                  81.404296875\n                ],\n                [\n                  132.60000610351562,\n                  82.404296875\n                ],\n                [\n                  131.60000610351562,\n                  82.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                81.404296875,\n                132.60000610351562,\n                82.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/334\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>41</th>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  81.404296875\n                ],\n                [\n                  133.60000610351562,\n                  81.404296875\n                ],\n                [\n                  133.60000610351562,\n                  82.404296875\n                ],\n                [\n                  132.60000610351562,\n                  82.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                81.404296875,\n                133.60000610351562,\n                82.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/335\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  82.404296875\n                ],\n                [\n                  130.60000610351562,\n                  82.404296875\n                ],\n                [\n                  130.60000610351562,\n                  83.404296875\n                ],\n                [\n                  129.60000610351562,\n                  83.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                82.404296875,\n                130.60000610351562,\n                83.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/336\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.1</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  82.404296875\n                ],\n                [\n                  131.60000610351562,\n                  82.404296875\n                ],\n                [\n                  131.60000610351562,\n                  83.404296875\n                ],\n                [\n                  130.60000610351562,\n                  83.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                82.404296875,\n                131.60000610351562,\n                83.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/337\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Modulus operator</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  82.404296875\n                ],\n                [\n                  132.60000610351562,\n                  82.404296875\n                ],\n                [\n                  132.60000610351562,\n                  83.404296875\n                ],\n                [\n                  131.60000610351562,\n                  83.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                82.404296875,\n                132.60000610351562,\n                83.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/338\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>41</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  82.404296875\n                ],\n                [\n                  133.60000610351562,\n                  82.404296875\n                ],\n                [\n                  133.60000610351562,\n                  83.404296875\n                ],\n                [\n                  132.60000610351562,\n                  83.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                82.404296875,\n                133.60000610351562,\n                83.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/339\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  83.404296875\n                ],\n                [\n                  130.60000610351562,\n                  83.404296875\n                ],\n                [\n                  130.60000610351562,\n                  84.404296875\n                ],\n                [\n                  129.60000610351562,\n                  84.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                83.404296875,\n                130.60000610351562,\n                84.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/340\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.2</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  83.404296875\n                ],\n                [\n                  131.60000610351562,\n                  83.404296875\n                ],\n                [\n                  131.60000610351562,\n                  84.404296875\n                ],\n                [\n                  130.60000610351562,\n                  84.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                83.404296875,\n                131.60000610351562,\n                84.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/341\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Boolean expressions</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  83.404296875\n                ],\n                [\n                  132.60000610351562,\n                  83.404296875\n                ],\n                [\n                  132.60000610351562,\n                  84.404296875\n                ],\n                [\n                  131.60000610351562,\n                  84.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                83.404296875,\n                132.60000610351562,\n                84.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/342\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>41</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  83.404296875\n                ],\n                [\n                  133.60000610351562,\n                  83.404296875\n                ],\n                [\n                  133.60000610351562,\n                  84.404296875\n                ],\n                [\n                  132.60000610351562,\n                  84.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                83.404296875,\n                133.60000610351562,\n                84.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/343\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  84.404296875\n                ],\n                [\n                  130.60000610351562,\n                  84.404296875\n                ],\n                [\n                  130.60000610351562,\n                  85.404296875\n                ],\n                [\n                  129.60000610351562,\n                  85.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                84.404296875,\n                130.60000610351562,\n                85.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/344\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.3</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  84.404296875\n                ],\n                [\n                  131.60000610351562,\n                  84.404296875\n                ],\n                [\n                  131.60000610351562,\n                  85.404296875\n                ],\n                [\n                  130.60000610351562,\n                  85.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                84.404296875,\n                131.60000610351562,\n                85.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/345\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Logical operators</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  84.404296875\n                ],\n                [\n                  132.60000610351562,\n                  84.404296875\n                ],\n                [\n                  132.60000610351562,\n                  85.404296875\n                ],\n                [\n                  131.60000610351562,\n                  85.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                84.404296875,\n                132.60000610351562,\n                85.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/346\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>42</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  84.404296875\n                ],\n                [\n                  133.60000610351562,\n                  84.404296875\n                ],\n                [\n                  133.60000610351562,\n                  85.404296875\n                ],\n                [\n                  132.60000610351562,\n                  85.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                84.404296875,\n                133.60000610351562,\n                85.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/347\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  85.404296875\n                ],\n                [\n                  130.60000610351562,\n                  85.404296875\n                ],\n                [\n                  130.60000610351562,\n                  86.404296875\n                ],\n                [\n                  129.60000610351562,\n                  86.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                85.404296875,\n                130.60000610351562,\n                86.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/348\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.4</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  85.404296875\n                ],\n                [\n                  131.60000610351562,\n                  85.404296875\n                ],\n                [\n                  131.60000610351562,\n                  86.404296875\n                ],\n                [\n                  130.60000610351562,\n                  86.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                85.404296875,\n                131.60000610351562,\n                86.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/349\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Conditional execution</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  85.404296875\n                ],\n                [\n                  132.60000610351562,\n                  85.404296875\n                ],\n                [\n                  132.60000610351562,\n                  86.404296875\n                ],\n                [\n                  131.60000610351562,\n                  86.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                85.404296875,\n                132.60000610351562,\n                86.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/350\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>42</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  85.404296875\n                ],\n                [\n                  133.60000610351562,\n                  85.404296875\n                ],\n                [\n                  133.60000610351562,\n                  86.404296875\n                ],\n                [\n                  132.60000610351562,\n                  86.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                85.404296875,\n                133.60000610351562,\n                86.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/351\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  86.404296875\n                ],\n                [\n                  130.60000610351562,\n                  86.404296875\n                ],\n                [\n                  130.60000610351562,\n                  87.404296875\n                ],\n                [\n                  129.60000610351562,\n                  87.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                86.404296875,\n                130.60000610351562,\n                87.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/352\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.5</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  86.404296875\n                ],\n                [\n                  131.60000610351562,\n                  86.404296875\n                ],\n                [\n                  131.60000610351562,\n                  87.404296875\n                ],\n                [\n                  130.60000610351562,\n                  87.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                86.404296875,\n                131.60000610351562,\n                87.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/353\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Alternative execution</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  86.404296875\n                ],\n                [\n                  132.60000610351562,\n                  86.404296875\n                ],\n                [\n                  132.60000610351562,\n                  87.404296875\n                ],\n                [\n                  131.60000610351562,\n                  87.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                86.404296875,\n                132.60000610351562,\n                87.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/354\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>43</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  86.404296875\n                ],\n                [\n                  133.60000610351562,\n                  86.404296875\n                ],\n                [\n                  133.60000610351562,\n                  87.404296875\n                ],\n                [\n                  132.60000610351562,\n                  87.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                86.404296875,\n                133.60000610351562,\n                87.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/355\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  87.404296875\n                ],\n                [\n                  130.60000610351562,\n                  87.404296875\n                ],\n                [\n                  130.60000610351562,\n                  88.404296875\n                ],\n                [\n                  129.60000610351562,\n                  88.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                87.404296875,\n                130.60000610351562,\n                88.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/356\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.6</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  87.404296875\n                ],\n                [\n                  131.60000610351562,\n                  87.404296875\n                ],\n                [\n                  131.60000610351562,\n                  88.404296875\n                ],\n                [\n                  130.60000610351562,\n                  88.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                87.404296875,\n                131.60000610351562,\n                88.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/357\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Chained conditionals</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  87.404296875\n                ],\n                [\n                  132.60000610351562,\n                  87.404296875\n                ],\n                [\n                  132.60000610351562,\n                  88.404296875\n                ],\n                [\n                  131.60000610351562,\n                  88.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                87.404296875,\n                132.60000610351562,\n                88.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/358\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>43</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  87.404296875\n                ],\n                [\n                  133.60000610351562,\n                  87.404296875\n                ],\n                [\n                  133.60000610351562,\n                  88.404296875\n                ],\n                [\n                  132.60000610351562,\n                  88.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                87.404296875,\n                133.60000610351562,\n                88.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/359\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  88.404296875\n                ],\n                [\n                  130.60000610351562,\n                  88.404296875\n                ],\n                [\n                  130.60000610351562,\n                  89.404296875\n                ],\n                [\n                  129.60000610351562,\n                  89.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                88.404296875,\n                130.60000610351562,\n                89.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/360\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.7</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  88.404296875\n                ],\n                [\n                  131.60000610351562,\n                  88.404296875\n                ],\n                [\n                  131.60000610351562,\n                  89.404296875\n                ],\n                [\n                  130.60000610351562,\n                  89.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                88.404296875,\n                131.60000610351562,\n                89.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/361\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Nested conditionals</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  88.404296875\n                ],\n                [\n                  132.60000610351562,\n                  88.404296875\n                ],\n                [\n                  132.60000610351562,\n                  89.404296875\n                ],\n                [\n                  131.60000610351562,\n                  89.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                88.404296875,\n                132.60000610351562,\n                89.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/362\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>43</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  88.404296875\n                ],\n                [\n                  133.60000610351562,\n                  88.404296875\n                ],\n                [\n                  133.60000610351562,\n                  89.404296875\n                ],\n                [\n                  132.60000610351562,\n                  89.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                88.404296875,\n                133.60000610351562,\n                89.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/363\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  89.404296875\n                ],\n                [\n                  130.60000610351562,\n                  89.404296875\n                ],\n                [\n                  130.60000610351562,\n                  90.404296875\n                ],\n                [\n                  129.60000610351562,\n                  90.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                89.404296875,\n                130.60000610351562,\n                90.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/364\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.8</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  89.404296875\n                ],\n                [\n                  131.60000610351562,\n                  89.404296875\n                ],\n                [\n                  131.60000610351562,\n                  90.404296875\n                ],\n                [\n                  130.60000610351562,\n                  90.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                89.404296875,\n                131.60000610351562,\n                90.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/365\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Recursion</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  89.404296875\n                ],\n                [\n                  132.60000610351562,\n                  89.404296875\n                ],\n                [\n                  132.60000610351562,\n                  90.404296875\n                ],\n                [\n                  131.60000610351562,\n                  90.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                89.404296875,\n                132.60000610351562,\n                90.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/366\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>44</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  89.404296875\n                ],\n                [\n                  133.60000610351562,\n                  89.404296875\n                ],\n                [\n                  133.60000610351562,\n                  90.404296875\n                ],\n                [\n                  132.60000610351562,\n                  90.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                89.404296875,\n                133.60000610351562,\n                90.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/367\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  90.404296875\n                ],\n                [\n                  130.60000610351562,\n                  90.404296875\n                ],\n                [\n                  130.60000610351562,\n                  91.404296875\n                ],\n                [\n                  129.60000610351562,\n                  91.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                90.404296875,\n                130.60000610351562,\n                91.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/368\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.9</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  90.404296875\n                ],\n                [\n                  131.60000610351562,\n                  90.404296875\n                ],\n                [\n                  131.60000610351562,\n                  91.404296875\n                ],\n                [\n                  130.60000610351562,\n                  91.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                90.404296875,\n                131.60000610351562,\n                91.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/369\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Stack diagrams for recursive functions</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  90.404296875\n                ],\n                [\n                  132.60000610351562,\n                  90.404296875\n                ],\n                [\n                  132.60000610351562,\n                  91.404296875\n                ],\n                [\n                  131.60000610351562,\n                  91.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                90.404296875,\n                132.60000610351562,\n                91.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/370\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>45</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  90.404296875\n                ],\n                [\n                  133.60000610351562,\n                  90.404296875\n                ],\n                [\n                  133.60000610351562,\n                  91.404296875\n                ],\n                [\n                  132.60000610351562,\n                  91.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                90.404296875,\n                133.60000610351562,\n                91.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/371\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  91.404296875\n                ],\n                [\n                  130.60000610351562,\n                  91.404296875\n                ],\n                [\n                  130.60000610351562,\n                  92.404296875\n                ],\n                [\n                  129.60000610351562,\n                  92.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                91.404296875,\n                130.60000610351562,\n                92.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/372\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.10</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  91.404296875\n                ],\n                [\n                  131.60000610351562,\n                  91.404296875\n                ],\n                [\n                  131.60000610351562,\n                  92.404296875\n                ],\n                [\n                  130.60000610351562,\n                  92.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                91.404296875,\n                131.60000610351562,\n                92.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/373\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Infinite recursion</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  91.404296875\n                ],\n                [\n                  132.60000610351562,\n                  91.404296875\n                ],\n                [\n                  132.60000610351562,\n                  92.404296875\n                ],\n                [\n                  131.60000610351562,\n                  92.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                91.404296875,\n                132.60000610351562,\n                92.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/374\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>46</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  91.404296875\n                ],\n                [\n                  133.60000610351562,\n                  91.404296875\n                ],\n                [\n                  133.60000610351562,\n                  92.404296875\n                ],\n                [\n                  132.60000610351562,\n                  92.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                91.404296875,\n                133.60000610351562,\n                92.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/375\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  92.404296875\n                ],\n                [\n                  130.60000610351562,\n                  92.404296875\n                ],\n                [\n                  130.60000610351562,\n                  93.404296875\n                ],\n                [\n                  129.60000610351562,\n                  93.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                92.404296875,\n                130.60000610351562,\n                93.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/376\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.11</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  92.404296875\n                ],\n                [\n                  131.60000610351562,\n                  92.404296875\n                ],\n                [\n                  131.60000610351562,\n                  93.404296875\n                ],\n                [\n                  130.60000610351562,\n                  93.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                92.404296875,\n                131.60000610351562,\n                93.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/377\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Keyboard input</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  92.404296875\n                ],\n                [\n                  132.60000610351562,\n                  92.404296875\n                ],\n                [\n                  132.60000610351562,\n                  93.404296875\n                ],\n                [\n                  131.60000610351562,\n                  93.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                92.404296875,\n                132.60000610351562,\n                93.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/378\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>46</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  92.404296875\n                ],\n                [\n                  133.60000610351562,\n                  92.404296875\n                ],\n                [\n                  133.60000610351562,\n                  93.404296875\n                ],\n                [\n                  132.60000610351562,\n                  93.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                92.404296875,\n                133.60000610351562,\n                93.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/379\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  93.404296875\n                ],\n                [\n                  130.60000610351562,\n                  93.404296875\n                ],\n                [\n                  130.60000610351562,\n                  94.404296875\n                ],\n                [\n                  129.60000610351562,\n                  94.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                93.404296875,\n                130.60000610351562,\n                94.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/380\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.12</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  93.404296875\n                ],\n                [\n                  131.60000610351562,\n                  93.404296875\n                ],\n                [\n                  131.60000610351562,\n                  94.404296875\n                ],\n                [\n                  130.60000610351562,\n                  94.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                93.404296875,\n                131.60000610351562,\n                94.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/381\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  93.404296875\n                ],\n                [\n                  132.60000610351562,\n                  93.404296875\n                ],\n                [\n                  132.60000610351562,\n                  94.404296875\n                ],\n                [\n                  131.60000610351562,\n                  94.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                93.404296875,\n                132.60000610351562,\n                94.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/382\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>47</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  93.404296875\n                ],\n                [\n                  133.60000610351562,\n                  93.404296875\n                ],\n                [\n                  133.60000610351562,\n                  94.404296875\n                ],\n                [\n                  132.60000610351562,\n                  94.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                93.404296875,\n                133.60000610351562,\n                94.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/383\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  94.404296875\n                ],\n                [\n                  130.60000610351562,\n                  94.404296875\n                ],\n                [\n                  130.60000610351562,\n                  95.404296875\n                ],\n                [\n                  129.60000610351562,\n                  95.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                94.404296875,\n                130.60000610351562,\n                95.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/384\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.13</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  94.404296875\n                ],\n                [\n                  131.60000610351562,\n                  94.404296875\n                ],\n                [\n                  131.60000610351562,\n                  95.404296875\n                ],\n                [\n                  130.60000610351562,\n                  95.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                94.404296875,\n                131.60000610351562,\n                95.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/385\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  94.404296875\n                ],\n                [\n                  132.60000610351562,\n                  94.404296875\n                ],\n                [\n                  132.60000610351562,\n                  95.404296875\n                ],\n                [\n                  131.60000610351562,\n                  95.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                94.404296875,\n                132.60000610351562,\n                95.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/386\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>48</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  94.404296875\n                ],\n                [\n                  133.60000610351562,\n                  94.404296875\n                ],\n                [\n                  133.60000610351562,\n                  95.404296875\n                ],\n                [\n                  132.60000610351562,\n                  95.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                94.404296875,\n                133.60000610351562,\n                95.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/387\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  95.404296875\n                ],\n                [\n                  130.60000610351562,\n                  95.404296875\n                ],\n                [\n                  130.60000610351562,\n                  96.404296875\n                ],\n                [\n                  129.60000610351562,\n                  96.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                95.404296875,\n                130.60000610351562,\n                96.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/388\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>5.14</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  95.404296875\n                ],\n                [\n                  131.60000610351562,\n                  95.404296875\n                ],\n                [\n                  131.60000610351562,\n                  96.404296875\n                ],\n                [\n                  130.60000610351562,\n                  96.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                95.404296875,\n                131.60000610351562,\n                96.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/389\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  95.404296875\n                ],\n                [\n                  132.60000610351562,\n                  95.404296875\n                ],\n                [\n                  132.60000610351562,\n                  96.404296875\n                ],\n                [\n                  131.60000610351562,\n                  96.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                95.404296875,\n                132.60000610351562,\n                96.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/390\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>49</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  95.404296875\n                ],\n                [\n                  133.60000610351562,\n                  95.404296875\n                ],\n                [\n                  133.60000610351562,\n                  96.404296875\n                ],\n                [\n                  132.60000610351562,\n                  96.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                95.404296875,\n                133.60000610351562,\n                96.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/391\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>6</th>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  96.404296875\n                ],\n                [\n                  130.60000610351562,\n                  96.404296875\n                ],\n                [\n                  130.60000610351562,\n                  97.404296875\n                ],\n                [\n                  129.60000610351562,\n                  97.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                96.404296875,\n                130.60000610351562,\n                97.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/392\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  96.404296875\n                ],\n                [\n                  131.60000610351562,\n                  96.404296875\n                ],\n                [\n                  131.60000610351562,\n                  97.404296875\n                ],\n                [\n                  130.60000610351562,\n                  97.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                96.404296875,\n                131.60000610351562,\n                97.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/393\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Fruitful functions</th>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  96.404296875\n                ],\n                [\n                  132.60000610351562,\n                  96.404296875\n                ],\n                [\n                  132.60000610351562,\n                  97.404296875\n                ],\n                [\n                  131.60000610351562,\n                  97.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                96.404296875,\n                132.60000610351562,\n                97.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/394\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>51</th>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  96.404296875\n                ],\n                [\n                  133.60000610351562,\n                  96.404296875\n                ],\n                [\n                  133.60000610351562,\n                  97.404296875\n                ],\n                [\n                  132.60000610351562,\n                  97.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                96.404296875,\n                133.60000610351562,\n                97.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/395\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  97.404296875\n                ],\n                [\n                  130.60000610351562,\n                  97.404296875\n                ],\n                [\n                  130.60000610351562,\n                  98.404296875\n                ],\n                [\n                  129.60000610351562,\n                  98.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                97.404296875,\n                130.60000610351562,\n                98.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/396\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.1</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  97.404296875\n                ],\n                [\n                  131.60000610351562,\n                  97.404296875\n                ],\n                [\n                  131.60000610351562,\n                  98.404296875\n                ],\n                [\n                  130.60000610351562,\n                  98.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                97.404296875,\n                131.60000610351562,\n                98.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/397\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Return values</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  97.404296875\n                ],\n                [\n                  132.60000610351562,\n                  97.404296875\n                ],\n                [\n                  132.60000610351562,\n                  98.404296875\n                ],\n                [\n                  131.60000610351562,\n                  98.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                97.404296875,\n                132.60000610351562,\n                98.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/398\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>51</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  97.404296875\n                ],\n                [\n                  133.60000610351562,\n                  97.404296875\n                ],\n                [\n                  133.60000610351562,\n                  98.404296875\n                ],\n                [\n                  132.60000610351562,\n                  98.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                97.404296875,\n                133.60000610351562,\n                98.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/399\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  98.404296875\n                ],\n                [\n                  130.60000610351562,\n                  98.404296875\n                ],\n                [\n                  130.60000610351562,\n                  99.404296875\n                ],\n                [\n                  129.60000610351562,\n                  99.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                98.404296875,\n                130.60000610351562,\n                99.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/400\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.2</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  98.404296875\n                ],\n                [\n                  131.60000610351562,\n                  98.404296875\n                ],\n                [\n                  131.60000610351562,\n                  99.404296875\n                ],\n                [\n                  130.60000610351562,\n                  99.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                98.404296875,\n                131.60000610351562,\n                99.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/401\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Incremental development</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  98.404296875\n                ],\n                [\n                  132.60000610351562,\n                  98.404296875\n                ],\n                [\n                  132.60000610351562,\n                  99.404296875\n                ],\n                [\n                  131.60000610351562,\n                  99.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                98.404296875,\n                132.60000610351562,\n                99.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/402\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>52</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  98.404296875\n                ],\n                [\n                  133.60000610351562,\n                  98.404296875\n                ],\n                [\n                  133.60000610351562,\n                  99.404296875\n                ],\n                [\n                  132.60000610351562,\n                  99.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                98.404296875,\n                133.60000610351562,\n                99.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/403\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  99.404296875\n                ],\n                [\n                  130.60000610351562,\n                  99.404296875\n                ],\n                [\n                  130.60000610351562,\n                  100.404296875\n                ],\n                [\n                  129.60000610351562,\n                  100.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                99.404296875,\n                130.60000610351562,\n                100.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/404\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.3</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  99.404296875\n                ],\n                [\n                  131.60000610351562,\n                  99.404296875\n                ],\n                [\n                  131.60000610351562,\n                  100.404296875\n                ],\n                [\n                  130.60000610351562,\n                  100.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                99.404296875,\n                131.60000610351562,\n                100.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/405\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Composition</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  99.404296875\n                ],\n                [\n                  132.60000610351562,\n                  99.404296875\n                ],\n                [\n                  132.60000610351562,\n                  100.404296875\n                ],\n                [\n                  131.60000610351562,\n                  100.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                99.404296875,\n                132.60000610351562,\n                100.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/406\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>54</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  99.404296875\n                ],\n                [\n                  133.60000610351562,\n                  99.404296875\n                ],\n                [\n                  133.60000610351562,\n                  100.404296875\n                ],\n                [\n                  132.60000610351562,\n                  100.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                99.404296875,\n                133.60000610351562,\n                100.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/407\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  100.404296875\n                ],\n                [\n                  130.60000610351562,\n                  100.404296875\n                ],\n                [\n                  130.60000610351562,\n                  101.404296875\n                ],\n                [\n                  129.60000610351562,\n                  101.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                100.404296875,\n                130.60000610351562,\n                101.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/408\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.4</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  100.404296875\n                ],\n                [\n                  131.60000610351562,\n                  100.404296875\n                ],\n                [\n                  131.60000610351562,\n                  101.404296875\n                ],\n                [\n                  130.60000610351562,\n                  101.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                100.404296875,\n                131.60000610351562,\n                101.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/409\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Boolean functions</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  100.404296875\n                ],\n                [\n                  132.60000610351562,\n                  100.404296875\n                ],\n                [\n                  132.60000610351562,\n                  101.404296875\n                ],\n                [\n                  131.60000610351562,\n                  101.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                100.404296875,\n                132.60000610351562,\n                101.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/410\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>54</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  100.404296875\n                ],\n                [\n                  133.60000610351562,\n                  100.404296875\n                ],\n                [\n                  133.60000610351562,\n                  101.404296875\n                ],\n                [\n                  132.60000610351562,\n                  101.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                100.404296875,\n                133.60000610351562,\n                101.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/411\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  101.404296875\n                ],\n                [\n                  130.60000610351562,\n                  101.404296875\n                ],\n                [\n                  130.60000610351562,\n                  102.404296875\n                ],\n                [\n                  129.60000610351562,\n                  102.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                101.404296875,\n                130.60000610351562,\n                102.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/412\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.5</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  101.404296875\n                ],\n                [\n                  131.60000610351562,\n                  101.404296875\n                ],\n                [\n                  131.60000610351562,\n                  102.404296875\n                ],\n                [\n                  130.60000610351562,\n                  102.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                101.404296875,\n                131.60000610351562,\n                102.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/413\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>More recursion</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  101.404296875\n                ],\n                [\n                  132.60000610351562,\n                  101.404296875\n                ],\n                [\n                  132.60000610351562,\n                  102.404296875\n                ],\n                [\n                  131.60000610351562,\n                  102.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                101.404296875,\n                132.60000610351562,\n                102.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/414\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>55</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  101.404296875\n                ],\n                [\n                  133.60000610351562,\n                  101.404296875\n                ],\n                [\n                  133.60000610351562,\n                  102.404296875\n                ],\n                [\n                  132.60000610351562,\n                  102.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                101.404296875,\n                133.60000610351562,\n                102.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/415\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  102.404296875\n                ],\n                [\n                  130.60000610351562,\n                  102.404296875\n                ],\n                [\n                  130.60000610351562,\n                  103.404296875\n                ],\n                [\n                  129.60000610351562,\n                  103.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                102.404296875,\n                130.60000610351562,\n                103.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/416\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.6</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  102.404296875\n                ],\n                [\n                  131.60000610351562,\n                  102.404296875\n                ],\n                [\n                  131.60000610351562,\n                  103.404296875\n                ],\n                [\n                  130.60000610351562,\n                  103.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                102.404296875,\n                131.60000610351562,\n                103.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/417\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Leap of faith</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  102.404296875\n                ],\n                [\n                  132.60000610351562,\n                  102.404296875\n                ],\n                [\n                  132.60000610351562,\n                  103.404296875\n                ],\n                [\n                  131.60000610351562,\n                  103.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                102.404296875,\n                132.60000610351562,\n                103.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/418\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>57</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  102.404296875\n                ],\n                [\n                  133.60000610351562,\n                  102.404296875\n                ],\n                [\n                  133.60000610351562,\n                  103.404296875\n                ],\n                [\n                  132.60000610351562,\n                  103.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                102.404296875,\n                133.60000610351562,\n                103.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/419\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  103.404296875\n                ],\n                [\n                  130.60000610351562,\n                  103.404296875\n                ],\n                [\n                  130.60000610351562,\n                  104.404296875\n                ],\n                [\n                  129.60000610351562,\n                  104.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                103.404296875,\n                130.60000610351562,\n                104.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/420\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.7</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  103.404296875\n                ],\n                [\n                  131.60000610351562,\n                  103.404296875\n                ],\n                [\n                  131.60000610351562,\n                  104.404296875\n                ],\n                [\n                  130.60000610351562,\n                  104.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                103.404296875,\n                131.60000610351562,\n                104.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/421\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>One more example</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  103.404296875\n                ],\n                [\n                  132.60000610351562,\n                  103.404296875\n                ],\n                [\n                  132.60000610351562,\n                  104.404296875\n                ],\n                [\n                  131.60000610351562,\n                  104.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                103.404296875,\n                132.60000610351562,\n                104.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/422\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>57</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  103.404296875\n                ],\n                [\n                  133.60000610351562,\n                  103.404296875\n                ],\n                [\n                  133.60000610351562,\n                  104.404296875\n                ],\n                [\n                  132.60000610351562,\n                  104.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                103.404296875,\n                133.60000610351562,\n                104.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/423\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  104.404296875\n                ],\n                [\n                  130.60000610351562,\n                  104.404296875\n                ],\n                [\n                  130.60000610351562,\n                  105.404296875\n                ],\n                [\n                  129.60000610351562,\n                  105.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                104.404296875,\n                130.60000610351562,\n                105.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/424\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.8</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  104.404296875\n                ],\n                [\n                  131.60000610351562,\n                  104.404296875\n                ],\n                [\n                  131.60000610351562,\n                  105.404296875\n                ],\n                [\n                  130.60000610351562,\n                  105.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                104.404296875,\n                131.60000610351562,\n                105.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/425\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Checking types</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  104.404296875\n                ],\n                [\n                  132.60000610351562,\n                  104.404296875\n                ],\n                [\n                  132.60000610351562,\n                  105.404296875\n                ],\n                [\n                  131.60000610351562,\n                  105.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                104.404296875,\n                132.60000610351562,\n                105.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/426\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>58</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  104.404296875\n                ],\n                [\n                  133.60000610351562,\n                  104.404296875\n                ],\n                [\n                  133.60000610351562,\n                  105.404296875\n                ],\n                [\n                  132.60000610351562,\n                  105.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                104.404296875,\n                133.60000610351562,\n                105.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/427\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  105.404296875\n                ],\n                [\n                  130.60000610351562,\n                  105.404296875\n                ],\n                [\n                  130.60000610351562,\n                  106.404296875\n                ],\n                [\n                  129.60000610351562,\n                  106.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                105.404296875,\n                130.60000610351562,\n                106.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/428\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.9</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  105.404296875\n                ],\n                [\n                  131.60000610351562,\n                  105.404296875\n                ],\n                [\n                  131.60000610351562,\n                  106.404296875\n                ],\n                [\n                  130.60000610351562,\n                  106.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                105.404296875,\n                131.60000610351562,\n                106.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/429\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  105.404296875\n                ],\n                [\n                  132.60000610351562,\n                  105.404296875\n                ],\n                [\n                  132.60000610351562,\n                  106.404296875\n                ],\n                [\n                  131.60000610351562,\n                  106.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                105.404296875,\n                132.60000610351562,\n                106.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/430\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>59</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  105.404296875\n                ],\n                [\n                  133.60000610351562,\n                  105.404296875\n                ],\n                [\n                  133.60000610351562,\n                  106.404296875\n                ],\n                [\n                  132.60000610351562,\n                  106.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                105.404296875,\n                133.60000610351562,\n                106.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/431\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  106.404296875\n                ],\n                [\n                  130.60000610351562,\n                  106.404296875\n                ],\n                [\n                  130.60000610351562,\n                  107.404296875\n                ],\n                [\n                  129.60000610351562,\n                  107.404296875\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                106.404296875,\n                130.60000610351562,\n                107.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/432\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6.10</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  106.404296875\n                ],\n                [\n                  131.60000610351562,\n                  106.404296875\n                ],\n                [\n                  131.60000610351562,\n                  107.404296875\n                ],\n                [\n                  130.60000610351562,\n                  107.404296875\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                106.404296875,\n                131.60000610351562,\n                107.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/433\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  106.404296875\n                ],\n                [\n                  132.60000610351562,\n                  106.404296875\n                ],\n                [\n                  132.60000610351562,\n                  107.404296875\n                ],\n                [\n                  131.60000610351562,\n                  107.404296875\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                106.404296875,\n                132.60000610351562,\n                107.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/14/TableCell/434\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>60</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  106.404296875\n                ],\n                [\n                  133.60000610351562,\n                  106.404296875\n                ],\n                [\n                  133.60000610351562,\n                  107.404296875\n                ],\n                [\n                  132.60000610351562,\n                  107.404296875\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                106.404296875,\n                133.60000610351562,\n                107.404296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/384\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>7</th>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  84.111328125\n                ],\n                [\n                  85.7177734375,\n                  84.111328125\n                ],\n                [\n                  85.7177734375,\n                  85.111328125\n                ],\n                [\n                  84.7177734375,\n                  85.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                84.111328125,\n                85.7177734375,\n                85.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/385\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Iteration</th>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  84.111328125\n                ],\n                [\n                  86.7177734375,\n                  84.111328125\n                ],\n                [\n                  86.7177734375,\n                  85.111328125\n                ],\n                [\n                  85.7177734375,\n                  85.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                84.111328125,\n                86.7177734375,\n                85.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/386\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  84.111328125\n                ],\n                [\n                  87.7177734375,\n                  84.111328125\n                ],\n                [\n                  87.7177734375,\n                  85.111328125\n                ],\n                [\n                  86.7177734375,\n                  85.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                84.111328125,\n                87.7177734375,\n                85.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/387\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>6</th>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  84.111328125\n                ],\n                [\n                  88.7177734375,\n                  84.111328125\n                ],\n                [\n                  88.7177734375,\n                  85.111328125\n                ],\n                [\n                  87.7177734375,\n                  85.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                84.111328125,\n                88.7177734375,\n                85.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/388\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  85.111328125\n                ],\n                [\n                  85.7177734375,\n                  85.111328125\n                ],\n                [\n                  85.7177734375,\n                  86.111328125\n                ],\n                [\n                  84.7177734375,\n                  86.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                85.111328125,\n                85.7177734375,\n                86.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/389\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7.1</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  85.111328125\n                ],\n                [\n                  86.7177734375,\n                  85.111328125\n                ],\n                [\n                  86.7177734375,\n                  86.111328125\n                ],\n                [\n                  85.7177734375,\n                  86.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                85.111328125,\n                86.7177734375,\n                86.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/390\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Multiple assignment</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  85.111328125\n                ],\n                [\n                  87.7177734375,\n                  85.111328125\n                ],\n                [\n                  87.7177734375,\n                  86.111328125\n                ],\n                [\n                  86.7177734375,\n                  86.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                85.111328125,\n                87.7177734375,\n                86.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/391\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  85.111328125\n                ],\n                [\n                  88.7177734375,\n                  85.111328125\n                ],\n                [\n                  88.7177734375,\n                  86.111328125\n                ],\n                [\n                  87.7177734375,\n                  86.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                85.111328125,\n                88.7177734375,\n                86.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/392\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  86.111328125\n                ],\n                [\n                  85.7177734375,\n                  86.111328125\n                ],\n                [\n                  85.7177734375,\n                  87.111328125\n                ],\n                [\n                  84.7177734375,\n                  87.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                86.111328125,\n                85.7177734375,\n                87.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/393\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7.2</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  86.111328125\n                ],\n                [\n                  86.7177734375,\n                  86.111328125\n                ],\n                [\n                  86.7177734375,\n                  87.111328125\n                ],\n                [\n                  85.7177734375,\n                  87.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                86.111328125,\n                86.7177734375,\n                87.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/394\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Updating variables</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  86.111328125\n                ],\n                [\n                  87.7177734375,\n                  86.111328125\n                ],\n                [\n                  87.7177734375,\n                  87.111328125\n                ],\n                [\n                  86.7177734375,\n                  87.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                86.111328125,\n                87.7177734375,\n                87.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/395\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  86.111328125\n                ],\n                [\n                  88.7177734375,\n                  86.111328125\n                ],\n                [\n                  88.7177734375,\n                  87.111328125\n                ],\n                [\n                  87.7177734375,\n                  87.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                86.111328125,\n                88.7177734375,\n                87.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/396\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  87.111328125\n                ],\n                [\n                  85.7177734375,\n                  87.111328125\n                ],\n                [\n                  85.7177734375,\n                  88.111328125\n                ],\n                [\n                  84.7177734375,\n                  88.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                87.111328125,\n                85.7177734375,\n                88.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/397\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7.3</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  87.111328125\n                ],\n                [\n                  86.7177734375,\n                  87.111328125\n                ],\n                [\n                  86.7177734375,\n                  88.111328125\n                ],\n                [\n                  85.7177734375,\n                  88.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                87.111328125,\n                86.7177734375,\n                88.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/398\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>The while statement</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  87.111328125\n                ],\n                [\n                  87.7177734375,\n                  87.111328125\n                ],\n                [\n                  87.7177734375,\n                  88.111328125\n                ],\n                [\n                  86.7177734375,\n                  88.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                87.111328125,\n                87.7177734375,\n                88.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/399\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  87.111328125\n                ],\n                [\n                  88.7177734375,\n                  87.111328125\n                ],\n                [\n                  88.7177734375,\n                  88.111328125\n                ],\n                [\n                  87.7177734375,\n                  88.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                87.111328125,\n                88.7177734375,\n                88.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/400\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  88.111328125\n                ],\n                [\n                  85.7177734375,\n                  88.111328125\n                ],\n                [\n                  85.7177734375,\n                  89.111328125\n                ],\n                [\n                  84.7177734375,\n                  89.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                88.111328125,\n                85.7177734375,\n                89.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/401\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7.4</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  88.111328125\n                ],\n                [\n                  86.7177734375,\n                  88.111328125\n                ],\n                [\n                  86.7177734375,\n                  89.111328125\n                ],\n                [\n                  85.7177734375,\n                  89.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                88.111328125,\n                86.7177734375,\n                89.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/402\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>break</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  88.111328125\n                ],\n                [\n                  87.7177734375,\n                  88.111328125\n                ],\n                [\n                  87.7177734375,\n                  89.111328125\n                ],\n                [\n                  86.7177734375,\n                  89.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                88.111328125,\n                87.7177734375,\n                89.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/403\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  88.111328125\n                ],\n                [\n                  88.7177734375,\n                  88.111328125\n                ],\n                [\n                  88.7177734375,\n                  89.111328125\n                ],\n                [\n                  87.7177734375,\n                  89.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                88.111328125,\n                88.7177734375,\n                89.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/404\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  89.111328125\n                ],\n                [\n                  85.7177734375,\n                  89.111328125\n                ],\n                [\n                  85.7177734375,\n                  90.111328125\n                ],\n                [\n                  84.7177734375,\n                  90.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                89.111328125,\n                85.7177734375,\n                90.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/405\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7.5</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  89.111328125\n                ],\n                [\n                  86.7177734375,\n                  89.111328125\n                ],\n                [\n                  86.7177734375,\n                  90.111328125\n                ],\n                [\n                  85.7177734375,\n                  90.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                89.111328125,\n                86.7177734375,\n                90.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/406\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Square roots</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  89.111328125\n                ],\n                [\n                  87.7177734375,\n                  89.111328125\n                ],\n                [\n                  87.7177734375,\n                  90.111328125\n                ],\n                [\n                  86.7177734375,\n                  90.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                89.111328125,\n                87.7177734375,\n                90.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/407\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  89.111328125\n                ],\n                [\n                  88.7177734375,\n                  89.111328125\n                ],\n                [\n                  88.7177734375,\n                  90.111328125\n                ],\n                [\n                  87.7177734375,\n                  90.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                89.111328125,\n                88.7177734375,\n                90.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/408\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  90.111328125\n                ],\n                [\n                  85.7177734375,\n                  90.111328125\n                ],\n                [\n                  85.7177734375,\n                  91.111328125\n                ],\n                [\n                  84.7177734375,\n                  91.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                90.111328125,\n                85.7177734375,\n                91.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/409\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7.6</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  90.111328125\n                ],\n                [\n                  86.7177734375,\n                  90.111328125\n                ],\n                [\n                  86.7177734375,\n                  91.111328125\n                ],\n                [\n                  85.7177734375,\n                  91.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                90.111328125,\n                86.7177734375,\n                91.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/410\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Algorithms</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  90.111328125\n                ],\n                [\n                  87.7177734375,\n                  90.111328125\n                ],\n                [\n                  87.7177734375,\n                  91.111328125\n                ],\n                [\n                  86.7177734375,\n                  91.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                90.111328125,\n                87.7177734375,\n                91.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/411\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  90.111328125\n                ],\n                [\n                  88.7177734375,\n                  90.111328125\n                ],\n                [\n                  88.7177734375,\n                  91.111328125\n                ],\n                [\n                  87.7177734375,\n                  91.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                90.111328125,\n                88.7177734375,\n                91.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/412\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  91.111328125\n                ],\n                [\n                  85.7177734375,\n                  91.111328125\n                ],\n                [\n                  85.7177734375,\n                  92.111328125\n                ],\n                [\n                  84.7177734375,\n                  92.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                91.111328125,\n                85.7177734375,\n                92.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/413\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7.7</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  91.111328125\n                ],\n                [\n                  86.7177734375,\n                  91.111328125\n                ],\n                [\n                  86.7177734375,\n                  92.111328125\n                ],\n                [\n                  85.7177734375,\n                  92.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                91.111328125,\n                86.7177734375,\n                92.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/414\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  91.111328125\n                ],\n                [\n                  87.7177734375,\n                  91.111328125\n                ],\n                [\n                  87.7177734375,\n                  92.111328125\n                ],\n                [\n                  86.7177734375,\n                  92.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                91.111328125,\n                87.7177734375,\n                92.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/415\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  91.111328125\n                ],\n                [\n                  88.7177734375,\n                  91.111328125\n                ],\n                [\n                  88.7177734375,\n                  92.111328125\n                ],\n                [\n                  87.7177734375,\n                  92.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                91.111328125,\n                88.7177734375,\n                92.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/416\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  92.111328125\n                ],\n                [\n                  85.7177734375,\n                  92.111328125\n                ],\n                [\n                  85.7177734375,\n                  93.111328125\n                ],\n                [\n                  84.7177734375,\n                  93.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                92.111328125,\n                85.7177734375,\n                93.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/417\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7.8</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  92.111328125\n                ],\n                [\n                  86.7177734375,\n                  92.111328125\n                ],\n                [\n                  86.7177734375,\n                  93.111328125\n                ],\n                [\n                  85.7177734375,\n                  93.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                92.111328125,\n                86.7177734375,\n                93.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/418\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  92.111328125\n                ],\n                [\n                  87.7177734375,\n                  92.111328125\n                ],\n                [\n                  87.7177734375,\n                  93.111328125\n                ],\n                [\n                  86.7177734375,\n                  93.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                92.111328125,\n                87.7177734375,\n                93.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/419\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  92.111328125\n                ],\n                [\n                  88.7177734375,\n                  92.111328125\n                ],\n                [\n                  88.7177734375,\n                  93.111328125\n                ],\n                [\n                  87.7177734375,\n                  93.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                92.111328125,\n                88.7177734375,\n                93.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/420\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  93.111328125\n                ],\n                [\n                  85.7177734375,\n                  93.111328125\n                ],\n                [\n                  85.7177734375,\n                  94.111328125\n                ],\n                [\n                  84.7177734375,\n                  94.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                93.111328125,\n                85.7177734375,\n                94.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/421\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7.9</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  93.111328125\n                ],\n                [\n                  86.7177734375,\n                  93.111328125\n                ],\n                [\n                  86.7177734375,\n                  94.111328125\n                ],\n                [\n                  85.7177734375,\n                  94.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                93.111328125,\n                86.7177734375,\n                94.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/422\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  93.111328125\n                ],\n                [\n                  87.7177734375,\n                  93.111328125\n                ],\n                [\n                  87.7177734375,\n                  94.111328125\n                ],\n                [\n                  86.7177734375,\n                  94.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                93.111328125,\n                87.7177734375,\n                94.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/423\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>6</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  93.111328125\n                ],\n                [\n                  88.7177734375,\n                  93.111328125\n                ],\n                [\n                  88.7177734375,\n                  94.111328125\n                ],\n                [\n                  87.7177734375,\n                  94.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                93.111328125,\n                88.7177734375,\n                94.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/424\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>8</th>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  94.111328125\n                ],\n                [\n                  85.7177734375,\n                  94.111328125\n                ],\n                [\n                  85.7177734375,\n                  95.111328125\n                ],\n                [\n                  84.7177734375,\n                  95.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                94.111328125,\n                85.7177734375,\n                95.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/425\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Strings</th>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  94.111328125\n                ],\n                [\n                  86.7177734375,\n                  94.111328125\n                ],\n                [\n                  86.7177734375,\n                  95.111328125\n                ],\n                [\n                  85.7177734375,\n                  95.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                94.111328125,\n                86.7177734375,\n                95.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/426\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  94.111328125\n                ],\n                [\n                  87.7177734375,\n                  94.111328125\n                ],\n                [\n                  87.7177734375,\n                  95.111328125\n                ],\n                [\n                  86.7177734375,\n                  95.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                94.111328125,\n                87.7177734375,\n                95.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/427\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>7</th>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  94.111328125\n                ],\n                [\n                  88.7177734375,\n                  94.111328125\n                ],\n                [\n                  88.7177734375,\n                  95.111328125\n                ],\n                [\n                  87.7177734375,\n                  95.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                94.111328125,\n                88.7177734375,\n                95.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/428\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  95.111328125\n                ],\n                [\n                  85.7177734375,\n                  95.111328125\n                ],\n                [\n                  85.7177734375,\n                  96.111328125\n                ],\n                [\n                  84.7177734375,\n                  96.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                95.111328125,\n                85.7177734375,\n                96.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/429\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.1</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  95.111328125\n                ],\n                [\n                  86.7177734375,\n                  95.111328125\n                ],\n                [\n                  86.7177734375,\n                  96.111328125\n                ],\n                [\n                  85.7177734375,\n                  96.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                95.111328125,\n                86.7177734375,\n                96.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/430\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>A string is a sequence</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  95.111328125\n                ],\n                [\n                  87.7177734375,\n                  95.111328125\n                ],\n                [\n                  87.7177734375,\n                  96.111328125\n                ],\n                [\n                  86.7177734375,\n                  96.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                95.111328125,\n                87.7177734375,\n                96.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/431\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  95.111328125\n                ],\n                [\n                  88.7177734375,\n                  95.111328125\n                ],\n                [\n                  88.7177734375,\n                  96.111328125\n                ],\n                [\n                  87.7177734375,\n                  96.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                95.111328125,\n                88.7177734375,\n                96.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/432\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  96.111328125\n                ],\n                [\n                  85.7177734375,\n                  96.111328125\n                ],\n                [\n                  85.7177734375,\n                  97.111328125\n                ],\n                [\n                  84.7177734375,\n                  97.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                96.111328125,\n                85.7177734375,\n                97.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/433\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.2</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  96.111328125\n                ],\n                [\n                  86.7177734375,\n                  96.111328125\n                ],\n                [\n                  86.7177734375,\n                  97.111328125\n                ],\n                [\n                  85.7177734375,\n                  97.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                96.111328125,\n                86.7177734375,\n                97.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/434\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>len</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  96.111328125\n                ],\n                [\n                  87.7177734375,\n                  96.111328125\n                ],\n                [\n                  87.7177734375,\n                  97.111328125\n                ],\n                [\n                  86.7177734375,\n                  97.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                96.111328125,\n                87.7177734375,\n                97.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/435\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  96.111328125\n                ],\n                [\n                  88.7177734375,\n                  96.111328125\n                ],\n                [\n                  88.7177734375,\n                  97.111328125\n                ],\n                [\n                  87.7177734375,\n                  97.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                96.111328125,\n                88.7177734375,\n                97.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/436\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  97.111328125\n                ],\n                [\n                  85.7177734375,\n                  97.111328125\n                ],\n                [\n                  85.7177734375,\n                  98.111328125\n                ],\n                [\n                  84.7177734375,\n                  98.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                97.111328125,\n                85.7177734375,\n                98.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/437\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.3</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  97.111328125\n                ],\n                [\n                  86.7177734375,\n                  97.111328125\n                ],\n                [\n                  86.7177734375,\n                  98.111328125\n                ],\n                [\n                  85.7177734375,\n                  98.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                97.111328125,\n                86.7177734375,\n                98.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/438\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Traversal with a for loop</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  97.111328125\n                ],\n                [\n                  87.7177734375,\n                  97.111328125\n                ],\n                [\n                  87.7177734375,\n                  98.111328125\n                ],\n                [\n                  86.7177734375,\n                  98.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                97.111328125,\n                87.7177734375,\n                98.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/439\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  97.111328125\n                ],\n                [\n                  88.7177734375,\n                  97.111328125\n                ],\n                [\n                  88.7177734375,\n                  98.111328125\n                ],\n                [\n                  87.7177734375,\n                  98.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                97.111328125,\n                88.7177734375,\n                98.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/440\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  98.111328125\n                ],\n                [\n                  85.7177734375,\n                  98.111328125\n                ],\n                [\n                  85.7177734375,\n                  99.111328125\n                ],\n                [\n                  84.7177734375,\n                  99.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                98.111328125,\n                85.7177734375,\n                99.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/441\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.4</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  98.111328125\n                ],\n                [\n                  86.7177734375,\n                  98.111328125\n                ],\n                [\n                  86.7177734375,\n                  99.111328125\n                ],\n                [\n                  85.7177734375,\n                  99.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                98.111328125,\n                86.7177734375,\n                99.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/442\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>String slices</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  98.111328125\n                ],\n                [\n                  87.7177734375,\n                  98.111328125\n                ],\n                [\n                  87.7177734375,\n                  99.111328125\n                ],\n                [\n                  86.7177734375,\n                  99.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                98.111328125,\n                87.7177734375,\n                99.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/443\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  98.111328125\n                ],\n                [\n                  88.7177734375,\n                  98.111328125\n                ],\n                [\n                  88.7177734375,\n                  99.111328125\n                ],\n                [\n                  87.7177734375,\n                  99.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                98.111328125,\n                88.7177734375,\n                99.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/444\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  99.111328125\n                ],\n                [\n                  85.7177734375,\n                  99.111328125\n                ],\n                [\n                  85.7177734375,\n                  100.111328125\n                ],\n                [\n                  84.7177734375,\n                  100.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                99.111328125,\n                85.7177734375,\n                100.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/445\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.5</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  99.111328125\n                ],\n                [\n                  86.7177734375,\n                  99.111328125\n                ],\n                [\n                  86.7177734375,\n                  100.111328125\n                ],\n                [\n                  85.7177734375,\n                  100.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                99.111328125,\n                86.7177734375,\n                100.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/446\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Strings are immutable</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  99.111328125\n                ],\n                [\n                  87.7177734375,\n                  99.111328125\n                ],\n                [\n                  87.7177734375,\n                  100.111328125\n                ],\n                [\n                  86.7177734375,\n                  100.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                99.111328125,\n                87.7177734375,\n                100.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/447\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  99.111328125\n                ],\n                [\n                  88.7177734375,\n                  99.111328125\n                ],\n                [\n                  88.7177734375,\n                  100.111328125\n                ],\n                [\n                  87.7177734375,\n                  100.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                99.111328125,\n                88.7177734375,\n                100.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/448\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  100.111328125\n                ],\n                [\n                  85.7177734375,\n                  100.111328125\n                ],\n                [\n                  85.7177734375,\n                  101.111328125\n                ],\n                [\n                  84.7177734375,\n                  101.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                100.111328125,\n                85.7177734375,\n                101.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/449\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.6</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  100.111328125\n                ],\n                [\n                  86.7177734375,\n                  100.111328125\n                ],\n                [\n                  86.7177734375,\n                  101.111328125\n                ],\n                [\n                  85.7177734375,\n                  101.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                100.111328125,\n                86.7177734375,\n                101.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/450\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Searching</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  100.111328125\n                ],\n                [\n                  87.7177734375,\n                  100.111328125\n                ],\n                [\n                  87.7177734375,\n                  101.111328125\n                ],\n                [\n                  86.7177734375,\n                  101.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                100.111328125,\n                87.7177734375,\n                101.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/451\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  100.111328125\n                ],\n                [\n                  88.7177734375,\n                  100.111328125\n                ],\n                [\n                  88.7177734375,\n                  101.111328125\n                ],\n                [\n                  87.7177734375,\n                  101.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                100.111328125,\n                88.7177734375,\n                101.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/452\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  101.111328125\n                ],\n                [\n                  85.7177734375,\n                  101.111328125\n                ],\n                [\n                  85.7177734375,\n                  102.111328125\n                ],\n                [\n                  84.7177734375,\n                  102.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                101.111328125,\n                85.7177734375,\n                102.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/453\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.7</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  101.111328125\n                ],\n                [\n                  86.7177734375,\n                  101.111328125\n                ],\n                [\n                  86.7177734375,\n                  102.111328125\n                ],\n                [\n                  85.7177734375,\n                  102.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                101.111328125,\n                86.7177734375,\n                102.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/454\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Looping and counting</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  101.111328125\n                ],\n                [\n                  87.7177734375,\n                  101.111328125\n                ],\n                [\n                  87.7177734375,\n                  102.111328125\n                ],\n                [\n                  86.7177734375,\n                  102.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                101.111328125,\n                87.7177734375,\n                102.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/455\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  101.111328125\n                ],\n                [\n                  88.7177734375,\n                  101.111328125\n                ],\n                [\n                  88.7177734375,\n                  102.111328125\n                ],\n                [\n                  87.7177734375,\n                  102.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                101.111328125,\n                88.7177734375,\n                102.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/456\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  102.111328125\n                ],\n                [\n                  85.7177734375,\n                  102.111328125\n                ],\n                [\n                  85.7177734375,\n                  103.111328125\n                ],\n                [\n                  84.7177734375,\n                  103.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                102.111328125,\n                85.7177734375,\n                103.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/457\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.8</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  102.111328125\n                ],\n                [\n                  86.7177734375,\n                  102.111328125\n                ],\n                [\n                  86.7177734375,\n                  103.111328125\n                ],\n                [\n                  85.7177734375,\n                  103.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                102.111328125,\n                86.7177734375,\n                103.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/458\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>String methods</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  102.111328125\n                ],\n                [\n                  87.7177734375,\n                  102.111328125\n                ],\n                [\n                  87.7177734375,\n                  103.111328125\n                ],\n                [\n                  86.7177734375,\n                  103.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                102.111328125,\n                87.7177734375,\n                103.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/459\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  102.111328125\n                ],\n                [\n                  88.7177734375,\n                  102.111328125\n                ],\n                [\n                  88.7177734375,\n                  103.111328125\n                ],\n                [\n                  87.7177734375,\n                  103.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                102.111328125,\n                88.7177734375,\n                103.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/460\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  103.111328125\n                ],\n                [\n                  85.7177734375,\n                  103.111328125\n                ],\n                [\n                  85.7177734375,\n                  104.111328125\n                ],\n                [\n                  84.7177734375,\n                  104.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                103.111328125,\n                85.7177734375,\n                104.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/461\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.9</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  103.111328125\n                ],\n                [\n                  86.7177734375,\n                  103.111328125\n                ],\n                [\n                  86.7177734375,\n                  104.111328125\n                ],\n                [\n                  85.7177734375,\n                  104.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                103.111328125,\n                86.7177734375,\n                104.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/462\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>The in operator</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  103.111328125\n                ],\n                [\n                  87.7177734375,\n                  103.111328125\n                ],\n                [\n                  87.7177734375,\n                  104.111328125\n                ],\n                [\n                  86.7177734375,\n                  104.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                103.111328125,\n                87.7177734375,\n                104.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/463\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  103.111328125\n                ],\n                [\n                  88.7177734375,\n                  103.111328125\n                ],\n                [\n                  88.7177734375,\n                  104.111328125\n                ],\n                [\n                  87.7177734375,\n                  104.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                103.111328125,\n                88.7177734375,\n                104.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/464\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  104.111328125\n                ],\n                [\n                  85.7177734375,\n                  104.111328125\n                ],\n                [\n                  85.7177734375,\n                  105.111328125\n                ],\n                [\n                  84.7177734375,\n                  105.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                104.111328125,\n                85.7177734375,\n                105.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/465\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.10</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  104.111328125\n                ],\n                [\n                  86.7177734375,\n                  104.111328125\n                ],\n                [\n                  86.7177734375,\n                  105.111328125\n                ],\n                [\n                  85.7177734375,\n                  105.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                104.111328125,\n                86.7177734375,\n                105.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/466\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>String comparison</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  104.111328125\n                ],\n                [\n                  87.7177734375,\n                  104.111328125\n                ],\n                [\n                  87.7177734375,\n                  105.111328125\n                ],\n                [\n                  86.7177734375,\n                  105.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                104.111328125,\n                87.7177734375,\n                105.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/467\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  104.111328125\n                ],\n                [\n                  88.7177734375,\n                  104.111328125\n                ],\n                [\n                  88.7177734375,\n                  105.111328125\n                ],\n                [\n                  87.7177734375,\n                  105.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                104.111328125,\n                88.7177734375,\n                105.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/468\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  105.111328125\n                ],\n                [\n                  85.7177734375,\n                  105.111328125\n                ],\n                [\n                  85.7177734375,\n                  106.111328125\n                ],\n                [\n                  84.7177734375,\n                  106.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                105.111328125,\n                85.7177734375,\n                106.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/469\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.11</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  105.111328125\n                ],\n                [\n                  86.7177734375,\n                  105.111328125\n                ],\n                [\n                  86.7177734375,\n                  106.111328125\n                ],\n                [\n                  85.7177734375,\n                  106.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                105.111328125,\n                86.7177734375,\n                106.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/470\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  105.111328125\n                ],\n                [\n                  87.7177734375,\n                  105.111328125\n                ],\n                [\n                  87.7177734375,\n                  106.111328125\n                ],\n                [\n                  86.7177734375,\n                  106.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                105.111328125,\n                87.7177734375,\n                106.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/471\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  105.111328125\n                ],\n                [\n                  88.7177734375,\n                  105.111328125\n                ],\n                [\n                  88.7177734375,\n                  106.111328125\n                ],\n                [\n                  87.7177734375,\n                  106.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                105.111328125,\n                88.7177734375,\n                106.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/472\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  106.111328125\n                ],\n                [\n                  85.7177734375,\n                  106.111328125\n                ],\n                [\n                  85.7177734375,\n                  107.111328125\n                ],\n                [\n                  84.7177734375,\n                  107.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                106.111328125,\n                85.7177734375,\n                107.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/473\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.12</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  106.111328125\n                ],\n                [\n                  86.7177734375,\n                  106.111328125\n                ],\n                [\n                  86.7177734375,\n                  107.111328125\n                ],\n                [\n                  85.7177734375,\n                  107.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                106.111328125,\n                86.7177734375,\n                107.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/474\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  106.111328125\n                ],\n                [\n                  87.7177734375,\n                  106.111328125\n                ],\n                [\n                  87.7177734375,\n                  107.111328125\n                ],\n                [\n                  86.7177734375,\n                  107.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                106.111328125,\n                87.7177734375,\n                107.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/475\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  106.111328125\n                ],\n                [\n                  88.7177734375,\n                  106.111328125\n                ],\n                [\n                  88.7177734375,\n                  107.111328125\n                ],\n                [\n                  87.7177734375,\n                  107.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                106.111328125,\n                88.7177734375,\n                107.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/476\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  107.111328125\n                ],\n                [\n                  85.7177734375,\n                  107.111328125\n                ],\n                [\n                  85.7177734375,\n                  108.111328125\n                ],\n                [\n                  84.7177734375,\n                  108.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                107.111328125,\n                85.7177734375,\n                108.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/477\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8.13</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  107.111328125\n                ],\n                [\n                  86.7177734375,\n                  107.111328125\n                ],\n                [\n                  86.7177734375,\n                  108.111328125\n                ],\n                [\n                  85.7177734375,\n                  108.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                107.111328125,\n                86.7177734375,\n                108.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/478\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  107.111328125\n                ],\n                [\n                  87.7177734375,\n                  107.111328125\n                ],\n                [\n                  87.7177734375,\n                  108.111328125\n                ],\n                [\n                  86.7177734375,\n                  108.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                107.111328125,\n                87.7177734375,\n                108.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/479\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>7</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  107.111328125\n                ],\n                [\n                  88.7177734375,\n                  107.111328125\n                ],\n                [\n                  88.7177734375,\n                  108.111328125\n                ],\n                [\n                  87.7177734375,\n                  108.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                107.111328125,\n                88.7177734375,\n                108.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/480\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>9</th>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  108.111328125\n                ],\n                [\n                  85.7177734375,\n                  108.111328125\n                ],\n                [\n                  85.7177734375,\n                  109.111328125\n                ],\n                [\n                  84.7177734375,\n                  109.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                108.111328125,\n                85.7177734375,\n                109.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/481\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td colspan=\\\"2\\\">Case study: word play</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  108.111328125\n                ],\n                [\n                  87.7177734375,\n                  108.111328125\n                ],\n                [\n                  87.7177734375,\n                  109.111328125\n                ],\n                [\n                  85.7177734375,\n                  109.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                108.111328125,\n                87.7177734375,\n                109.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/482\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>8</th>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  108.111328125\n                ],\n                [\n                  88.7177734375,\n                  108.111328125\n                ],\n                [\n                  88.7177734375,\n                  109.111328125\n                ],\n                [\n                  87.7177734375,\n                  109.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                108.111328125,\n                88.7177734375,\n                109.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/483\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  109.111328125\n                ],\n                [\n                  85.7177734375,\n                  109.111328125\n                ],\n                [\n                  85.7177734375,\n                  110.111328125\n                ],\n                [\n                  84.7177734375,\n                  110.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                109.111328125,\n                85.7177734375,\n                110.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/484\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>9.1</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  109.111328125\n                ],\n                [\n                  86.7177734375,\n                  109.111328125\n                ],\n                [\n                  86.7177734375,\n                  110.111328125\n                ],\n                [\n                  85.7177734375,\n                  110.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                109.111328125,\n                86.7177734375,\n                110.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/485\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Reading word lists</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  109.111328125\n                ],\n                [\n                  87.7177734375,\n                  109.111328125\n                ],\n                [\n                  87.7177734375,\n                  110.111328125\n                ],\n                [\n                  86.7177734375,\n                  110.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                109.111328125,\n                87.7177734375,\n                110.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/486\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  109.111328125\n                ],\n                [\n                  88.7177734375,\n                  109.111328125\n                ],\n                [\n                  88.7177734375,\n                  110.111328125\n                ],\n                [\n                  87.7177734375,\n                  110.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                109.111328125,\n                88.7177734375,\n                110.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/487\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  110.111328125\n                ],\n                [\n                  85.7177734375,\n                  110.111328125\n                ],\n                [\n                  85.7177734375,\n                  111.111328125\n                ],\n                [\n                  84.7177734375,\n                  111.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                110.111328125,\n                85.7177734375,\n                111.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/488\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>9.2</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  110.111328125\n                ],\n                [\n                  86.7177734375,\n                  110.111328125\n                ],\n                [\n                  86.7177734375,\n                  111.111328125\n                ],\n                [\n                  85.7177734375,\n                  111.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                110.111328125,\n                86.7177734375,\n                111.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/489\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  110.111328125\n                ],\n                [\n                  87.7177734375,\n                  110.111328125\n                ],\n                [\n                  87.7177734375,\n                  111.111328125\n                ],\n                [\n                  86.7177734375,\n                  111.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                110.111328125,\n                87.7177734375,\n                111.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/490\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  110.111328125\n                ],\n                [\n                  88.7177734375,\n                  110.111328125\n                ],\n                [\n                  88.7177734375,\n                  111.111328125\n                ],\n                [\n                  87.7177734375,\n                  111.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                110.111328125,\n                88.7177734375,\n                111.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/491\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  111.111328125\n                ],\n                [\n                  85.7177734375,\n                  111.111328125\n                ],\n                [\n                  85.7177734375,\n                  112.111328125\n                ],\n                [\n                  84.7177734375,\n                  112.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                111.111328125,\n                85.7177734375,\n                112.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/492\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>9.3</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  111.111328125\n                ],\n                [\n                  86.7177734375,\n                  111.111328125\n                ],\n                [\n                  86.7177734375,\n                  112.111328125\n                ],\n                [\n                  85.7177734375,\n                  112.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                111.111328125,\n                86.7177734375,\n                112.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/493\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Search</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  111.111328125\n                ],\n                [\n                  87.7177734375,\n                  111.111328125\n                ],\n                [\n                  87.7177734375,\n                  112.111328125\n                ],\n                [\n                  86.7177734375,\n                  112.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                111.111328125,\n                87.7177734375,\n                112.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/494\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  111.111328125\n                ],\n                [\n                  88.7177734375,\n                  111.111328125\n                ],\n                [\n                  88.7177734375,\n                  112.111328125\n                ],\n                [\n                  87.7177734375,\n                  112.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                111.111328125,\n                88.7177734375,\n                112.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/495\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  112.111328125\n                ],\n                [\n                  85.7177734375,\n                  112.111328125\n                ],\n                [\n                  85.7177734375,\n                  113.111328125\n                ],\n                [\n                  84.7177734375,\n                  113.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                112.111328125,\n                85.7177734375,\n                113.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/496\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>9.4</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  112.111328125\n                ],\n                [\n                  86.7177734375,\n                  112.111328125\n                ],\n                [\n                  86.7177734375,\n                  113.111328125\n                ],\n                [\n                  85.7177734375,\n                  113.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                112.111328125,\n                86.7177734375,\n                113.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/497\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Looping with indices</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  112.111328125\n                ],\n                [\n                  87.7177734375,\n                  112.111328125\n                ],\n                [\n                  87.7177734375,\n                  113.111328125\n                ],\n                [\n                  86.7177734375,\n                  113.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                112.111328125,\n                87.7177734375,\n                113.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/498\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  112.111328125\n                ],\n                [\n                  88.7177734375,\n                  112.111328125\n                ],\n                [\n                  88.7177734375,\n                  113.111328125\n                ],\n                [\n                  87.7177734375,\n                  113.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                112.111328125,\n                88.7177734375,\n                113.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/499\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  113.111328125\n                ],\n                [\n                  85.7177734375,\n                  113.111328125\n                ],\n                [\n                  85.7177734375,\n                  114.111328125\n                ],\n                [\n                  84.7177734375,\n                  114.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                113.111328125,\n                85.7177734375,\n                114.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/500\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>9.5</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  113.111328125\n                ],\n                [\n                  86.7177734375,\n                  113.111328125\n                ],\n                [\n                  86.7177734375,\n                  114.111328125\n                ],\n                [\n                  85.7177734375,\n                  114.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                113.111328125,\n                86.7177734375,\n                114.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/501\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  113.111328125\n                ],\n                [\n                  87.7177734375,\n                  113.111328125\n                ],\n                [\n                  87.7177734375,\n                  114.111328125\n                ],\n                [\n                  86.7177734375,\n                  114.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                113.111328125,\n                87.7177734375,\n                114.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/502\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  113.111328125\n                ],\n                [\n                  88.7177734375,\n                  113.111328125\n                ],\n                [\n                  88.7177734375,\n                  114.111328125\n                ],\n                [\n                  87.7177734375,\n                  114.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                113.111328125,\n                88.7177734375,\n                114.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/503\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  114.111328125\n                ],\n                [\n                  85.7177734375,\n                  114.111328125\n                ],\n                [\n                  85.7177734375,\n                  115.111328125\n                ],\n                [\n                  84.7177734375,\n                  115.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                114.111328125,\n                85.7177734375,\n                115.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/504\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>9.6</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  114.111328125\n                ],\n                [\n                  86.7177734375,\n                  114.111328125\n                ],\n                [\n                  86.7177734375,\n                  115.111328125\n                ],\n                [\n                  85.7177734375,\n                  115.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                114.111328125,\n                86.7177734375,\n                115.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/505\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  114.111328125\n                ],\n                [\n                  87.7177734375,\n                  114.111328125\n                ],\n                [\n                  87.7177734375,\n                  115.111328125\n                ],\n                [\n                  86.7177734375,\n                  115.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                114.111328125,\n                87.7177734375,\n                115.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/506\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  114.111328125\n                ],\n                [\n                  88.7177734375,\n                  114.111328125\n                ],\n                [\n                  88.7177734375,\n                  115.111328125\n                ],\n                [\n                  87.7177734375,\n                  115.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                114.111328125,\n                88.7177734375,\n                115.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/507\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  84.7177734375,\n                  115.111328125\n                ],\n                [\n                  85.7177734375,\n                  115.111328125\n                ],\n                [\n                  85.7177734375,\n                  116.111328125\n                ],\n                [\n                  84.7177734375,\n                  116.111328125\n                ]\n              ],\n              \"bbox\": [\n                84.7177734375,\n                115.111328125,\n                85.7177734375,\n                116.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/508\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>9.7</td>\",\n              \"polygon\": [\n                [\n                  85.7177734375,\n                  115.111328125\n                ],\n                [\n                  86.7177734375,\n                  115.111328125\n                ],\n                [\n                  86.7177734375,\n                  116.111328125\n                ],\n                [\n                  85.7177734375,\n                  116.111328125\n                ]\n              ],\n              \"bbox\": [\n                85.7177734375,\n                115.111328125,\n                86.7177734375,\n                116.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/509\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  86.7177734375,\n                  115.111328125\n                ],\n                [\n                  87.7177734375,\n                  115.111328125\n                ],\n                [\n                  87.7177734375,\n                  116.111328125\n                ],\n                [\n                  86.7177734375,\n                  116.111328125\n                ]\n              ],\n              \"bbox\": [\n                86.7177734375,\n                115.111328125,\n                87.7177734375,\n                116.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/15/TableCell/510\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>8</td>\",\n              \"polygon\": [\n                [\n                  87.7177734375,\n                  115.111328125\n                ],\n                [\n                  88.7177734375,\n                  115.111328125\n                ],\n                [\n                  88.7177734375,\n                  116.111328125\n                ],\n                [\n                  87.7177734375,\n                  116.111328125\n                ]\n              ],\n              \"bbox\": [\n                87.7177734375,\n                115.111328125,\n                88.7177734375,\n                116.111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/346\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  83.53125\n                ],\n                [\n                  130.5999755859375,\n                  83.53125\n                ],\n                [\n                  130.5999755859375,\n                  84.53125\n                ],\n                [\n                  129.5999755859375,\n                  84.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                83.53125,\n                130.5999755859375,\n                84.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/347\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>10 Lists</th>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  83.53125\n                ],\n                [\n                  131.5999755859375,\n                  83.53125\n                ],\n                [\n                  131.5999755859375,\n                  84.53125\n                ],\n                [\n                  130.5999755859375,\n                  84.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                83.53125,\n                131.5999755859375,\n                84.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/348\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  83.53125\n                ],\n                [\n                  132.5999755859375,\n                  83.53125\n                ],\n                [\n                  132.5999755859375,\n                  84.53125\n                ],\n                [\n                  131.5999755859375,\n                  84.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                83.53125,\n                132.5999755859375,\n                84.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/349\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>87</th>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  83.53125\n                ],\n                [\n                  133.5999755859375,\n                  83.53125\n                ],\n                [\n                  133.5999755859375,\n                  84.53125\n                ],\n                [\n                  132.5999755859375,\n                  84.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                83.53125,\n                133.5999755859375,\n                84.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/350\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  84.53125\n                ],\n                [\n                  130.5999755859375,\n                  84.53125\n                ],\n                [\n                  130.5999755859375,\n                  85.53125\n                ],\n                [\n                  129.5999755859375,\n                  85.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                84.53125,\n                130.5999755859375,\n                85.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/351\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.1</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  84.53125\n                ],\n                [\n                  131.5999755859375,\n                  84.53125\n                ],\n                [\n                  131.5999755859375,\n                  85.53125\n                ],\n                [\n                  130.5999755859375,\n                  85.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                84.53125,\n                131.5999755859375,\n                85.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/352\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>A list is a sequence</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  84.53125\n                ],\n                [\n                  132.5999755859375,\n                  84.53125\n                ],\n                [\n                  132.5999755859375,\n                  85.53125\n                ],\n                [\n                  131.5999755859375,\n                  85.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                84.53125,\n                132.5999755859375,\n                85.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/353\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>87</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  84.53125\n                ],\n                [\n                  133.5999755859375,\n                  84.53125\n                ],\n                [\n                  133.5999755859375,\n                  85.53125\n                ],\n                [\n                  132.5999755859375,\n                  85.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                84.53125,\n                133.5999755859375,\n                85.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/354\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  85.53125\n                ],\n                [\n                  130.5999755859375,\n                  85.53125\n                ],\n                [\n                  130.5999755859375,\n                  86.53125\n                ],\n                [\n                  129.5999755859375,\n                  86.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                85.53125,\n                130.5999755859375,\n                86.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/355\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.2</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  85.53125\n                ],\n                [\n                  131.5999755859375,\n                  85.53125\n                ],\n                [\n                  131.5999755859375,\n                  86.53125\n                ],\n                [\n                  130.5999755859375,\n                  86.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                85.53125,\n                131.5999755859375,\n                86.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/356\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Lists are mutable</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  85.53125\n                ],\n                [\n                  132.5999755859375,\n                  85.53125\n                ],\n                [\n                  132.5999755859375,\n                  86.53125\n                ],\n                [\n                  131.5999755859375,\n                  86.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                85.53125,\n                132.5999755859375,\n                86.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/357\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>87</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  85.53125\n                ],\n                [\n                  133.5999755859375,\n                  85.53125\n                ],\n                [\n                  133.5999755859375,\n                  86.53125\n                ],\n                [\n                  132.5999755859375,\n                  86.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                85.53125,\n                133.5999755859375,\n                86.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/358\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  86.53125\n                ],\n                [\n                  130.5999755859375,\n                  86.53125\n                ],\n                [\n                  130.5999755859375,\n                  87.53125\n                ],\n                [\n                  129.5999755859375,\n                  87.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                86.53125,\n                130.5999755859375,\n                87.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/359\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.3</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  86.53125\n                ],\n                [\n                  131.5999755859375,\n                  86.53125\n                ],\n                [\n                  131.5999755859375,\n                  87.53125\n                ],\n                [\n                  130.5999755859375,\n                  87.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                86.53125,\n                131.5999755859375,\n                87.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/360\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Traversing a list</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  86.53125\n                ],\n                [\n                  132.5999755859375,\n                  86.53125\n                ],\n                [\n                  132.5999755859375,\n                  87.53125\n                ],\n                [\n                  131.5999755859375,\n                  87.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                86.53125,\n                132.5999755859375,\n                87.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/361\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>89</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  86.53125\n                ],\n                [\n                  133.5999755859375,\n                  86.53125\n                ],\n                [\n                  133.5999755859375,\n                  87.53125\n                ],\n                [\n                  132.5999755859375,\n                  87.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                86.53125,\n                133.5999755859375,\n                87.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/362\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  87.53125\n                ],\n                [\n                  130.5999755859375,\n                  87.53125\n                ],\n                [\n                  130.5999755859375,\n                  88.53125\n                ],\n                [\n                  129.5999755859375,\n                  88.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                87.53125,\n                130.5999755859375,\n                88.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/363\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.4</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  87.53125\n                ],\n                [\n                  131.5999755859375,\n                  87.53125\n                ],\n                [\n                  131.5999755859375,\n                  88.53125\n                ],\n                [\n                  130.5999755859375,\n                  88.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                87.53125,\n                131.5999755859375,\n                88.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/364\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>List operations</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  87.53125\n                ],\n                [\n                  132.5999755859375,\n                  87.53125\n                ],\n                [\n                  132.5999755859375,\n                  88.53125\n                ],\n                [\n                  131.5999755859375,\n                  88.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                87.53125,\n                132.5999755859375,\n                88.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/365\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>89</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  87.53125\n                ],\n                [\n                  133.5999755859375,\n                  87.53125\n                ],\n                [\n                  133.5999755859375,\n                  88.53125\n                ],\n                [\n                  132.5999755859375,\n                  88.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                87.53125,\n                133.5999755859375,\n                88.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/366\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  88.53125\n                ],\n                [\n                  130.5999755859375,\n                  88.53125\n                ],\n                [\n                  130.5999755859375,\n                  89.53125\n                ],\n                [\n                  129.5999755859375,\n                  89.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                88.53125,\n                130.5999755859375,\n                89.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/367\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.5</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  88.53125\n                ],\n                [\n                  131.5999755859375,\n                  88.53125\n                ],\n                [\n                  131.5999755859375,\n                  89.53125\n                ],\n                [\n                  130.5999755859375,\n                  89.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                88.53125,\n                131.5999755859375,\n                89.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/368\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>List slices</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  88.53125\n                ],\n                [\n                  132.5999755859375,\n                  88.53125\n                ],\n                [\n                  132.5999755859375,\n                  89.53125\n                ],\n                [\n                  131.5999755859375,\n                  89.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                88.53125,\n                132.5999755859375,\n                89.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/369\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>89</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  88.53125\n                ],\n                [\n                  133.5999755859375,\n                  88.53125\n                ],\n                [\n                  133.5999755859375,\n                  89.53125\n                ],\n                [\n                  132.5999755859375,\n                  89.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                88.53125,\n                133.5999755859375,\n                89.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/370\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  89.53125\n                ],\n                [\n                  130.5999755859375,\n                  89.53125\n                ],\n                [\n                  130.5999755859375,\n                  90.53125\n                ],\n                [\n                  129.5999755859375,\n                  90.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                89.53125,\n                130.5999755859375,\n                90.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/371\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.6</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  89.53125\n                ],\n                [\n                  131.5999755859375,\n                  89.53125\n                ],\n                [\n                  131.5999755859375,\n                  90.53125\n                ],\n                [\n                  130.5999755859375,\n                  90.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                89.53125,\n                131.5999755859375,\n                90.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/372\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>List methods</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  89.53125\n                ],\n                [\n                  132.5999755859375,\n                  89.53125\n                ],\n                [\n                  132.5999755859375,\n                  90.53125\n                ],\n                [\n                  131.5999755859375,\n                  90.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                89.53125,\n                132.5999755859375,\n                90.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/373\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>90</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  89.53125\n                ],\n                [\n                  133.5999755859375,\n                  89.53125\n                ],\n                [\n                  133.5999755859375,\n                  90.53125\n                ],\n                [\n                  132.5999755859375,\n                  90.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                89.53125,\n                133.5999755859375,\n                90.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/374\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  90.53125\n                ],\n                [\n                  130.5999755859375,\n                  90.53125\n                ],\n                [\n                  130.5999755859375,\n                  91.53125\n                ],\n                [\n                  129.5999755859375,\n                  91.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                90.53125,\n                130.5999755859375,\n                91.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/375\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.7</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  90.53125\n                ],\n                [\n                  131.5999755859375,\n                  90.53125\n                ],\n                [\n                  131.5999755859375,\n                  91.53125\n                ],\n                [\n                  130.5999755859375,\n                  91.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                90.53125,\n                131.5999755859375,\n                91.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/376\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Map, filter and reduce</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  90.53125\n                ],\n                [\n                  132.5999755859375,\n                  90.53125\n                ],\n                [\n                  132.5999755859375,\n                  91.53125\n                ],\n                [\n                  131.5999755859375,\n                  91.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                90.53125,\n                132.5999755859375,\n                91.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/377\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>91</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  90.53125\n                ],\n                [\n                  133.5999755859375,\n                  90.53125\n                ],\n                [\n                  133.5999755859375,\n                  91.53125\n                ],\n                [\n                  132.5999755859375,\n                  91.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                90.53125,\n                133.5999755859375,\n                91.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/378\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  91.53125\n                ],\n                [\n                  130.5999755859375,\n                  91.53125\n                ],\n                [\n                  130.5999755859375,\n                  92.53125\n                ],\n                [\n                  129.5999755859375,\n                  92.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                91.53125,\n                130.5999755859375,\n                92.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/379\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.8</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  91.53125\n                ],\n                [\n                  131.5999755859375,\n                  91.53125\n                ],\n                [\n                  131.5999755859375,\n                  92.53125\n                ],\n                [\n                  130.5999755859375,\n                  92.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                91.53125,\n                131.5999755859375,\n                92.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/380\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Deleting elements</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  91.53125\n                ],\n                [\n                  132.5999755859375,\n                  91.53125\n                ],\n                [\n                  132.5999755859375,\n                  92.53125\n                ],\n                [\n                  131.5999755859375,\n                  92.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                91.53125,\n                132.5999755859375,\n                92.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/381\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>92</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  91.53125\n                ],\n                [\n                  133.5999755859375,\n                  91.53125\n                ],\n                [\n                  133.5999755859375,\n                  92.53125\n                ],\n                [\n                  132.5999755859375,\n                  92.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                91.53125,\n                133.5999755859375,\n                92.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/382\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  92.53125\n                ],\n                [\n                  130.5999755859375,\n                  92.53125\n                ],\n                [\n                  130.5999755859375,\n                  93.53125\n                ],\n                [\n                  129.5999755859375,\n                  93.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                92.53125,\n                130.5999755859375,\n                93.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/383\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.9</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  92.53125\n                ],\n                [\n                  131.5999755859375,\n                  92.53125\n                ],\n                [\n                  131.5999755859375,\n                  93.53125\n                ],\n                [\n                  130.5999755859375,\n                  93.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                92.53125,\n                131.5999755859375,\n                93.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/384\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Lists and strings</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  92.53125\n                ],\n                [\n                  132.5999755859375,\n                  92.53125\n                ],\n                [\n                  132.5999755859375,\n                  93.53125\n                ],\n                [\n                  131.5999755859375,\n                  93.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                92.53125,\n                132.5999755859375,\n                93.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/385\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>93</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  92.53125\n                ],\n                [\n                  133.5999755859375,\n                  92.53125\n                ],\n                [\n                  133.5999755859375,\n                  93.53125\n                ],\n                [\n                  132.5999755859375,\n                  93.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                92.53125,\n                133.5999755859375,\n                93.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/386\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  93.53125\n                ],\n                [\n                  130.5999755859375,\n                  93.53125\n                ],\n                [\n                  130.5999755859375,\n                  94.53125\n                ],\n                [\n                  129.5999755859375,\n                  94.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                93.53125,\n                130.5999755859375,\n                94.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/387\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.10</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  93.53125\n                ],\n                [\n                  131.5999755859375,\n                  93.53125\n                ],\n                [\n                  131.5999755859375,\n                  94.53125\n                ],\n                [\n                  130.5999755859375,\n                  94.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                93.53125,\n                131.5999755859375,\n                94.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/388\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Objects and values</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  93.53125\n                ],\n                [\n                  132.5999755859375,\n                  93.53125\n                ],\n                [\n                  132.5999755859375,\n                  94.53125\n                ],\n                [\n                  131.5999755859375,\n                  94.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                93.53125,\n                132.5999755859375,\n                94.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/389\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>93</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  93.53125\n                ],\n                [\n                  133.5999755859375,\n                  93.53125\n                ],\n                [\n                  133.5999755859375,\n                  94.53125\n                ],\n                [\n                  132.5999755859375,\n                  94.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                93.53125,\n                133.5999755859375,\n                94.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/390\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  94.53125\n                ],\n                [\n                  130.5999755859375,\n                  94.53125\n                ],\n                [\n                  130.5999755859375,\n                  95.53125\n                ],\n                [\n                  129.5999755859375,\n                  95.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                94.53125,\n                130.5999755859375,\n                95.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/391\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.11</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  94.53125\n                ],\n                [\n                  131.5999755859375,\n                  94.53125\n                ],\n                [\n                  131.5999755859375,\n                  95.53125\n                ],\n                [\n                  130.5999755859375,\n                  95.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                94.53125,\n                131.5999755859375,\n                95.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/392\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Aliasing</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  94.53125\n                ],\n                [\n                  132.5999755859375,\n                  94.53125\n                ],\n                [\n                  132.5999755859375,\n                  95.53125\n                ],\n                [\n                  131.5999755859375,\n                  95.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                94.53125,\n                132.5999755859375,\n                95.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/393\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>94</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  94.53125\n                ],\n                [\n                  133.5999755859375,\n                  94.53125\n                ],\n                [\n                  133.5999755859375,\n                  95.53125\n                ],\n                [\n                  132.5999755859375,\n                  95.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                94.53125,\n                133.5999755859375,\n                95.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/394\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  95.53125\n                ],\n                [\n                  130.5999755859375,\n                  95.53125\n                ],\n                [\n                  130.5999755859375,\n                  96.53125\n                ],\n                [\n                  129.5999755859375,\n                  96.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                95.53125,\n                130.5999755859375,\n                96.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/395\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.12</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  95.53125\n                ],\n                [\n                  131.5999755859375,\n                  95.53125\n                ],\n                [\n                  131.5999755859375,\n                  96.53125\n                ],\n                [\n                  130.5999755859375,\n                  96.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                95.53125,\n                131.5999755859375,\n                96.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/396\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>List arguments</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  95.53125\n                ],\n                [\n                  132.5999755859375,\n                  95.53125\n                ],\n                [\n                  132.5999755859375,\n                  96.53125\n                ],\n                [\n                  131.5999755859375,\n                  96.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                95.53125,\n                132.5999755859375,\n                96.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/397\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>95</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  95.53125\n                ],\n                [\n                  133.5999755859375,\n                  95.53125\n                ],\n                [\n                  133.5999755859375,\n                  96.53125\n                ],\n                [\n                  132.5999755859375,\n                  96.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                95.53125,\n                133.5999755859375,\n                96.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/398\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  96.53125\n                ],\n                [\n                  130.5999755859375,\n                  96.53125\n                ],\n                [\n                  130.5999755859375,\n                  97.53125\n                ],\n                [\n                  129.5999755859375,\n                  97.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                96.53125,\n                130.5999755859375,\n                97.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/399\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.13</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  96.53125\n                ],\n                [\n                  131.5999755859375,\n                  96.53125\n                ],\n                [\n                  131.5999755859375,\n                  97.53125\n                ],\n                [\n                  130.5999755859375,\n                  97.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                96.53125,\n                131.5999755859375,\n                97.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/400\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  96.53125\n                ],\n                [\n                  132.5999755859375,\n                  96.53125\n                ],\n                [\n                  132.5999755859375,\n                  97.53125\n                ],\n                [\n                  131.5999755859375,\n                  97.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                96.53125,\n                132.5999755859375,\n                97.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/401\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>96</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  96.53125\n                ],\n                [\n                  133.5999755859375,\n                  96.53125\n                ],\n                [\n                  133.5999755859375,\n                  97.53125\n                ],\n                [\n                  132.5999755859375,\n                  97.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                96.53125,\n                133.5999755859375,\n                97.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/402\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  97.53125\n                ],\n                [\n                  130.5999755859375,\n                  97.53125\n                ],\n                [\n                  130.5999755859375,\n                  98.53125\n                ],\n                [\n                  129.5999755859375,\n                  98.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                97.53125,\n                130.5999755859375,\n                98.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/403\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.14</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  97.53125\n                ],\n                [\n                  131.5999755859375,\n                  97.53125\n                ],\n                [\n                  131.5999755859375,\n                  98.53125\n                ],\n                [\n                  130.5999755859375,\n                  98.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                97.53125,\n                131.5999755859375,\n                98.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/404\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  97.53125\n                ],\n                [\n                  132.5999755859375,\n                  97.53125\n                ],\n                [\n                  132.5999755859375,\n                  98.53125\n                ],\n                [\n                  131.5999755859375,\n                  98.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                97.53125,\n                132.5999755859375,\n                98.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/405\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>97</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  97.53125\n                ],\n                [\n                  133.5999755859375,\n                  97.53125\n                ],\n                [\n                  133.5999755859375,\n                  98.53125\n                ],\n                [\n                  132.5999755859375,\n                  98.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                97.53125,\n                133.5999755859375,\n                98.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/406\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  98.53125\n                ],\n                [\n                  130.5999755859375,\n                  98.53125\n                ],\n                [\n                  130.5999755859375,\n                  99.53125\n                ],\n                [\n                  129.5999755859375,\n                  99.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                98.53125,\n                130.5999755859375,\n                99.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/407\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10.15</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  98.53125\n                ],\n                [\n                  131.5999755859375,\n                  98.53125\n                ],\n                [\n                  131.5999755859375,\n                  99.53125\n                ],\n                [\n                  130.5999755859375,\n                  99.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                98.53125,\n                131.5999755859375,\n                99.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/408\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  98.53125\n                ],\n                [\n                  132.5999755859375,\n                  98.53125\n                ],\n                [\n                  132.5999755859375,\n                  99.53125\n                ],\n                [\n                  131.5999755859375,\n                  99.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                98.53125,\n                132.5999755859375,\n                99.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/409\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>98</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  98.53125\n                ],\n                [\n                  133.5999755859375,\n                  98.53125\n                ],\n                [\n                  133.5999755859375,\n                  99.53125\n                ],\n                [\n                  132.5999755859375,\n                  99.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                98.53125,\n                133.5999755859375,\n                99.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/410\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  99.53125\n                ],\n                [\n                  130.5999755859375,\n                  99.53125\n                ],\n                [\n                  130.5999755859375,\n                  100.53125\n                ],\n                [\n                  129.5999755859375,\n                  100.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                99.53125,\n                130.5999755859375,\n                100.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/411\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  99.53125\n                ],\n                [\n                  131.5999755859375,\n                  99.53125\n                ],\n                [\n                  131.5999755859375,\n                  100.53125\n                ],\n                [\n                  130.5999755859375,\n                  100.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                99.53125,\n                131.5999755859375,\n                100.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/412\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  99.53125\n                ],\n                [\n                  132.5999755859375,\n                  99.53125\n                ],\n                [\n                  132.5999755859375,\n                  100.53125\n                ],\n                [\n                  131.5999755859375,\n                  100.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                99.53125,\n                132.5999755859375,\n                100.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/413\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  99.53125\n                ],\n                [\n                  133.5999755859375,\n                  99.53125\n                ],\n                [\n                  133.5999755859375,\n                  100.53125\n                ],\n                [\n                  132.5999755859375,\n                  100.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                99.53125,\n                133.5999755859375,\n                100.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/414\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  100.53125\n                ],\n                [\n                  130.5999755859375,\n                  100.53125\n                ],\n                [\n                  130.5999755859375,\n                  101.53125\n                ],\n                [\n                  129.5999755859375,\n                  101.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                100.53125,\n                130.5999755859375,\n                101.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/415\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  100.53125\n                ],\n                [\n                  131.5999755859375,\n                  100.53125\n                ],\n                [\n                  131.5999755859375,\n                  101.53125\n                ],\n                [\n                  130.5999755859375,\n                  101.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                100.53125,\n                131.5999755859375,\n                101.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/416\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>11 Dictionaries</th>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  100.53125\n                ],\n                [\n                  132.5999755859375,\n                  100.53125\n                ],\n                [\n                  132.5999755859375,\n                  101.53125\n                ],\n                [\n                  131.5999755859375,\n                  101.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                100.53125,\n                132.5999755859375,\n                101.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/417\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>101</th>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  100.53125\n                ],\n                [\n                  133.5999755859375,\n                  100.53125\n                ],\n                [\n                  133.5999755859375,\n                  101.53125\n                ],\n                [\n                  132.5999755859375,\n                  101.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                100.53125,\n                133.5999755859375,\n                101.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/418\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  101.53125\n                ],\n                [\n                  130.5999755859375,\n                  101.53125\n                ],\n                [\n                  130.5999755859375,\n                  102.53125\n                ],\n                [\n                  129.5999755859375,\n                  102.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                101.53125,\n                130.5999755859375,\n                102.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/419\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11.1</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  101.53125\n                ],\n                [\n                  131.5999755859375,\n                  101.53125\n                ],\n                [\n                  131.5999755859375,\n                  102.53125\n                ],\n                [\n                  130.5999755859375,\n                  102.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                101.53125,\n                131.5999755859375,\n                102.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/420\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Dictionary as a set of counters</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  101.53125\n                ],\n                [\n                  132.5999755859375,\n                  101.53125\n                ],\n                [\n                  132.5999755859375,\n                  102.53125\n                ],\n                [\n                  131.5999755859375,\n                  102.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                101.53125,\n                132.5999755859375,\n                102.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/421\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>102</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  101.53125\n                ],\n                [\n                  133.5999755859375,\n                  101.53125\n                ],\n                [\n                  133.5999755859375,\n                  102.53125\n                ],\n                [\n                  132.5999755859375,\n                  102.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                101.53125,\n                133.5999755859375,\n                102.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/422\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  102.53125\n                ],\n                [\n                  130.5999755859375,\n                  102.53125\n                ],\n                [\n                  130.5999755859375,\n                  103.53125\n                ],\n                [\n                  129.5999755859375,\n                  103.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                102.53125,\n                130.5999755859375,\n                103.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/423\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11.2</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  102.53125\n                ],\n                [\n                  131.5999755859375,\n                  102.53125\n                ],\n                [\n                  131.5999755859375,\n                  103.53125\n                ],\n                [\n                  130.5999755859375,\n                  103.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                102.53125,\n                131.5999755859375,\n                103.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/424\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Looping and dictionaries</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  102.53125\n                ],\n                [\n                  132.5999755859375,\n                  102.53125\n                ],\n                [\n                  132.5999755859375,\n                  103.53125\n                ],\n                [\n                  131.5999755859375,\n                  103.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                102.53125,\n                132.5999755859375,\n                103.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/425\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>103</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  102.53125\n                ],\n                [\n                  133.5999755859375,\n                  102.53125\n                ],\n                [\n                  133.5999755859375,\n                  103.53125\n                ],\n                [\n                  132.5999755859375,\n                  103.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                102.53125,\n                133.5999755859375,\n                103.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/426\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  103.53125\n                ],\n                [\n                  130.5999755859375,\n                  103.53125\n                ],\n                [\n                  130.5999755859375,\n                  104.53125\n                ],\n                [\n                  129.5999755859375,\n                  104.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                103.53125,\n                130.5999755859375,\n                104.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/427\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11.3</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  103.53125\n                ],\n                [\n                  131.5999755859375,\n                  103.53125\n                ],\n                [\n                  131.5999755859375,\n                  104.53125\n                ],\n                [\n                  130.5999755859375,\n                  104.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                103.53125,\n                131.5999755859375,\n                104.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/428\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Reverse lookup</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  103.53125\n                ],\n                [\n                  132.5999755859375,\n                  103.53125\n                ],\n                [\n                  132.5999755859375,\n                  104.53125\n                ],\n                [\n                  131.5999755859375,\n                  104.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                103.53125,\n                132.5999755859375,\n                104.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/429\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>104</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  103.53125\n                ],\n                [\n                  133.5999755859375,\n                  103.53125\n                ],\n                [\n                  133.5999755859375,\n                  104.53125\n                ],\n                [\n                  132.5999755859375,\n                  104.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                103.53125,\n                133.5999755859375,\n                104.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/430\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  104.53125\n                ],\n                [\n                  130.5999755859375,\n                  104.53125\n                ],\n                [\n                  130.5999755859375,\n                  105.53125\n                ],\n                [\n                  129.5999755859375,\n                  105.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                104.53125,\n                130.5999755859375,\n                105.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/431\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11.4</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  104.53125\n                ],\n                [\n                  131.5999755859375,\n                  104.53125\n                ],\n                [\n                  131.5999755859375,\n                  105.53125\n                ],\n                [\n                  130.5999755859375,\n                  105.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                104.53125,\n                131.5999755859375,\n                105.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/432\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Dictionaries and lists</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  104.53125\n                ],\n                [\n                  132.5999755859375,\n                  104.53125\n                ],\n                [\n                  132.5999755859375,\n                  105.53125\n                ],\n                [\n                  131.5999755859375,\n                  105.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                104.53125,\n                132.5999755859375,\n                105.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/433\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>105</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  104.53125\n                ],\n                [\n                  133.5999755859375,\n                  104.53125\n                ],\n                [\n                  133.5999755859375,\n                  105.53125\n                ],\n                [\n                  132.5999755859375,\n                  105.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                104.53125,\n                133.5999755859375,\n                105.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/434\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  105.53125\n                ],\n                [\n                  130.5999755859375,\n                  105.53125\n                ],\n                [\n                  130.5999755859375,\n                  106.53125\n                ],\n                [\n                  129.5999755859375,\n                  106.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                105.53125,\n                130.5999755859375,\n                106.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/435\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11.5</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  105.53125\n                ],\n                [\n                  131.5999755859375,\n                  105.53125\n                ],\n                [\n                  131.5999755859375,\n                  106.53125\n                ],\n                [\n                  130.5999755859375,\n                  106.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                105.53125,\n                131.5999755859375,\n                106.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/436\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Memos</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  105.53125\n                ],\n                [\n                  132.5999755859375,\n                  105.53125\n                ],\n                [\n                  132.5999755859375,\n                  106.53125\n                ],\n                [\n                  131.5999755859375,\n                  106.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                105.53125,\n                132.5999755859375,\n                106.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/437\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>106</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  105.53125\n                ],\n                [\n                  133.5999755859375,\n                  105.53125\n                ],\n                [\n                  133.5999755859375,\n                  106.53125\n                ],\n                [\n                  132.5999755859375,\n                  106.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                105.53125,\n                133.5999755859375,\n                106.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/438\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  106.53125\n                ],\n                [\n                  130.5999755859375,\n                  106.53125\n                ],\n                [\n                  130.5999755859375,\n                  107.53125\n                ],\n                [\n                  129.5999755859375,\n                  107.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                106.53125,\n                130.5999755859375,\n                107.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/439\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11.6</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  106.53125\n                ],\n                [\n                  131.5999755859375,\n                  106.53125\n                ],\n                [\n                  131.5999755859375,\n                  107.53125\n                ],\n                [\n                  130.5999755859375,\n                  107.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                106.53125,\n                131.5999755859375,\n                107.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/440\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Global variables</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  106.53125\n                ],\n                [\n                  132.5999755859375,\n                  106.53125\n                ],\n                [\n                  132.5999755859375,\n                  107.53125\n                ],\n                [\n                  131.5999755859375,\n                  107.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                106.53125,\n                132.5999755859375,\n                107.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/441\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>108</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  106.53125\n                ],\n                [\n                  133.5999755859375,\n                  106.53125\n                ],\n                [\n                  133.5999755859375,\n                  107.53125\n                ],\n                [\n                  132.5999755859375,\n                  107.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                106.53125,\n                133.5999755859375,\n                107.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/442\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  107.53125\n                ],\n                [\n                  130.5999755859375,\n                  107.53125\n                ],\n                [\n                  130.5999755859375,\n                  108.53125\n                ],\n                [\n                  129.5999755859375,\n                  108.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                107.53125,\n                130.5999755859375,\n                108.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/443\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11.7</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  107.53125\n                ],\n                [\n                  131.5999755859375,\n                  107.53125\n                ],\n                [\n                  131.5999755859375,\n                  108.53125\n                ],\n                [\n                  130.5999755859375,\n                  108.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                107.53125,\n                131.5999755859375,\n                108.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/444\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Long integers</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  107.53125\n                ],\n                [\n                  132.5999755859375,\n                  107.53125\n                ],\n                [\n                  132.5999755859375,\n                  108.53125\n                ],\n                [\n                  131.5999755859375,\n                  108.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                107.53125,\n                132.5999755859375,\n                108.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/445\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>109</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  107.53125\n                ],\n                [\n                  133.5999755859375,\n                  107.53125\n                ],\n                [\n                  133.5999755859375,\n                  108.53125\n                ],\n                [\n                  132.5999755859375,\n                  108.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                107.53125,\n                133.5999755859375,\n                108.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/446\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  108.53125\n                ],\n                [\n                  130.5999755859375,\n                  108.53125\n                ],\n                [\n                  130.5999755859375,\n                  109.53125\n                ],\n                [\n                  129.5999755859375,\n                  109.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                108.53125,\n                130.5999755859375,\n                109.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/447\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11.8</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  108.53125\n                ],\n                [\n                  131.5999755859375,\n                  108.53125\n                ],\n                [\n                  131.5999755859375,\n                  109.53125\n                ],\n                [\n                  130.5999755859375,\n                  109.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                108.53125,\n                131.5999755859375,\n                109.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/448\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  108.53125\n                ],\n                [\n                  132.5999755859375,\n                  108.53125\n                ],\n                [\n                  132.5999755859375,\n                  109.53125\n                ],\n                [\n                  131.5999755859375,\n                  109.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                108.53125,\n                132.5999755859375,\n                109.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/449\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>109</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  108.53125\n                ],\n                [\n                  133.5999755859375,\n                  108.53125\n                ],\n                [\n                  133.5999755859375,\n                  109.53125\n                ],\n                [\n                  132.5999755859375,\n                  109.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                108.53125,\n                133.5999755859375,\n                109.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/450\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  109.53125\n                ],\n                [\n                  130.5999755859375,\n                  109.53125\n                ],\n                [\n                  130.5999755859375,\n                  110.53125\n                ],\n                [\n                  129.5999755859375,\n                  110.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                109.53125,\n                130.5999755859375,\n                110.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/451\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11.9</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  109.53125\n                ],\n                [\n                  131.5999755859375,\n                  109.53125\n                ],\n                [\n                  131.5999755859375,\n                  110.53125\n                ],\n                [\n                  130.5999755859375,\n                  110.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                109.53125,\n                131.5999755859375,\n                110.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/452\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  109.53125\n                ],\n                [\n                  132.5999755859375,\n                  109.53125\n                ],\n                [\n                  132.5999755859375,\n                  110.53125\n                ],\n                [\n                  131.5999755859375,\n                  110.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                109.53125,\n                132.5999755859375,\n                110.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/453\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>110</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  109.53125\n                ],\n                [\n                  133.5999755859375,\n                  109.53125\n                ],\n                [\n                  133.5999755859375,\n                  110.53125\n                ],\n                [\n                  132.5999755859375,\n                  110.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                109.53125,\n                133.5999755859375,\n                110.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/454\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.5999755859375,\n                  110.53125\n                ],\n                [\n                  130.5999755859375,\n                  110.53125\n                ],\n                [\n                  130.5999755859375,\n                  111.53125\n                ],\n                [\n                  129.5999755859375,\n                  111.53125\n                ]\n              ],\n              \"bbox\": [\n                129.5999755859375,\n                110.53125,\n                130.5999755859375,\n                111.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/455\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>11.10</td>\",\n              \"polygon\": [\n                [\n                  130.5999755859375,\n                  110.53125\n                ],\n                [\n                  131.5999755859375,\n                  110.53125\n                ],\n                [\n                  131.5999755859375,\n                  111.53125\n                ],\n                [\n                  130.5999755859375,\n                  111.53125\n                ]\n              ],\n              \"bbox\": [\n                130.5999755859375,\n                110.53125,\n                131.5999755859375,\n                111.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/456\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  131.5999755859375,\n                  110.53125\n                ],\n                [\n                  132.5999755859375,\n                  110.53125\n                ],\n                [\n                  132.5999755859375,\n                  111.53125\n                ],\n                [\n                  131.5999755859375,\n                  111.53125\n                ]\n              ],\n              \"bbox\": [\n                131.5999755859375,\n                110.53125,\n                132.5999755859375,\n                111.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/16/TableCell/457\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>111</td>\",\n              \"polygon\": [\n                [\n                  132.5999755859375,\n                  110.53125\n                ],\n                [\n                  133.5999755859375,\n                  110.53125\n                ],\n                [\n                  133.5999755859375,\n                  111.53125\n                ],\n                [\n                  132.5999755859375,\n                  111.53125\n                ]\n              ],\n              \"bbox\": [\n                132.5999755859375,\n                110.53125,\n                133.5999755859375,\n                111.53125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/383\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  85.271484375\n                ],\n                [\n                  86.166015625,\n                  85.271484375\n                ],\n                [\n                  86.166015625,\n                  86.271484375\n                ],\n                [\n                  85.166015625,\n                  86.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                85.271484375,\n                86.166015625,\n                86.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/384\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>12 Tuples</th>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  85.271484375\n                ],\n                [\n                  87.166015625,\n                  85.271484375\n                ],\n                [\n                  87.166015625,\n                  86.271484375\n                ],\n                [\n                  86.166015625,\n                  86.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                85.271484375,\n                87.166015625,\n                86.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/385\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  85.271484375\n                ],\n                [\n                  88.166015625,\n                  85.271484375\n                ],\n                [\n                  88.166015625,\n                  86.271484375\n                ],\n                [\n                  87.166015625,\n                  86.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                85.271484375,\n                88.166015625,\n                86.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/386\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>113</th>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  85.271484375\n                ],\n                [\n                  89.166015625,\n                  85.271484375\n                ],\n                [\n                  89.166015625,\n                  86.271484375\n                ],\n                [\n                  88.166015625,\n                  86.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                85.271484375,\n                89.166015625,\n                86.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/387\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  86.271484375\n                ],\n                [\n                  86.166015625,\n                  86.271484375\n                ],\n                [\n                  86.166015625,\n                  87.271484375\n                ],\n                [\n                  85.166015625,\n                  87.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                86.271484375,\n                86.166015625,\n                87.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/388\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12.1</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  86.271484375\n                ],\n                [\n                  87.166015625,\n                  86.271484375\n                ],\n                [\n                  87.166015625,\n                  87.271484375\n                ],\n                [\n                  86.166015625,\n                  87.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                86.271484375,\n                87.166015625,\n                87.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/389\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Tuples are immutable</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  86.271484375\n                ],\n                [\n                  88.166015625,\n                  86.271484375\n                ],\n                [\n                  88.166015625,\n                  87.271484375\n                ],\n                [\n                  87.166015625,\n                  87.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                86.271484375,\n                88.166015625,\n                87.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/390\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>113</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  86.271484375\n                ],\n                [\n                  89.166015625,\n                  86.271484375\n                ],\n                [\n                  89.166015625,\n                  87.271484375\n                ],\n                [\n                  88.166015625,\n                  87.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                86.271484375,\n                89.166015625,\n                87.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/391\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  87.271484375\n                ],\n                [\n                  86.166015625,\n                  87.271484375\n                ],\n                [\n                  86.166015625,\n                  88.271484375\n                ],\n                [\n                  85.166015625,\n                  88.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                87.271484375,\n                86.166015625,\n                88.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/392\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12.2</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  87.271484375\n                ],\n                [\n                  87.166015625,\n                  87.271484375\n                ],\n                [\n                  87.166015625,\n                  88.271484375\n                ],\n                [\n                  86.166015625,\n                  88.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                87.271484375,\n                87.166015625,\n                88.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/393\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Tuple assignment</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  87.271484375\n                ],\n                [\n                  88.166015625,\n                  87.271484375\n                ],\n                [\n                  88.166015625,\n                  88.271484375\n                ],\n                [\n                  87.166015625,\n                  88.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                87.271484375,\n                88.166015625,\n                88.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/394\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>114</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  87.271484375\n                ],\n                [\n                  89.166015625,\n                  87.271484375\n                ],\n                [\n                  89.166015625,\n                  88.271484375\n                ],\n                [\n                  88.166015625,\n                  88.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                87.271484375,\n                89.166015625,\n                88.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/395\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  88.271484375\n                ],\n                [\n                  86.166015625,\n                  88.271484375\n                ],\n                [\n                  86.166015625,\n                  89.271484375\n                ],\n                [\n                  85.166015625,\n                  89.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                88.271484375,\n                86.166015625,\n                89.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/396\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12.3</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  88.271484375\n                ],\n                [\n                  87.166015625,\n                  88.271484375\n                ],\n                [\n                  87.166015625,\n                  89.271484375\n                ],\n                [\n                  86.166015625,\n                  89.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                88.271484375,\n                87.166015625,\n                89.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/397\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Tuples as return values</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  88.271484375\n                ],\n                [\n                  88.166015625,\n                  88.271484375\n                ],\n                [\n                  88.166015625,\n                  89.271484375\n                ],\n                [\n                  87.166015625,\n                  89.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                88.271484375,\n                88.166015625,\n                89.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/398\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>115</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  88.271484375\n                ],\n                [\n                  89.166015625,\n                  88.271484375\n                ],\n                [\n                  89.166015625,\n                  89.271484375\n                ],\n                [\n                  88.166015625,\n                  89.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                88.271484375,\n                89.166015625,\n                89.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/399\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  89.271484375\n                ],\n                [\n                  86.166015625,\n                  89.271484375\n                ],\n                [\n                  86.166015625,\n                  90.271484375\n                ],\n                [\n                  85.166015625,\n                  90.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                89.271484375,\n                86.166015625,\n                90.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/400\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12.4</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  89.271484375\n                ],\n                [\n                  87.166015625,\n                  89.271484375\n                ],\n                [\n                  87.166015625,\n                  90.271484375\n                ],\n                [\n                  86.166015625,\n                  90.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                89.271484375,\n                87.166015625,\n                90.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/401\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Variable-length argument tuples</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  89.271484375\n                ],\n                [\n                  88.166015625,\n                  89.271484375\n                ],\n                [\n                  88.166015625,\n                  90.271484375\n                ],\n                [\n                  87.166015625,\n                  90.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                89.271484375,\n                88.166015625,\n                90.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/402\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>115</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  89.271484375\n                ],\n                [\n                  89.166015625,\n                  89.271484375\n                ],\n                [\n                  89.166015625,\n                  90.271484375\n                ],\n                [\n                  88.166015625,\n                  90.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                89.271484375,\n                89.166015625,\n                90.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/403\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  90.271484375\n                ],\n                [\n                  86.166015625,\n                  90.271484375\n                ],\n                [\n                  86.166015625,\n                  91.271484375\n                ],\n                [\n                  85.166015625,\n                  91.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                90.271484375,\n                86.166015625,\n                91.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/404\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12.5</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  90.271484375\n                ],\n                [\n                  87.166015625,\n                  90.271484375\n                ],\n                [\n                  87.166015625,\n                  91.271484375\n                ],\n                [\n                  86.166015625,\n                  91.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                90.271484375,\n                87.166015625,\n                91.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/405\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Lists and tuples</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  90.271484375\n                ],\n                [\n                  88.166015625,\n                  90.271484375\n                ],\n                [\n                  88.166015625,\n                  91.271484375\n                ],\n                [\n                  87.166015625,\n                  91.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                90.271484375,\n                88.166015625,\n                91.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/406\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>116</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  90.271484375\n                ],\n                [\n                  89.166015625,\n                  90.271484375\n                ],\n                [\n                  89.166015625,\n                  91.271484375\n                ],\n                [\n                  88.166015625,\n                  91.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                90.271484375,\n                89.166015625,\n                91.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/407\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  91.271484375\n                ],\n                [\n                  86.166015625,\n                  91.271484375\n                ],\n                [\n                  86.166015625,\n                  92.271484375\n                ],\n                [\n                  85.166015625,\n                  92.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                91.271484375,\n                86.166015625,\n                92.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/408\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12.6</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  91.271484375\n                ],\n                [\n                  87.166015625,\n                  91.271484375\n                ],\n                [\n                  87.166015625,\n                  92.271484375\n                ],\n                [\n                  86.166015625,\n                  92.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                91.271484375,\n                87.166015625,\n                92.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/409\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Dictionaries and tuples</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  91.271484375\n                ],\n                [\n                  88.166015625,\n                  91.271484375\n                ],\n                [\n                  88.166015625,\n                  92.271484375\n                ],\n                [\n                  87.166015625,\n                  92.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                91.271484375,\n                88.166015625,\n                92.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/410\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>117</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  91.271484375\n                ],\n                [\n                  89.166015625,\n                  91.271484375\n                ],\n                [\n                  89.166015625,\n                  92.271484375\n                ],\n                [\n                  88.166015625,\n                  92.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                91.271484375,\n                89.166015625,\n                92.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/411\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  92.271484375\n                ],\n                [\n                  86.166015625,\n                  92.271484375\n                ],\n                [\n                  86.166015625,\n                  93.271484375\n                ],\n                [\n                  85.166015625,\n                  93.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                92.271484375,\n                86.166015625,\n                93.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/412\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12.7</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  92.271484375\n                ],\n                [\n                  87.166015625,\n                  92.271484375\n                ],\n                [\n                  87.166015625,\n                  93.271484375\n                ],\n                [\n                  86.166015625,\n                  93.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                92.271484375,\n                87.166015625,\n                93.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/413\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Comparing tuples</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  92.271484375\n                ],\n                [\n                  88.166015625,\n                  92.271484375\n                ],\n                [\n                  88.166015625,\n                  93.271484375\n                ],\n                [\n                  87.166015625,\n                  93.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                92.271484375,\n                88.166015625,\n                93.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/414\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>118</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  92.271484375\n                ],\n                [\n                  89.166015625,\n                  92.271484375\n                ],\n                [\n                  89.166015625,\n                  93.271484375\n                ],\n                [\n                  88.166015625,\n                  93.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                92.271484375,\n                89.166015625,\n                93.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/415\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  93.271484375\n                ],\n                [\n                  86.166015625,\n                  93.271484375\n                ],\n                [\n                  86.166015625,\n                  94.271484375\n                ],\n                [\n                  85.166015625,\n                  94.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                93.271484375,\n                86.166015625,\n                94.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/416\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12.8</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  93.271484375\n                ],\n                [\n                  87.166015625,\n                  93.271484375\n                ],\n                [\n                  87.166015625,\n                  94.271484375\n                ],\n                [\n                  86.166015625,\n                  94.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                93.271484375,\n                87.166015625,\n                94.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/417\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Sequences of sequences</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  93.271484375\n                ],\n                [\n                  88.166015625,\n                  93.271484375\n                ],\n                [\n                  88.166015625,\n                  94.271484375\n                ],\n                [\n                  87.166015625,\n                  94.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                93.271484375,\n                88.166015625,\n                94.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/418\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>119</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  93.271484375\n                ],\n                [\n                  89.166015625,\n                  93.271484375\n                ],\n                [\n                  89.166015625,\n                  94.271484375\n                ],\n                [\n                  88.166015625,\n                  94.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                93.271484375,\n                89.166015625,\n                94.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/419\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  94.271484375\n                ],\n                [\n                  86.166015625,\n                  94.271484375\n                ],\n                [\n                  86.166015625,\n                  95.271484375\n                ],\n                [\n                  85.166015625,\n                  95.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                94.271484375,\n                86.166015625,\n                95.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/420\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12.9</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  94.271484375\n                ],\n                [\n                  87.166015625,\n                  94.271484375\n                ],\n                [\n                  87.166015625,\n                  95.271484375\n                ],\n                [\n                  86.166015625,\n                  95.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                94.271484375,\n                87.166015625,\n                95.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/421\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  94.271484375\n                ],\n                [\n                  88.166015625,\n                  94.271484375\n                ],\n                [\n                  88.166015625,\n                  95.271484375\n                ],\n                [\n                  87.166015625,\n                  95.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                94.271484375,\n                88.166015625,\n                95.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/422\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>120</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  94.271484375\n                ],\n                [\n                  89.166015625,\n                  94.271484375\n                ],\n                [\n                  89.166015625,\n                  95.271484375\n                ],\n                [\n                  88.166015625,\n                  95.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                94.271484375,\n                89.166015625,\n                95.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/423\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  95.271484375\n                ],\n                [\n                  86.166015625,\n                  95.271484375\n                ],\n                [\n                  86.166015625,\n                  96.271484375\n                ],\n                [\n                  85.166015625,\n                  96.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                95.271484375,\n                86.166015625,\n                96.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/424\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12.10</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  95.271484375\n                ],\n                [\n                  87.166015625,\n                  95.271484375\n                ],\n                [\n                  87.166015625,\n                  96.271484375\n                ],\n                [\n                  86.166015625,\n                  96.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                95.271484375,\n                87.166015625,\n                96.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/425\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  95.271484375\n                ],\n                [\n                  88.166015625,\n                  95.271484375\n                ],\n                [\n                  88.166015625,\n                  96.271484375\n                ],\n                [\n                  87.166015625,\n                  96.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                95.271484375,\n                88.166015625,\n                96.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/426\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>121</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  95.271484375\n                ],\n                [\n                  89.166015625,\n                  95.271484375\n                ],\n                [\n                  89.166015625,\n                  96.271484375\n                ],\n                [\n                  88.166015625,\n                  96.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                95.271484375,\n                89.166015625,\n                96.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/427\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  96.271484375\n                ],\n                [\n                  86.166015625,\n                  96.271484375\n                ],\n                [\n                  86.166015625,\n                  97.271484375\n                ],\n                [\n                  85.166015625,\n                  97.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                96.271484375,\n                86.166015625,\n                97.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/428\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>12.11</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  96.271484375\n                ],\n                [\n                  87.166015625,\n                  96.271484375\n                ],\n                [\n                  87.166015625,\n                  97.271484375\n                ],\n                [\n                  86.166015625,\n                  97.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                96.271484375,\n                87.166015625,\n                97.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/429\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  96.271484375\n                ],\n                [\n                  88.166015625,\n                  96.271484375\n                ],\n                [\n                  88.166015625,\n                  97.271484375\n                ],\n                [\n                  87.166015625,\n                  97.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                96.271484375,\n                88.166015625,\n                97.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/430\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>121</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  96.271484375\n                ],\n                [\n                  89.166015625,\n                  96.271484375\n                ],\n                [\n                  89.166015625,\n                  97.271484375\n                ],\n                [\n                  88.166015625,\n                  97.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                96.271484375,\n                89.166015625,\n                97.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/431\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  97.271484375\n                ],\n                [\n                  86.166015625,\n                  97.271484375\n                ],\n                [\n                  86.166015625,\n                  98.271484375\n                ],\n                [\n                  85.166015625,\n                  98.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                97.271484375,\n                86.166015625,\n                98.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/432\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  97.271484375\n                ],\n                [\n                  87.166015625,\n                  97.271484375\n                ],\n                [\n                  87.166015625,\n                  98.271484375\n                ],\n                [\n                  86.166015625,\n                  98.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                97.271484375,\n                87.166015625,\n                98.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/433\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>13 Case study: data structure selection</th>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  97.271484375\n                ],\n                [\n                  88.166015625,\n                  97.271484375\n                ],\n                [\n                  88.166015625,\n                  98.271484375\n                ],\n                [\n                  87.166015625,\n                  98.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                97.271484375,\n                88.166015625,\n                98.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/434\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>123</th>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  97.271484375\n                ],\n                [\n                  89.166015625,\n                  97.271484375\n                ],\n                [\n                  89.166015625,\n                  98.271484375\n                ],\n                [\n                  88.166015625,\n                  98.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                97.271484375,\n                89.166015625,\n                98.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/435\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  98.271484375\n                ],\n                [\n                  86.166015625,\n                  98.271484375\n                ],\n                [\n                  86.166015625,\n                  99.271484375\n                ],\n                [\n                  85.166015625,\n                  99.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                98.271484375,\n                86.166015625,\n                99.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/436\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.1</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  98.271484375\n                ],\n                [\n                  87.166015625,\n                  98.271484375\n                ],\n                [\n                  87.166015625,\n                  99.271484375\n                ],\n                [\n                  86.166015625,\n                  99.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                98.271484375,\n                87.166015625,\n                99.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/437\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Word frequency analysis</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  98.271484375\n                ],\n                [\n                  88.166015625,\n                  98.271484375\n                ],\n                [\n                  88.166015625,\n                  99.271484375\n                ],\n                [\n                  87.166015625,\n                  99.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                98.271484375,\n                88.166015625,\n                99.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/438\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>123</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  98.271484375\n                ],\n                [\n                  89.166015625,\n                  98.271484375\n                ],\n                [\n                  89.166015625,\n                  99.271484375\n                ],\n                [\n                  88.166015625,\n                  99.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                98.271484375,\n                89.166015625,\n                99.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/439\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  99.271484375\n                ],\n                [\n                  86.166015625,\n                  99.271484375\n                ],\n                [\n                  86.166015625,\n                  100.271484375\n                ],\n                [\n                  85.166015625,\n                  100.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                99.271484375,\n                86.166015625,\n                100.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/440\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.2</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  99.271484375\n                ],\n                [\n                  87.166015625,\n                  99.271484375\n                ],\n                [\n                  87.166015625,\n                  100.271484375\n                ],\n                [\n                  86.166015625,\n                  100.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                99.271484375,\n                87.166015625,\n                100.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/441\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Random numbers</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  99.271484375\n                ],\n                [\n                  88.166015625,\n                  99.271484375\n                ],\n                [\n                  88.166015625,\n                  100.271484375\n                ],\n                [\n                  87.166015625,\n                  100.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                99.271484375,\n                88.166015625,\n                100.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/442\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>124</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  99.271484375\n                ],\n                [\n                  89.166015625,\n                  99.271484375\n                ],\n                [\n                  89.166015625,\n                  100.271484375\n                ],\n                [\n                  88.166015625,\n                  100.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                99.271484375,\n                89.166015625,\n                100.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/443\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  100.271484375\n                ],\n                [\n                  86.166015625,\n                  100.271484375\n                ],\n                [\n                  86.166015625,\n                  101.271484375\n                ],\n                [\n                  85.166015625,\n                  101.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                100.271484375,\n                86.166015625,\n                101.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/444\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.3</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  100.271484375\n                ],\n                [\n                  87.166015625,\n                  100.271484375\n                ],\n                [\n                  87.166015625,\n                  101.271484375\n                ],\n                [\n                  86.166015625,\n                  101.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                100.271484375,\n                87.166015625,\n                101.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/445\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Word histogram</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  100.271484375\n                ],\n                [\n                  88.166015625,\n                  100.271484375\n                ],\n                [\n                  88.166015625,\n                  101.271484375\n                ],\n                [\n                  87.166015625,\n                  101.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                100.271484375,\n                88.166015625,\n                101.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/446\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>125</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  100.271484375\n                ],\n                [\n                  89.166015625,\n                  100.271484375\n                ],\n                [\n                  89.166015625,\n                  101.271484375\n                ],\n                [\n                  88.166015625,\n                  101.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                100.271484375,\n                89.166015625,\n                101.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/447\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  101.271484375\n                ],\n                [\n                  86.166015625,\n                  101.271484375\n                ],\n                [\n                  86.166015625,\n                  102.271484375\n                ],\n                [\n                  85.166015625,\n                  102.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                101.271484375,\n                86.166015625,\n                102.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/448\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.4</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  101.271484375\n                ],\n                [\n                  87.166015625,\n                  101.271484375\n                ],\n                [\n                  87.166015625,\n                  102.271484375\n                ],\n                [\n                  86.166015625,\n                  102.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                101.271484375,\n                87.166015625,\n                102.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/449\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Most common words</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  101.271484375\n                ],\n                [\n                  88.166015625,\n                  101.271484375\n                ],\n                [\n                  88.166015625,\n                  102.271484375\n                ],\n                [\n                  87.166015625,\n                  102.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                101.271484375,\n                88.166015625,\n                102.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/450\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>126</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  101.271484375\n                ],\n                [\n                  89.166015625,\n                  101.271484375\n                ],\n                [\n                  89.166015625,\n                  102.271484375\n                ],\n                [\n                  88.166015625,\n                  102.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                101.271484375,\n                89.166015625,\n                102.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/451\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  102.271484375\n                ],\n                [\n                  86.166015625,\n                  102.271484375\n                ],\n                [\n                  86.166015625,\n                  103.271484375\n                ],\n                [\n                  85.166015625,\n                  103.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                102.271484375,\n                86.166015625,\n                103.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/452\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.5</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  102.271484375\n                ],\n                [\n                  87.166015625,\n                  102.271484375\n                ],\n                [\n                  87.166015625,\n                  103.271484375\n                ],\n                [\n                  86.166015625,\n                  103.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                102.271484375,\n                87.166015625,\n                103.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/453\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Optional parameters</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  102.271484375\n                ],\n                [\n                  88.166015625,\n                  102.271484375\n                ],\n                [\n                  88.166015625,\n                  103.271484375\n                ],\n                [\n                  87.166015625,\n                  103.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                102.271484375,\n                88.166015625,\n                103.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/454\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>126</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  102.271484375\n                ],\n                [\n                  89.166015625,\n                  102.271484375\n                ],\n                [\n                  89.166015625,\n                  103.271484375\n                ],\n                [\n                  88.166015625,\n                  103.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                102.271484375,\n                89.166015625,\n                103.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/455\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  103.271484375\n                ],\n                [\n                  86.166015625,\n                  103.271484375\n                ],\n                [\n                  86.166015625,\n                  104.271484375\n                ],\n                [\n                  85.166015625,\n                  104.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                103.271484375,\n                86.166015625,\n                104.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/456\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.6</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  103.271484375\n                ],\n                [\n                  87.166015625,\n                  103.271484375\n                ],\n                [\n                  87.166015625,\n                  104.271484375\n                ],\n                [\n                  86.166015625,\n                  104.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                103.271484375,\n                87.166015625,\n                104.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/457\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Dictionary subtraction</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  103.271484375\n                ],\n                [\n                  88.166015625,\n                  103.271484375\n                ],\n                [\n                  88.166015625,\n                  104.271484375\n                ],\n                [\n                  87.166015625,\n                  104.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                103.271484375,\n                88.166015625,\n                104.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/458\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>127</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  103.271484375\n                ],\n                [\n                  89.166015625,\n                  103.271484375\n                ],\n                [\n                  89.166015625,\n                  104.271484375\n                ],\n                [\n                  88.166015625,\n                  104.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                103.271484375,\n                89.166015625,\n                104.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/459\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  104.271484375\n                ],\n                [\n                  86.166015625,\n                  104.271484375\n                ],\n                [\n                  86.166015625,\n                  105.271484375\n                ],\n                [\n                  85.166015625,\n                  105.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                104.271484375,\n                86.166015625,\n                105.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/460\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.7</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  104.271484375\n                ],\n                [\n                  87.166015625,\n                  104.271484375\n                ],\n                [\n                  87.166015625,\n                  105.271484375\n                ],\n                [\n                  86.166015625,\n                  105.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                104.271484375,\n                87.166015625,\n                105.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/461\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Random words</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  104.271484375\n                ],\n                [\n                  88.166015625,\n                  104.271484375\n                ],\n                [\n                  88.166015625,\n                  105.271484375\n                ],\n                [\n                  87.166015625,\n                  105.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                104.271484375,\n                88.166015625,\n                105.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/462\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>127</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  104.271484375\n                ],\n                [\n                  89.166015625,\n                  104.271484375\n                ],\n                [\n                  89.166015625,\n                  105.271484375\n                ],\n                [\n                  88.166015625,\n                  105.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                104.271484375,\n                89.166015625,\n                105.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/463\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  105.271484375\n                ],\n                [\n                  86.166015625,\n                  105.271484375\n                ],\n                [\n                  86.166015625,\n                  106.271484375\n                ],\n                [\n                  85.166015625,\n                  106.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                105.271484375,\n                86.166015625,\n                106.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/464\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.8</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  105.271484375\n                ],\n                [\n                  87.166015625,\n                  105.271484375\n                ],\n                [\n                  87.166015625,\n                  106.271484375\n                ],\n                [\n                  86.166015625,\n                  106.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                105.271484375,\n                87.166015625,\n                106.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/465\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Markov analysis</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  105.271484375\n                ],\n                [\n                  88.166015625,\n                  105.271484375\n                ],\n                [\n                  88.166015625,\n                  106.271484375\n                ],\n                [\n                  87.166015625,\n                  106.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                105.271484375,\n                88.166015625,\n                106.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/466\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>128</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  105.271484375\n                ],\n                [\n                  89.166015625,\n                  105.271484375\n                ],\n                [\n                  89.166015625,\n                  106.271484375\n                ],\n                [\n                  88.166015625,\n                  106.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                105.271484375,\n                89.166015625,\n                106.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/467\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  106.271484375\n                ],\n                [\n                  86.166015625,\n                  106.271484375\n                ],\n                [\n                  86.166015625,\n                  107.271484375\n                ],\n                [\n                  85.166015625,\n                  107.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                106.271484375,\n                86.166015625,\n                107.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/468\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.9</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  106.271484375\n                ],\n                [\n                  87.166015625,\n                  106.271484375\n                ],\n                [\n                  87.166015625,\n                  107.271484375\n                ],\n                [\n                  86.166015625,\n                  107.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                106.271484375,\n                87.166015625,\n                107.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/469\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Data structures</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  106.271484375\n                ],\n                [\n                  88.166015625,\n                  106.271484375\n                ],\n                [\n                  88.166015625,\n                  107.271484375\n                ],\n                [\n                  87.166015625,\n                  107.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                106.271484375,\n                88.166015625,\n                107.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/470\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>129</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  106.271484375\n                ],\n                [\n                  89.166015625,\n                  106.271484375\n                ],\n                [\n                  89.166015625,\n                  107.271484375\n                ],\n                [\n                  88.166015625,\n                  107.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                106.271484375,\n                89.166015625,\n                107.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/471\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  107.271484375\n                ],\n                [\n                  86.166015625,\n                  107.271484375\n                ],\n                [\n                  86.166015625,\n                  108.271484375\n                ],\n                [\n                  85.166015625,\n                  108.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                107.271484375,\n                86.166015625,\n                108.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/472\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.10</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  107.271484375\n                ],\n                [\n                  87.166015625,\n                  107.271484375\n                ],\n                [\n                  87.166015625,\n                  108.271484375\n                ],\n                [\n                  86.166015625,\n                  108.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                107.271484375,\n                87.166015625,\n                108.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/473\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  107.271484375\n                ],\n                [\n                  88.166015625,\n                  107.271484375\n                ],\n                [\n                  88.166015625,\n                  108.271484375\n                ],\n                [\n                  87.166015625,\n                  108.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                107.271484375,\n                88.166015625,\n                108.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/474\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>131</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  107.271484375\n                ],\n                [\n                  89.166015625,\n                  107.271484375\n                ],\n                [\n                  89.166015625,\n                  108.271484375\n                ],\n                [\n                  88.166015625,\n                  108.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                107.271484375,\n                89.166015625,\n                108.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/475\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  108.271484375\n                ],\n                [\n                  86.166015625,\n                  108.271484375\n                ],\n                [\n                  86.166015625,\n                  109.271484375\n                ],\n                [\n                  85.166015625,\n                  109.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                108.271484375,\n                86.166015625,\n                109.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/476\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.11</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  108.271484375\n                ],\n                [\n                  87.166015625,\n                  108.271484375\n                ],\n                [\n                  87.166015625,\n                  109.271484375\n                ],\n                [\n                  86.166015625,\n                  109.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                108.271484375,\n                87.166015625,\n                109.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/477\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  108.271484375\n                ],\n                [\n                  88.166015625,\n                  108.271484375\n                ],\n                [\n                  88.166015625,\n                  109.271484375\n                ],\n                [\n                  87.166015625,\n                  109.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                108.271484375,\n                88.166015625,\n                109.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/478\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>132</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  108.271484375\n                ],\n                [\n                  89.166015625,\n                  108.271484375\n                ],\n                [\n                  89.166015625,\n                  109.271484375\n                ],\n                [\n                  88.166015625,\n                  109.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                108.271484375,\n                89.166015625,\n                109.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/479\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  109.271484375\n                ],\n                [\n                  86.166015625,\n                  109.271484375\n                ],\n                [\n                  86.166015625,\n                  110.271484375\n                ],\n                [\n                  85.166015625,\n                  110.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                109.271484375,\n                86.166015625,\n                110.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/480\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>13.12</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  109.271484375\n                ],\n                [\n                  87.166015625,\n                  109.271484375\n                ],\n                [\n                  87.166015625,\n                  110.271484375\n                ],\n                [\n                  86.166015625,\n                  110.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                109.271484375,\n                87.166015625,\n                110.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/481\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  109.271484375\n                ],\n                [\n                  88.166015625,\n                  109.271484375\n                ],\n                [\n                  88.166015625,\n                  110.271484375\n                ],\n                [\n                  87.166015625,\n                  110.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                109.271484375,\n                88.166015625,\n                110.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/482\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>132</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  109.271484375\n                ],\n                [\n                  89.166015625,\n                  109.271484375\n                ],\n                [\n                  89.166015625,\n                  110.271484375\n                ],\n                [\n                  88.166015625,\n                  110.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                109.271484375,\n                89.166015625,\n                110.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/483\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  110.271484375\n                ],\n                [\n                  86.166015625,\n                  110.271484375\n                ],\n                [\n                  86.166015625,\n                  111.271484375\n                ],\n                [\n                  85.166015625,\n                  111.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                110.271484375,\n                86.166015625,\n                111.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/484\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  110.271484375\n                ],\n                [\n                  87.166015625,\n                  110.271484375\n                ],\n                [\n                  87.166015625,\n                  111.271484375\n                ],\n                [\n                  86.166015625,\n                  111.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                110.271484375,\n                87.166015625,\n                111.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/485\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  110.271484375\n                ],\n                [\n                  88.166015625,\n                  110.271484375\n                ],\n                [\n                  88.166015625,\n                  111.271484375\n                ],\n                [\n                  87.166015625,\n                  111.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                110.271484375,\n                88.166015625,\n                111.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/486\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  110.271484375\n                ],\n                [\n                  89.166015625,\n                  110.271484375\n                ],\n                [\n                  89.166015625,\n                  111.271484375\n                ],\n                [\n                  88.166015625,\n                  111.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                110.271484375,\n                89.166015625,\n                111.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/487\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  111.271484375\n                ],\n                [\n                  86.166015625,\n                  111.271484375\n                ],\n                [\n                  86.166015625,\n                  112.271484375\n                ],\n                [\n                  85.166015625,\n                  112.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                111.271484375,\n                86.166015625,\n                112.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/488\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14 Files</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  111.271484375\n                ],\n                [\n                  87.166015625,\n                  111.271484375\n                ],\n                [\n                  87.166015625,\n                  112.271484375\n                ],\n                [\n                  86.166015625,\n                  112.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                111.271484375,\n                87.166015625,\n                112.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/489\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  111.271484375\n                ],\n                [\n                  88.166015625,\n                  111.271484375\n                ],\n                [\n                  88.166015625,\n                  112.271484375\n                ],\n                [\n                  87.166015625,\n                  112.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                111.271484375,\n                88.166015625,\n                112.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/490\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>133</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  111.271484375\n                ],\n                [\n                  89.166015625,\n                  111.271484375\n                ],\n                [\n                  89.166015625,\n                  112.271484375\n                ],\n                [\n                  88.166015625,\n                  112.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                111.271484375,\n                89.166015625,\n                112.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/491\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  112.271484375\n                ],\n                [\n                  86.166015625,\n                  112.271484375\n                ],\n                [\n                  86.166015625,\n                  113.271484375\n                ],\n                [\n                  85.166015625,\n                  113.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                112.271484375,\n                86.166015625,\n                113.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/492\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.1</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  112.271484375\n                ],\n                [\n                  87.166015625,\n                  112.271484375\n                ],\n                [\n                  87.166015625,\n                  113.271484375\n                ],\n                [\n                  86.166015625,\n                  113.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                112.271484375,\n                87.166015625,\n                113.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/493\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Persistence</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  112.271484375\n                ],\n                [\n                  88.166015625,\n                  112.271484375\n                ],\n                [\n                  88.166015625,\n                  113.271484375\n                ],\n                [\n                  87.166015625,\n                  113.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                112.271484375,\n                88.166015625,\n                113.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/494\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>133</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  112.271484375\n                ],\n                [\n                  89.166015625,\n                  112.271484375\n                ],\n                [\n                  89.166015625,\n                  113.271484375\n                ],\n                [\n                  88.166015625,\n                  113.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                112.271484375,\n                89.166015625,\n                113.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/495\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  113.271484375\n                ],\n                [\n                  86.166015625,\n                  113.271484375\n                ],\n                [\n                  86.166015625,\n                  114.271484375\n                ],\n                [\n                  85.166015625,\n                  114.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                113.271484375,\n                86.166015625,\n                114.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/496\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.2</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  113.271484375\n                ],\n                [\n                  87.166015625,\n                  113.271484375\n                ],\n                [\n                  87.166015625,\n                  114.271484375\n                ],\n                [\n                  86.166015625,\n                  114.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                113.271484375,\n                87.166015625,\n                114.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/497\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Reading and writing</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  113.271484375\n                ],\n                [\n                  88.166015625,\n                  113.271484375\n                ],\n                [\n                  88.166015625,\n                  114.271484375\n                ],\n                [\n                  87.166015625,\n                  114.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                113.271484375,\n                88.166015625,\n                114.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/498\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>133</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  113.271484375\n                ],\n                [\n                  89.166015625,\n                  113.271484375\n                ],\n                [\n                  89.166015625,\n                  114.271484375\n                ],\n                [\n                  88.166015625,\n                  114.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                113.271484375,\n                89.166015625,\n                114.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/499\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  114.271484375\n                ],\n                [\n                  86.166015625,\n                  114.271484375\n                ],\n                [\n                  86.166015625,\n                  115.271484375\n                ],\n                [\n                  85.166015625,\n                  115.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                114.271484375,\n                86.166015625,\n                115.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/500\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.3</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  114.271484375\n                ],\n                [\n                  87.166015625,\n                  114.271484375\n                ],\n                [\n                  87.166015625,\n                  115.271484375\n                ],\n                [\n                  86.166015625,\n                  115.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                114.271484375,\n                87.166015625,\n                115.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/501\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Format operator</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  114.271484375\n                ],\n                [\n                  88.166015625,\n                  114.271484375\n                ],\n                [\n                  88.166015625,\n                  115.271484375\n                ],\n                [\n                  87.166015625,\n                  115.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                114.271484375,\n                88.166015625,\n                115.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/502\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>134</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  114.271484375\n                ],\n                [\n                  89.166015625,\n                  114.271484375\n                ],\n                [\n                  89.166015625,\n                  115.271484375\n                ],\n                [\n                  88.166015625,\n                  115.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                114.271484375,\n                89.166015625,\n                115.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/503\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  115.271484375\n                ],\n                [\n                  86.166015625,\n                  115.271484375\n                ],\n                [\n                  86.166015625,\n                  116.271484375\n                ],\n                [\n                  85.166015625,\n                  116.271484375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                115.271484375,\n                86.166015625,\n                116.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/504\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.4</td>\",\n              \"polygon\": [\n                [\n                  86.166015625,\n                  115.271484375\n                ],\n                [\n                  87.166015625,\n                  115.271484375\n                ],\n                [\n                  87.166015625,\n                  116.271484375\n                ],\n                [\n                  86.166015625,\n                  116.271484375\n                ]\n              ],\n              \"bbox\": [\n                86.166015625,\n                115.271484375,\n                87.166015625,\n                116.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/505\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Filenames and paths</td>\",\n              \"polygon\": [\n                [\n                  87.166015625,\n                  115.271484375\n                ],\n                [\n                  88.166015625,\n                  115.271484375\n                ],\n                [\n                  88.166015625,\n                  116.271484375\n                ],\n                [\n                  87.166015625,\n                  116.271484375\n                ]\n              ],\n              \"bbox\": [\n                87.166015625,\n                115.271484375,\n                88.166015625,\n                116.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/17/TableCell/506\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>135</td>\",\n              \"polygon\": [\n                [\n                  88.166015625,\n                  115.271484375\n                ],\n                [\n                  89.166015625,\n                  115.271484375\n                ],\n                [\n                  89.166015625,\n                  116.271484375\n                ],\n                [\n                  88.166015625,\n                  116.271484375\n                ]\n              ],\n              \"bbox\": [\n                88.166015625,\n                115.271484375,\n                89.166015625,\n                116.271484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/309\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  78.697265625\n                ],\n                [\n                  130.59999084472656,\n                  78.697265625\n                ],\n                [\n                  130.59999084472656,\n                  79.697265625\n                ],\n                [\n                  129.59999084472656,\n                  79.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                78.697265625,\n                130.59999084472656,\n                79.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/310\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  78.697265625\n                ],\n                [\n                  131.59999084472656,\n                  78.697265625\n                ],\n                [\n                  131.59999084472656,\n                  79.697265625\n                ],\n                [\n                  130.59999084472656,\n                  79.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                78.697265625,\n                131.59999084472656,\n                79.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/311\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  78.697265625\n                ],\n                [\n                  132.59999084472656,\n                  78.697265625\n                ],\n                [\n                  132.59999084472656,\n                  79.697265625\n                ],\n                [\n                  131.59999084472656,\n                  79.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                78.697265625,\n                132.59999084472656,\n                79.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/312\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  78.697265625\n                ],\n                [\n                  133.59999084472656,\n                  78.697265625\n                ],\n                [\n                  133.59999084472656,\n                  79.697265625\n                ],\n                [\n                  132.59999084472656,\n                  79.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                78.697265625,\n                133.59999084472656,\n                79.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/313\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  79.697265625\n                ],\n                [\n                  130.59999084472656,\n                  79.697265625\n                ],\n                [\n                  130.59999084472656,\n                  80.697265625\n                ],\n                [\n                  129.59999084472656,\n                  80.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                79.697265625,\n                130.59999084472656,\n                80.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/314\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.5</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  79.697265625\n                ],\n                [\n                  131.59999084472656,\n                  79.697265625\n                ],\n                [\n                  131.59999084472656,\n                  80.697265625\n                ],\n                [\n                  130.59999084472656,\n                  80.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                79.697265625,\n                131.59999084472656,\n                80.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/315\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Catching exceptions</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  79.697265625\n                ],\n                [\n                  132.59999084472656,\n                  79.697265625\n                ],\n                [\n                  132.59999084472656,\n                  80.697265625\n                ],\n                [\n                  131.59999084472656,\n                  80.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                79.697265625,\n                132.59999084472656,\n                80.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/316\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>136</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  79.697265625\n                ],\n                [\n                  133.59999084472656,\n                  79.697265625\n                ],\n                [\n                  133.59999084472656,\n                  80.697265625\n                ],\n                [\n                  132.59999084472656,\n                  80.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                79.697265625,\n                133.59999084472656,\n                80.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/317\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  80.697265625\n                ],\n                [\n                  130.59999084472656,\n                  80.697265625\n                ],\n                [\n                  130.59999084472656,\n                  81.697265625\n                ],\n                [\n                  129.59999084472656,\n                  81.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                80.697265625,\n                130.59999084472656,\n                81.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/318\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.6</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  80.697265625\n                ],\n                [\n                  131.59999084472656,\n                  80.697265625\n                ],\n                [\n                  131.59999084472656,\n                  81.697265625\n                ],\n                [\n                  130.59999084472656,\n                  81.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                80.697265625,\n                131.59999084472656,\n                81.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/319\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Databases</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  80.697265625\n                ],\n                [\n                  132.59999084472656,\n                  80.697265625\n                ],\n                [\n                  132.59999084472656,\n                  81.697265625\n                ],\n                [\n                  131.59999084472656,\n                  81.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                80.697265625,\n                132.59999084472656,\n                81.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/320\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>137</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  80.697265625\n                ],\n                [\n                  133.59999084472656,\n                  80.697265625\n                ],\n                [\n                  133.59999084472656,\n                  81.697265625\n                ],\n                [\n                  132.59999084472656,\n                  81.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                80.697265625,\n                133.59999084472656,\n                81.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/321\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  81.697265625\n                ],\n                [\n                  130.59999084472656,\n                  81.697265625\n                ],\n                [\n                  130.59999084472656,\n                  82.697265625\n                ],\n                [\n                  129.59999084472656,\n                  82.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                81.697265625,\n                130.59999084472656,\n                82.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/322\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.7</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  81.697265625\n                ],\n                [\n                  131.59999084472656,\n                  81.697265625\n                ],\n                [\n                  131.59999084472656,\n                  82.697265625\n                ],\n                [\n                  130.59999084472656,\n                  82.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                81.697265625,\n                131.59999084472656,\n                82.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/323\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Pickling</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  81.697265625\n                ],\n                [\n                  132.59999084472656,\n                  81.697265625\n                ],\n                [\n                  132.59999084472656,\n                  82.697265625\n                ],\n                [\n                  131.59999084472656,\n                  82.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                81.697265625,\n                132.59999084472656,\n                82.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/324\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>137</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  81.697265625\n                ],\n                [\n                  133.59999084472656,\n                  81.697265625\n                ],\n                [\n                  133.59999084472656,\n                  82.697265625\n                ],\n                [\n                  132.59999084472656,\n                  82.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                81.697265625,\n                133.59999084472656,\n                82.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/325\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  82.697265625\n                ],\n                [\n                  130.59999084472656,\n                  82.697265625\n                ],\n                [\n                  130.59999084472656,\n                  83.697265625\n                ],\n                [\n                  129.59999084472656,\n                  83.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                82.697265625,\n                130.59999084472656,\n                83.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/326\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.8</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  82.697265625\n                ],\n                [\n                  131.59999084472656,\n                  82.697265625\n                ],\n                [\n                  131.59999084472656,\n                  83.697265625\n                ],\n                [\n                  130.59999084472656,\n                  83.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                82.697265625,\n                131.59999084472656,\n                83.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/327\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Pipes</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  82.697265625\n                ],\n                [\n                  132.59999084472656,\n                  82.697265625\n                ],\n                [\n                  132.59999084472656,\n                  83.697265625\n                ],\n                [\n                  131.59999084472656,\n                  83.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                82.697265625,\n                132.59999084472656,\n                83.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/328\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>138</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  82.697265625\n                ],\n                [\n                  133.59999084472656,\n                  82.697265625\n                ],\n                [\n                  133.59999084472656,\n                  83.697265625\n                ],\n                [\n                  132.59999084472656,\n                  83.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                82.697265625,\n                133.59999084472656,\n                83.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/329\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  83.697265625\n                ],\n                [\n                  130.59999084472656,\n                  83.697265625\n                ],\n                [\n                  130.59999084472656,\n                  84.697265625\n                ],\n                [\n                  129.59999084472656,\n                  84.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                83.697265625,\n                130.59999084472656,\n                84.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/330\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.9</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  83.697265625\n                ],\n                [\n                  131.59999084472656,\n                  83.697265625\n                ],\n                [\n                  131.59999084472656,\n                  84.697265625\n                ],\n                [\n                  130.59999084472656,\n                  84.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                83.697265625,\n                131.59999084472656,\n                84.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/331\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Writing modules</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  83.697265625\n                ],\n                [\n                  132.59999084472656,\n                  83.697265625\n                ],\n                [\n                  132.59999084472656,\n                  84.697265625\n                ],\n                [\n                  131.59999084472656,\n                  84.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                83.697265625,\n                132.59999084472656,\n                84.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/332\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>139</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  83.697265625\n                ],\n                [\n                  133.59999084472656,\n                  83.697265625\n                ],\n                [\n                  133.59999084472656,\n                  84.697265625\n                ],\n                [\n                  132.59999084472656,\n                  84.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                83.697265625,\n                133.59999084472656,\n                84.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/333\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  84.697265625\n                ],\n                [\n                  130.59999084472656,\n                  84.697265625\n                ],\n                [\n                  130.59999084472656,\n                  85.697265625\n                ],\n                [\n                  129.59999084472656,\n                  85.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                84.697265625,\n                130.59999084472656,\n                85.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/334\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.10</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  84.697265625\n                ],\n                [\n                  131.59999084472656,\n                  84.697265625\n                ],\n                [\n                  131.59999084472656,\n                  85.697265625\n                ],\n                [\n                  130.59999084472656,\n                  85.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                84.697265625,\n                131.59999084472656,\n                85.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/335\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  84.697265625\n                ],\n                [\n                  132.59999084472656,\n                  84.697265625\n                ],\n                [\n                  132.59999084472656,\n                  85.697265625\n                ],\n                [\n                  131.59999084472656,\n                  85.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                84.697265625,\n                132.59999084472656,\n                85.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/336\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>140</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  84.697265625\n                ],\n                [\n                  133.59999084472656,\n                  84.697265625\n                ],\n                [\n                  133.59999084472656,\n                  85.697265625\n                ],\n                [\n                  132.59999084472656,\n                  85.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                84.697265625,\n                133.59999084472656,\n                85.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/337\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  85.697265625\n                ],\n                [\n                  130.59999084472656,\n                  85.697265625\n                ],\n                [\n                  130.59999084472656,\n                  86.697265625\n                ],\n                [\n                  129.59999084472656,\n                  86.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                85.697265625,\n                130.59999084472656,\n                86.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/338\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.11</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  85.697265625\n                ],\n                [\n                  131.59999084472656,\n                  85.697265625\n                ],\n                [\n                  131.59999084472656,\n                  86.697265625\n                ],\n                [\n                  130.59999084472656,\n                  86.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                85.697265625,\n                131.59999084472656,\n                86.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/339\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  85.697265625\n                ],\n                [\n                  132.59999084472656,\n                  85.697265625\n                ],\n                [\n                  132.59999084472656,\n                  86.697265625\n                ],\n                [\n                  131.59999084472656,\n                  86.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                85.697265625,\n                132.59999084472656,\n                86.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/340\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>141</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  85.697265625\n                ],\n                [\n                  133.59999084472656,\n                  85.697265625\n                ],\n                [\n                  133.59999084472656,\n                  86.697265625\n                ],\n                [\n                  132.59999084472656,\n                  86.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                85.697265625,\n                133.59999084472656,\n                86.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/341\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  86.697265625\n                ],\n                [\n                  130.59999084472656,\n                  86.697265625\n                ],\n                [\n                  130.59999084472656,\n                  87.697265625\n                ],\n                [\n                  129.59999084472656,\n                  87.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                86.697265625,\n                130.59999084472656,\n                87.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/342\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>14.12</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  86.697265625\n                ],\n                [\n                  131.59999084472656,\n                  86.697265625\n                ],\n                [\n                  131.59999084472656,\n                  87.697265625\n                ],\n                [\n                  130.59999084472656,\n                  87.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                86.697265625,\n                131.59999084472656,\n                87.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/343\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  86.697265625\n                ],\n                [\n                  132.59999084472656,\n                  86.697265625\n                ],\n                [\n                  132.59999084472656,\n                  87.697265625\n                ],\n                [\n                  131.59999084472656,\n                  87.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                86.697265625,\n                132.59999084472656,\n                87.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/344\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>141</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  86.697265625\n                ],\n                [\n                  133.59999084472656,\n                  86.697265625\n                ],\n                [\n                  133.59999084472656,\n                  87.697265625\n                ],\n                [\n                  132.59999084472656,\n                  87.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                86.697265625,\n                133.59999084472656,\n                87.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/345\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>15</th>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  87.697265625\n                ],\n                [\n                  130.59999084472656,\n                  87.697265625\n                ],\n                [\n                  130.59999084472656,\n                  88.697265625\n                ],\n                [\n                  129.59999084472656,\n                  88.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                87.697265625,\n                130.59999084472656,\n                88.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/346\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th colspan=\\\"3\\\">Classes and objects</th>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  87.697265625\n                ],\n                [\n                  133.59999084472656,\n                  87.697265625\n                ],\n                [\n                  133.59999084472656,\n                  88.697265625\n                ],\n                [\n                  130.59999084472656,\n                  88.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                87.697265625,\n                133.59999084472656,\n                88.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/347\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  88.697265625\n                ],\n                [\n                  130.59999084472656,\n                  88.697265625\n                ],\n                [\n                  130.59999084472656,\n                  89.697265625\n                ],\n                [\n                  129.59999084472656,\n                  89.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                88.697265625,\n                130.59999084472656,\n                89.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/348\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15.1</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  88.697265625\n                ],\n                [\n                  131.59999084472656,\n                  88.697265625\n                ],\n                [\n                  131.59999084472656,\n                  89.697265625\n                ],\n                [\n                  130.59999084472656,\n                  89.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                88.697265625,\n                131.59999084472656,\n                89.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/349\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>User-defined types</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  88.697265625\n                ],\n                [\n                  132.59999084472656,\n                  88.697265625\n                ],\n                [\n                  132.59999084472656,\n                  89.697265625\n                ],\n                [\n                  131.59999084472656,\n                  89.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                88.697265625,\n                132.59999084472656,\n                89.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/350\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>143</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  88.697265625\n                ],\n                [\n                  133.59999084472656,\n                  88.697265625\n                ],\n                [\n                  133.59999084472656,\n                  89.697265625\n                ],\n                [\n                  132.59999084472656,\n                  89.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                88.697265625,\n                133.59999084472656,\n                89.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/351\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  89.697265625\n                ],\n                [\n                  130.59999084472656,\n                  89.697265625\n                ],\n                [\n                  130.59999084472656,\n                  90.697265625\n                ],\n                [\n                  129.59999084472656,\n                  90.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                89.697265625,\n                130.59999084472656,\n                90.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/352\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15.2</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  89.697265625\n                ],\n                [\n                  131.59999084472656,\n                  89.697265625\n                ],\n                [\n                  131.59999084472656,\n                  90.697265625\n                ],\n                [\n                  130.59999084472656,\n                  90.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                89.697265625,\n                131.59999084472656,\n                90.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/353\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Attributes</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  89.697265625\n                ],\n                [\n                  132.59999084472656,\n                  89.697265625\n                ],\n                [\n                  132.59999084472656,\n                  90.697265625\n                ],\n                [\n                  131.59999084472656,\n                  90.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                89.697265625,\n                132.59999084472656,\n                90.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/354\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>144</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  89.697265625\n                ],\n                [\n                  133.59999084472656,\n                  89.697265625\n                ],\n                [\n                  133.59999084472656,\n                  90.697265625\n                ],\n                [\n                  132.59999084472656,\n                  90.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                89.697265625,\n                133.59999084472656,\n                90.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/355\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  90.697265625\n                ],\n                [\n                  130.59999084472656,\n                  90.697265625\n                ],\n                [\n                  130.59999084472656,\n                  91.697265625\n                ],\n                [\n                  129.59999084472656,\n                  91.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                90.697265625,\n                130.59999084472656,\n                91.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/356\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15.3</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  90.697265625\n                ],\n                [\n                  131.59999084472656,\n                  90.697265625\n                ],\n                [\n                  131.59999084472656,\n                  91.697265625\n                ],\n                [\n                  130.59999084472656,\n                  91.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                90.697265625,\n                131.59999084472656,\n                91.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/357\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Rectangles</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  90.697265625\n                ],\n                [\n                  132.59999084472656,\n                  90.697265625\n                ],\n                [\n                  132.59999084472656,\n                  91.697265625\n                ],\n                [\n                  131.59999084472656,\n                  91.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                90.697265625,\n                132.59999084472656,\n                91.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/358\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>145</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  90.697265625\n                ],\n                [\n                  133.59999084472656,\n                  90.697265625\n                ],\n                [\n                  133.59999084472656,\n                  91.697265625\n                ],\n                [\n                  132.59999084472656,\n                  91.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                90.697265625,\n                133.59999084472656,\n                91.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/359\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  91.697265625\n                ],\n                [\n                  130.59999084472656,\n                  91.697265625\n                ],\n                [\n                  130.59999084472656,\n                  92.697265625\n                ],\n                [\n                  129.59999084472656,\n                  92.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                91.697265625,\n                130.59999084472656,\n                92.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/360\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15.4</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  91.697265625\n                ],\n                [\n                  131.59999084472656,\n                  91.697265625\n                ],\n                [\n                  131.59999084472656,\n                  92.697265625\n                ],\n                [\n                  130.59999084472656,\n                  92.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                91.697265625,\n                131.59999084472656,\n                92.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/361\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Instances as return values</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  91.697265625\n                ],\n                [\n                  132.59999084472656,\n                  91.697265625\n                ],\n                [\n                  132.59999084472656,\n                  92.697265625\n                ],\n                [\n                  131.59999084472656,\n                  92.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                91.697265625,\n                132.59999084472656,\n                92.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/362\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>146</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  91.697265625\n                ],\n                [\n                  133.59999084472656,\n                  91.697265625\n                ],\n                [\n                  133.59999084472656,\n                  92.697265625\n                ],\n                [\n                  132.59999084472656,\n                  92.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                91.697265625,\n                133.59999084472656,\n                92.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/363\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  92.697265625\n                ],\n                [\n                  130.59999084472656,\n                  92.697265625\n                ],\n                [\n                  130.59999084472656,\n                  93.697265625\n                ],\n                [\n                  129.59999084472656,\n                  93.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                92.697265625,\n                130.59999084472656,\n                93.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/364\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15.5</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  92.697265625\n                ],\n                [\n                  131.59999084472656,\n                  92.697265625\n                ],\n                [\n                  131.59999084472656,\n                  93.697265625\n                ],\n                [\n                  130.59999084472656,\n                  93.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                92.697265625,\n                131.59999084472656,\n                93.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/365\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Objects are mutable</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  92.697265625\n                ],\n                [\n                  132.59999084472656,\n                  92.697265625\n                ],\n                [\n                  132.59999084472656,\n                  93.697265625\n                ],\n                [\n                  131.59999084472656,\n                  93.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                92.697265625,\n                132.59999084472656,\n                93.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/366\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>146</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  92.697265625\n                ],\n                [\n                  133.59999084472656,\n                  92.697265625\n                ],\n                [\n                  133.59999084472656,\n                  93.697265625\n                ],\n                [\n                  132.59999084472656,\n                  93.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                92.697265625,\n                133.59999084472656,\n                93.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/367\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  93.697265625\n                ],\n                [\n                  130.59999084472656,\n                  93.697265625\n                ],\n                [\n                  130.59999084472656,\n                  94.697265625\n                ],\n                [\n                  129.59999084472656,\n                  94.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                93.697265625,\n                130.59999084472656,\n                94.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/368\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15.6</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  93.697265625\n                ],\n                [\n                  131.59999084472656,\n                  93.697265625\n                ],\n                [\n                  131.59999084472656,\n                  94.697265625\n                ],\n                [\n                  130.59999084472656,\n                  94.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                93.697265625,\n                131.59999084472656,\n                94.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/369\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Copying</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  93.697265625\n                ],\n                [\n                  132.59999084472656,\n                  93.697265625\n                ],\n                [\n                  132.59999084472656,\n                  94.697265625\n                ],\n                [\n                  131.59999084472656,\n                  94.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                93.697265625,\n                132.59999084472656,\n                94.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/370\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>147</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  93.697265625\n                ],\n                [\n                  133.59999084472656,\n                  93.697265625\n                ],\n                [\n                  133.59999084472656,\n                  94.697265625\n                ],\n                [\n                  132.59999084472656,\n                  94.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                93.697265625,\n                133.59999084472656,\n                94.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/371\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  94.697265625\n                ],\n                [\n                  130.59999084472656,\n                  94.697265625\n                ],\n                [\n                  130.59999084472656,\n                  95.697265625\n                ],\n                [\n                  129.59999084472656,\n                  95.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                94.697265625,\n                130.59999084472656,\n                95.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/372\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15.7</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  94.697265625\n                ],\n                [\n                  131.59999084472656,\n                  94.697265625\n                ],\n                [\n                  131.59999084472656,\n                  95.697265625\n                ],\n                [\n                  130.59999084472656,\n                  95.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                94.697265625,\n                131.59999084472656,\n                95.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/373\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  94.697265625\n                ],\n                [\n                  132.59999084472656,\n                  94.697265625\n                ],\n                [\n                  132.59999084472656,\n                  95.697265625\n                ],\n                [\n                  131.59999084472656,\n                  95.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                94.697265625,\n                132.59999084472656,\n                95.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/374\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>148</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  94.697265625\n                ],\n                [\n                  133.59999084472656,\n                  94.697265625\n                ],\n                [\n                  133.59999084472656,\n                  95.697265625\n                ],\n                [\n                  132.59999084472656,\n                  95.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                94.697265625,\n                133.59999084472656,\n                95.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/375\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  95.697265625\n                ],\n                [\n                  130.59999084472656,\n                  95.697265625\n                ],\n                [\n                  130.59999084472656,\n                  96.697265625\n                ],\n                [\n                  129.59999084472656,\n                  96.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                95.697265625,\n                130.59999084472656,\n                96.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/376\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15.8</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  95.697265625\n                ],\n                [\n                  131.59999084472656,\n                  95.697265625\n                ],\n                [\n                  131.59999084472656,\n                  96.697265625\n                ],\n                [\n                  130.59999084472656,\n                  96.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                95.697265625,\n                131.59999084472656,\n                96.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/377\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  95.697265625\n                ],\n                [\n                  132.59999084472656,\n                  95.697265625\n                ],\n                [\n                  132.59999084472656,\n                  96.697265625\n                ],\n                [\n                  131.59999084472656,\n                  96.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                95.697265625,\n                132.59999084472656,\n                96.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/378\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>149</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  95.697265625\n                ],\n                [\n                  133.59999084472656,\n                  95.697265625\n                ],\n                [\n                  133.59999084472656,\n                  96.697265625\n                ],\n                [\n                  132.59999084472656,\n                  96.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                95.697265625,\n                133.59999084472656,\n                96.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/379\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  96.697265625\n                ],\n                [\n                  130.59999084472656,\n                  96.697265625\n                ],\n                [\n                  130.59999084472656,\n                  97.697265625\n                ],\n                [\n                  129.59999084472656,\n                  97.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                96.697265625,\n                130.59999084472656,\n                97.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/380\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>15.9</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  96.697265625\n                ],\n                [\n                  131.59999084472656,\n                  96.697265625\n                ],\n                [\n                  131.59999084472656,\n                  97.697265625\n                ],\n                [\n                  130.59999084472656,\n                  97.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                96.697265625,\n                131.59999084472656,\n                97.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/381\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  96.697265625\n                ],\n                [\n                  132.59999084472656,\n                  96.697265625\n                ],\n                [\n                  132.59999084472656,\n                  97.697265625\n                ],\n                [\n                  131.59999084472656,\n                  97.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                96.697265625,\n                132.59999084472656,\n                97.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/382\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>149</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  96.697265625\n                ],\n                [\n                  133.59999084472656,\n                  96.697265625\n                ],\n                [\n                  133.59999084472656,\n                  97.697265625\n                ],\n                [\n                  132.59999084472656,\n                  97.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                96.697265625,\n                133.59999084472656,\n                97.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/383\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>16</th>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  97.697265625\n                ],\n                [\n                  130.59999084472656,\n                  97.697265625\n                ],\n                [\n                  130.59999084472656,\n                  98.697265625\n                ],\n                [\n                  129.59999084472656,\n                  98.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                97.697265625,\n                130.59999084472656,\n                98.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/384\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th colspan=\\\"3\\\">Classes and functions</th>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  97.697265625\n                ],\n                [\n                  133.59999084472656,\n                  97.697265625\n                ],\n                [\n                  133.59999084472656,\n                  98.697265625\n                ],\n                [\n                  130.59999084472656,\n                  98.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                97.697265625,\n                133.59999084472656,\n                98.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/385\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  98.697265625\n                ],\n                [\n                  130.59999084472656,\n                  98.697265625\n                ],\n                [\n                  130.59999084472656,\n                  99.697265625\n                ],\n                [\n                  129.59999084472656,\n                  99.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                98.697265625,\n                130.59999084472656,\n                99.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/386\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>16.1</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  98.697265625\n                ],\n                [\n                  131.59999084472656,\n                  98.697265625\n                ],\n                [\n                  131.59999084472656,\n                  99.697265625\n                ],\n                [\n                  130.59999084472656,\n                  99.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                98.697265625,\n                131.59999084472656,\n                99.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/387\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Time</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  98.697265625\n                ],\n                [\n                  132.59999084472656,\n                  98.697265625\n                ],\n                [\n                  132.59999084472656,\n                  99.697265625\n                ],\n                [\n                  131.59999084472656,\n                  99.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                98.697265625,\n                132.59999084472656,\n                99.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/388\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>151</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  98.697265625\n                ],\n                [\n                  133.59999084472656,\n                  98.697265625\n                ],\n                [\n                  133.59999084472656,\n                  99.697265625\n                ],\n                [\n                  132.59999084472656,\n                  99.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                98.697265625,\n                133.59999084472656,\n                99.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/389\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  99.697265625\n                ],\n                [\n                  130.59999084472656,\n                  99.697265625\n                ],\n                [\n                  130.59999084472656,\n                  100.697265625\n                ],\n                [\n                  129.59999084472656,\n                  100.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                99.697265625,\n                130.59999084472656,\n                100.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/390\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>16.2</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  99.697265625\n                ],\n                [\n                  131.59999084472656,\n                  99.697265625\n                ],\n                [\n                  131.59999084472656,\n                  100.697265625\n                ],\n                [\n                  130.59999084472656,\n                  100.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                99.697265625,\n                131.59999084472656,\n                100.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/391\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Pure functions</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  99.697265625\n                ],\n                [\n                  132.59999084472656,\n                  99.697265625\n                ],\n                [\n                  132.59999084472656,\n                  100.697265625\n                ],\n                [\n                  131.59999084472656,\n                  100.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                99.697265625,\n                132.59999084472656,\n                100.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/392\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>151</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  99.697265625\n                ],\n                [\n                  133.59999084472656,\n                  99.697265625\n                ],\n                [\n                  133.59999084472656,\n                  100.697265625\n                ],\n                [\n                  132.59999084472656,\n                  100.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                99.697265625,\n                133.59999084472656,\n                100.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/393\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  100.697265625\n                ],\n                [\n                  130.59999084472656,\n                  100.697265625\n                ],\n                [\n                  130.59999084472656,\n                  101.697265625\n                ],\n                [\n                  129.59999084472656,\n                  101.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                100.697265625,\n                130.59999084472656,\n                101.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/394\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>16.3</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  100.697265625\n                ],\n                [\n                  131.59999084472656,\n                  100.697265625\n                ],\n                [\n                  131.59999084472656,\n                  101.697265625\n                ],\n                [\n                  130.59999084472656,\n                  101.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                100.697265625,\n                131.59999084472656,\n                101.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/395\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Modifiers</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  100.697265625\n                ],\n                [\n                  132.59999084472656,\n                  100.697265625\n                ],\n                [\n                  132.59999084472656,\n                  101.697265625\n                ],\n                [\n                  131.59999084472656,\n                  101.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                100.697265625,\n                132.59999084472656,\n                101.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/396\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>153</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  100.697265625\n                ],\n                [\n                  133.59999084472656,\n                  100.697265625\n                ],\n                [\n                  133.59999084472656,\n                  101.697265625\n                ],\n                [\n                  132.59999084472656,\n                  101.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                100.697265625,\n                133.59999084472656,\n                101.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/397\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  101.697265625\n                ],\n                [\n                  130.59999084472656,\n                  101.697265625\n                ],\n                [\n                  130.59999084472656,\n                  102.697265625\n                ],\n                [\n                  129.59999084472656,\n                  102.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                101.697265625,\n                130.59999084472656,\n                102.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/398\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>16.4</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  101.697265625\n                ],\n                [\n                  131.59999084472656,\n                  101.697265625\n                ],\n                [\n                  131.59999084472656,\n                  102.697265625\n                ],\n                [\n                  130.59999084472656,\n                  102.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                101.697265625,\n                131.59999084472656,\n                102.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/399\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Prototyping versus planning</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  101.697265625\n                ],\n                [\n                  132.59999084472656,\n                  101.697265625\n                ],\n                [\n                  132.59999084472656,\n                  102.697265625\n                ],\n                [\n                  131.59999084472656,\n                  102.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                101.697265625,\n                132.59999084472656,\n                102.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/400\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>154</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  101.697265625\n                ],\n                [\n                  133.59999084472656,\n                  101.697265625\n                ],\n                [\n                  133.59999084472656,\n                  102.697265625\n                ],\n                [\n                  132.59999084472656,\n                  102.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                101.697265625,\n                133.59999084472656,\n                102.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/401\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  102.697265625\n                ],\n                [\n                  130.59999084472656,\n                  102.697265625\n                ],\n                [\n                  130.59999084472656,\n                  103.697265625\n                ],\n                [\n                  129.59999084472656,\n                  103.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                102.697265625,\n                130.59999084472656,\n                103.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/402\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>16.5</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  102.697265625\n                ],\n                [\n                  131.59999084472656,\n                  102.697265625\n                ],\n                [\n                  131.59999084472656,\n                  103.697265625\n                ],\n                [\n                  130.59999084472656,\n                  103.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                102.697265625,\n                131.59999084472656,\n                103.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/403\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  102.697265625\n                ],\n                [\n                  132.59999084472656,\n                  102.697265625\n                ],\n                [\n                  132.59999084472656,\n                  103.697265625\n                ],\n                [\n                  131.59999084472656,\n                  103.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                102.697265625,\n                132.59999084472656,\n                103.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/404\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>155</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  102.697265625\n                ],\n                [\n                  133.59999084472656,\n                  102.697265625\n                ],\n                [\n                  133.59999084472656,\n                  103.697265625\n                ],\n                [\n                  132.59999084472656,\n                  103.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                102.697265625,\n                133.59999084472656,\n                103.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/405\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  103.697265625\n                ],\n                [\n                  130.59999084472656,\n                  103.697265625\n                ],\n                [\n                  130.59999084472656,\n                  104.697265625\n                ],\n                [\n                  129.59999084472656,\n                  104.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                103.697265625,\n                130.59999084472656,\n                104.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/406\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>16.6</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  103.697265625\n                ],\n                [\n                  131.59999084472656,\n                  103.697265625\n                ],\n                [\n                  131.59999084472656,\n                  104.697265625\n                ],\n                [\n                  130.59999084472656,\n                  104.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                103.697265625,\n                131.59999084472656,\n                104.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/407\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  103.697265625\n                ],\n                [\n                  132.59999084472656,\n                  103.697265625\n                ],\n                [\n                  132.59999084472656,\n                  104.697265625\n                ],\n                [\n                  131.59999084472656,\n                  104.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                103.697265625,\n                132.59999084472656,\n                104.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/408\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>155</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  103.697265625\n                ],\n                [\n                  133.59999084472656,\n                  103.697265625\n                ],\n                [\n                  133.59999084472656,\n                  104.697265625\n                ],\n                [\n                  132.59999084472656,\n                  104.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                103.697265625,\n                133.59999084472656,\n                104.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/409\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.59999084472656,\n                  104.697265625\n                ],\n                [\n                  130.59999084472656,\n                  104.697265625\n                ],\n                [\n                  130.59999084472656,\n                  105.697265625\n                ],\n                [\n                  129.59999084472656,\n                  105.697265625\n                ]\n              ],\n              \"bbox\": [\n                129.59999084472656,\n                104.697265625,\n                130.59999084472656,\n                105.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/410\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>16.7</td>\",\n              \"polygon\": [\n                [\n                  130.59999084472656,\n                  104.697265625\n                ],\n                [\n                  131.59999084472656,\n                  104.697265625\n                ],\n                [\n                  131.59999084472656,\n                  105.697265625\n                ],\n                [\n                  130.59999084472656,\n                  105.697265625\n                ]\n              ],\n              \"bbox\": [\n                130.59999084472656,\n                104.697265625,\n                131.59999084472656,\n                105.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/411\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  131.59999084472656,\n                  104.697265625\n                ],\n                [\n                  132.59999084472656,\n                  104.697265625\n                ],\n                [\n                  132.59999084472656,\n                  105.697265625\n                ],\n                [\n                  131.59999084472656,\n                  105.697265625\n                ]\n              ],\n              \"bbox\": [\n                131.59999084472656,\n                104.697265625,\n                132.59999084472656,\n                105.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/18/TableCell/412\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>156</td>\",\n              \"polygon\": [\n                [\n                  132.59999084472656,\n                  104.697265625\n                ],\n                [\n                  133.59999084472656,\n                  104.697265625\n                ],\n                [\n                  133.59999084472656,\n                  105.697265625\n                ],\n                [\n                  132.59999084472656,\n                  105.697265625\n                ]\n              ],\n              \"bbox\": [\n                132.59999084472656,\n                104.697265625,\n                133.59999084472656,\n                105.697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/334\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  87.591796875\n                ],\n                [\n                  87.39998626708984,\n                  87.591796875\n                ],\n                [\n                  87.39998626708984,\n                  88.591796875\n                ],\n                [\n                  86.39998626708984,\n                  88.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                87.591796875,\n                87.39998626708984,\n                88.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/335\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  87.591796875\n                ],\n                [\n                  88.39998626708984,\n                  87.591796875\n                ],\n                [\n                  88.39998626708984,\n                  88.591796875\n                ],\n                [\n                  87.39998626708984,\n                  88.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                87.591796875,\n                88.39998626708984,\n                88.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/336\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>17 Classes and methods</th>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  87.591796875\n                ],\n                [\n                  89.39998626708984,\n                  87.591796875\n                ],\n                [\n                  89.39998626708984,\n                  88.591796875\n                ],\n                [\n                  88.39998626708984,\n                  88.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                87.591796875,\n                89.39998626708984,\n                88.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/337\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>157</th>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  87.591796875\n                ],\n                [\n                  90.39998626708984,\n                  87.591796875\n                ],\n                [\n                  90.39998626708984,\n                  88.591796875\n                ],\n                [\n                  89.39998626708984,\n                  88.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                87.591796875,\n                90.39998626708984,\n                88.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/338\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  88.591796875\n                ],\n                [\n                  87.39998626708984,\n                  88.591796875\n                ],\n                [\n                  87.39998626708984,\n                  89.591796875\n                ],\n                [\n                  86.39998626708984,\n                  89.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                88.591796875,\n                87.39998626708984,\n                89.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/339\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.1</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  88.591796875\n                ],\n                [\n                  88.39998626708984,\n                  88.591796875\n                ],\n                [\n                  88.39998626708984,\n                  89.591796875\n                ],\n                [\n                  87.39998626708984,\n                  89.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                88.591796875,\n                88.39998626708984,\n                89.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/340\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Object-oriented features</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  88.591796875\n                ],\n                [\n                  89.39998626708984,\n                  88.591796875\n                ],\n                [\n                  89.39998626708984,\n                  89.591796875\n                ],\n                [\n                  88.39998626708984,\n                  89.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                88.591796875,\n                89.39998626708984,\n                89.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/341\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>157</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  88.591796875\n                ],\n                [\n                  90.39998626708984,\n                  88.591796875\n                ],\n                [\n                  90.39998626708984,\n                  89.591796875\n                ],\n                [\n                  89.39998626708984,\n                  89.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                88.591796875,\n                90.39998626708984,\n                89.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/342\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  89.591796875\n                ],\n                [\n                  87.39998626708984,\n                  89.591796875\n                ],\n                [\n                  87.39998626708984,\n                  90.591796875\n                ],\n                [\n                  86.39998626708984,\n                  90.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                89.591796875,\n                87.39998626708984,\n                90.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/343\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.2</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  89.591796875\n                ],\n                [\n                  88.39998626708984,\n                  89.591796875\n                ],\n                [\n                  88.39998626708984,\n                  90.591796875\n                ],\n                [\n                  87.39998626708984,\n                  90.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                89.591796875,\n                88.39998626708984,\n                90.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/344\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Printing objects</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  89.591796875\n                ],\n                [\n                  89.39998626708984,\n                  89.591796875\n                ],\n                [\n                  89.39998626708984,\n                  90.591796875\n                ],\n                [\n                  88.39998626708984,\n                  90.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                89.591796875,\n                89.39998626708984,\n                90.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/345\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>158</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  89.591796875\n                ],\n                [\n                  90.39998626708984,\n                  89.591796875\n                ],\n                [\n                  90.39998626708984,\n                  90.591796875\n                ],\n                [\n                  89.39998626708984,\n                  90.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                89.591796875,\n                90.39998626708984,\n                90.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/346\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  90.591796875\n                ],\n                [\n                  87.39998626708984,\n                  90.591796875\n                ],\n                [\n                  87.39998626708984,\n                  91.591796875\n                ],\n                [\n                  86.39998626708984,\n                  91.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                90.591796875,\n                87.39998626708984,\n                91.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/347\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.3</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  90.591796875\n                ],\n                [\n                  88.39998626708984,\n                  90.591796875\n                ],\n                [\n                  88.39998626708984,\n                  91.591796875\n                ],\n                [\n                  87.39998626708984,\n                  91.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                90.591796875,\n                88.39998626708984,\n                91.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/348\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Another example</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  90.591796875\n                ],\n                [\n                  89.39998626708984,\n                  90.591796875\n                ],\n                [\n                  89.39998626708984,\n                  91.591796875\n                ],\n                [\n                  88.39998626708984,\n                  91.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                90.591796875,\n                89.39998626708984,\n                91.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/349\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>159</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  90.591796875\n                ],\n                [\n                  90.39998626708984,\n                  90.591796875\n                ],\n                [\n                  90.39998626708984,\n                  91.591796875\n                ],\n                [\n                  89.39998626708984,\n                  91.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                90.591796875,\n                90.39998626708984,\n                91.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/350\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  91.591796875\n                ],\n                [\n                  87.39998626708984,\n                  91.591796875\n                ],\n                [\n                  87.39998626708984,\n                  92.591796875\n                ],\n                [\n                  86.39998626708984,\n                  92.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                91.591796875,\n                87.39998626708984,\n                92.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/351\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.4</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  91.591796875\n                ],\n                [\n                  88.39998626708984,\n                  91.591796875\n                ],\n                [\n                  88.39998626708984,\n                  92.591796875\n                ],\n                [\n                  87.39998626708984,\n                  92.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                91.591796875,\n                88.39998626708984,\n                92.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/352\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>A more complicated example</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  91.591796875\n                ],\n                [\n                  89.39998626708984,\n                  91.591796875\n                ],\n                [\n                  89.39998626708984,\n                  92.591796875\n                ],\n                [\n                  88.39998626708984,\n                  92.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                91.591796875,\n                89.39998626708984,\n                92.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/353\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>160</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  91.591796875\n                ],\n                [\n                  90.39998626708984,\n                  91.591796875\n                ],\n                [\n                  90.39998626708984,\n                  92.591796875\n                ],\n                [\n                  89.39998626708984,\n                  92.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                91.591796875,\n                90.39998626708984,\n                92.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/354\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  92.591796875\n                ],\n                [\n                  87.39998626708984,\n                  92.591796875\n                ],\n                [\n                  87.39998626708984,\n                  93.591796875\n                ],\n                [\n                  86.39998626708984,\n                  93.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                92.591796875,\n                87.39998626708984,\n                93.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/355\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.5</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  92.591796875\n                ],\n                [\n                  88.39998626708984,\n                  92.591796875\n                ],\n                [\n                  88.39998626708984,\n                  93.591796875\n                ],\n                [\n                  87.39998626708984,\n                  93.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                92.591796875,\n                88.39998626708984,\n                93.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/356\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>The init method</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  92.591796875\n                ],\n                [\n                  89.39998626708984,\n                  92.591796875\n                ],\n                [\n                  89.39998626708984,\n                  93.591796875\n                ],\n                [\n                  88.39998626708984,\n                  93.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                92.591796875,\n                89.39998626708984,\n                93.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/357\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>160</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  92.591796875\n                ],\n                [\n                  90.39998626708984,\n                  92.591796875\n                ],\n                [\n                  90.39998626708984,\n                  93.591796875\n                ],\n                [\n                  89.39998626708984,\n                  93.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                92.591796875,\n                90.39998626708984,\n                93.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/358\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  93.591796875\n                ],\n                [\n                  87.39998626708984,\n                  93.591796875\n                ],\n                [\n                  87.39998626708984,\n                  94.591796875\n                ],\n                [\n                  86.39998626708984,\n                  94.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                93.591796875,\n                87.39998626708984,\n                94.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/359\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.6</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  93.591796875\n                ],\n                [\n                  88.39998626708984,\n                  93.591796875\n                ],\n                [\n                  88.39998626708984,\n                  94.591796875\n                ],\n                [\n                  87.39998626708984,\n                  94.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                93.591796875,\n                88.39998626708984,\n                94.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/360\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>The __str__ method</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  93.591796875\n                ],\n                [\n                  89.39998626708984,\n                  93.591796875\n                ],\n                [\n                  89.39998626708984,\n                  94.591796875\n                ],\n                [\n                  88.39998626708984,\n                  94.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                93.591796875,\n                89.39998626708984,\n                94.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/361\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>161</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  93.591796875\n                ],\n                [\n                  90.39998626708984,\n                  93.591796875\n                ],\n                [\n                  90.39998626708984,\n                  94.591796875\n                ],\n                [\n                  89.39998626708984,\n                  94.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                93.591796875,\n                90.39998626708984,\n                94.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/362\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  94.591796875\n                ],\n                [\n                  87.39998626708984,\n                  94.591796875\n                ],\n                [\n                  87.39998626708984,\n                  95.591796875\n                ],\n                [\n                  86.39998626708984,\n                  95.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                94.591796875,\n                87.39998626708984,\n                95.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/363\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.7</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  94.591796875\n                ],\n                [\n                  88.39998626708984,\n                  94.591796875\n                ],\n                [\n                  88.39998626708984,\n                  95.591796875\n                ],\n                [\n                  87.39998626708984,\n                  95.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                94.591796875,\n                88.39998626708984,\n                95.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/364\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Operator overloading</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  94.591796875\n                ],\n                [\n                  89.39998626708984,\n                  94.591796875\n                ],\n                [\n                  89.39998626708984,\n                  95.591796875\n                ],\n                [\n                  88.39998626708984,\n                  95.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                94.591796875,\n                89.39998626708984,\n                95.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/365\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>161</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  94.591796875\n                ],\n                [\n                  90.39998626708984,\n                  94.591796875\n                ],\n                [\n                  90.39998626708984,\n                  95.591796875\n                ],\n                [\n                  89.39998626708984,\n                  95.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                94.591796875,\n                90.39998626708984,\n                95.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/366\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  95.591796875\n                ],\n                [\n                  87.39998626708984,\n                  95.591796875\n                ],\n                [\n                  87.39998626708984,\n                  96.591796875\n                ],\n                [\n                  86.39998626708984,\n                  96.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                95.591796875,\n                87.39998626708984,\n                96.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/367\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.8</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  95.591796875\n                ],\n                [\n                  88.39998626708984,\n                  95.591796875\n                ],\n                [\n                  88.39998626708984,\n                  96.591796875\n                ],\n                [\n                  87.39998626708984,\n                  96.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                95.591796875,\n                88.39998626708984,\n                96.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/368\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Type-based dispatch</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  95.591796875\n                ],\n                [\n                  89.39998626708984,\n                  95.591796875\n                ],\n                [\n                  89.39998626708984,\n                  96.591796875\n                ],\n                [\n                  88.39998626708984,\n                  96.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                95.591796875,\n                89.39998626708984,\n                96.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/369\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>162</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  95.591796875\n                ],\n                [\n                  90.39998626708984,\n                  95.591796875\n                ],\n                [\n                  90.39998626708984,\n                  96.591796875\n                ],\n                [\n                  89.39998626708984,\n                  96.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                95.591796875,\n                90.39998626708984,\n                96.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/370\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  96.591796875\n                ],\n                [\n                  87.39998626708984,\n                  96.591796875\n                ],\n                [\n                  87.39998626708984,\n                  97.591796875\n                ],\n                [\n                  86.39998626708984,\n                  97.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                96.591796875,\n                87.39998626708984,\n                97.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/371\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.9</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  96.591796875\n                ],\n                [\n                  88.39998626708984,\n                  96.591796875\n                ],\n                [\n                  88.39998626708984,\n                  97.591796875\n                ],\n                [\n                  87.39998626708984,\n                  97.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                96.591796875,\n                88.39998626708984,\n                97.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/372\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Polymorphism</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  96.591796875\n                ],\n                [\n                  89.39998626708984,\n                  96.591796875\n                ],\n                [\n                  89.39998626708984,\n                  97.591796875\n                ],\n                [\n                  88.39998626708984,\n                  97.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                96.591796875,\n                89.39998626708984,\n                97.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/373\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>163</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  96.591796875\n                ],\n                [\n                  90.39998626708984,\n                  96.591796875\n                ],\n                [\n                  90.39998626708984,\n                  97.591796875\n                ],\n                [\n                  89.39998626708984,\n                  97.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                96.591796875,\n                90.39998626708984,\n                97.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/374\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  97.591796875\n                ],\n                [\n                  87.39998626708984,\n                  97.591796875\n                ],\n                [\n                  87.39998626708984,\n                  98.591796875\n                ],\n                [\n                  86.39998626708984,\n                  98.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                97.591796875,\n                87.39998626708984,\n                98.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/375\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.10</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  97.591796875\n                ],\n                [\n                  88.39998626708984,\n                  97.591796875\n                ],\n                [\n                  88.39998626708984,\n                  98.591796875\n                ],\n                [\n                  87.39998626708984,\n                  98.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                97.591796875,\n                88.39998626708984,\n                98.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/376\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  97.591796875\n                ],\n                [\n                  89.39998626708984,\n                  97.591796875\n                ],\n                [\n                  89.39998626708984,\n                  98.591796875\n                ],\n                [\n                  88.39998626708984,\n                  98.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                97.591796875,\n                89.39998626708984,\n                98.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/377\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>164</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  97.591796875\n                ],\n                [\n                  90.39998626708984,\n                  97.591796875\n                ],\n                [\n                  90.39998626708984,\n                  98.591796875\n                ],\n                [\n                  89.39998626708984,\n                  98.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                97.591796875,\n                90.39998626708984,\n                98.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/378\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  98.591796875\n                ],\n                [\n                  87.39998626708984,\n                  98.591796875\n                ],\n                [\n                  87.39998626708984,\n                  99.591796875\n                ],\n                [\n                  86.39998626708984,\n                  99.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                98.591796875,\n                87.39998626708984,\n                99.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/379\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.11</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  98.591796875\n                ],\n                [\n                  88.39998626708984,\n                  98.591796875\n                ],\n                [\n                  88.39998626708984,\n                  99.591796875\n                ],\n                [\n                  87.39998626708984,\n                  99.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                98.591796875,\n                88.39998626708984,\n                99.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/380\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Interface and implementation</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  98.591796875\n                ],\n                [\n                  89.39998626708984,\n                  98.591796875\n                ],\n                [\n                  89.39998626708984,\n                  99.591796875\n                ],\n                [\n                  88.39998626708984,\n                  99.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                98.591796875,\n                89.39998626708984,\n                99.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/381\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>164</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  98.591796875\n                ],\n                [\n                  90.39998626708984,\n                  98.591796875\n                ],\n                [\n                  90.39998626708984,\n                  99.591796875\n                ],\n                [\n                  89.39998626708984,\n                  99.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                98.591796875,\n                90.39998626708984,\n                99.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/382\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  99.591796875\n                ],\n                [\n                  87.39998626708984,\n                  99.591796875\n                ],\n                [\n                  87.39998626708984,\n                  100.591796875\n                ],\n                [\n                  86.39998626708984,\n                  100.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                99.591796875,\n                87.39998626708984,\n                100.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/383\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.12</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  99.591796875\n                ],\n                [\n                  88.39998626708984,\n                  99.591796875\n                ],\n                [\n                  88.39998626708984,\n                  100.591796875\n                ],\n                [\n                  87.39998626708984,\n                  100.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                99.591796875,\n                88.39998626708984,\n                100.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/384\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  99.591796875\n                ],\n                [\n                  89.39998626708984,\n                  99.591796875\n                ],\n                [\n                  89.39998626708984,\n                  100.591796875\n                ],\n                [\n                  88.39998626708984,\n                  100.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                99.591796875,\n                89.39998626708984,\n                100.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/385\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>165</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  99.591796875\n                ],\n                [\n                  90.39998626708984,\n                  99.591796875\n                ],\n                [\n                  90.39998626708984,\n                  100.591796875\n                ],\n                [\n                  89.39998626708984,\n                  100.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                99.591796875,\n                90.39998626708984,\n                100.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/386\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  100.591796875\n                ],\n                [\n                  87.39998626708984,\n                  100.591796875\n                ],\n                [\n                  87.39998626708984,\n                  101.591796875\n                ],\n                [\n                  86.39998626708984,\n                  101.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                100.591796875,\n                87.39998626708984,\n                101.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/387\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>17.13</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  100.591796875\n                ],\n                [\n                  88.39998626708984,\n                  100.591796875\n                ],\n                [\n                  88.39998626708984,\n                  101.591796875\n                ],\n                [\n                  87.39998626708984,\n                  101.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                100.591796875,\n                88.39998626708984,\n                101.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/388\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  100.591796875\n                ],\n                [\n                  89.39998626708984,\n                  100.591796875\n                ],\n                [\n                  89.39998626708984,\n                  101.591796875\n                ],\n                [\n                  88.39998626708984,\n                  101.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                100.591796875,\n                89.39998626708984,\n                101.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/389\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>165</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  100.591796875\n                ],\n                [\n                  90.39998626708984,\n                  100.591796875\n                ],\n                [\n                  90.39998626708984,\n                  101.591796875\n                ],\n                [\n                  89.39998626708984,\n                  101.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                100.591796875,\n                90.39998626708984,\n                101.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/390\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  101.591796875\n                ],\n                [\n                  87.39998626708984,\n                  101.591796875\n                ],\n                [\n                  87.39998626708984,\n                  102.591796875\n                ],\n                [\n                  86.39998626708984,\n                  102.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                101.591796875,\n                87.39998626708984,\n                102.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/391\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  101.591796875\n                ],\n                [\n                  88.39998626708984,\n                  101.591796875\n                ],\n                [\n                  88.39998626708984,\n                  102.591796875\n                ],\n                [\n                  87.39998626708984,\n                  102.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                101.591796875,\n                88.39998626708984,\n                102.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/392\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>18 Inheritance</th>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  101.591796875\n                ],\n                [\n                  89.39998626708984,\n                  101.591796875\n                ],\n                [\n                  89.39998626708984,\n                  102.591796875\n                ],\n                [\n                  88.39998626708984,\n                  102.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                101.591796875,\n                89.39998626708984,\n                102.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/393\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>167</th>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  101.591796875\n                ],\n                [\n                  90.39998626708984,\n                  101.591796875\n                ],\n                [\n                  90.39998626708984,\n                  102.591796875\n                ],\n                [\n                  89.39998626708984,\n                  102.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                101.591796875,\n                90.39998626708984,\n                102.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/394\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  102.591796875\n                ],\n                [\n                  87.39998626708984,\n                  102.591796875\n                ],\n                [\n                  87.39998626708984,\n                  103.591796875\n                ],\n                [\n                  86.39998626708984,\n                  103.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                102.591796875,\n                87.39998626708984,\n                103.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/395\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.1</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  102.591796875\n                ],\n                [\n                  88.39998626708984,\n                  102.591796875\n                ],\n                [\n                  88.39998626708984,\n                  103.591796875\n                ],\n                [\n                  87.39998626708984,\n                  103.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                102.591796875,\n                88.39998626708984,\n                103.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/396\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Card objects</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  102.591796875\n                ],\n                [\n                  89.39998626708984,\n                  102.591796875\n                ],\n                [\n                  89.39998626708984,\n                  103.591796875\n                ],\n                [\n                  88.39998626708984,\n                  103.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                102.591796875,\n                89.39998626708984,\n                103.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/397\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>167</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  102.591796875\n                ],\n                [\n                  90.39998626708984,\n                  102.591796875\n                ],\n                [\n                  90.39998626708984,\n                  103.591796875\n                ],\n                [\n                  89.39998626708984,\n                  103.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                102.591796875,\n                90.39998626708984,\n                103.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/398\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  103.591796875\n                ],\n                [\n                  87.39998626708984,\n                  103.591796875\n                ],\n                [\n                  87.39998626708984,\n                  104.591796875\n                ],\n                [\n                  86.39998626708984,\n                  104.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                103.591796875,\n                87.39998626708984,\n                104.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/399\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.2</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  103.591796875\n                ],\n                [\n                  88.39998626708984,\n                  103.591796875\n                ],\n                [\n                  88.39998626708984,\n                  104.591796875\n                ],\n                [\n                  87.39998626708984,\n                  104.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                103.591796875,\n                88.39998626708984,\n                104.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/400\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Class attributes</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  103.591796875\n                ],\n                [\n                  89.39998626708984,\n                  103.591796875\n                ],\n                [\n                  89.39998626708984,\n                  104.591796875\n                ],\n                [\n                  88.39998626708984,\n                  104.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                103.591796875,\n                89.39998626708984,\n                104.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/401\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>168</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  103.591796875\n                ],\n                [\n                  90.39998626708984,\n                  103.591796875\n                ],\n                [\n                  90.39998626708984,\n                  104.591796875\n                ],\n                [\n                  89.39998626708984,\n                  104.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                103.591796875,\n                90.39998626708984,\n                104.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/402\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  104.591796875\n                ],\n                [\n                  87.39998626708984,\n                  104.591796875\n                ],\n                [\n                  87.39998626708984,\n                  105.591796875\n                ],\n                [\n                  86.39998626708984,\n                  105.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                104.591796875,\n                87.39998626708984,\n                105.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/403\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.3</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  104.591796875\n                ],\n                [\n                  88.39998626708984,\n                  104.591796875\n                ],\n                [\n                  88.39998626708984,\n                  105.591796875\n                ],\n                [\n                  87.39998626708984,\n                  105.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                104.591796875,\n                88.39998626708984,\n                105.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/404\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Comparing cards</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  104.591796875\n                ],\n                [\n                  89.39998626708984,\n                  104.591796875\n                ],\n                [\n                  89.39998626708984,\n                  105.591796875\n                ],\n                [\n                  88.39998626708984,\n                  105.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                104.591796875,\n                89.39998626708984,\n                105.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/405\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>169</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  104.591796875\n                ],\n                [\n                  90.39998626708984,\n                  104.591796875\n                ],\n                [\n                  90.39998626708984,\n                  105.591796875\n                ],\n                [\n                  89.39998626708984,\n                  105.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                104.591796875,\n                90.39998626708984,\n                105.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/406\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  105.591796875\n                ],\n                [\n                  87.39998626708984,\n                  105.591796875\n                ],\n                [\n                  87.39998626708984,\n                  106.591796875\n                ],\n                [\n                  86.39998626708984,\n                  106.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                105.591796875,\n                87.39998626708984,\n                106.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/407\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.4</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  105.591796875\n                ],\n                [\n                  88.39998626708984,\n                  105.591796875\n                ],\n                [\n                  88.39998626708984,\n                  106.591796875\n                ],\n                [\n                  87.39998626708984,\n                  106.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                105.591796875,\n                88.39998626708984,\n                106.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/408\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Decks</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  105.591796875\n                ],\n                [\n                  89.39998626708984,\n                  105.591796875\n                ],\n                [\n                  89.39998626708984,\n                  106.591796875\n                ],\n                [\n                  88.39998626708984,\n                  106.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                105.591796875,\n                89.39998626708984,\n                106.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/409\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>170</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  105.591796875\n                ],\n                [\n                  90.39998626708984,\n                  105.591796875\n                ],\n                [\n                  90.39998626708984,\n                  106.591796875\n                ],\n                [\n                  89.39998626708984,\n                  106.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                105.591796875,\n                90.39998626708984,\n                106.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/410\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  106.591796875\n                ],\n                [\n                  87.39998626708984,\n                  106.591796875\n                ],\n                [\n                  87.39998626708984,\n                  107.591796875\n                ],\n                [\n                  86.39998626708984,\n                  107.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                106.591796875,\n                87.39998626708984,\n                107.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/411\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.5</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  106.591796875\n                ],\n                [\n                  88.39998626708984,\n                  106.591796875\n                ],\n                [\n                  88.39998626708984,\n                  107.591796875\n                ],\n                [\n                  87.39998626708984,\n                  107.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                106.591796875,\n                88.39998626708984,\n                107.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/412\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Printing the deck</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  106.591796875\n                ],\n                [\n                  89.39998626708984,\n                  106.591796875\n                ],\n                [\n                  89.39998626708984,\n                  107.591796875\n                ],\n                [\n                  88.39998626708984,\n                  107.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                106.591796875,\n                89.39998626708984,\n                107.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/413\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>171</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  106.591796875\n                ],\n                [\n                  90.39998626708984,\n                  106.591796875\n                ],\n                [\n                  90.39998626708984,\n                  107.591796875\n                ],\n                [\n                  89.39998626708984,\n                  107.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                106.591796875,\n                90.39998626708984,\n                107.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/414\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  107.591796875\n                ],\n                [\n                  87.39998626708984,\n                  107.591796875\n                ],\n                [\n                  87.39998626708984,\n                  108.591796875\n                ],\n                [\n                  86.39998626708984,\n                  108.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                107.591796875,\n                87.39998626708984,\n                108.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/415\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.6</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  107.591796875\n                ],\n                [\n                  88.39998626708984,\n                  107.591796875\n                ],\n                [\n                  88.39998626708984,\n                  108.591796875\n                ],\n                [\n                  87.39998626708984,\n                  108.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                107.591796875,\n                88.39998626708984,\n                108.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/416\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Add, remove, shuffle and sort</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  107.591796875\n                ],\n                [\n                  89.39998626708984,\n                  107.591796875\n                ],\n                [\n                  89.39998626708984,\n                  108.591796875\n                ],\n                [\n                  88.39998626708984,\n                  108.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                107.591796875,\n                89.39998626708984,\n                108.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/417\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>171</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  107.591796875\n                ],\n                [\n                  90.39998626708984,\n                  107.591796875\n                ],\n                [\n                  90.39998626708984,\n                  108.591796875\n                ],\n                [\n                  89.39998626708984,\n                  108.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                107.591796875,\n                90.39998626708984,\n                108.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/418\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  108.591796875\n                ],\n                [\n                  87.39998626708984,\n                  108.591796875\n                ],\n                [\n                  87.39998626708984,\n                  109.591796875\n                ],\n                [\n                  86.39998626708984,\n                  109.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                108.591796875,\n                87.39998626708984,\n                109.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/419\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.7</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  108.591796875\n                ],\n                [\n                  88.39998626708984,\n                  108.591796875\n                ],\n                [\n                  88.39998626708984,\n                  109.591796875\n                ],\n                [\n                  87.39998626708984,\n                  109.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                108.591796875,\n                88.39998626708984,\n                109.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/420\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Inheritance</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  108.591796875\n                ],\n                [\n                  89.39998626708984,\n                  108.591796875\n                ],\n                [\n                  89.39998626708984,\n                  109.591796875\n                ],\n                [\n                  88.39998626708984,\n                  109.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                108.591796875,\n                89.39998626708984,\n                109.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/421\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>172</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  108.591796875\n                ],\n                [\n                  90.39998626708984,\n                  108.591796875\n                ],\n                [\n                  90.39998626708984,\n                  109.591796875\n                ],\n                [\n                  89.39998626708984,\n                  109.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                108.591796875,\n                90.39998626708984,\n                109.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/422\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  109.591796875\n                ],\n                [\n                  87.39998626708984,\n                  109.591796875\n                ],\n                [\n                  87.39998626708984,\n                  110.591796875\n                ],\n                [\n                  86.39998626708984,\n                  110.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                109.591796875,\n                87.39998626708984,\n                110.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/423\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.8</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  109.591796875\n                ],\n                [\n                  88.39998626708984,\n                  109.591796875\n                ],\n                [\n                  88.39998626708984,\n                  110.591796875\n                ],\n                [\n                  87.39998626708984,\n                  110.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                109.591796875,\n                88.39998626708984,\n                110.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/424\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Class diagrams</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  109.591796875\n                ],\n                [\n                  89.39998626708984,\n                  109.591796875\n                ],\n                [\n                  89.39998626708984,\n                  110.591796875\n                ],\n                [\n                  88.39998626708984,\n                  110.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                109.591796875,\n                89.39998626708984,\n                110.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/425\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>173</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  109.591796875\n                ],\n                [\n                  90.39998626708984,\n                  109.591796875\n                ],\n                [\n                  90.39998626708984,\n                  110.591796875\n                ],\n                [\n                  89.39998626708984,\n                  110.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                109.591796875,\n                90.39998626708984,\n                110.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/426\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  110.591796875\n                ],\n                [\n                  87.39998626708984,\n                  110.591796875\n                ],\n                [\n                  87.39998626708984,\n                  111.591796875\n                ],\n                [\n                  86.39998626708984,\n                  111.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                110.591796875,\n                87.39998626708984,\n                111.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/427\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.9</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  110.591796875\n                ],\n                [\n                  88.39998626708984,\n                  110.591796875\n                ],\n                [\n                  88.39998626708984,\n                  111.591796875\n                ],\n                [\n                  87.39998626708984,\n                  111.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                110.591796875,\n                88.39998626708984,\n                111.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/428\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  110.591796875\n                ],\n                [\n                  89.39998626708984,\n                  110.591796875\n                ],\n                [\n                  89.39998626708984,\n                  111.591796875\n                ],\n                [\n                  88.39998626708984,\n                  111.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                110.591796875,\n                89.39998626708984,\n                111.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/429\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>174</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  110.591796875\n                ],\n                [\n                  90.39998626708984,\n                  110.591796875\n                ],\n                [\n                  90.39998626708984,\n                  111.591796875\n                ],\n                [\n                  89.39998626708984,\n                  111.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                110.591796875,\n                90.39998626708984,\n                111.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/430\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  111.591796875\n                ],\n                [\n                  87.39998626708984,\n                  111.591796875\n                ],\n                [\n                  87.39998626708984,\n                  112.591796875\n                ],\n                [\n                  86.39998626708984,\n                  112.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                111.591796875,\n                87.39998626708984,\n                112.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/431\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.10</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  111.591796875\n                ],\n                [\n                  88.39998626708984,\n                  111.591796875\n                ],\n                [\n                  88.39998626708984,\n                  112.591796875\n                ],\n                [\n                  87.39998626708984,\n                  112.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                111.591796875,\n                88.39998626708984,\n                112.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/432\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Data encapsulation</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  111.591796875\n                ],\n                [\n                  89.39998626708984,\n                  111.591796875\n                ],\n                [\n                  89.39998626708984,\n                  112.591796875\n                ],\n                [\n                  88.39998626708984,\n                  112.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                111.591796875,\n                89.39998626708984,\n                112.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/433\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>175</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  111.591796875\n                ],\n                [\n                  90.39998626708984,\n                  111.591796875\n                ],\n                [\n                  90.39998626708984,\n                  112.591796875\n                ],\n                [\n                  89.39998626708984,\n                  112.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                111.591796875,\n                90.39998626708984,\n                112.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/434\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  86.39998626708984,\n                  112.591796875\n                ],\n                [\n                  87.39998626708984,\n                  112.591796875\n                ],\n                [\n                  87.39998626708984,\n                  113.591796875\n                ],\n                [\n                  86.39998626708984,\n                  113.591796875\n                ]\n              ],\n              \"bbox\": [\n                86.39998626708984,\n                112.591796875,\n                87.39998626708984,\n                113.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/435\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>18.11</td>\",\n              \"polygon\": [\n                [\n                  87.39998626708984,\n                  112.591796875\n                ],\n                [\n                  88.39998626708984,\n                  112.591796875\n                ],\n                [\n                  88.39998626708984,\n                  113.591796875\n                ],\n                [\n                  87.39998626708984,\n                  113.591796875\n                ]\n              ],\n              \"bbox\": [\n                87.39998626708984,\n                112.591796875,\n                88.39998626708984,\n                113.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/436\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  88.39998626708984,\n                  112.591796875\n                ],\n                [\n                  89.39998626708984,\n                  112.591796875\n                ],\n                [\n                  89.39998626708984,\n                  113.591796875\n                ],\n                [\n                  88.39998626708984,\n                  113.591796875\n                ]\n              ],\n              \"bbox\": [\n                88.39998626708984,\n                112.591796875,\n                89.39998626708984,\n                113.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/19/TableCell/437\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>176</td>\",\n              \"polygon\": [\n                [\n                  89.39998626708984,\n                  112.591796875\n                ],\n                [\n                  90.39998626708984,\n                  112.591796875\n                ],\n                [\n                  90.39998626708984,\n                  113.591796875\n                ],\n                [\n                  89.39998626708984,\n                  113.591796875\n                ]\n              ],\n              \"bbox\": [\n                89.39998626708984,\n                112.591796875,\n                90.39998626708984,\n                113.591796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/344\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  85.658203125\n                ],\n                [\n                  130.60000610351562,\n                  85.658203125\n                ],\n                [\n                  130.60000610351562,\n                  86.658203125\n                ],\n                [\n                  129.60000610351562,\n                  86.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                85.658203125,\n                130.60000610351562,\n                86.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/345\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  85.658203125\n                ],\n                [\n                  131.60000610351562,\n                  85.658203125\n                ],\n                [\n                  131.60000610351562,\n                  86.658203125\n                ],\n                [\n                  130.60000610351562,\n                  86.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                85.658203125,\n                131.60000610351562,\n                86.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/346\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>19 Case study: Tkinter</th>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  85.658203125\n                ],\n                [\n                  132.60000610351562,\n                  85.658203125\n                ],\n                [\n                  132.60000610351562,\n                  86.658203125\n                ],\n                [\n                  131.60000610351562,\n                  86.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                85.658203125,\n                132.60000610351562,\n                86.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/347\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>179</th>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  85.658203125\n                ],\n                [\n                  133.60000610351562,\n                  85.658203125\n                ],\n                [\n                  133.60000610351562,\n                  86.658203125\n                ],\n                [\n                  132.60000610351562,\n                  86.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                85.658203125,\n                133.60000610351562,\n                86.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/348\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  86.658203125\n                ],\n                [\n                  130.60000610351562,\n                  86.658203125\n                ],\n                [\n                  130.60000610351562,\n                  87.658203125\n                ],\n                [\n                  129.60000610351562,\n                  87.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                86.658203125,\n                130.60000610351562,\n                87.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/349\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19.1</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  86.658203125\n                ],\n                [\n                  131.60000610351562,\n                  86.658203125\n                ],\n                [\n                  131.60000610351562,\n                  87.658203125\n                ],\n                [\n                  130.60000610351562,\n                  87.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                86.658203125,\n                131.60000610351562,\n                87.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/350\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>GUI</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  86.658203125\n                ],\n                [\n                  132.60000610351562,\n                  86.658203125\n                ],\n                [\n                  132.60000610351562,\n                  87.658203125\n                ],\n                [\n                  131.60000610351562,\n                  87.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                86.658203125,\n                132.60000610351562,\n                87.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/351\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>179</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  86.658203125\n                ],\n                [\n                  133.60000610351562,\n                  86.658203125\n                ],\n                [\n                  133.60000610351562,\n                  87.658203125\n                ],\n                [\n                  132.60000610351562,\n                  87.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                86.658203125,\n                133.60000610351562,\n                87.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/352\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  87.658203125\n                ],\n                [\n                  130.60000610351562,\n                  87.658203125\n                ],\n                [\n                  130.60000610351562,\n                  88.658203125\n                ],\n                [\n                  129.60000610351562,\n                  88.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                87.658203125,\n                130.60000610351562,\n                88.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/353\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19.2</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  87.658203125\n                ],\n                [\n                  131.60000610351562,\n                  87.658203125\n                ],\n                [\n                  131.60000610351562,\n                  88.658203125\n                ],\n                [\n                  130.60000610351562,\n                  88.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                87.658203125,\n                131.60000610351562,\n                88.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/354\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Buttons and callbacks</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  87.658203125\n                ],\n                [\n                  132.60000610351562,\n                  87.658203125\n                ],\n                [\n                  132.60000610351562,\n                  88.658203125\n                ],\n                [\n                  131.60000610351562,\n                  88.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                87.658203125,\n                132.60000610351562,\n                88.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/355\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>180</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  87.658203125\n                ],\n                [\n                  133.60000610351562,\n                  87.658203125\n                ],\n                [\n                  133.60000610351562,\n                  88.658203125\n                ],\n                [\n                  132.60000610351562,\n                  88.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                87.658203125,\n                133.60000610351562,\n                88.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/356\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  88.658203125\n                ],\n                [\n                  130.60000610351562,\n                  88.658203125\n                ],\n                [\n                  130.60000610351562,\n                  89.658203125\n                ],\n                [\n                  129.60000610351562,\n                  89.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                88.658203125,\n                130.60000610351562,\n                89.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/357\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19.3</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  88.658203125\n                ],\n                [\n                  131.60000610351562,\n                  88.658203125\n                ],\n                [\n                  131.60000610351562,\n                  89.658203125\n                ],\n                [\n                  130.60000610351562,\n                  89.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                88.658203125,\n                131.60000610351562,\n                89.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/358\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Canvas widgets</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  88.658203125\n                ],\n                [\n                  132.60000610351562,\n                  88.658203125\n                ],\n                [\n                  132.60000610351562,\n                  89.658203125\n                ],\n                [\n                  131.60000610351562,\n                  89.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                88.658203125,\n                132.60000610351562,\n                89.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/359\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>181</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  88.658203125\n                ],\n                [\n                  133.60000610351562,\n                  88.658203125\n                ],\n                [\n                  133.60000610351562,\n                  89.658203125\n                ],\n                [\n                  132.60000610351562,\n                  89.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                88.658203125,\n                133.60000610351562,\n                89.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/360\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  89.658203125\n                ],\n                [\n                  130.60000610351562,\n                  89.658203125\n                ],\n                [\n                  130.60000610351562,\n                  90.658203125\n                ],\n                [\n                  129.60000610351562,\n                  90.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                89.658203125,\n                130.60000610351562,\n                90.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/361\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19.4</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  89.658203125\n                ],\n                [\n                  131.60000610351562,\n                  89.658203125\n                ],\n                [\n                  131.60000610351562,\n                  90.658203125\n                ],\n                [\n                  130.60000610351562,\n                  90.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                89.658203125,\n                131.60000610351562,\n                90.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/362\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Coordinate sequences</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  89.658203125\n                ],\n                [\n                  132.60000610351562,\n                  89.658203125\n                ],\n                [\n                  132.60000610351562,\n                  90.658203125\n                ],\n                [\n                  131.60000610351562,\n                  90.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                89.658203125,\n                132.60000610351562,\n                90.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/363\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>182</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  89.658203125\n                ],\n                [\n                  133.60000610351562,\n                  89.658203125\n                ],\n                [\n                  133.60000610351562,\n                  90.658203125\n                ],\n                [\n                  132.60000610351562,\n                  90.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                89.658203125,\n                133.60000610351562,\n                90.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/364\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  90.658203125\n                ],\n                [\n                  130.60000610351562,\n                  90.658203125\n                ],\n                [\n                  130.60000610351562,\n                  91.658203125\n                ],\n                [\n                  129.60000610351562,\n                  91.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                90.658203125,\n                130.60000610351562,\n                91.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/365\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19.5</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  90.658203125\n                ],\n                [\n                  131.60000610351562,\n                  90.658203125\n                ],\n                [\n                  131.60000610351562,\n                  91.658203125\n                ],\n                [\n                  130.60000610351562,\n                  91.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                90.658203125,\n                131.60000610351562,\n                91.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/366\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>More widgets</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  90.658203125\n                ],\n                [\n                  132.60000610351562,\n                  90.658203125\n                ],\n                [\n                  132.60000610351562,\n                  91.658203125\n                ],\n                [\n                  131.60000610351562,\n                  91.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                90.658203125,\n                132.60000610351562,\n                91.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/367\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>182</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  90.658203125\n                ],\n                [\n                  133.60000610351562,\n                  90.658203125\n                ],\n                [\n                  133.60000610351562,\n                  91.658203125\n                ],\n                [\n                  132.60000610351562,\n                  91.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                90.658203125,\n                133.60000610351562,\n                91.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/368\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  91.658203125\n                ],\n                [\n                  130.60000610351562,\n                  91.658203125\n                ],\n                [\n                  130.60000610351562,\n                  92.658203125\n                ],\n                [\n                  129.60000610351562,\n                  92.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                91.658203125,\n                130.60000610351562,\n                92.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/369\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19.6</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  91.658203125\n                ],\n                [\n                  131.60000610351562,\n                  91.658203125\n                ],\n                [\n                  131.60000610351562,\n                  92.658203125\n                ],\n                [\n                  130.60000610351562,\n                  92.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                91.658203125,\n                131.60000610351562,\n                92.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/370\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Packing widgets</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  91.658203125\n                ],\n                [\n                  132.60000610351562,\n                  91.658203125\n                ],\n                [\n                  132.60000610351562,\n                  92.658203125\n                ],\n                [\n                  131.60000610351562,\n                  92.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                91.658203125,\n                132.60000610351562,\n                92.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/371\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>183</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  91.658203125\n                ],\n                [\n                  133.60000610351562,\n                  91.658203125\n                ],\n                [\n                  133.60000610351562,\n                  92.658203125\n                ],\n                [\n                  132.60000610351562,\n                  92.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                91.658203125,\n                133.60000610351562,\n                92.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/372\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  92.658203125\n                ],\n                [\n                  130.60000610351562,\n                  92.658203125\n                ],\n                [\n                  130.60000610351562,\n                  93.658203125\n                ],\n                [\n                  129.60000610351562,\n                  93.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                92.658203125,\n                130.60000610351562,\n                93.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/373\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19.7</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  92.658203125\n                ],\n                [\n                  131.60000610351562,\n                  92.658203125\n                ],\n                [\n                  131.60000610351562,\n                  93.658203125\n                ],\n                [\n                  130.60000610351562,\n                  93.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                92.658203125,\n                131.60000610351562,\n                93.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/374\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Menus and Callables</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  92.658203125\n                ],\n                [\n                  132.60000610351562,\n                  92.658203125\n                ],\n                [\n                  132.60000610351562,\n                  93.658203125\n                ],\n                [\n                  131.60000610351562,\n                  93.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                92.658203125,\n                132.60000610351562,\n                93.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/375\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>185</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  92.658203125\n                ],\n                [\n                  133.60000610351562,\n                  92.658203125\n                ],\n                [\n                  133.60000610351562,\n                  93.658203125\n                ],\n                [\n                  132.60000610351562,\n                  93.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                92.658203125,\n                133.60000610351562,\n                93.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/376\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  93.658203125\n                ],\n                [\n                  130.60000610351562,\n                  93.658203125\n                ],\n                [\n                  130.60000610351562,\n                  94.658203125\n                ],\n                [\n                  129.60000610351562,\n                  94.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                93.658203125,\n                130.60000610351562,\n                94.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/377\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19.8</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  93.658203125\n                ],\n                [\n                  131.60000610351562,\n                  93.658203125\n                ],\n                [\n                  131.60000610351562,\n                  94.658203125\n                ],\n                [\n                  130.60000610351562,\n                  94.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                93.658203125,\n                131.60000610351562,\n                94.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/378\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Binding</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  93.658203125\n                ],\n                [\n                  132.60000610351562,\n                  93.658203125\n                ],\n                [\n                  132.60000610351562,\n                  94.658203125\n                ],\n                [\n                  131.60000610351562,\n                  94.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                93.658203125,\n                132.60000610351562,\n                94.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/379\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>186</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  93.658203125\n                ],\n                [\n                  133.60000610351562,\n                  93.658203125\n                ],\n                [\n                  133.60000610351562,\n                  94.658203125\n                ],\n                [\n                  132.60000610351562,\n                  94.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                93.658203125,\n                133.60000610351562,\n                94.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/380\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  94.658203125\n                ],\n                [\n                  130.60000610351562,\n                  94.658203125\n                ],\n                [\n                  130.60000610351562,\n                  95.658203125\n                ],\n                [\n                  129.60000610351562,\n                  95.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                94.658203125,\n                130.60000610351562,\n                95.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/381\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19.9</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  94.658203125\n                ],\n                [\n                  131.60000610351562,\n                  94.658203125\n                ],\n                [\n                  131.60000610351562,\n                  95.658203125\n                ],\n                [\n                  130.60000610351562,\n                  95.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                94.658203125,\n                131.60000610351562,\n                95.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/382\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Debugging</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  94.658203125\n                ],\n                [\n                  132.60000610351562,\n                  94.658203125\n                ],\n                [\n                  132.60000610351562,\n                  95.658203125\n                ],\n                [\n                  131.60000610351562,\n                  95.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                94.658203125,\n                132.60000610351562,\n                95.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/383\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>188</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  94.658203125\n                ],\n                [\n                  133.60000610351562,\n                  94.658203125\n                ],\n                [\n                  133.60000610351562,\n                  95.658203125\n                ],\n                [\n                  132.60000610351562,\n                  95.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                94.658203125,\n                133.60000610351562,\n                95.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/384\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  95.658203125\n                ],\n                [\n                  130.60000610351562,\n                  95.658203125\n                ],\n                [\n                  130.60000610351562,\n                  96.658203125\n                ],\n                [\n                  129.60000610351562,\n                  96.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                95.658203125,\n                130.60000610351562,\n                96.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/385\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19.10</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  95.658203125\n                ],\n                [\n                  131.60000610351562,\n                  95.658203125\n                ],\n                [\n                  131.60000610351562,\n                  96.658203125\n                ],\n                [\n                  130.60000610351562,\n                  96.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                95.658203125,\n                131.60000610351562,\n                96.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/386\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Glossary</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  95.658203125\n                ],\n                [\n                  132.60000610351562,\n                  95.658203125\n                ],\n                [\n                  132.60000610351562,\n                  96.658203125\n                ],\n                [\n                  131.60000610351562,\n                  96.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                95.658203125,\n                132.60000610351562,\n                96.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/387\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>189</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  95.658203125\n                ],\n                [\n                  133.60000610351562,\n                  95.658203125\n                ],\n                [\n                  133.60000610351562,\n                  96.658203125\n                ],\n                [\n                  132.60000610351562,\n                  96.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                95.658203125,\n                133.60000610351562,\n                96.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/388\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  96.658203125\n                ],\n                [\n                  130.60000610351562,\n                  96.658203125\n                ],\n                [\n                  130.60000610351562,\n                  97.658203125\n                ],\n                [\n                  129.60000610351562,\n                  97.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                96.658203125,\n                130.60000610351562,\n                97.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/389\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>19.11</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  96.658203125\n                ],\n                [\n                  131.60000610351562,\n                  96.658203125\n                ],\n                [\n                  131.60000610351562,\n                  97.658203125\n                ],\n                [\n                  130.60000610351562,\n                  97.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                96.658203125,\n                131.60000610351562,\n                97.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/390\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Exercises</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  96.658203125\n                ],\n                [\n                  132.60000610351562,\n                  96.658203125\n                ],\n                [\n                  132.60000610351562,\n                  97.658203125\n                ],\n                [\n                  131.60000610351562,\n                  97.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                96.658203125,\n                132.60000610351562,\n                97.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/391\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>190</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  96.658203125\n                ],\n                [\n                  133.60000610351562,\n                  96.658203125\n                ],\n                [\n                  133.60000610351562,\n                  97.658203125\n                ],\n                [\n                  132.60000610351562,\n                  97.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                96.658203125,\n                133.60000610351562,\n                97.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/392\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>A</th>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  97.658203125\n                ],\n                [\n                  130.60000610351562,\n                  97.658203125\n                ],\n                [\n                  130.60000610351562,\n                  98.658203125\n                ],\n                [\n                  129.60000610351562,\n                  98.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                97.658203125,\n                130.60000610351562,\n                98.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/393\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Debugging</th>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  97.658203125\n                ],\n                [\n                  131.60000610351562,\n                  97.658203125\n                ],\n                [\n                  131.60000610351562,\n                  98.658203125\n                ],\n                [\n                  130.60000610351562,\n                  98.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                97.658203125,\n                131.60000610351562,\n                98.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/394\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  97.658203125\n                ],\n                [\n                  132.60000610351562,\n                  97.658203125\n                ],\n                [\n                  132.60000610351562,\n                  98.658203125\n                ],\n                [\n                  131.60000610351562,\n                  98.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                97.658203125,\n                132.60000610351562,\n                98.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/395\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>193</th>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  97.658203125\n                ],\n                [\n                  133.60000610351562,\n                  97.658203125\n                ],\n                [\n                  133.60000610351562,\n                  98.658203125\n                ],\n                [\n                  132.60000610351562,\n                  98.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                97.658203125,\n                133.60000610351562,\n                98.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/396\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  98.658203125\n                ],\n                [\n                  130.60000610351562,\n                  98.658203125\n                ],\n                [\n                  130.60000610351562,\n                  99.658203125\n                ],\n                [\n                  129.60000610351562,\n                  99.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                98.658203125,\n                130.60000610351562,\n                99.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/397\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>A.1</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  98.658203125\n                ],\n                [\n                  131.60000610351562,\n                  98.658203125\n                ],\n                [\n                  131.60000610351562,\n                  99.658203125\n                ],\n                [\n                  130.60000610351562,\n                  99.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                98.658203125,\n                131.60000610351562,\n                99.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/398\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Syntax errors</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  98.658203125\n                ],\n                [\n                  132.60000610351562,\n                  98.658203125\n                ],\n                [\n                  132.60000610351562,\n                  99.658203125\n                ],\n                [\n                  131.60000610351562,\n                  99.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                98.658203125,\n                132.60000610351562,\n                99.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/399\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>193</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  98.658203125\n                ],\n                [\n                  133.60000610351562,\n                  98.658203125\n                ],\n                [\n                  133.60000610351562,\n                  99.658203125\n                ],\n                [\n                  132.60000610351562,\n                  99.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                98.658203125,\n                133.60000610351562,\n                99.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/400\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  99.658203125\n                ],\n                [\n                  130.60000610351562,\n                  99.658203125\n                ],\n                [\n                  130.60000610351562,\n                  100.658203125\n                ],\n                [\n                  129.60000610351562,\n                  100.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                99.658203125,\n                130.60000610351562,\n                100.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/401\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>A.2</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  99.658203125\n                ],\n                [\n                  131.60000610351562,\n                  99.658203125\n                ],\n                [\n                  131.60000610351562,\n                  100.658203125\n                ],\n                [\n                  130.60000610351562,\n                  100.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                99.658203125,\n                131.60000610351562,\n                100.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/402\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Runtime errors</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  99.658203125\n                ],\n                [\n                  132.60000610351562,\n                  99.658203125\n                ],\n                [\n                  132.60000610351562,\n                  100.658203125\n                ],\n                [\n                  131.60000610351562,\n                  100.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                99.658203125,\n                132.60000610351562,\n                100.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/403\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>195</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  99.658203125\n                ],\n                [\n                  133.60000610351562,\n                  99.658203125\n                ],\n                [\n                  133.60000610351562,\n                  100.658203125\n                ],\n                [\n                  132.60000610351562,\n                  100.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                99.658203125,\n                133.60000610351562,\n                100.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/404\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  100.658203125\n                ],\n                [\n                  130.60000610351562,\n                  100.658203125\n                ],\n                [\n                  130.60000610351562,\n                  101.658203125\n                ],\n                [\n                  129.60000610351562,\n                  101.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                100.658203125,\n                130.60000610351562,\n                101.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/405\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>A.3</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  100.658203125\n                ],\n                [\n                  131.60000610351562,\n                  100.658203125\n                ],\n                [\n                  131.60000610351562,\n                  101.658203125\n                ],\n                [\n                  130.60000610351562,\n                  101.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                100.658203125,\n                131.60000610351562,\n                101.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/406\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Semantic errors</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  100.658203125\n                ],\n                [\n                  132.60000610351562,\n                  100.658203125\n                ],\n                [\n                  132.60000610351562,\n                  101.658203125\n                ],\n                [\n                  131.60000610351562,\n                  101.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                100.658203125,\n                132.60000610351562,\n                101.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/407\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>198</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  100.658203125\n                ],\n                [\n                  133.60000610351562,\n                  100.658203125\n                ],\n                [\n                  133.60000610351562,\n                  101.658203125\n                ],\n                [\n                  132.60000610351562,\n                  101.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                100.658203125,\n                133.60000610351562,\n                101.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/408\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>B</th>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  101.658203125\n                ],\n                [\n                  130.60000610351562,\n                  101.658203125\n                ],\n                [\n                  130.60000610351562,\n                  102.658203125\n                ],\n                [\n                  129.60000610351562,\n                  102.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                101.658203125,\n                130.60000610351562,\n                102.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/409\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Analysis of Algorithms</th>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  101.658203125\n                ],\n                [\n                  131.60000610351562,\n                  101.658203125\n                ],\n                [\n                  131.60000610351562,\n                  102.658203125\n                ],\n                [\n                  130.60000610351562,\n                  102.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                101.658203125,\n                131.60000610351562,\n                102.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/410\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  101.658203125\n                ],\n                [\n                  132.60000610351562,\n                  101.658203125\n                ],\n                [\n                  132.60000610351562,\n                  102.658203125\n                ],\n                [\n                  131.60000610351562,\n                  102.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                101.658203125,\n                132.60000610351562,\n                102.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/411\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>201</th>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  101.658203125\n                ],\n                [\n                  133.60000610351562,\n                  101.658203125\n                ],\n                [\n                  133.60000610351562,\n                  102.658203125\n                ],\n                [\n                  132.60000610351562,\n                  102.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                101.658203125,\n                133.60000610351562,\n                102.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/412\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  102.658203125\n                ],\n                [\n                  130.60000610351562,\n                  102.658203125\n                ],\n                [\n                  130.60000610351562,\n                  103.658203125\n                ],\n                [\n                  129.60000610351562,\n                  103.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                102.658203125,\n                130.60000610351562,\n                103.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/413\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>B.1</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  102.658203125\n                ],\n                [\n                  131.60000610351562,\n                  102.658203125\n                ],\n                [\n                  131.60000610351562,\n                  103.658203125\n                ],\n                [\n                  130.60000610351562,\n                  103.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                102.658203125,\n                131.60000610351562,\n                103.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/414\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Order of growth</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  102.658203125\n                ],\n                [\n                  132.60000610351562,\n                  102.658203125\n                ],\n                [\n                  132.60000610351562,\n                  103.658203125\n                ],\n                [\n                  131.60000610351562,\n                  103.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                102.658203125,\n                132.60000610351562,\n                103.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/415\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>202</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  102.658203125\n                ],\n                [\n                  133.60000610351562,\n                  102.658203125\n                ],\n                [\n                  133.60000610351562,\n                  103.658203125\n                ],\n                [\n                  132.60000610351562,\n                  103.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                102.658203125,\n                133.60000610351562,\n                103.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/416\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  103.658203125\n                ],\n                [\n                  130.60000610351562,\n                  103.658203125\n                ],\n                [\n                  130.60000610351562,\n                  104.658203125\n                ],\n                [\n                  129.60000610351562,\n                  104.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                103.658203125,\n                130.60000610351562,\n                104.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/417\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>B.2</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  103.658203125\n                ],\n                [\n                  131.60000610351562,\n                  103.658203125\n                ],\n                [\n                  131.60000610351562,\n                  104.658203125\n                ],\n                [\n                  130.60000610351562,\n                  104.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                103.658203125,\n                131.60000610351562,\n                104.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/418\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Analysis of basic Python operations</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  103.658203125\n                ],\n                [\n                  132.60000610351562,\n                  103.658203125\n                ],\n                [\n                  132.60000610351562,\n                  104.658203125\n                ],\n                [\n                  131.60000610351562,\n                  104.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                103.658203125,\n                132.60000610351562,\n                104.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/419\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>204</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  103.658203125\n                ],\n                [\n                  133.60000610351562,\n                  103.658203125\n                ],\n                [\n                  133.60000610351562,\n                  104.658203125\n                ],\n                [\n                  132.60000610351562,\n                  104.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                103.658203125,\n                133.60000610351562,\n                104.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/420\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  104.658203125\n                ],\n                [\n                  130.60000610351562,\n                  104.658203125\n                ],\n                [\n                  130.60000610351562,\n                  105.658203125\n                ],\n                [\n                  129.60000610351562,\n                  105.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                104.658203125,\n                130.60000610351562,\n                105.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/421\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>B.3</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  104.658203125\n                ],\n                [\n                  131.60000610351562,\n                  104.658203125\n                ],\n                [\n                  131.60000610351562,\n                  105.658203125\n                ],\n                [\n                  130.60000610351562,\n                  105.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                104.658203125,\n                131.60000610351562,\n                105.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/422\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Analysis of search algorithms</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  104.658203125\n                ],\n                [\n                  132.60000610351562,\n                  104.658203125\n                ],\n                [\n                  132.60000610351562,\n                  105.658203125\n                ],\n                [\n                  131.60000610351562,\n                  105.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                104.658203125,\n                132.60000610351562,\n                105.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/423\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>205</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  104.658203125\n                ],\n                [\n                  133.60000610351562,\n                  104.658203125\n                ],\n                [\n                  133.60000610351562,\n                  105.658203125\n                ],\n                [\n                  132.60000610351562,\n                  105.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                104.658203125,\n                133.60000610351562,\n                105.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/424\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  105.658203125\n                ],\n                [\n                  130.60000610351562,\n                  105.658203125\n                ],\n                [\n                  130.60000610351562,\n                  106.658203125\n                ],\n                [\n                  129.60000610351562,\n                  106.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                105.658203125,\n                130.60000610351562,\n                106.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/425\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>B.4</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  105.658203125\n                ],\n                [\n                  131.60000610351562,\n                  105.658203125\n                ],\n                [\n                  131.60000610351562,\n                  106.658203125\n                ],\n                [\n                  130.60000610351562,\n                  106.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                105.658203125,\n                131.60000610351562,\n                106.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/426\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Hashtables</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  105.658203125\n                ],\n                [\n                  132.60000610351562,\n                  105.658203125\n                ],\n                [\n                  132.60000610351562,\n                  106.658203125\n                ],\n                [\n                  131.60000610351562,\n                  106.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                105.658203125,\n                132.60000610351562,\n                106.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/427\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>206</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  105.658203125\n                ],\n                [\n                  133.60000610351562,\n                  105.658203125\n                ],\n                [\n                  133.60000610351562,\n                  106.658203125\n                ],\n                [\n                  132.60000610351562,\n                  106.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                105.658203125,\n                133.60000610351562,\n                106.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/428\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>C</th>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  106.658203125\n                ],\n                [\n                  130.60000610351562,\n                  106.658203125\n                ],\n                [\n                  130.60000610351562,\n                  107.658203125\n                ],\n                [\n                  129.60000610351562,\n                  107.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                106.658203125,\n                130.60000610351562,\n                107.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/429\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Lumpy</th>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  106.658203125\n                ],\n                [\n                  131.60000610351562,\n                  106.658203125\n                ],\n                [\n                  131.60000610351562,\n                  107.658203125\n                ],\n                [\n                  130.60000610351562,\n                  107.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                106.658203125,\n                131.60000610351562,\n                107.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/430\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th></th>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  106.658203125\n                ],\n                [\n                  132.60000610351562,\n                  106.658203125\n                ],\n                [\n                  132.60000610351562,\n                  107.658203125\n                ],\n                [\n                  131.60000610351562,\n                  107.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                106.658203125,\n                132.60000610351562,\n                107.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/431\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>211</th>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  106.658203125\n                ],\n                [\n                  133.60000610351562,\n                  106.658203125\n                ],\n                [\n                  133.60000610351562,\n                  107.658203125\n                ],\n                [\n                  132.60000610351562,\n                  107.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                106.658203125,\n                133.60000610351562,\n                107.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/432\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  107.658203125\n                ],\n                [\n                  130.60000610351562,\n                  107.658203125\n                ],\n                [\n                  130.60000610351562,\n                  108.658203125\n                ],\n                [\n                  129.60000610351562,\n                  108.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                107.658203125,\n                130.60000610351562,\n                108.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/433\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>C.1</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  107.658203125\n                ],\n                [\n                  131.60000610351562,\n                  107.658203125\n                ],\n                [\n                  131.60000610351562,\n                  108.658203125\n                ],\n                [\n                  130.60000610351562,\n                  108.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                107.658203125,\n                131.60000610351562,\n                108.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/434\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>State diagram</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  107.658203125\n                ],\n                [\n                  132.60000610351562,\n                  107.658203125\n                ],\n                [\n                  132.60000610351562,\n                  108.658203125\n                ],\n                [\n                  131.60000610351562,\n                  108.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                107.658203125,\n                132.60000610351562,\n                108.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/435\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>211</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  107.658203125\n                ],\n                [\n                  133.60000610351562,\n                  107.658203125\n                ],\n                [\n                  133.60000610351562,\n                  108.658203125\n                ],\n                [\n                  132.60000610351562,\n                  108.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                107.658203125,\n                133.60000610351562,\n                108.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/436\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  108.658203125\n                ],\n                [\n                  130.60000610351562,\n                  108.658203125\n                ],\n                [\n                  130.60000610351562,\n                  109.658203125\n                ],\n                [\n                  129.60000610351562,\n                  109.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                108.658203125,\n                130.60000610351562,\n                109.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/437\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>C.2</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  108.658203125\n                ],\n                [\n                  131.60000610351562,\n                  108.658203125\n                ],\n                [\n                  131.60000610351562,\n                  109.658203125\n                ],\n                [\n                  130.60000610351562,\n                  109.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                108.658203125,\n                131.60000610351562,\n                109.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/438\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Stack diagram</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  108.658203125\n                ],\n                [\n                  132.60000610351562,\n                  108.658203125\n                ],\n                [\n                  132.60000610351562,\n                  109.658203125\n                ],\n                [\n                  131.60000610351562,\n                  109.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                108.658203125,\n                132.60000610351562,\n                109.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/439\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>212</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  108.658203125\n                ],\n                [\n                  133.60000610351562,\n                  108.658203125\n                ],\n                [\n                  133.60000610351562,\n                  109.658203125\n                ],\n                [\n                  132.60000610351562,\n                  109.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                108.658203125,\n                133.60000610351562,\n                109.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/440\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  109.658203125\n                ],\n                [\n                  130.60000610351562,\n                  109.658203125\n                ],\n                [\n                  130.60000610351562,\n                  110.658203125\n                ],\n                [\n                  129.60000610351562,\n                  110.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                109.658203125,\n                130.60000610351562,\n                110.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/441\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>C.3</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  109.658203125\n                ],\n                [\n                  131.60000610351562,\n                  109.658203125\n                ],\n                [\n                  131.60000610351562,\n                  110.658203125\n                ],\n                [\n                  130.60000610351562,\n                  110.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                109.658203125,\n                131.60000610351562,\n                110.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/442\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Object diagrams</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  109.658203125\n                ],\n                [\n                  132.60000610351562,\n                  109.658203125\n                ],\n                [\n                  132.60000610351562,\n                  110.658203125\n                ],\n                [\n                  131.60000610351562,\n                  110.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                109.658203125,\n                132.60000610351562,\n                110.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/443\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>213</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  109.658203125\n                ],\n                [\n                  133.60000610351562,\n                  109.658203125\n                ],\n                [\n                  133.60000610351562,\n                  110.658203125\n                ],\n                [\n                  132.60000610351562,\n                  110.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                109.658203125,\n                133.60000610351562,\n                110.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/444\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  110.658203125\n                ],\n                [\n                  130.60000610351562,\n                  110.658203125\n                ],\n                [\n                  130.60000610351562,\n                  111.658203125\n                ],\n                [\n                  129.60000610351562,\n                  111.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                110.658203125,\n                130.60000610351562,\n                111.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/445\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>C.4</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  110.658203125\n                ],\n                [\n                  131.60000610351562,\n                  110.658203125\n                ],\n                [\n                  131.60000610351562,\n                  111.658203125\n                ],\n                [\n                  130.60000610351562,\n                  111.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                110.658203125,\n                131.60000610351562,\n                111.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/446\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Function and class objects</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  110.658203125\n                ],\n                [\n                  132.60000610351562,\n                  110.658203125\n                ],\n                [\n                  132.60000610351562,\n                  111.658203125\n                ],\n                [\n                  131.60000610351562,\n                  111.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                110.658203125,\n                132.60000610351562,\n                111.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/447\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>215</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  110.658203125\n                ],\n                [\n                  133.60000610351562,\n                  110.658203125\n                ],\n                [\n                  133.60000610351562,\n                  111.658203125\n                ],\n                [\n                  132.60000610351562,\n                  111.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                110.658203125,\n                133.60000610351562,\n                111.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/448\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  111.658203125\n                ],\n                [\n                  130.60000610351562,\n                  111.658203125\n                ],\n                [\n                  130.60000610351562,\n                  112.658203125\n                ],\n                [\n                  129.60000610351562,\n                  112.658203125\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                111.658203125,\n                130.60000610351562,\n                112.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/449\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>C.5</td>\",\n              \"polygon\": [\n                [\n                  130.60000610351562,\n                  111.658203125\n                ],\n                [\n                  131.60000610351562,\n                  111.658203125\n                ],\n                [\n                  131.60000610351562,\n                  112.658203125\n                ],\n                [\n                  130.60000610351562,\n                  112.658203125\n                ]\n              ],\n              \"bbox\": [\n                130.60000610351562,\n                111.658203125,\n                131.60000610351562,\n                112.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/450\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>Class Diagrams</td>\",\n              \"polygon\": [\n                [\n                  131.60000610351562,\n                  111.658203125\n                ],\n                [\n                  132.60000610351562,\n                  111.658203125\n                ],\n                [\n                  132.60000610351562,\n                  112.658203125\n                ],\n                [\n                  131.60000610351562,\n                  112.658203125\n                ]\n              ],\n              \"bbox\": [\n                131.60000610351562,\n                111.658203125,\n                132.60000610351562,\n                112.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/20/TableCell/451\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>216</td>\",\n              \"polygon\": [\n                [\n                  132.60000610351562,\n                  111.658203125\n                ],\n                [\n                  133.60000610351562,\n                  111.658203125\n                ],\n                [\n                  133.60000610351562,\n                  112.658203125\n                ],\n                [\n                  132.60000610351562,\n                  112.658203125\n                ]\n              ],\n              \"bbox\": [\n                132.60000610351562,\n                111.658203125,\n                133.60000610351562,\n                112.658203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/12/SectionHeader/0\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/12/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/13/Page/493\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/13/PageHeader/0'></content-ref><content-ref src='/page/13/PageHeader/2'></content-ref><content-ref src='/page/13/TableOfContents/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/13/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.171142578125\n            ],\n            [\n              482.4002685546875,\n              61.171142578125\n            ],\n            [\n              482.4002685546875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.171142578125,\n            482.4002685546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/13/PageHeader/2\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              61.1982421875\n            ],\n            [\n              100.705078125,\n              61.1982421875\n            ],\n            [\n              100.705078125,\n              70.4794921875\n            ],\n            [\n              85.9130859375,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            61.1982421875,\n            100.705078125,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/13/TableOfContents/1\",\n          \"block_type\": \"TableOfContents\",\n          \"html\": \"<p></p>\",\n          \"polygon\": [\n            [\n              86.39999389648438,\n              85.271484375\n            ],\n            [\n              483.50390625,\n              85.271484375\n            ],\n            [\n              483.50390625,\n              700.8350067138672\n            ],\n            [\n              86.39999389648438,\n              700.8350067138672\n            ]\n          ],\n          \"bbox\": [\n            86.39999389648438,\n            85.271484375,\n            483.50390625,\n            700.8350067138672\n          ],\n          \"children\": [],\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/12/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/14/Page/434\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/14/PageHeader/0'></content-ref><content-ref src='/page/14/PageHeader/2'></content-ref><content-ref src='/page/14/TableOfContents/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/14/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              61.05322265625\n            ],\n            [\n              525.6004638671875,\n              61.05322265625\n            ],\n            [\n              525.6004638671875,\n              71.13372802734375\n            ],\n            [\n              129.60000610351562,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            61.05322265625,\n            525.6004638671875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/14/PageHeader/2\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              513.087890625,\n              63.1318359375\n            ],\n            [\n              524.443359375,\n              63.1318359375\n            ],\n            [\n              524.443359375,\n              72.4130859375\n            ],\n            [\n              513.087890625,\n              72.4130859375\n            ]\n          ],\n          \"bbox\": [\n            513.087890625,\n            63.1318359375,\n            524.443359375,\n            72.4130859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/14/TableOfContents/1\",\n          \"block_type\": \"TableOfContents\",\n          \"html\": \"<p></p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              81.404296875\n            ],\n            [\n              527.1328125,\n              81.404296875\n            ],\n            [\n              527.1328125,\n              703.0546875\n            ],\n            [\n              129.60000610351562,\n              703.0546875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            81.404296875,\n            527.1328125,\n            703.0546875\n          ],\n          \"children\": [],\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/12/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/15/Page/510\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/15/PageHeader/0'></content-ref><content-ref src='/page/15/PageHeader/2'></content-ref><content-ref src='/page/15/TableOfContents/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/15/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.171142578125\n            ],\n            [\n              482.4002685546875,\n              61.171142578125\n            ],\n            [\n              482.4002685546875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.171142578125,\n            482.4002685546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/15/PageHeader/2\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              60.85986328125\n            ],\n            [\n              100.33154296875,\n              60.85986328125\n            ],\n            [\n              100.33154296875,\n              70.33447265625\n            ],\n            [\n              85.53955078125,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            60.85986328125,\n            100.33154296875,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/15/TableOfContents/1\",\n          \"block_type\": \"TableOfContents\",\n          \"html\": \"<p></p>\",\n          \"polygon\": [\n            [\n              84.7177734375,\n              84.111328125\n            ],\n            [\n              482.40338134765625,\n              84.111328125\n            ],\n            [\n              482.40338134765625,\n              700.8350219726562\n            ],\n            [\n              84.7177734375,\n              700.8350219726562\n            ]\n          ],\n          \"bbox\": [\n            84.7177734375,\n            84.111328125,\n            482.40338134765625,\n            700.8350219726562\n          ],\n          \"children\": [],\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/12/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/16/Page/457\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/16/PageHeader/0'></content-ref><content-ref src='/page/16/PageHeader/2'></content-ref><content-ref src='/page/16/TableOfContents/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/16/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              60.76318359375\n            ],\n            [\n              525.599609375,\n              60.76318359375\n            ],\n            [\n              525.599609375,\n              71.13372802734375\n            ],\n            [\n              129.60000610351562,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            60.76318359375,\n            525.599609375,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/16/PageHeader/2\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              506.8125,\n              61.681640625\n            ],\n            [\n              524.7421875,\n              61.681640625\n            ],\n            [\n              524.7421875,\n              71.15625\n            ],\n            [\n              506.8125,\n              71.15625\n            ]\n          ],\n          \"bbox\": [\n            506.8125,\n            61.681640625,\n            524.7421875,\n            71.15625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/16/TableOfContents/1\",\n          \"block_type\": \"TableOfContents\",\n          \"html\": \"<p></p>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              83.53125\n            ],\n            [\n              526.833984375,\n              83.53125\n            ],\n            [\n              526.833984375,\n              700.8349533081055\n            ],\n            [\n              129.5999755859375,\n              700.8349533081055\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            83.53125,\n            526.833984375,\n            700.8349533081055\n          ],\n          \"children\": [],\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/12/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/17/Page/506\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/17/PageHeader/0'></content-ref><content-ref src='/page/17/PageHeader/2'></content-ref><content-ref src='/page/17/TableOfContents/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/17/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.171142578125\n            ],\n            [\n              482.4002685546875,\n              61.171142578125\n            ],\n            [\n              482.4002685546875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.171142578125,\n            482.4002685546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/17/PageHeader/2\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.8095703125,\n              60.76318359375\n            ],\n            [\n              106.681640625,\n              60.76318359375\n            ],\n            [\n              106.681640625,\n              70.43115234375\n            ],\n            [\n              86.8095703125,\n              70.43115234375\n            ]\n          ],\n          \"bbox\": [\n            86.8095703125,\n            60.76318359375,\n            106.681640625,\n            70.43115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/17/TableOfContents/1\",\n          \"block_type\": \"TableOfContents\",\n          \"html\": \"<p></p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              85.271484375\n            ],\n            [\n              482.4033508300781,\n              85.271484375\n            ],\n            [\n              482.4033508300781,\n              700.8348846435547\n            ],\n            [\n              85.166015625,\n              700.8348846435547\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            85.271484375,\n            482.4033508300781,\n            700.8348846435547\n          ],\n          \"children\": [],\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/12/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/18/Page/412\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/18/PageHeader/0'></content-ref><content-ref src='/page/18/PageHeader/2'></content-ref><content-ref src='/page/18/TableOfContents/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/18/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              61.05322265625\n            ],\n            [\n              525.6001586914062,\n              61.05322265625\n            ],\n            [\n              525.6001586914062,\n              71.13372802734375\n            ],\n            [\n              129.60000610351562,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            61.05322265625,\n            525.6001586914062,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/18/PageHeader/2\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              61.294921875\n            ],\n            [\n              525.041015625,\n              61.294921875\n            ],\n            [\n              525.041015625,\n              70.8662109375\n            ],\n            [\n              510.099609375,\n              70.8662109375\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            61.294921875,\n            525.041015625,\n            70.8662109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/18/TableOfContents/1\",\n          \"block_type\": \"TableOfContents\",\n          \"html\": \"<p></p>\",\n          \"polygon\": [\n            [\n              129.59999084472656,\n              78.697265625\n            ],\n            [\n              527.73046875,\n              78.697265625\n            ],\n            [\n              527.73046875,\n              703.0546875\n            ],\n            [\n              129.59999084472656,\n              703.0546875\n            ]\n          ],\n          \"bbox\": [\n            129.59999084472656,\n            78.697265625,\n            527.73046875,\n            703.0546875\n          ],\n          \"children\": [],\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/12/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/19/Page/437\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/19/PageHeader/0'></content-ref><content-ref src='/page/19/PageHeader/2'></content-ref><content-ref src='/page/19/TableOfContents/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/19/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.171142578125\n            ],\n            [\n              482.4002685546875,\n              61.171142578125\n            ],\n            [\n              482.4002685546875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.171142578125,\n            482.4002685546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/19/PageHeader/2\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              62.02001953125\n            ],\n            [\n              97.49267578125,\n              62.02001953125\n            ],\n            [\n              97.49267578125,\n              71.10791015625\n            ],\n            [\n              85.98779296875,\n              71.10791015625\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            62.02001953125,\n            97.49267578125,\n            71.10791015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/19/TableOfContents/1\",\n          \"block_type\": \"TableOfContents\",\n          \"html\": \"<p></p>\",\n          \"polygon\": [\n            [\n              86.39998626708984,\n              87.591796875\n            ],\n            [\n              485.89453125,\n              87.591796875\n            ],\n            [\n              485.89453125,\n              700.8349533081055\n            ],\n            [\n              86.39998626708984,\n              700.8349533081055\n            ]\n          ],\n          \"bbox\": [\n            86.39998626708984,\n            87.591796875,\n            485.89453125,\n            700.8349533081055\n          ],\n          \"children\": [],\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/12/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/20/Page/451\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/20/PageHeader/0'></content-ref><content-ref src='/page/20/PageHeader/2'></content-ref><content-ref src='/page/20/TableOfContents/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/20/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              60.37646484375\n            ],\n            [\n              525.6001586914062,\n              60.37646484375\n            ],\n            [\n              525.6001586914062,\n              71.13372802734375\n            ],\n            [\n              129.60000610351562,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            60.37646484375,\n            525.6001586914062,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/20/PageHeader/2\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.697265625,\n              61.7783203125\n            ],\n            [\n              525.041015625,\n              61.7783203125\n            ],\n            [\n              525.041015625,\n              71.54296875\n            ],\n            [\n              510.697265625,\n              71.54296875\n            ]\n          ],\n          \"bbox\": [\n            510.697265625,\n            61.7783203125,\n            525.041015625,\n            71.54296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/20/TableOfContents/1\",\n          \"block_type\": \"TableOfContents\",\n          \"html\": \"<p></p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              85.658203125\n            ],\n            [\n              525.9375,\n              85.658203125\n            ],\n            [\n              525.9375,\n              655.875\n            ],\n            [\n              129.60000610351562,\n              655.875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            85.658203125,\n            525.9375,\n            655.875\n          ],\n          \"children\": [],\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/12/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/21/Page/5\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/21/PageHeader/0'></content-ref><content-ref src='/page/21/PageHeader/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/21/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.4248046875\n            ],\n            [\n              482.4002685546875,\n              60.4248046875\n            ],\n            [\n              482.4002685546875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.4248046875,\n            482.4002685546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/21/PageHeader/1\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              60.56982421875\n            ],\n            [\n              102.57275390625,\n              60.56982421875\n            ],\n            [\n              102.57275390625,\n              70.91455078125\n            ],\n            [\n              85.53955078125,\n              70.91455078125\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            60.56982421875,\n            102.57275390625,\n            70.91455078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/12/SectionHeader/0\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/22/Page/97\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/22/SectionHeader/0'></content-ref><content-ref src='/page/22/SectionHeader/1'></content-ref><content-ref src='/page/22/Text/2'></content-ref><content-ref src='/page/22/Text/3'></content-ref><content-ref src='/page/22/Text/4'></content-ref><content-ref src='/page/22/SectionHeader/5'></content-ref><content-ref src='/page/22/Text/6'></content-ref><content-ref src='/page/22/Text/7'></content-ref><content-ref src='/page/22/Text/8'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/22/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-22-0\\\"></span><b>Chapter 1</b></h2>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              164.801513671875\n            ],\n            [\n              220.84561157226562,\n              164.801513671875\n            ],\n            [\n              220.84561157226562,\n              185.4639892578125\n            ],\n            [\n              128.197265625,\n              185.4639892578125\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            164.801513671875,\n            220.84561157226562,\n            185.4639892578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/12/SectionHeader/0\",\n            \"2\": \"/page/22/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>The way of the program</b></h1>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              220.236328125\n            ],\n            [\n              400.91961669921875,\n              220.236328125\n            ],\n            [\n              400.91961669921875,\n              245.6234130859375\n            ],\n            [\n              127.97314453125,\n              245.6234130859375\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            220.236328125,\n            400.91961669921875,\n            245.6234130859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The goal of this book is to teach you to think like a computer scientist. This way of thinking combines some of the best features of mathematics, engineering, and natural science. Like mathematicians, computer scientists use formal languages to denote ideas (specifically computations). Like engineers, they design things, assembling components into systems and evaluating tradeoffs among alternatives. Like scientists, they observe the behavior of complex systems, form hypotheses, and test predictions.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              294.6796875\n            ],\n            [\n              525.9375,\n              294.6796875\n            ],\n            [\n              525.9375,\n              365.6669921875\n            ],\n            [\n              128.49609375,\n              365.6669921875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            294.6796875,\n            525.9375,\n            365.6669921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The single most important skill for a computer scientist is <b>problem solving</b>. Problem solving means the ability to formulate problems, think creatively about solutions, and express a solution clearly and accurately. As it turns out, the process of learning to program is an excellent opportunity to practice problem-solving skills. That's why this chapter is called, \\\"The way of the program.\\\"</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              375.697265625\n            ],\n            [\n              526.53515625,\n              375.697265625\n            ],\n            [\n              526.53515625,\n              435.260986328125\n            ],\n            [\n              129.09375,\n              435.260986328125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            375.697265625,\n            526.53515625,\n            435.260986328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">On one level, you will be learning to program, a useful skill by itself. On another level, you will use programming as a means to an end. As we go along, that end will become clearer.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              445.11328125\n            ],\n            [\n              526.53515625,\n              445.11328125\n            ],\n            [\n              526.53515625,\n              468.31640625\n            ],\n            [\n              129.2431640625,\n              468.31640625\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            445.11328125,\n            526.53515625,\n            468.31640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-22-1\\\"></span><b>1.1 The Python programming language</b></h3>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              498.8671875\n            ],\n            [\n              395.05078125,\n              498.8671875\n            ],\n            [\n              395.05078125,\n              513.9990234375\n            ],\n            [\n              128.9443359375,\n              513.9990234375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            498.8671875,\n            395.05078125,\n            513.9990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The programming language you will learn is Python. Python is an example of a <b>high-level</b> <b>language</b>; other high-level languages you might have heard of are C, C++, Perl, and Java.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              526.32421875\n            ],\n            [\n              526.236328125,\n              526.32421875\n            ],\n            [\n              526.236328125,\n              549.52734375\n            ],\n            [\n              128.794921875,\n              549.52734375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            526.32421875,\n            526.236328125,\n            549.52734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are also <b>low-level languages</b>, sometimes referred to as \\\"machine languages\\\" or \\\"assembly languages.\\\" Loosely speaking, computers can only run programs written in lowlevel languages. So programs written in a high-level language have to be processed before they can run. This extra processing takes some time, which is a small disadvantage of high-level languages.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              559.96875\n            ],\n            [\n              526.53515625,\n              559.96875\n            ],\n            [\n              526.53515625,\n              619.0469818115234\n            ],\n            [\n              128.3466796875,\n              619.0469818115234\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            559.96875,\n            526.53515625,\n            619.0469818115234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/22/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The advantages are enormous. First, it is much easier to program in a high-level language. Programs written in a high-level language take less time to write, they are shorter and easier to read, and they are more likely to be correct. Second, high-level languages are <b>portable</b>, meaning that they can run on different kinds of computers with few or no modifications. Low-level programs can run on only one kind of computer and have to be rewritten to run on another.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              629.578125\n            ],\n            [\n              526.53515625,\n              629.578125\n            ],\n            [\n              526.53515625,\n              700.8349914550781\n            ],\n            [\n              128.0478515625,\n              700.8349914550781\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            629.578125,\n            526.53515625,\n            700.8349914550781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/22/SectionHeader/1\",\n        \"3\": \"/page/22/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/23/Page/195\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/23/PageHeader/0'></content-ref><content-ref src='/page/23/PageHeader/15'></content-ref><content-ref src='/page/23/Figure/1'></content-ref><content-ref src='/page/23/Text/2'></content-ref><content-ref src='/page/23/Figure/3'></content-ref><content-ref src='/page/23/Text/4'></content-ref><content-ref src='/page/23/Text/5'></content-ref><content-ref src='/page/23/Text/6'></content-ref><content-ref src='/page/23/Text/7'></content-ref><content-ref src='/page/23/Text/8'></content-ref><content-ref src='/page/23/TextInlineMath/9'></content-ref><content-ref src='/page/23/Text/10'></content-ref><content-ref src='/page/23/Text/11'></content-ref><content-ref src='/page/23/Text/12'></content-ref><content-ref src='/page/23/Text/13'></content-ref><content-ref src='/page/23/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/23/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.76318359375\n            ],\n            [\n              483.50390625,\n              60.76318359375\n            ],\n            [\n              483.50390625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.76318359375,\n            483.50390625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.8671875,\n              61.14990234375\n            ],\n            [\n              91.142578125,\n              61.14990234375\n            ],\n            [\n              91.142578125,\n              70.33447265625\n            ],\n            [\n              84.8671875,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            61.14990234375,\n            91.142578125,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Figure/1\",\n          \"block_type\": \"Figure\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              162.861328125,\n              85.9482421875\n            ],\n            [\n              402.22265625,\n              85.9482421875\n            ],\n            [\n              402.22265625,\n              139.7021484375\n            ],\n            [\n              162.861328125,\n              139.7021484375\n            ]\n          ],\n          \"bbox\": [\n            162.861328125,\n            85.9482421875,\n            402.22265625,\n            139.7021484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {\n            \"/page/23/Figure/1\": \"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\"\n          }\n        },\n        {\n          \"id\": \"/page/23/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure 1.1: An interpreter processes the program a little at a time, alternately reading lines and performing computations.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              155.267578125\n            ],\n            [\n              482.40325927734375,\n              155.267578125\n            ],\n            [\n              482.40325927734375,\n              177.60797119140625\n            ],\n            [\n              86.2119140625,\n              177.60797119140625\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            155.267578125,\n            482.40325927734375,\n            177.60797119140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Figure/3\",\n          \"block_type\": \"Figure\",\n          \"html\": \"<span id=\\\"page-23-0\\\"></span>\",\n          \"polygon\": [\n            [\n              107.4287109375,\n              188.912109375\n            ],\n            [\n              460.1953125,\n              188.912109375\n            ],\n            [\n              460.1953125,\n              241.119140625\n            ],\n            [\n              107.4287109375,\n              241.119140625\n            ]\n          ],\n          \"bbox\": [\n            107.4287109375,\n            188.912109375,\n            460.1953125,\n            241.119140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {\n            \"/page/23/Figure/3\": \"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\"\n          }\n        },\n        {\n          \"id\": \"/page/23/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-23-1\\\"></span>Figure 1.2: A compiler translates source code into object code, which is run by a hardware executor.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              258.134765625\n            ],\n            [\n              482.90625,\n              258.134765625\n            ],\n            [\n              482.90625,\n              280.5428771972656\n            ],\n            [\n              85.9130859375,\n              280.5428771972656\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            258.134765625,\n            482.90625,\n            280.5428771972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Due to these advantages, almost all programs are written in high-level languages. Lowlevel languages are used only for a few specialized applications.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              298.93359375\n            ],\n            [\n              482.40338134765625,\n              298.93359375\n            ],\n            [\n              482.40338134765625,\n              321.6348876953125\n            ],\n            [\n              85.6142578125,\n              321.6348876953125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            298.93359375,\n            482.40338134765625,\n            321.6348876953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Two kinds of programs process high-level languages into low-level languages: <b>interpreters</b> and <b>compilers</b>. An interpreter reads a high-level program and executes it, meaning that it does what the program says. It processes the program a little at a time, alternately reading lines and performing computations. Figure <a href=\\\"#page-23-0\\\">1.1</a> shows the structure of an interpreter.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              330.64453125\n            ],\n            [\n              482.90625,\n              330.64453125\n            ],\n            [\n              482.90625,\n              377.82421875\n            ],\n            [\n              85.6142578125,\n              377.82421875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            330.64453125,\n            482.90625,\n            377.82421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A compiler reads the program and translates it completely before the program starts running. In this context, the high-level program is called the <b>source code</b>, and the translated program is called the <b>object code</b> or the <b>executable</b>. Once a program is compiled, you can execute it repeatedly without further translation. Figure <a href=\\\"#page-23-1\\\">1.2</a> shows the structure of a compiler.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              386.912109375\n            ],\n            [\n              482.607421875,\n              386.912109375\n            ],\n            [\n              482.607421875,\n              445.85791015625\n            ],\n            [\n              85.46484375,\n              445.85791015625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            386.912109375,\n            482.607421875,\n            445.85791015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python is considered an interpreted language because Python programs are executed by an interpreter. There are two ways to use the interpreter: <b>interactive mode</b> and <b>script mode</b>. In interactive mode, you type Python programs and the interpreter displays the result:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              455.16796875\n            ],\n            [\n              483.50390625,\n              455.16796875\n            ],\n            [\n              483.50390625,\n              489.67791748046875\n            ],\n            [\n              85.3154296875,\n              489.67791748046875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            455.16796875,\n            483.50390625,\n            489.67791748046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/TextInlineMath/9\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; 1 + 1</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              495.0257568359375\n            ],\n            [\n              133.4733123779297,\n              495.0257568359375\n            ],\n            [\n              133.4733123779297,\n              509.30859375\n            ],\n            [\n              85.83837890625,\n              509.30859375\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            495.0257568359375,\n            133.4733123779297,\n            509.30859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">2</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              507.2197570800781\n            ],\n            [\n              92.0390625,\n              507.2197570800781\n            ],\n            [\n              92.0390625,\n              518.9765625\n            ],\n            [\n              85.3154296875,\n              518.9765625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            507.2197570800781,\n            92.0390625,\n            518.9765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The chevron, &gt;&gt;&gt;, is the <b>prompt</b> the interpreter uses to indicate that it is ready. If you type 1 + 1, the interpreter replies 2.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              522.45703125\n            ],\n            [\n              482.3962097167969,\n              522.45703125\n            ],\n            [\n              482.3962097167969,\n              544.9859008789062\n            ],\n            [\n              86.2119140625,\n              544.9859008789062\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            522.45703125,\n            482.3962097167969,\n            544.9859008789062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Alternatively, you can store code in a file and use the interpreter to execute the contents of the file, which is called a <b>script</b>. By convention, Python scripts have names that end with .py.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              553.78125\n            ],\n            [\n              483.50390625,\n              553.78125\n            ],\n            [\n              483.50390625,\n              589.359375\n            ],\n            [\n              85.9130859375,\n              589.359375\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            553.78125,\n            483.50390625,\n            589.359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To execute the script, you have to tell the interpreter the name of the file. If you have a script named dinsdale.py and you are working in a UNIX command window, you type python dinsdale.py. In other development environments, the details of executing scripts are different. You can find instructions for your environment at the Python website <a href=\\\"http://python.org\\\">http:</a> <a href=\\\"http://python.org\\\">//python.org</a>.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              597.48046875\n            ],\n            [\n              482.90625,\n              597.48046875\n            ],\n            [\n              482.90625,\n              657.0149230957031\n            ],\n            [\n              85.9130859375,\n              657.0149230957031\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            597.48046875,\n            482.90625,\n            657.0149230957031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/23/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Working in interactive mode is convenient for testing small pieces of code because you can type and execute them immediately. But for anything more than a few lines, you should save your code as a script so you can modify and execute it in the future.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              665.54296875\n            ],\n            [\n              482.607421875,\n              665.54296875\n            ],\n            [\n              482.607421875,\n              700.8349304199219\n            ],\n            [\n              85.763671875,\n              700.8349304199219\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            665.54296875,\n            482.607421875,\n            700.8349304199219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/22/SectionHeader/1\",\n        \"3\": \"/page/22/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/24/Page/160\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/24/PageHeader/0'></content-ref><content-ref src='/page/24/PageHeader/17'></content-ref><content-ref src='/page/24/SectionHeader/1'></content-ref><content-ref src='/page/24/Text/2'></content-ref><content-ref src='/page/24/Text/3'></content-ref><content-ref src='/page/24/Text/4'></content-ref><content-ref src='/page/24/Text/5'></content-ref><content-ref src='/page/24/Text/6'></content-ref><content-ref src='/page/24/Text/7'></content-ref><content-ref src='/page/24/Text/8'></content-ref><content-ref src='/page/24/Text/9'></content-ref><content-ref src='/page/24/Text/10'></content-ref><content-ref src='/page/24/SectionHeader/11'></content-ref><content-ref src='/page/24/Text/12'></content-ref><content-ref src='/page/24/Text/13'></content-ref><content-ref src='/page/24/SectionHeader/14'></content-ref><content-ref src='/page/24/Text/15'></content-ref><content-ref src='/page/24/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/24/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              61.1015625\n            ],\n            [\n              525.6033935546875,\n              61.1015625\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.0478515625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            61.1015625,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              519.36328125,\n              60.908203125\n            ],\n            [\n              526.53515625,\n              60.908203125\n            ],\n            [\n              526.53515625,\n              70.0927734375\n            ],\n            [\n              519.36328125,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            519.36328125,\n            60.908203125,\n            526.53515625,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-24-0\\\"></span><b>1.2 What is a program?</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              85.95379638671875\n            ],\n            [\n              288.8173828125,\n              85.95379638671875\n            ],\n            [\n              288.8173828125,\n              100.29998779296875\n            ],\n            [\n              128.3466796875,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            85.95379638671875,\n            288.8173828125,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>program</b> is a sequence of instructions that specifies how to perform a computation. The computation might be something mathematical, such as solving a system of equations or finding the roots of a polynomial, but it can also be a symbolic computation, such as searching and replacing text in a document or (strangely enough) compiling a program.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              112.53515625\n            ],\n            [\n              526.53515625,\n              112.53515625\n            ],\n            [\n              526.53515625,\n              159.87994384765625\n            ],\n            [\n              128.9443359375,\n              159.87994384765625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            112.53515625,\n            526.53515625,\n            159.87994384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The details look different in different languages, but a few basic instructions appear in just about every language:</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              170.0595703125\n            ],\n            [\n              526.53515625,\n              170.0595703125\n            ],\n            [\n              526.53515625,\n              192.7039794921875\n            ],\n            [\n              128.9443359375,\n              192.7039794921875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            170.0595703125,\n            526.53515625,\n            192.7039794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>input:</b> Get data from the keyboard, a file, or some other device.</p>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              207.66796875\n            ],\n            [\n              409.693359375,\n              207.66796875\n            ],\n            [\n              409.693359375,\n              217.7509765625\n            ],\n            [\n              129.16845703125,\n              217.7509765625\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            207.66796875,\n            409.693359375,\n            217.7509765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>output:</b> Display data on the screen or send data to a file or other device.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              228.357421875\n            ],\n            [\n              446.78948974609375,\n              228.357421875\n            ],\n            [\n              446.78948974609375,\n              238.7550048828125\n            ],\n            [\n              129.392578125,\n              238.7550048828125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            228.357421875,\n            446.78948974609375,\n            238.7550048828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>math:</b> Perform basic mathematical operations like addition and multiplication.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              249.43359375\n            ],\n            [\n              477.8826904296875,\n              249.43359375\n            ],\n            [\n              477.8826904296875,\n              259.75799560546875\n            ],\n            [\n              128.794921875,\n              259.75799560546875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            249.43359375,\n            477.8826904296875,\n            259.75799560546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>conditional execution:</b> Check for certain conditions and execute the appropriate code.</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              270.7022705078125\n            ],\n            [\n              510.99609375,\n              270.7022705078125\n            ],\n            [\n              510.99609375,\n              280.7619934082031\n            ],\n            [\n              129.5419921875,\n              280.7619934082031\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            270.7022705078125,\n            510.99609375,\n            280.7619934082031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>repetition:</b> Perform some action repeatedly, usually with some variation.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              291.70526123046875\n            ],\n            [\n              452.42578125,\n              291.70526123046875\n            ],\n            [\n              452.42578125,\n              301.7649841308594\n            ],\n            [\n              128.9443359375,\n              301.7649841308594\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            291.70526123046875,\n            452.42578125,\n            301.7649841308594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Believe it or not, that's pretty much all there is to it. Every program you've ever used, no matter how complicated, is made up of instructions that look pretty much like these. So you can think of programming as the process of breaking a large, complex task into smaller and smaller subtasks until the subtasks are simple enough to be performed with one of these basic instructions.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              316.142578125\n            ],\n            [\n              525.9375,\n              316.142578125\n            ],\n            [\n              525.9375,\n              375.5899963378906\n            ],\n            [\n              128.49609375,\n              375.5899963378906\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            316.142578125,\n            525.9375,\n            375.5899963378906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">That may be a little vague, but we will come back to this topic when we talk about <b>algo</b><b>rithms</b>.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              386.138671875\n            ],\n            [\n              525.5997924804688,\n              386.138671875\n            ],\n            [\n              525.5997924804688,\n              408.41400146484375\n            ],\n            [\n              128.49609375,\n              408.41400146484375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            386.138671875,\n            525.5997924804688,\n            408.41400146484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-24-1\\\"></span><b>1.3 What is debugging?</b></h4>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              439.2318420410156\n            ],\n            [\n              292.5728454589844,\n              439.2318420410156\n            ],\n            [\n              292.5728454589844,\n              453.57806396484375\n            ],\n            [\n              128.0478515625,\n              453.57806396484375\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            439.2318420410156,\n            292.5728454589844,\n            453.57806396484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Programming is error-prone. For whimsical reasons, programming errors are called <b>bugs</b> and the process of tracking them down is called <b>debugging</b>.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              466.3828125\n            ],\n            [\n              525.5999145507812,\n              466.3828125\n            ],\n            [\n              525.5999145507812,\n              488.8125\n            ],\n            [\n              128.9443359375,\n              488.8125\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            466.3828125,\n            525.5999145507812,\n            488.8125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Three kinds of errors can occur in a program: syntax errors, runtime errors, and semantic errors. It is useful to distinguish between them in order to track them down more quickly.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              499.25390625\n            ],\n            [\n              525.6033935546875,\n              499.25390625\n            ],\n            [\n              525.6033935546875,\n              521.68359375\n            ],\n            [\n              128.9443359375,\n              521.68359375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            499.25390625,\n            525.6033935546875,\n            521.68359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/SectionHeader/14\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>1.3.1 Syntax errors</b></h4>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              548.9158477783203\n            ],\n            [\n              237.53152465820312,\n              548.9158477783203\n            ],\n            [\n              237.53152465820312,\n              560.8710479736328\n            ],\n            [\n              129.01904296875,\n              560.8710479736328\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            548.9158477783203,\n            237.53152465820312,\n            560.8710479736328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python can only execute a program if the syntax is correct; otherwise, the interpreter displays an error message. <b>Syntax</b> refers to the structure of a program and the rules about that structure. For example, parentheses have to come in matching pairs, so (1 + 2) is legal, but 8) is a <b>syntax error</b>.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              572.34375\n            ],\n            [\n              525.638671875,\n              572.34375\n            ],\n            [\n              525.638671875,\n              619.2339935302734\n            ],\n            [\n              129.392578125,\n              619.2339935302734\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            572.34375,\n            525.638671875,\n            619.2339935302734\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/24/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In English, readers can tolerate most syntax errors, which is why we can read the poetry of e. e. cummings without spewing error messages. Python is not so forgiving. If there is a single syntax error anywhere in your program, Python will display an error message and quit, and you will not be able to run your program. During the first few weeks of your programming career, you will probably spend a lot of time tracking down syntax errors. As you gain experience, you will make fewer errors and find them faster.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              629.578125\n            ],\n            [\n              525.9375,\n              629.578125\n            ],\n            [\n              525.9375,\n              700.8350067138672\n            ],\n            [\n              128.9443359375,\n              700.8350067138672\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            629.578125,\n            525.9375,\n            700.8350067138672\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/14\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/22/SectionHeader/1\",\n        \"3\": \"/page/22/SectionHeader/5\",\n        \"4\": \"/page/24/SectionHeader/14\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/25/Page/144\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/25/PageHeader/0'></content-ref><content-ref src='/page/25/PageHeader/14'></content-ref><content-ref src='/page/25/SectionHeader/1'></content-ref><content-ref src='/page/25/Text/2'></content-ref><content-ref src='/page/25/Text/3'></content-ref><content-ref src='/page/25/SectionHeader/4'></content-ref><content-ref src='/page/25/Text/5'></content-ref><content-ref src='/page/25/Text/6'></content-ref><content-ref src='/page/25/SectionHeader/7'></content-ref><content-ref src='/page/25/Text/8'></content-ref><content-ref src='/page/25/Text/9'></content-ref><content-ref src='/page/25/Text/10'></content-ref><content-ref src='/page/25/Text/11'></content-ref><content-ref src='/page/25/Text/12'></content-ref><content-ref src='/page/25/Text/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/25/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.69970703125\n            ],\n            [\n              483.205078125,\n              59.69970703125\n            ],\n            [\n              483.205078125,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.69970703125,\n            483.205078125,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              59.8447265625\n            ],\n            [\n              93.0849609375,\n              59.8447265625\n            ],\n            [\n              93.0849609375,\n              69.99609375\n            ],\n            [\n              85.3154296875,\n              69.99609375\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            59.8447265625,\n            93.0849609375,\n            69.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/24/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>1.3.2 Runtime errors</b></h4>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              86.3349609375\n            ],\n            [\n              207.5361328125,\n              86.3349609375\n            ],\n            [\n              207.5361328125,\n              99.24493408203125\n            ],\n            [\n              85.6142578125,\n              99.24493408203125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            86.3349609375,\n            207.5361328125,\n            99.24493408203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The second type of error is a runtime error, so called because the error does not appear until after the program has started running. These errors are also called <b>exceptions</b> because they usually indicate that something exceptional (and bad) has happened.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              109.7314453125\n            ],\n            [\n              484.1015625,\n              109.7314453125\n            ],\n            [\n              484.1015625,\n              146.09991455078125\n            ],\n            [\n              85.9130859375,\n              146.09991455078125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            109.7314453125,\n            484.1015625,\n            146.09991455078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Runtime errors are rare in the simple programs you will see in the first few chapters, so it might be a while before you encounter one.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              155.4609375\n            ],\n            [\n              483.50390625,\n              155.4609375\n            ],\n            [\n              483.50390625,\n              179.41387939453125\n            ],\n            [\n              86.0625,\n              179.41387939453125\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            155.4609375,\n            483.50390625,\n            179.41387939453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>1.3.3 Semantic errors</b></h4>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              206.12109375\n            ],\n            [\n              208.1337890625,\n              206.12109375\n            ],\n            [\n              208.1337890625,\n              220.16192626953125\n            ],\n            [\n              85.9130859375,\n              220.16192626953125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            206.12109375,\n            208.1337890625,\n            220.16192626953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The third type of error is the <b>semantic error</b>. If there is a semantic error in your program, it will run successfully in the sense that the computer will not generate any error messages, but it will not do the right thing. It will do something else. Specifically, it will do what you told it to do.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              231.064453125\n            ],\n            [\n              484.69921875,\n              231.064453125\n            ],\n            [\n              484.69921875,\n              279.21197509765625\n            ],\n            [\n              85.9130859375,\n              279.21197509765625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            231.064453125,\n            484.69921875,\n            279.21197509765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The problem is that the program you wrote is not the program you wanted to write. The meaning of the program (its semantics) is wrong. Identifying semantic errors can be tricky because it requires you to work backward by looking at the output of the program and trying to figure out what it is doing.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              288.685546875\n            ],\n            [\n              484.1015625,\n              288.685546875\n            ],\n            [\n              484.1015625,\n              336.9139404296875\n            ],\n            [\n              85.9130859375,\n              336.9139404296875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            288.685546875,\n            484.1015625,\n            336.9139404296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>1.3.4 Experimental debugging</b></h4>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              364.095703125\n            ],\n            [\n              258.78515625,\n              364.095703125\n            ],\n            [\n              258.78515625,\n              377.6620178222656\n            ],\n            [\n              85.83837890625,\n              377.6620178222656\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            364.095703125,\n            258.78515625,\n            377.6620178222656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One of the most important skills you will acquire is debugging. Although it can be frustrating, debugging is one of the most intellectually rich, challenging, and interesting parts of programming.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              388.458984375\n            ],\n            [\n              483.802734375,\n              388.458984375\n            ],\n            [\n              483.802734375,\n              424.5179443359375\n            ],\n            [\n              85.763671875,\n              424.5179443359375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            388.458984375,\n            483.802734375,\n            424.5179443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In some ways, debugging is like detective work. You are confronted with clues, and you have to infer the processes and events that led to the results you see.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              433.8984375\n            ],\n            [\n              483.802734375,\n              433.8984375\n            ],\n            [\n              483.802734375,\n              457.8319396972656\n            ],\n            [\n              85.763671875,\n              457.8319396972656\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            433.8984375,\n            483.802734375,\n            457.8319396972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Debugging is also like an experimental science. Once you have an idea about what is going wrong, you modify your program and try again. If your hypothesis was correct, then you can predict the result of the modification, and you take a step closer to a working program. If your hypothesis was wrong, you have to come up with a new one. As Sherlock Holmes pointed out, \\\"When you have eliminated the impossible, whatever remains, however improbable, must be the truth.\\\" (A. Conan Doyle, <i>The Sign of Four</i>)</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              467.15625\n            ],\n            [\n              484.1015625,\n              467.15625\n            ],\n            [\n              484.1015625,\n              539.9229431152344\n            ],\n            [\n              85.763671875,\n              539.9229431152344\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            467.15625,\n            484.1015625,\n            539.9229431152344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For some people, programming and debugging are the same thing. That is, programming is the process of gradually debugging a program until it does what you want. The idea is that you should start with a program that does <i>something</i> and make small modifications, debugging them as you go, so that you always have a working program.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              549.52734375\n            ],\n            [\n              483.802734375,\n              549.52734375\n            ],\n            [\n              483.802734375,\n              597.6249542236328\n            ],\n            [\n              85.763671875,\n              597.6249542236328\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            549.52734375,\n            483.802734375,\n            597.6249542236328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, Linux is an operating system that contains thousands of lines of code, but it started out as a simple program Linus Torvalds used to explore the Intel 80386 chip. According to Larry Greenfield, \\\"One of Linus's earlier projects was a program that would switch between printing AAAA and BBBB. This later evolved to Linux.\\\" (<i>The Linux Users'</i> <i>Guide</i> Beta Version 1).</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              607.1484375\n            ],\n            [\n              484.1015625,\n              607.1484375\n            ],\n            [\n              484.1015625,\n              667.52197265625\n            ],\n            [\n              85.763671875,\n              667.52197265625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            607.1484375,\n            484.1015625,\n            667.52197265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/25/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Later chapters will make more suggestions about debugging and other programming practices.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              677.14453125\n            ],\n            [\n              483.50390625,\n              677.14453125\n            ],\n            [\n              483.50390625,\n              700.8349761962891\n            ],\n            [\n              86.0625,\n              700.8349761962891\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            677.14453125,\n            483.50390625,\n            700.8349761962891\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/22/SectionHeader/1\",\n        \"3\": \"/page/22/SectionHeader/5\",\n        \"4\": \"/page/25/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/26/Page/194\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/26/PageHeader/0'></content-ref><content-ref src='/page/26/PageHeader/14'></content-ref><content-ref src='/page/26/SectionHeader/1'></content-ref><content-ref src='/page/26/Text/2'></content-ref><content-ref src='/page/26/Text/3'></content-ref><content-ref src='/page/26/SectionHeader/4'></content-ref><content-ref src='/page/26/Text/5'></content-ref><content-ref src='/page/26/Text/6'></content-ref><content-ref src='/page/26/Text/7'></content-ref><content-ref src='/page/26/Text/8'></content-ref><content-ref src='/page/26/Text/9'></content-ref><content-ref src='/page/26/Text/10'></content-ref><content-ref src='/page/26/Text/11'></content-ref><content-ref src='/page/26/ListGroup/193'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/26/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              61.0048828125\n            ],\n            [\n              525.6033935546875,\n              61.0048828125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.0478515625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            61.0048828125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              519.9609375,\n              61.0048828125\n            ],\n            [\n              526.53515625,\n              61.0048828125\n            ],\n            [\n              526.53515625,\n              70.189453125\n            ],\n            [\n              519.9609375,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            519.9609375,\n            61.0048828125,\n            526.53515625,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/25/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-26-0\\\"></span><b>1.4 Formal and natural languages</b></h4>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              85.95379638671875\n            ],\n            [\n              357.099609375,\n              85.95379638671875\n            ],\n            [\n              357.099609375,\n              100.353515625\n            ],\n            [\n              127.8984375,\n              100.353515625\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            85.95379638671875,\n            357.099609375,\n            100.353515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Natural languages</b> are the languages people speak, such as English, Spanish, and French. They were not designed by people (although people try to impose some order on them); they evolved naturally.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              114.7587890625\n            ],\n            [\n              526.236328125,\n              114.7587890625\n            ],\n            [\n              526.236328125,\n              149.22991943359375\n            ],\n            [\n              128.794921875,\n              149.22991943359375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            114.7587890625,\n            526.236328125,\n            149.22991943359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Formal languages</b> are languages that are designed by people for specific applications. For example, the notation that mathematicians use is a formal language that is particularly good at denoting relationships among numbers and symbols. Chemists use a formal language to represent the chemical structure of molecules. And most importantly:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              160.48828125\n            ],\n            [\n              525.6034545898438,\n              160.48828125\n            ],\n            [\n              525.6034545898438,\n              207.54486083984375\n            ],\n            [\n              128.3466796875,\n              207.54486083984375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            160.48828125,\n            525.6034545898438,\n            207.54486083984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>Programming languages are formal languages that have been designed to</b> <b>express computations.</b></h4>\",\n          \"polygon\": [\n            [\n              153.59765625,\n              224.296875\n            ],\n            [\n              500.8359375,\n              224.296875\n            ],\n            [\n              500.8359375,\n              246.73370361328125\n            ],\n            [\n              153.59765625,\n              246.73370361328125\n            ]\n          ],\n          \"bbox\": [\n            153.59765625,\n            224.296875,\n            500.8359375,\n            246.73370361328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Formal languages tend to have strict rules about syntax. For example, 3 + 3 = 6 is a syntactically correct mathematical statement, but 3+ = 3$6 is not. <i>H</i>2<i>O</i> is a syntactically correct chemical formula, but 2<i>Zz</i> is not.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              262.99078369140625\n            ],\n            [\n              526.53515625,\n              262.99078369140625\n            ],\n            [\n              526.53515625,\n              299.3785400390625\n            ],\n            [\n              128.49609375,\n              299.3785400390625\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            262.99078369140625,\n            526.53515625,\n            299.3785400390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Syntax rules come in two flavors, pertaining to <b>tokens</b> and structure. Tokens are the basic elements of the language, such as words, numbers, and chemical elements. One of the problems with 3+ = 3$6 is that $ is not a legal token in mathematics (at least as far as I know). Similarly, 2<i>Zz</i> is not legal because there is no element with the abbreviation <i>Zz</i>.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              309.955078125\n            ],\n            [\n              526.833984375,\n              309.955078125\n            ],\n            [\n              526.833984375,\n              357.69354248046875\n            ],\n            [\n              128.794921875,\n              357.69354248046875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            309.955078125,\n            526.833984375,\n            357.69354248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The second type of syntax rule pertains to the structure of a statement; that is, the way the tokens are arranged. The statement 3+ = 3 is illegal because even though + and = are legal tokens, you can't have one right after the other. Similarly, in a chemical formula the subscript comes after the element name, not before.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              368.349609375\n            ],\n            [\n              526.236328125,\n              368.349609375\n            ],\n            [\n              526.236328125,\n              414.94085693359375\n            ],\n            [\n              128.794921875,\n              414.94085693359375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            368.349609375,\n            526.236328125,\n            414.94085693359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 1.1.</b> <i>Write a well-structured English sentence with invalid tokens in it. Then write an</i><i>other sentence with all valid tokens but with invalid structure.</i></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              416.8828125\n            ],\n            [\n              525.638671875,\n              416.8828125\n            ],\n            [\n              525.638671875,\n              439.15716552734375\n            ],\n            [\n              129.392578125,\n              439.15716552734375\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            416.8828125,\n            525.638671875,\n            439.15716552734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you read a sentence in English or a statement in a formal language, you have to figure out what the structure of the sentence is (although in a natural language you do this subconsciously). This process is called <b>parsing</b>.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              450.9140625\n            ],\n            [\n              525.9375,\n              450.9140625\n            ],\n            [\n              525.9375,\n              485.45086669921875\n            ],\n            [\n              128.9443359375,\n              485.45086669921875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            450.9140625,\n            525.9375,\n            485.45086669921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, when you hear the sentence, \\\"The penny dropped,\\\" you understand that \\\"the penny\\\" is the subject and \\\"dropped\\\" is the predicate. Once you have parsed a sentence, you can figure out what it means, or the semantics of the sentence. Assuming that you know what a penny is and what it means to drop, you will understand the general implication of this sentence.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              496.546875\n            ],\n            [\n              526.53515625,\n              496.546875\n            ],\n            [\n              526.53515625,\n              555.9608764648438\n            ],\n            [\n              128.6455078125,\n              555.9608764648438\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            496.546875,\n            526.53515625,\n            555.9608764648438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Although formal and natural languages have many features in common—tokens, structure, syntax, and semantics—there are some differences:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              567.31640625\n            ],\n            [\n              525.603515625,\n              567.31640625\n            ],\n            [\n              525.603515625,\n              589.8868713378906\n            ],\n            [\n              128.3466796875,\n              589.8868713378906\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            567.31640625,\n            525.603515625,\n            589.8868713378906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/26/ListGroup/193\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/26/ListItem/12'></content-ref><content-ref src='/page/26/ListItem/13'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              606.375\n            ],\n            [\n              525.9375,\n              606.375\n            ],\n            [\n              525.9375,\n              700.8348770141602\n            ],\n            [\n              129.09375,\n              700.8348770141602\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            606.375,\n            525.9375,\n            700.8348770141602\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/26/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>ambiguity:</b> Natural languages are full of ambiguity, which people deal with by using contextual clues and other information. Formal languages are designed to be nearly or completely unambiguous, which means that any statement has exactly one meaning, regardless of context.</li>\",\n              \"polygon\": [\n                [\n                  129.09375,\n                  606.375\n                ],\n                [\n                  525.9375,\n                  606.375\n                ],\n                [\n                  525.9375,\n                  653.5618743896484\n                ],\n                [\n                  129.09375,\n                  653.5618743896484\n                ]\n              ],\n              \"bbox\": [\n                129.09375,\n                606.375,\n                525.9375,\n                653.5618743896484\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/22/SectionHeader/5\",\n                \"4\": \"/page/26/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/26/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>redundancy:</b> In order to make up for ambiguity and reduce misunderstandings, natural languages employ lots of redundancy. As a result, they are often verbose. Formal languages are less redundant and more concise.</li>\",\n              \"polygon\": [\n                [\n                  129.09375,\n                  665.9296875\n                ],\n                [\n                  525.9375,\n                  665.9296875\n                ],\n                [\n                  525.9375,\n                  700.8348770141602\n                ],\n                [\n                  129.09375,\n                  700.8348770141602\n                ]\n              ],\n              \"bbox\": [\n                129.09375,\n                665.9296875,\n                525.9375,\n                700.8348770141602\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/22/SectionHeader/5\",\n                \"4\": \"/page/26/SectionHeader/4\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/22/SectionHeader/1\",\n        \"3\": \"/page/22/SectionHeader/5\",\n        \"4\": \"/page/26/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/27/Page/143\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/27/PageHeader/0'></content-ref><content-ref src='/page/27/PageHeader/17'></content-ref><content-ref src='/page/27/ListItem/1'></content-ref><content-ref src='/page/27/Text/2'></content-ref><content-ref src='/page/27/ListGroup/142'></content-ref><content-ref src='/page/27/Text/6'></content-ref><content-ref src='/page/27/SectionHeader/7'></content-ref><content-ref src='/page/27/Text/8'></content-ref><content-ref src='/page/27/Code/141'></content-ref><content-ref src='/page/27/Text/10'></content-ref><content-ref src='/page/27/Text/11'></content-ref><content-ref src='/page/27/Text/12'></content-ref><content-ref src='/page/27/Text/13'></content-ref><content-ref src='/page/27/Code/14'></content-ref><content-ref src='/page/27/Text/15'></content-ref><content-ref src='/page/27/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/27/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.4248046875\n            ],\n            [\n              482.607421875,\n              60.4248046875\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.4248046875,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              61.34326171875\n            ],\n            [\n              92.56201171875,\n              61.34326171875\n            ],\n            [\n              92.56201171875,\n              70.33447265625\n            ],\n            [\n              85.68896484375,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            61.34326171875,\n            92.56201171875,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/ListItem/1\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>literalness:</b> Natural languages are full of idiom and metaphor. If I say, \\\"The penny dropped,\\\" there is probably no penny and nothing dropping (this idiom means that someone realized something after a period of confusion). Formal languages mean exactly what they say.</li>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              88.22021484375\n            ],\n            [\n              483.50390625,\n              88.22021484375\n            ],\n            [\n              483.50390625,\n              135.38092041015625\n            ],\n            [\n              85.3154296875,\n              135.38092041015625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            88.22021484375,\n            483.50390625,\n            135.38092041015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">People who grow up speaking a natural language—everyone—often have a hard time adjusting to formal languages. In some ways, the difference between formal and natural language is like the difference between poetry and prose, but more so:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              152.4638671875\n            ],\n            [\n              482.607421875,\n              152.4638671875\n            ],\n            [\n              482.607421875,\n              187.55987548828125\n            ],\n            [\n              85.763671875,\n              187.55987548828125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            152.4638671875,\n            482.607421875,\n            187.55987548828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/ListGroup/142\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/27/ListItem/3'></content-ref><content-ref src='/page/27/ListItem/4'></content-ref><content-ref src='/page/27/ListItem/5'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              204.57421875\n            ],\n            [\n              482.90625,\n              204.57421875\n            ],\n            [\n              482.90625,\n              311.184814453125\n            ],\n            [\n              85.9130859375,\n              311.184814453125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            204.57421875,\n            482.90625,\n            311.184814453125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/27/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>Poetry:</b> Words are used for their sounds as well as for their meaning, and the whole poem together creates an effect or emotional response. Ambiguity is not only common but often deliberate.</li>\",\n              \"polygon\": [\n                [\n                  85.9130859375,\n                  204.57421875\n                ],\n                [\n                  482.4037780761719,\n                  204.57421875\n                ],\n                [\n                  482.4037780761719,\n                  239.73883056640625\n                ],\n                [\n                  85.9130859375,\n                  239.73883056640625\n                ]\n              ],\n              \"bbox\": [\n                85.9130859375,\n                204.57421875,\n                482.4037780761719,\n                239.73883056640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/22/SectionHeader/5\",\n                \"4\": \"/page/26/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>Prose:</b> The literal meaning of words is more important, and the structure contributes more meaning. Prose is more amenable to analysis than poetry but still often ambiguous.</li>\",\n              \"polygon\": [\n                [\n                  86.2119140625,\n                  252.720703125\n                ],\n                [\n                  482.90625,\n                  252.720703125\n                ],\n                [\n                  482.90625,\n                  275.537109375\n                ],\n                [\n                  86.2119140625,\n                  275.537109375\n                ]\n              ],\n              \"bbox\": [\n                86.2119140625,\n                252.720703125,\n                482.90625,\n                275.537109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/22/SectionHeader/5\",\n                \"4\": \"/page/26/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/27/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>Programs:</b> The meaning of a computer program is unambiguous and literal, and can be understood entirely by analysis of the tokens and structure.</li>\",\n              \"polygon\": [\n                [\n                  86.0625,\n                  288.685546875\n                ],\n                [\n                  482.90625,\n                  288.685546875\n                ],\n                [\n                  482.90625,\n                  311.184814453125\n                ],\n                [\n                  86.0625,\n                  311.184814453125\n                ]\n              ],\n              \"bbox\": [\n                86.0625,\n                288.685546875,\n                482.90625,\n                311.184814453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/22/SectionHeader/5\",\n                \"4\": \"/page/26/SectionHeader/4\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/27/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here are some suggestions for reading programs (and other formal languages). First, remember that formal languages are much more dense than natural languages, so it takes longer to read them. Also, the structure is very important, so it is usually not a good idea to read from top to bottom, left to right. Instead, learn to parse the program in your head, identifying the tokens and interpreting the structure. Finally, the details matter. Small errors in spelling and punctuation, which you can get away with in natural languages, can make a big difference in a formal language.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              328.517578125\n            ],\n            [\n              482.90625,\n              328.517578125\n            ],\n            [\n              482.90625,\n              412.2421875\n            ],\n            [\n              86.2119140625,\n              412.2421875\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            328.517578125,\n            482.90625,\n            412.2421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/26/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-27-0\\\"></span><b>1.5 The first program</b></h4>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              447.3996887207031\n            ],\n            [\n              232.6595001220703,\n              447.3996887207031\n            ],\n            [\n              232.6595001220703,\n              461.74591064453125\n            ],\n            [\n              85.9130859375,\n              461.74591064453125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            447.3996887207031,\n            232.6595001220703,\n            461.74591064453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Traditionally, the first program you write in a new language is called \\\"Hello, World!\\\" because all it does is display the words \\\"Hello, World!\\\". In Python, it looks like this:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              476.05078125\n            ],\n            [\n              482.4033508300781,\n              476.05078125\n            ],\n            [\n              482.4033508300781,\n              499.0098571777344\n            ],\n            [\n              85.9130859375,\n              499.0098571777344\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            476.05078125,\n            482.4033508300781,\n            499.0098571777344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Code/141\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>print 'Hello, World!'</pre>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              507.03570556640625\n            ],\n            [\n              196.2123565673828,\n              507.03570556640625\n            ],\n            [\n              196.2123565673828,\n              517.04296875\n            ],\n            [\n              85.39013671875,\n              517.04296875\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            507.03570556640625,\n            196.2123565673828,\n            517.04296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This is an example of a <b>print statement</b>, which doesn't actually print anything on paper. It displays a value on the screen. In this case, the result is the words</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              525.1640625\n            ],\n            [\n              483.205078125,\n              525.1640625\n            ],\n            [\n              483.205078125,\n              547.4798583984375\n            ],\n            [\n              85.763671875,\n              547.4798583984375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            525.1640625,\n            483.205078125,\n            547.4798583984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Hello, World!</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              555.5067138671875\n            ],\n            [\n              154.39474487304688,\n              555.5067138671875\n            ],\n            [\n              154.39474487304688,\n              565.4693145751953\n            ],\n            [\n              85.46484375,\n              565.4693145751953\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            555.5067138671875,\n            154.39474487304688,\n            565.4693145751953\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The quotation marks in the program mark the beginning and end of the text to be displayed; they don't appear in the result.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              573.50390625\n            ],\n            [\n              482.4033508300781,\n              573.50390625\n            ],\n            [\n              482.4033508300781,\n              595.9508666992188\n            ],\n            [\n              85.6142578125,\n              595.9508666992188\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            573.50390625,\n            482.4033508300781,\n            595.9508666992188\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In Python 3, the syntax for printing is slightly different:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              606.76171875\n            ],\n            [\n              329.30859375,\n              606.76171875\n            ],\n            [\n              329.30859375,\n              618.0608673095703\n            ],\n            [\n              85.763671875,\n              618.0608673095703\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            606.76171875,\n            329.30859375,\n            618.0608673095703\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>print('Hello, World!')</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              626.0867156982422\n            ],\n            [\n              201.4413604736328,\n              626.0867156982422\n            ],\n            [\n              201.4413604736328,\n              636.15234375\n            ],\n            [\n              85.46484375,\n              636.15234375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            626.0867156982422,\n            201.4413604736328,\n            636.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The parentheses indicate that print is a function. We'll get to functions in Chapter <a href=\\\"#page-40-0\\\">3.</a></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              644.2247161865234\n            ],\n            [\n              458.6750183105469,\n              644.2247161865234\n            ],\n            [\n              458.6750183105469,\n              654.3368682861328\n            ],\n            [\n              85.763671875,\n              654.3368682861328\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            644.2247161865234,\n            458.6750183105469,\n            654.3368682861328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/27/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For the rest of this book, I'll use the print statement. If you are using Python 3, you will have to translate. But other than that, there are very few differences we have to worry about.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              666.31640625\n            ],\n            [\n              482.607421875,\n              666.31640625\n            ],\n            [\n              482.607421875,\n              700.8348770141602\n            ],\n            [\n              85.166015625,\n              700.8348770141602\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            666.31640625,\n            482.607421875,\n            700.8348770141602\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/22/SectionHeader/1\",\n        \"3\": \"/page/22/SectionHeader/5\",\n        \"4\": \"/page/27/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/28/Page/147\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/28/PageHeader/0'></content-ref><content-ref src='/page/28/PageHeader/17'></content-ref><content-ref src='/page/28/SectionHeader/1'></content-ref><content-ref src='/page/28/Text/2'></content-ref><content-ref src='/page/28/Text/3'></content-ref><content-ref src='/page/28/Text/4'></content-ref><content-ref src='/page/28/Text/5'></content-ref><content-ref src='/page/28/Text/6'></content-ref><content-ref src='/page/28/Text/7'></content-ref><content-ref src='/page/28/Text/8'></content-ref><content-ref src='/page/28/Text/9'></content-ref><content-ref src='/page/28/SectionHeader/10'></content-ref><content-ref src='/page/28/Text/11'></content-ref><content-ref src='/page/28/ListGroup/145'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/28/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.72021484375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            60.95654296875,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              519.662109375,\n              60.908203125\n            ],\n            [\n              526.236328125,\n              60.908203125\n            ],\n            [\n              526.236328125,\n              70.76953125\n            ],\n            [\n              519.662109375,\n              70.76953125\n            ]\n          ],\n          \"bbox\": [\n            519.662109375,\n            60.908203125,\n            526.236328125,\n            70.76953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/22/SectionHeader/5\",\n            \"4\": \"/page/27/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-28-0\\\"></span><b>1.6 Debugging</b></h3>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              85.95379638671875\n            ],\n            [\n              236.00576782226562,\n              85.95379638671875\n            ],\n            [\n              236.00576782226562,\n              101.2236328125\n            ],\n            [\n              128.42138671875,\n              101.2236328125\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            85.95379638671875,\n            236.00576782226562,\n            101.2236328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is a good idea to read this book in front of a computer so you can try out the examples as you go. You can run most of the examples in interactive mode, but if you put the code in a script, it is easier to try out variations.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              111.76171875\n            ],\n            [\n              525.9375,\n              111.76171875\n            ],\n            [\n              525.9375,\n              147.36090087890625\n            ],\n            [\n              128.3466796875,\n              147.36090087890625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            111.76171875,\n            525.9375,\n            147.36090087890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Whenever you are experimenting with a new feature, you should try to make mistakes. For example, in the \\\"Hello, world!\\\" program, what happens if you leave out one of the quotation marks? What if you leave out both? What if you spell print wrong?</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              156.3310546875\n            ],\n            [\n              526.53515625,\n              156.3310546875\n            ],\n            [\n              526.53515625,\n              192.14691162109375\n            ],\n            [\n              128.3466796875,\n              192.14691162109375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            156.3310546875,\n            526.53515625,\n            192.14691162109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This kind of experiment helps you remember what you read; it also helps with debugging, because you get to know what the error messages mean. It is better to make mistakes now and on purpose than later and accidentally.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              201.48046875\n            ],\n            [\n              526.53515625,\n              201.48046875\n            ],\n            [\n              526.53515625,\n              236.93292236328125\n            ],\n            [\n              128.49609375,\n              236.93292236328125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            201.48046875,\n            526.53515625,\n            236.93292236328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Programming, and especially debugging, sometimes brings out strong emotions. If you are struggling with a difficult bug, you might feel angry, despondent or embarrassed.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              245.953125\n            ],\n            [\n              526.236328125,\n              245.953125\n            ],\n            [\n              526.236328125,\n              269.54296875\n            ],\n            [\n              128.794921875,\n              269.54296875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            245.953125,\n            526.236328125,\n            269.54296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There is evidence that people naturally respond to computers as if they were people. When they work well, we think of them as teammates, and when they are obstinate or rude, we respond to them the same way we respond to rude, obstinate people (Reeves and Nass, <i>The Media Equation: How People Treat Computers, Television, and New Media Like Real People</i> <i>and Places</i>).</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              279.2109375\n            ],\n            [\n              526.53515625,\n              279.2109375\n            ],\n            [\n              526.53515625,\n              338.699951171875\n            ],\n            [\n              128.9443359375,\n              338.699951171875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            279.2109375,\n            526.53515625,\n            338.699951171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Preparing for these reactions might help you deal with them. One approach is to think of the computer as an employee with certain strengths, like speed and precision, and particular weaknesses, like lack of empathy and inability to grasp the big picture.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              348.046875\n            ],\n            [\n              526.53515625,\n              348.046875\n            ],\n            [\n              526.53515625,\n              383.4859619140625\n            ],\n            [\n              128.6455078125,\n              383.4859619140625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            348.046875,\n            526.53515625,\n            383.4859619140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Your job is to be a good manager: find ways to take advantage of the strengths and mitigate the weaknesses. And find ways to use your emotions to engage with the problem, without letting your reactions interfere with your ability to work effectively.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              392.90625\n            ],\n            [\n              526.236328125,\n              392.90625\n            ],\n            [\n              526.236328125,\n              428.27197265625\n            ],\n            [\n              129.392578125,\n              428.27197265625\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            392.90625,\n            526.236328125,\n            428.27197265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Learning to debug can be frustrating, but it is a valuable skill that is useful for many activities beyond programming. At the end of each chapter there is a debugging section, like this one, with my thoughts about debugging. I hope they help!</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              437.37890625\n            ],\n            [\n              526.53515625,\n              437.37890625\n            ],\n            [\n              526.53515625,\n              473.0579833984375\n            ],\n            [\n              129.09375,\n              473.0579833984375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            437.37890625,\n            526.53515625,\n            473.0579833984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-28-1\\\"></span><b>1.7 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              503.12109375\n            ],\n            [\n              220.0527801513672,\n              503.12109375\n            ],\n            [\n              220.0527801513672,\n              517.5260620117188\n            ],\n            [\n              128.0478515625,\n              517.5260620117188\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            503.12109375,\n            220.0527801513672,\n            517.5260620117188\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>problem solving:</b> The process of formulating a problem, finding a solution, and expressing the solution.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              525.9375\n            ],\n            [\n              525.638671875,\n              525.9375\n            ],\n            [\n              525.638671875,\n              549.0180053710938\n            ],\n            [\n              128.794921875,\n              549.0180053710938\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            525.9375,\n            525.638671875,\n            549.0180053710938\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/28/ListGroup/145\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/28/ListItem/12'></content-ref><content-ref src='/page/28/ListItem/13'></content-ref><content-ref src='/page/28/ListItem/14'></content-ref><content-ref src='/page/28/ListItem/15'></content-ref><content-ref src='/page/28/ListItem/16'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              558.421875\n            ],\n            [\n              526.53515625,\n              558.421875\n            ],\n            [\n              526.53515625,\n              700.8350296020508\n            ],\n            [\n              128.6455078125,\n              700.8350296020508\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            558.421875,\n            526.53515625,\n            700.8350296020508\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/28/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>high-level language:</b> A programming language like Python that is designed to be easy for humans to read and write.</li>\",\n              \"polygon\": [\n                [\n                  128.9443359375,\n                  558.421875\n                ],\n                [\n                  525.9375,\n                  558.421875\n                ],\n                [\n                  525.9375,\n                  581.8200073242188\n                ],\n                [\n                  128.9443359375,\n                  581.8200073242188\n                ]\n              ],\n              \"bbox\": [\n                128.9443359375,\n                558.421875,\n                525.9375,\n                581.8200073242188\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/28/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>low-level language:</b> A programming language that is designed to be easy for a computer to execute; also called \\\"machine language\\\" or \\\"assembly language.\\\"</li>\",\n              \"polygon\": [\n                [\n                  128.9443359375,\n                  590.90625\n                ],\n                [\n                  525.9375,\n                  590.90625\n                ],\n                [\n                  525.9375,\n                  614.6230163574219\n                ],\n                [\n                  128.9443359375,\n                  614.6230163574219\n                ]\n              ],\n              \"bbox\": [\n                128.9443359375,\n                590.90625,\n                525.9375,\n                614.6230163574219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/28/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>portability:</b> A property of a program that can run on more than one kind of computer.</li>\",\n              \"polygon\": [\n                [\n                  128.9443359375,\n                  623.77734375\n                ],\n                [\n                  510.6493225097656,\n                  623.77734375\n                ],\n                [\n                  510.6493225097656,\n                  635.2310180664062\n                ],\n                [\n                  128.9443359375,\n                  635.2310180664062\n                ]\n              ],\n              \"bbox\": [\n                128.9443359375,\n                623.77734375,\n                510.6493225097656,\n                635.2310180664062\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/28/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>interpret:</b> To execute a program in a high-level language by translating it one line at a time.</li>\",\n              \"polygon\": [\n                [\n                  128.6455078125,\n                  645.7793121337891\n                ],\n                [\n                  525.9375,\n                  645.7793121337891\n                ],\n                [\n                  525.9375,\n                  655.875\n                ],\n                [\n                  128.6455078125,\n                  655.875\n                ]\n              ],\n              \"bbox\": [\n                128.6455078125,\n                645.7793121337891,\n                525.9375,\n                655.875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/28/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>compile:</b> To translate a program written in a high-level language into a low-level language all at once, in preparation for later execution.</li>\",\n              \"polygon\": [\n                [\n                  129.2431640625,\n                  677.53125\n                ],\n                [\n                  526.53515625,\n                  677.53125\n                ],\n                [\n                  526.53515625,\n                  700.8350296020508\n                ],\n                [\n                  129.2431640625,\n                  700.8350296020508\n                ]\n              ],\n              \"bbox\": [\n                129.2431640625,\n                677.53125,\n                526.53515625,\n                700.8350296020508\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/22/SectionHeader/1\",\n        \"3\": \"/page/28/SectionHeader/1\",\n        \"4\": \"/page/28/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/29/Page/158\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/29/PageHeader/0'></content-ref><content-ref src='/page/29/PageHeader/22'></content-ref><content-ref src='/page/29/Text/1'></content-ref><content-ref src='/page/29/Text/156'></content-ref><content-ref src='/page/29/ListGroup/157'></content-ref><content-ref src='/page/29/Text/10'></content-ref><content-ref src='/page/29/ListGroup/158'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/29/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.171142578125\n            ],\n            [\n              482.90625,\n              61.171142578125\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.171142578125,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/29/PageHeader/22\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              61.875\n            ],\n            [\n              91.96435546875,\n              61.875\n            ],\n            [\n              91.96435546875,\n              70.2861328125\n            ],\n            [\n              85.83837890625,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            61.875,\n            91.96435546875,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/29/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>source code:</b> A program in a high-level language before being compiled.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              88.7381591796875\n            ],\n            [\n              407.2349548339844,\n              88.7381591796875\n            ],\n            [\n              407.2349548339844,\n              98.79791259765625\n            ],\n            [\n              85.763671875,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            88.7381591796875,\n            407.2349548339844,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/29/Text/156\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>object code:</b> The output of the compiler after it translates the program.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              112.341796875\n            ],\n            [\n              399.27557373046875,\n              112.341796875\n            ],\n            [\n              399.27557373046875,\n              122.79193115234375\n            ],\n            [\n              86.0625,\n              122.79193115234375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            112.341796875,\n            399.27557373046875,\n            122.79193115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/29/ListGroup/157\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/29/ListItem/3'></content-ref><content-ref src='/page/29/ListItem/4'></content-ref><content-ref src='/page/29/ListItem/5'></content-ref><content-ref src='/page/29/ListItem/6'></content-ref><content-ref src='/page/29/ListItem/7'></content-ref><content-ref src='/page/29/ListItem/8'></content-ref><content-ref src='/page/29/ListItem/9'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              136.51171875\n            ],\n            [\n              482.607421875,\n              136.51171875\n            ],\n            [\n              482.607421875,\n              327.3329772949219\n            ],\n            [\n              85.3154296875,\n              327.3329772949219\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            136.51171875,\n            482.607421875,\n            327.3329772949219\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/29/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>executable:</b> Another name for object code that is ready to be executed.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  136.51171875\n                ],\n                [\n                  398.0390625,\n                  136.51171875\n                ],\n                [\n                  398.0390625,\n                  146.78594970703125\n                ],\n                [\n                  85.6142578125,\n                  146.78594970703125\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                136.51171875,\n                398.0390625,\n                146.78594970703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>prompt:</b> Characters displayed by the interpreter to indicate that it is ready to take input from the user.</li>\",\n              \"polygon\": [\n                [\n                  85.3154296875,\n                  160.48828125\n                ],\n                [\n                  482.40313720703125,\n                  160.48828125\n                ],\n                [\n                  482.40313720703125,\n                  182.97393798828125\n                ],\n                [\n                  85.3154296875,\n                  182.97393798828125\n                ]\n              ],\n              \"bbox\": [\n                85.3154296875,\n                160.48828125,\n                482.40313720703125,\n                182.97393798828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>script:</b> A program stored in a file (usually one that will be interpreted).</li>\",\n              \"polygon\": [\n                [\n                  85.763671875,\n                  196.83984375\n                ],\n                [\n                  399.533203125,\n                  196.83984375\n                ],\n                [\n                  399.533203125,\n                  206.96795654296875\n                ],\n                [\n                  85.763671875,\n                  206.96795654296875\n                ]\n              ],\n              \"bbox\": [\n                85.763671875,\n                196.83984375,\n                399.533203125,\n                206.96795654296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>interactive mode:</b> A way of using the Python interpreter by typing commands and expressions at the prompt.</li>\",\n              \"polygon\": [\n                [\n                  85.3154296875,\n                  220.4296875\n                ],\n                [\n                  482.4031066894531,\n                  220.4296875\n                ],\n                [\n                  482.4031066894531,\n                  243.156982421875\n                ],\n                [\n                  85.3154296875,\n                  243.156982421875\n                ]\n              ],\n              \"bbox\": [\n                85.3154296875,\n                220.4296875,\n                482.4031066894531,\n                243.156982421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>script mode:</b> A way of using the Python interpreter to read and execute statements in a script.</li>\",\n              \"polygon\": [\n                [\n                  85.46484375,\n                  256.974609375\n                ],\n                [\n                  482.607421875,\n                  256.974609375\n                ],\n                [\n                  482.607421875,\n                  279.34503173828125\n                ],\n                [\n                  85.46484375,\n                  279.34503173828125\n                ]\n              ],\n              \"bbox\": [\n                85.46484375,\n                256.974609375,\n                482.607421875,\n                279.34503173828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>program:</b> A set of instructions that specifies a computation.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  293.2792663574219\n                ],\n                [\n                  349.2228698730469,\n                  293.2792663574219\n                ],\n                [\n                  349.2228698730469,\n                  303.3389892578125\n                ],\n                [\n                  85.6142578125,\n                  303.3389892578125\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                293.2792663574219,\n                349.2228698730469,\n                303.3389892578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>algorithm:</b> A general process for solving a category of problems.</li>\",\n              \"polygon\": [\n                [\n                  85.53955078125,\n                  317.27325439453125\n                ],\n                [\n                  372.51519775390625,\n                  317.27325439453125\n                ],\n                [\n                  372.51519775390625,\n                  327.3329772949219\n                ],\n                [\n                  85.53955078125,\n                  327.3329772949219\n                ]\n              ],\n              \"bbox\": [\n                85.53955078125,\n                317.27325439453125,\n                372.51519775390625,\n                327.3329772949219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/29/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>bug:</b> An error in a program.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              341.2672424316406\n            ],\n            [\n              211.5397491455078,\n              341.2672424316406\n            ],\n            [\n              211.5397491455078,\n              351.32696533203125\n            ],\n            [\n              86.0625,\n              351.32696533203125\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            341.2672424316406,\n            211.5397491455078,\n            351.32696533203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/29/ListGroup/158\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/29/ListItem/11'></content-ref><content-ref src='/page/29/ListItem/12'></content-ref><content-ref src='/page/29/ListItem/13'></content-ref><content-ref src='/page/29/ListItem/14'></content-ref><content-ref src='/page/29/ListItem/15'></content-ref><content-ref src='/page/29/ListItem/16'></content-ref><content-ref src='/page/29/ListItem/17'></content-ref><content-ref src='/page/29/ListItem/18'></content-ref><content-ref src='/page/29/ListItem/19'></content-ref><content-ref src='/page/29/ListItem/20'></content-ref><content-ref src='/page/29/ListItem/21'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              365.26123046875\n            ],\n            [\n              483.205078125,\n              365.26123046875\n            ],\n            [\n              483.205078125,\n              700.6209335327148\n            ],\n            [\n              85.166015625,\n              700.6209335327148\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            365.26123046875,\n            483.205078125,\n            700.6209335327148\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/29/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>debugging:</b> The process of finding and removing any of the three kinds of programming errors.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  365.26123046875\n                ],\n                [\n                  482.90625,\n                  365.26123046875\n                ],\n                [\n                  482.90625,\n                  387.51495361328125\n                ],\n                [\n                  85.6142578125,\n                  387.51495361328125\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                365.26123046875,\n                482.90625,\n                387.51495361328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>syntax:</b> The structure of a program.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  401.4140625\n                ],\n                [\n                  244.04832458496094,\n                  401.4140625\n                ],\n                [\n                  244.04832458496094,\n                  411.5089416503906\n                ],\n                [\n                  85.6142578125,\n                  411.5089416503906\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                401.4140625,\n                244.04832458496094,\n                411.5089416503906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>syntax error:</b> An error in a program that makes it impossible to parse (and therefore impossible to interpret).</li>\",\n              \"polygon\": [\n                [\n                  85.46484375,\n                  425.4432067871094\n                ],\n                [\n                  482.607421875,\n                  425.4432067871094\n                ],\n                [\n                  482.607421875,\n                  447.69793701171875\n                ],\n                [\n                  85.46484375,\n                  447.69793701171875\n                ]\n              ],\n              \"bbox\": [\n                85.46484375,\n                425.4432067871094,\n                482.607421875,\n                447.69793701171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>exception:</b> An error that is detected while the program is running.</li>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  461.6322021484375\n                ],\n                [\n                  379.44000244140625,\n                  461.6322021484375\n                ],\n                [\n                  379.44000244140625,\n                  471.6919250488281\n                ],\n                [\n                  85.166015625,\n                  471.6919250488281\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                461.6322021484375,\n                379.44000244140625,\n                471.6919250488281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>semantics:</b> The meaning of a program.</li>\",\n              \"polygon\": [\n                [\n                  85.68896484375,\n                  485.6261901855469\n                ],\n                [\n                  258.78515625,\n                  485.6261901855469\n                ],\n                [\n                  258.78515625,\n                  495.6859130859375\n                ],\n                [\n                  85.68896484375,\n                  495.6859130859375\n                ]\n              ],\n              \"bbox\": [\n                85.68896484375,\n                485.6261901855469,\n                258.78515625,\n                495.6859130859375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>semantic error:</b> An error in a program that makes it do something other than what the programmer intended.</li>\",\n              \"polygon\": [\n                [\n                  85.46484375,\n                  509.30859375\n                ],\n                [\n                  483.205078125,\n                  509.30859375\n                ],\n                [\n                  483.205078125,\n                  531.8739013671875\n                ],\n                [\n                  85.46484375,\n                  531.8739013671875\n                ]\n              ],\n              \"bbox\": [\n                85.46484375,\n                509.30859375,\n                483.205078125,\n                531.8739013671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>natural language:</b> Any one of the languages that people speak that evolved naturally.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  545.8081970214844\n                ],\n                [\n                  464.6596984863281,\n                  545.8081970214844\n                ],\n                [\n                  464.6596984863281,\n                  555.8679046630859\n                ],\n                [\n                  85.6142578125,\n                  555.8679046630859\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                545.8081970214844,\n                464.6596984863281,\n                555.8679046630859\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>formal language:</b> Any one of the languages that people have designed for specific purposes, such as representing mathematical ideas or computer programs; all programming languages are formal languages.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  569.63671875\n                ],\n                [\n                  482.4039001464844,\n                  569.63671875\n                ],\n                [\n                  482.4039001464844,\n                  604.2509155273438\n                ],\n                [\n                  85.6142578125,\n                  604.2509155273438\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                569.63671875,\n                482.4039001464844,\n                604.2509155273438\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/19\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>token:</b> One of the basic elements of the syntactic structure of a program, analogous to a word in a natural language.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  618.1852111816406\n                ],\n                [\n                  482.40301513671875,\n                  618.1852111816406\n                ],\n                [\n                  482.40301513671875,\n                  640.4389190673828\n                ],\n                [\n                  85.6142578125,\n                  640.4389190673828\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                618.1852111816406,\n                482.40301513671875,\n                640.4389190673828\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>parse:</b> To examine a program and analyze the syntactic structure.</li>\",\n              \"polygon\": [\n                [\n                  85.39013671875,\n                  654.3732147216797\n                ],\n                [\n                  374.80670166015625,\n                  654.3732147216797\n                ],\n                [\n                  374.80670166015625,\n                  664.4329299926758\n                ],\n                [\n                  85.39013671875,\n                  664.4329299926758\n                ]\n              ],\n              \"bbox\": [\n                85.39013671875,\n                654.3732147216797,\n                374.80670166015625,\n                664.4329299926758\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/29/ListItem/21\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>print statement:</b> An instruction that causes the Python interpreter to display a value on the screen.</li>\",\n              \"polygon\": [\n                [\n                  85.3154296875,\n                  678.3672180175781\n                ],\n                [\n                  482.90625,\n                  678.3672180175781\n                ],\n                [\n                  482.90625,\n                  700.6209335327148\n                ],\n                [\n                  85.3154296875,\n                  700.6209335327148\n                ]\n              ],\n              \"bbox\": [\n                85.3154296875,\n                678.3672180175781,\n                482.90625,\n                700.6209335327148\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/22/SectionHeader/1\",\n                \"3\": \"/page/28/SectionHeader/1\",\n                \"4\": \"/page/28/SectionHeader/10\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/22/SectionHeader/1\",\n        \"3\": \"/page/28/SectionHeader/1\",\n        \"4\": \"/page/28/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/30/Page/109\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/30/PageHeader/0'></content-ref><content-ref src='/page/30/PageHeader/8'></content-ref><content-ref src='/page/30/SectionHeader/1'></content-ref><content-ref src='/page/30/Text/2'></content-ref><content-ref src='/page/30/Text/3'></content-ref><content-ref src='/page/30/Text/4'></content-ref><content-ref src='/page/30/Text/5'></content-ref><content-ref src='/page/30/Text/6'></content-ref><content-ref src='/page/30/Text/7'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/30/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.09375,\n              61.171142578125\n            ],\n            [\n              525.600341796875,\n              61.171142578125\n            ],\n            [\n              525.600341796875,\n              71.13372802734375\n            ],\n            [\n              129.09375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            61.171142578125,\n            525.600341796875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/30/PageHeader/8\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              519.662109375,\n              60.521484375\n            ],\n            [\n              526.236328125,\n              60.521484375\n            ],\n            [\n              526.236328125,\n              69.99609375\n            ],\n            [\n              519.662109375,\n              69.99609375\n            ]\n          ],\n          \"bbox\": [\n            519.662109375,\n            60.521484375,\n            526.236328125,\n            69.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/28/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/30/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-30-0\\\"></span><b>1.8 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              85.63177490234375\n            ],\n            [\n              221.63088989257812,\n              85.63177490234375\n            ],\n            [\n              221.63088989257812,\n              99.97796630859375\n            ],\n            [\n              128.49609375,\n              99.97796630859375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            85.63177490234375,\n            221.63088989257812,\n            99.97796630859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/30/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/30/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 1.2.</b> <i>Use a web browser to go to the Python website</i> <a href=\\\"http://python.org\\\">http:</a> <a href=\\\"http://python.org\\\">//</a> <a href=\\\"http://python.org\\\">python.</a> <a href=\\\"http://python.org\\\">org</a> <i>. This page</i> <i>contains information about Python and links to Python-related pages, and it gives you the ability to</i> <i>search the Python documentation.</i></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              112.0699462890625\n            ],\n            [\n              525.604248046875,\n              112.0699462890625\n            ],\n            [\n              525.604248046875,\n              146.50115966796875\n            ],\n            [\n              128.49609375,\n              146.50115966796875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            112.0699462890625,\n            525.604248046875,\n            146.50115966796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/30/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/30/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>For example, if you enter</i> print <i>in the search window, the first link that appears is the documenta</i><i>tion of the</i> print <i>statement. At this point, not all of it will make sense to you, but it is good to know</i> <i>where it is.</i></p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              156.427734375\n            ],\n            [\n              525.9375,\n              156.427734375\n            ],\n            [\n              525.9375,\n              191.02716064453125\n            ],\n            [\n              128.3466796875,\n              191.02716064453125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            156.427734375,\n            525.9375,\n            191.02716064453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/30/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/30/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 1.3.</b> <i>Start the Python interpreter and type</i> help() <i>to start the online help utility. Or you</i> <i>can type</i> help('print') <i>to get information about the</i> print <i>statement.</i></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              192.97265625\n            ],\n            [\n              525.599365234375,\n              192.97265625\n            ],\n            [\n              525.599365234375,\n              215.4393310546875\n            ],\n            [\n              128.9443359375,\n              215.4393310546875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            192.97265625,\n            525.599365234375,\n            215.4393310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/30/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/30/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>If this example doesn't work, you may need to install additional Python documentation or set an</i> <i>environment variable; the details depend on your operating system and version of Python.</i></p>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              225.45703125\n            ],\n            [\n              525.9375,\n              225.45703125\n            ],\n            [\n              525.9375,\n              247.88671875\n            ],\n            [\n              127.4501953125,\n              247.88671875\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            225.45703125,\n            525.9375,\n            247.88671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/30/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/30/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 1.4.</b> <i>Start the Python interpreter and use it as a calculator. Python's syntax for math</i> <i>operations is almost the same as standard mathematical notation. For example, the symbols</i> +<i>,</i> - <i>and</i> / <i>denote addition, subtraction and division, as you would expect. The symbol for multiplication is</i> *<i>.</i></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              249.9796142578125\n            ],\n            [\n              525.9375,\n              249.9796142578125\n            ],\n            [\n              525.9375,\n              296.5483093261719\n            ],\n            [\n              128.49609375,\n              296.5483093261719\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            249.9796142578125,\n            525.9375,\n            296.5483093261719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/30/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/30/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>If you run a 10 kilometer race in 43 minutes 30 seconds, what is your average time per mile? What</i> <i>is your average speed in miles per hour? (Hint: there are 1.61 kilometers in a mile).</i></p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              306.474609375\n            ],\n            [\n              525.638671875,\n              306.474609375\n            ],\n            [\n              525.638671875,\n              328.904296875\n            ],\n            [\n              128.197265625,\n              328.904296875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            306.474609375,\n            525.638671875,\n            328.904296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/30/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/22/SectionHeader/1\",\n        \"3\": \"/page/28/SectionHeader/1\",\n        \"4\": \"/page/30/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/31/Page/3\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/31/PageHeader/1'></content-ref><content-ref src='/page/31/Text/0'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/31/PageHeader/1\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              60.8115234375\n            ],\n            [\n              95.69970703125,\n              60.8115234375\n            ],\n            [\n              95.69970703125,\n              69.8994140625\n            ],\n            [\n              85.39013671875,\n              69.8994140625\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            60.8115234375,\n            95.69970703125,\n            69.8994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/30/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/31/Text/0\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>10 Chapter 1. The way of the program</b></p>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.328125\n            ],\n            [\n              482.4034729003906,\n              60.328125\n            ],\n            [\n              482.4034729003906,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.328125,\n            482.4034729003906,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"3\": \"/page/28/SectionHeader/1\",\n            \"4\": \"/page/30/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/22/SectionHeader/1\",\n        \"3\": \"/page/28/SectionHeader/1\",\n        \"4\": \"/page/30/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/32/Page/156\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/32/SectionHeader/0'></content-ref><content-ref src='/page/32/SectionHeader/1'></content-ref><content-ref src='/page/32/SectionHeader/2'></content-ref><content-ref src='/page/32/Text/3'></content-ref><content-ref src='/page/32/Text/4'></content-ref><content-ref src='/page/32/Text/5'></content-ref><content-ref src='/page/32/Code/6'></content-ref><content-ref src='/page/32/Text/7'></content-ref><content-ref src='/page/32/Code/8'></content-ref><content-ref src='/page/32/Text/9'></content-ref><content-ref src='/page/32/Code/10'></content-ref><content-ref src='/page/32/Text/11'></content-ref><content-ref src='/page/32/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/32/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-32-0\\\"></span><b>Chapter 2</b></h2>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              164.935546875\n            ],\n            [\n              220.9833984375,\n              164.935546875\n            ],\n            [\n              220.9833984375,\n              185.71087646484375\n            ],\n            [\n              128.9443359375,\n              185.71087646484375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            164.935546875,\n            220.9833984375,\n            185.71087646484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/22/SectionHeader/1\",\n            \"2\": \"/page/32/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Variables, expressions and</b> <b>statements</b></h1>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              219.462890625\n            ],\n            [\n              430.3125,\n              219.462890625\n            ],\n            [\n              430.3125,\n              276.60333251953125\n            ],\n            [\n              128.9443359375,\n              276.60333251953125\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            219.462890625,\n            430.3125,\n            276.60333251953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-32-1\\\"></span><b>2.1 Values and types</b></h4>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              326.390625\n            ],\n            [\n              273.427734375,\n              326.390625\n            ],\n            [\n              273.427734375,\n              340.7639465332031\n            ],\n            [\n              128.794921875,\n              340.7639465332031\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            326.390625,\n            273.427734375,\n            340.7639465332031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>value</b> is one of the basic things a program works with, like a letter or a number. The values we have seen so far are 1, 2, and 'Hello, World!'.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              353.654296875\n            ],\n            [\n              525.9375,\n              353.654296875\n            ],\n            [\n              525.9375,\n              376.5628662109375\n            ],\n            [\n              129.09375,\n              376.5628662109375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            353.654296875,\n            525.9375,\n            376.5628662109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">These values belong to different <b>types</b>: 2 is an integer, and 'Hello, World!' is a <b>string</b>, so-called because it contains a \\\"string\\\" of letters. You (and the interpreter) can identify strings because they are enclosed in quotation marks.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              387.10546875\n            ],\n            [\n              525.9375,\n              387.10546875\n            ],\n            [\n              525.9375,\n              422.015869140625\n            ],\n            [\n              129.09375,\n              422.015869140625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            387.10546875,\n            525.9375,\n            422.015869140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are not sure what type a value has, the interpreter can tell you.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              432.73828125\n            ],\n            [\n              432.9710693359375,\n              432.73828125\n            ],\n            [\n              432.9710693359375,\n              443.0798645019531\n            ],\n            [\n              128.49609375,\n              443.0798645019531\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            432.73828125,\n            432.9710693359375,\n            443.0798645019531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; type('Hello, World!')\\n&lt;type 'str'&gt;\\n&gt;&gt;&gt; type(17)\\n&lt;type 'int'&gt;</pre>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              449.75390625\n            ],\n            [\n              260.3293762207031,\n              449.75390625\n            ],\n            [\n              260.3293762207031,\n              499.25390625\n            ],\n            [\n              129.392578125,\n              499.25390625\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            449.75390625,\n            260.3293762207031,\n            499.25390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Not surprisingly, strings belong to the type str and integers belong to the type int. Less obviously, numbers with a decimal point belong to a type called float, because these numbers are represented in a format called <b>floating-point</b>.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              503.7347412109375\n            ],\n            [\n              525.9375,\n              503.7347412109375\n            ],\n            [\n              525.9375,\n              538.2359008789062\n            ],\n            [\n              129.09375,\n              538.2359008789062\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            503.7347412109375,\n            525.9375,\n            538.2359008789062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; type(3.2)\\n&lt;type 'float'&gt;</pre>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              545.2157440185547\n            ],\n            [\n              202.80833435058594,\n              545.2157440185547\n            ],\n            [\n              202.80833435058594,\n              567.3733520507812\n            ],\n            [\n              128.42138671875,\n              567.3733520507812\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            545.2157440185547,\n            202.80833435058594,\n            567.3733520507812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">What about values like '17' and '3.2'? They look like numbers, but they are in quotation marks like strings.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              574.27734375\n            ],\n            [\n              525.9375,\n              574.27734375\n            ],\n            [\n              525.9375,\n              596.8088989257812\n            ],\n            [\n              129.2431640625,\n              596.8088989257812\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            574.27734375,\n            525.9375,\n            596.8088989257812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; type('17')\\n&lt;type 'str'&gt;\\n&gt;&gt;&gt; type('3.2')\\n&lt;type 'str'&gt;</pre>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              603.66796875\n            ],\n            [\n              208.03836059570312,\n              603.66796875\n            ],\n            [\n              208.03836059570312,\n              653.16796875\n            ],\n            [\n              128.72021484375,\n              653.16796875\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            603.66796875,\n            208.03836059570312,\n            653.16796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">They're strings.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              657.6143188476562\n            ],\n            [\n              197.96336364746094,\n              657.6143188476562\n            ],\n            [\n              197.96336364746094,\n              667.86328125\n            ],\n            [\n              128.9443359375,\n              667.86328125\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            657.6143188476562,\n            197.96336364746094,\n            667.86328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/32/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you type a large integer, you might be tempted to use commas between groups of three digits, as in 1,000,000. This is not a legal integer in Python, but it is legal:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              678.3046875\n            ],\n            [\n              526.236328125,\n              678.3046875\n            ],\n            [\n              526.236328125,\n              700.8349227905273\n            ],\n            [\n              128.197265625,\n              700.8349227905273\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            678.3046875,\n            526.236328125,\n            700.8349227905273\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/32/SectionHeader/1\",\n        \"4\": \"/page/32/SectionHeader/2\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/33/Page/174\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/33/PageHeader/0'></content-ref><content-ref src='/page/33/PageHeader/16'></content-ref><content-ref src='/page/33/TextInlineMath/1'></content-ref><content-ref src='/page/33/Text/2'></content-ref><content-ref src='/page/33/TextInlineMath/3'></content-ref><content-ref src='/page/33/Text/4'></content-ref><content-ref src='/page/33/SectionHeader/5'></content-ref><content-ref src='/page/33/Text/6'></content-ref><content-ref src='/page/33/Text/7'></content-ref><content-ref src='/page/33/Code/8'></content-ref><content-ref src='/page/33/Text/9'></content-ref><content-ref src='/page/33/Text/10'></content-ref><content-ref src='/page/33/Text/11'></content-ref><content-ref src='/page/33/Code/12'></content-ref><content-ref src='/page/33/SectionHeader/13'></content-ref><content-ref src='/page/33/Text/14'></content-ref><content-ref src='/page/33/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/33/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.85986328125\n            ],\n            [\n              482.90625,\n              60.85986328125\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.85986328125,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              60.71484375\n            ],\n            [\n              96.3720703125,\n              60.71484375\n            ],\n            [\n              96.3720703125,\n              70.4794921875\n            ],\n            [\n              85.3154296875,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            60.71484375,\n            96.3720703125,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/TextInlineMath/1\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">message n pi 17 'And now for something completely different' 3.1415926535897932</p>\",\n          \"polygon\": [\n            [\n              159.275390625,\n              88.4619140625\n            ],\n            [\n              403.716796875,\n              88.4619140625\n            ],\n            [\n              403.716796875,\n              133.1279296875\n            ],\n            [\n              159.275390625,\n              133.1279296875\n            ]\n          ],\n          \"bbox\": [\n            159.275390625,\n            88.4619140625,\n            403.716796875,\n            133.1279296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-33-2\\\"></span>Figure 2.1: State diagram.</p>\",\n          \"polygon\": [\n            [\n              227.2587890625,\n              148.0166015625\n            ],\n            [\n              340.75885009765625,\n              148.0166015625\n            ],\n            [\n              340.75885009765625,\n              158.7529296875\n            ],\n            [\n              227.2587890625,\n              158.7529296875\n            ]\n          ],\n          \"bbox\": [\n            227.2587890625,\n            148.0166015625,\n            340.75885009765625,\n            158.7529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/TextInlineMath/3\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; 1,000,000 (1, 0, 0)</p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              179.9208984375\n            ],\n            [\n              156.4365234375,\n              179.9208984375\n            ],\n            [\n              156.4365234375,\n              206.314453125\n            ],\n            [\n              85.39013671875,\n              206.314453125\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            179.9208984375,\n            156.4365234375,\n            206.314453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Well, that's not what we expected at all! Python interprets 1,000,000 as a commaseparated sequence of integers. This is the first example we have seen of a semantic error: the code runs without producing an error message, but it doesn't do the \\\"right\\\" thing.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              209.21484375\n            ],\n            [\n              482.4034118652344,\n              209.21484375\n            ],\n            [\n              482.4034118652344,\n              244.24981689453125\n            ],\n            [\n              85.9130859375,\n              244.24981689453125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            209.21484375,\n            482.4034118652344,\n            244.24981689453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"4\": \"/page/32/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-33-0\\\"></span><b>2.2 Variables</b></h3>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              272.830078125\n            ],\n            [\n              180.03765869140625,\n              272.830078125\n            ],\n            [\n              180.03765869140625,\n              288.0208435058594\n            ],\n            [\n              85.9130859375,\n              288.0208435058594\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            272.830078125,\n            180.03765869140625,\n            288.0208435058594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One of the most powerful features of a programming language is the ability to manipulate <b>variables</b>. A variable is a name that refers to a value.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              299.513671875\n            ],\n            [\n              482.4032287597656,\n              299.513671875\n            ],\n            [\n              482.4032287597656,\n              322.561767578125\n            ],\n            [\n              85.763671875,\n              322.561767578125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            299.513671875,\n            482.4032287597656,\n            322.561767578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An <b>assignment statement</b> creates new variables and gives them values:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              331.8046875\n            ],\n            [\n              401.0780029296875,\n              331.8046875\n            ],\n            [\n              401.0780029296875,\n              342.7267761230469\n            ],\n            [\n              86.2119140625,\n              342.7267761230469\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            331.8046875,\n            401.0780029296875,\n            342.7267761230469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; message = 'And now for something completely different'\\n&gt;&gt;&gt; n = 17\\n&gt;&gt;&gt; pi = 3.1415926535897932</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              348.8086242675781\n            ],\n            [\n              389.68939208984375,\n              348.8086242675781\n            ],\n            [\n              389.68939208984375,\n              383.1592102050781\n            ],\n            [\n              85.6142578125,\n              383.1592102050781\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            348.8086242675781,\n            389.68939208984375,\n            383.1592102050781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This example makes three assignments. The first assigns a string to a new variable named message; the second gives the integer 17 to n; the third assigns the (approximate) value of <i>π</i> to pi.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              388.65234375\n            ],\n            [\n              482.90625,\n              388.65234375\n            ],\n            [\n              482.90625,\n              424.701416015625\n            ],\n            [\n              85.9130859375,\n              424.701416015625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            388.65234375,\n            482.90625,\n            424.701416015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A common way to represent variables on paper is to write the name with an arrow pointing to the variable's value. This kind of figure is called a <b>state diagram</b> because it shows what state each of the variables is in (think of it as the variable's state of mind). Figure <a href=\\\"#page-33-2\\\">2.1</a> shows the result of the previous example.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              433.125\n            ],\n            [\n              482.40338134765625,\n              433.125\n            ],\n            [\n              482.40338134765625,\n              480.6398010253906\n            ],\n            [\n              85.46484375,\n              480.6398010253906\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            433.125,\n            482.40338134765625,\n            480.6398010253906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The type of a variable is the type of the value it refers to.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              490.359375\n            ],\n            [\n              333.80120849609375,\n              490.359375\n            ],\n            [\n              333.80120849609375,\n              500.8048095703125\n            ],\n            [\n              85.763671875,\n              500.8048095703125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            490.359375,\n            333.80120849609375,\n            500.8048095703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; type(message)\\n&lt;type 'str'&gt;\\n&gt;&gt;&gt; type(n)\\n&lt;type 'int'&gt;\\n&gt;&gt;&gt; type(pi)\\n&lt;type 'float'&gt;</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              506.8856506347656\n            ],\n            [\n              175.32618713378906,\n              506.8856506347656\n            ],\n            [\n              175.32618713378906,\n              577.8202667236328\n            ],\n            [\n              85.3154296875,\n              577.8202667236328\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            506.8856506347656,\n            175.32618713378906,\n            577.8202667236328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-33-1\\\"></span><b>2.3 Variable names and keywords</b></h4>\",\n          \"polygon\": [\n            [\n              86.0625,\n              607.3946685791016\n            ],\n            [\n              315.92486572265625,\n              607.3946685791016\n            ],\n            [\n              315.92486572265625,\n              621.7408599853516\n            ],\n            [\n              86.0625,\n              621.7408599853516\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            607.3946685791016,\n            315.92486572265625,\n            621.7408599853516\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Programmers generally choose names for their variables that are meaningful—they document what the variable is used for.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              633.83203125\n            ],\n            [\n              482.4033203125,\n              633.83203125\n            ],\n            [\n              482.4033203125,\n              656.2818145751953\n            ],\n            [\n              85.9130859375,\n              656.2818145751953\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            633.83203125,\n            482.4033203125,\n            656.2818145751953\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/33/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Variable names can be arbitrarily long. They can contain both letters and numbers, but they have to begin with a letter. It is legal to use uppercase letters, but it is a good idea to begin variable names with a lowercase letter (you'll see why later).</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              665.15625\n            ],\n            [\n              482.40338134765625,\n              665.15625\n            ],\n            [\n              482.40338134765625,\n              700.8348236083984\n            ],\n            [\n              85.9130859375,\n              700.8348236083984\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            665.15625,\n            482.40338134765625,\n            700.8348236083984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/32/SectionHeader/1\",\n        \"3\": \"/page/33/SectionHeader/5\",\n        \"4\": \"/page/33/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/34/Page/293\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/34/PageHeader/0'></content-ref><content-ref src='/page/34/PageHeader/18'></content-ref><content-ref src='/page/34/Text/1'></content-ref><content-ref src='/page/34/Text/2'></content-ref><content-ref src='/page/34/Code/3'></content-ref><content-ref src='/page/34/Text/4'></content-ref><content-ref src='/page/34/Text/5'></content-ref><content-ref src='/page/34/Text/6'></content-ref><content-ref src='/page/34/Table/7'></content-ref><content-ref src='/page/34/Text/8'></content-ref><content-ref src='/page/34/Text/9'></content-ref><content-ref src='/page/34/SectionHeader/10'></content-ref><content-ref src='/page/34/Text/11'></content-ref><content-ref src='/page/34/Text/12'></content-ref><content-ref src='/page/34/Text/13'></content-ref><content-ref src='/page/34/Text/14'></content-ref><content-ref src='/page/34/Text/15'></content-ref><content-ref src='/page/34/Code/16'></content-ref><content-ref src='/page/34/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/34/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              60.66650390625\n            ],\n            [\n              525.6033935546875,\n              60.66650390625\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              127.7490234375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            60.66650390625,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              515.1796875,\n              60.85986328125\n            ],\n            [\n              525.9375,\n              60.85986328125\n            ],\n            [\n              525.9375,\n              70.14111328125\n            ],\n            [\n              515.1796875,\n              70.14111328125\n            ]\n          ],\n          \"bbox\": [\n            515.1796875,\n            60.85986328125,\n            525.9375,\n            70.14111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The underscore character, _, can appear in a name. It is often used in names with multiple words, such as my_name or airspeed_of_unladen_swallow.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              88.68572998046875\n            ],\n            [\n              525.9375,\n              88.68572998046875\n            ],\n            [\n              525.9375,\n              110.99188232421875\n            ],\n            [\n              128.3466796875,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            88.68572998046875,\n            525.9375,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you give a variable an illegal name, you get a syntax error:</p>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              120.75421142578125\n            ],\n            [\n              395.8703308105469,\n              120.75421142578125\n            ],\n            [\n              395.8703308105469,\n              130.71685791015625\n            ],\n            [\n              129.01904296875,\n              130.71685791015625\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            120.75421142578125,\n            395.8703308105469,\n            130.71685791015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; 76trombones = 'big parade'\\nSyntaxError: invalid syntax\\n&gt;&gt;&gt; more@ = 1000000\\nSyntaxError: invalid syntax\\n&gt;&gt;&gt; class = 'Advanced Theoretical Zymurgy'\\nSyntaxError: invalid syntax</pre>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              136.356689453125\n            ],\n            [\n              349.2234191894531,\n              136.356689453125\n            ],\n            [\n              349.2234191894531,\n              209.98828125\n            ],\n            [\n              129.01904296875,\n              209.98828125\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            136.356689453125,\n            349.2234191894531,\n            209.98828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">76trombones is illegal because it does not begin with a letter. more@ is illegal because it contains an illegal character, @. But what's wrong with class?</p>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              213.0816650390625\n            ],\n            [\n              526.53515625,\n              213.0816650390625\n            ],\n            [\n              526.53515625,\n              235.38787841796875\n            ],\n            [\n              129.60003662109375,\n              235.38787841796875\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            213.0816650390625,\n            526.53515625,\n            235.38787841796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It turns out that class is one of Python's <b>keywords</b>. The interpreter uses keywords to recognize the structure of the program, and they cannot be used as variable names.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              244.986328125\n            ],\n            [\n              525.6009521484375,\n              244.986328125\n            ],\n            [\n              525.6009521484375,\n              267.30682373046875\n            ],\n            [\n              128.6455078125,\n              267.30682373046875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            244.986328125,\n            525.6009521484375,\n            267.30682373046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python 2 has 31 keywords:</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              276.50390625\n            ],\n            [\n              247.50743103027344,\n              276.50390625\n            ],\n            [\n              247.50743103027344,\n              287.0307922363281\n            ],\n            [\n              127.599609375,\n              287.0307922363281\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            276.50390625,\n            247.50743103027344,\n            287.0307922363281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Table/7\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>and</th><th>del</th><th>from</th><th>not</th><th>while</th></tr><tr><td>as</td><td>elif</td><td>global</td><td>or</td><td>with</td></tr><tr><td>assert</td><td>else</td><td>if</td><td>pass</td><td>yield</td></tr><tr><td>break</td><td>except</td><td>import</td><td>print</td><td></td></tr><tr><td>class</td><td>exec</td><td>in</td><td>raise</td><td></td></tr><tr><td>continue</td><td>finally</td><td>is</td><td>return</td><td></td></tr><tr><td>def</td><td>for</td><td>lambda</td><td>try</td><td></td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              291.392578125\n            ],\n            [\n              364.946533203125,\n              291.392578125\n            ],\n            [\n              364.946533203125,\n              378.404296875\n            ],\n            [\n              128.0478515625,\n              378.404296875\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            291.392578125,\n            364.946533203125,\n            378.404296875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/34/TableCell/258\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>and</th>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  291.392578125\n                ],\n                [\n                  129.0478515625,\n                  291.392578125\n                ],\n                [\n                  129.0478515625,\n                  292.392578125\n                ],\n                [\n                  128.0478515625,\n                  292.392578125\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                291.392578125,\n                129.0478515625,\n                292.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/259\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>del</th>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  291.392578125\n                ],\n                [\n                  130.0478515625,\n                  291.392578125\n                ],\n                [\n                  130.0478515625,\n                  292.392578125\n                ],\n                [\n                  129.0478515625,\n                  292.392578125\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                291.392578125,\n                130.0478515625,\n                292.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/260\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>from</th>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  291.392578125\n                ],\n                [\n                  131.0478515625,\n                  291.392578125\n                ],\n                [\n                  131.0478515625,\n                  292.392578125\n                ],\n                [\n                  130.0478515625,\n                  292.392578125\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                291.392578125,\n                131.0478515625,\n                292.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/261\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>not</th>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  291.392578125\n                ],\n                [\n                  132.0478515625,\n                  291.392578125\n                ],\n                [\n                  132.0478515625,\n                  292.392578125\n                ],\n                [\n                  131.0478515625,\n                  292.392578125\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                291.392578125,\n                132.0478515625,\n                292.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/262\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>while</th>\",\n              \"polygon\": [\n                [\n                  132.0478515625,\n                  291.392578125\n                ],\n                [\n                  133.0478515625,\n                  291.392578125\n                ],\n                [\n                  133.0478515625,\n                  292.392578125\n                ],\n                [\n                  132.0478515625,\n                  292.392578125\n                ]\n              ],\n              \"bbox\": [\n                132.0478515625,\n                291.392578125,\n                133.0478515625,\n                292.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/263\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>as</td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  292.392578125\n                ],\n                [\n                  129.0478515625,\n                  292.392578125\n                ],\n                [\n                  129.0478515625,\n                  293.392578125\n                ],\n                [\n                  128.0478515625,\n                  293.392578125\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                292.392578125,\n                129.0478515625,\n                293.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/264\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>elif</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  292.392578125\n                ],\n                [\n                  130.0478515625,\n                  292.392578125\n                ],\n                [\n                  130.0478515625,\n                  293.392578125\n                ],\n                [\n                  129.0478515625,\n                  293.392578125\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                292.392578125,\n                130.0478515625,\n                293.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/265\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>global</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  292.392578125\n                ],\n                [\n                  131.0478515625,\n                  292.392578125\n                ],\n                [\n                  131.0478515625,\n                  293.392578125\n                ],\n                [\n                  130.0478515625,\n                  293.392578125\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                292.392578125,\n                131.0478515625,\n                293.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/266\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>or</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  292.392578125\n                ],\n                [\n                  132.0478515625,\n                  292.392578125\n                ],\n                [\n                  132.0478515625,\n                  293.392578125\n                ],\n                [\n                  131.0478515625,\n                  293.392578125\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                292.392578125,\n                132.0478515625,\n                293.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/267\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>with</td>\",\n              \"polygon\": [\n                [\n                  132.0478515625,\n                  292.392578125\n                ],\n                [\n                  133.0478515625,\n                  292.392578125\n                ],\n                [\n                  133.0478515625,\n                  293.392578125\n                ],\n                [\n                  132.0478515625,\n                  293.392578125\n                ]\n              ],\n              \"bbox\": [\n                132.0478515625,\n                292.392578125,\n                133.0478515625,\n                293.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/268\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>assert</td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  293.392578125\n                ],\n                [\n                  129.0478515625,\n                  293.392578125\n                ],\n                [\n                  129.0478515625,\n                  294.392578125\n                ],\n                [\n                  128.0478515625,\n                  294.392578125\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                293.392578125,\n                129.0478515625,\n                294.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/269\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>else</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  293.392578125\n                ],\n                [\n                  130.0478515625,\n                  293.392578125\n                ],\n                [\n                  130.0478515625,\n                  294.392578125\n                ],\n                [\n                  129.0478515625,\n                  294.392578125\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                293.392578125,\n                130.0478515625,\n                294.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/270\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>if</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  293.392578125\n                ],\n                [\n                  131.0478515625,\n                  293.392578125\n                ],\n                [\n                  131.0478515625,\n                  294.392578125\n                ],\n                [\n                  130.0478515625,\n                  294.392578125\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                293.392578125,\n                131.0478515625,\n                294.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/271\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>pass</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  293.392578125\n                ],\n                [\n                  132.0478515625,\n                  293.392578125\n                ],\n                [\n                  132.0478515625,\n                  294.392578125\n                ],\n                [\n                  131.0478515625,\n                  294.392578125\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                293.392578125,\n                132.0478515625,\n                294.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/272\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>yield</td>\",\n              \"polygon\": [\n                [\n                  132.0478515625,\n                  293.392578125\n                ],\n                [\n                  133.0478515625,\n                  293.392578125\n                ],\n                [\n                  133.0478515625,\n                  294.392578125\n                ],\n                [\n                  132.0478515625,\n                  294.392578125\n                ]\n              ],\n              \"bbox\": [\n                132.0478515625,\n                293.392578125,\n                133.0478515625,\n                294.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/273\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>break</td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  294.392578125\n                ],\n                [\n                  129.0478515625,\n                  294.392578125\n                ],\n                [\n                  129.0478515625,\n                  295.392578125\n                ],\n                [\n                  128.0478515625,\n                  295.392578125\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                294.392578125,\n                129.0478515625,\n                295.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/274\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>except</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  294.392578125\n                ],\n                [\n                  130.0478515625,\n                  294.392578125\n                ],\n                [\n                  130.0478515625,\n                  295.392578125\n                ],\n                [\n                  129.0478515625,\n                  295.392578125\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                294.392578125,\n                130.0478515625,\n                295.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/275\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>import</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  294.392578125\n                ],\n                [\n                  131.0478515625,\n                  294.392578125\n                ],\n                [\n                  131.0478515625,\n                  295.392578125\n                ],\n                [\n                  130.0478515625,\n                  295.392578125\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                294.392578125,\n                131.0478515625,\n                295.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/276\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>print</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  294.392578125\n                ],\n                [\n                  132.0478515625,\n                  294.392578125\n                ],\n                [\n                  132.0478515625,\n                  295.392578125\n                ],\n                [\n                  131.0478515625,\n                  295.392578125\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                294.392578125,\n                132.0478515625,\n                295.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/277\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  132.0478515625,\n                  294.392578125\n                ],\n                [\n                  133.0478515625,\n                  294.392578125\n                ],\n                [\n                  133.0478515625,\n                  295.392578125\n                ],\n                [\n                  132.0478515625,\n                  295.392578125\n                ]\n              ],\n              \"bbox\": [\n                132.0478515625,\n                294.392578125,\n                133.0478515625,\n                295.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/278\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>class</td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  295.392578125\n                ],\n                [\n                  129.0478515625,\n                  295.392578125\n                ],\n                [\n                  129.0478515625,\n                  296.392578125\n                ],\n                [\n                  128.0478515625,\n                  296.392578125\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                295.392578125,\n                129.0478515625,\n                296.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/279\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>exec</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  295.392578125\n                ],\n                [\n                  130.0478515625,\n                  295.392578125\n                ],\n                [\n                  130.0478515625,\n                  296.392578125\n                ],\n                [\n                  129.0478515625,\n                  296.392578125\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                295.392578125,\n                130.0478515625,\n                296.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/280\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>in</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  295.392578125\n                ],\n                [\n                  131.0478515625,\n                  295.392578125\n                ],\n                [\n                  131.0478515625,\n                  296.392578125\n                ],\n                [\n                  130.0478515625,\n                  296.392578125\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                295.392578125,\n                131.0478515625,\n                296.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/281\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>raise</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  295.392578125\n                ],\n                [\n                  132.0478515625,\n                  295.392578125\n                ],\n                [\n                  132.0478515625,\n                  296.392578125\n                ],\n                [\n                  131.0478515625,\n                  296.392578125\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                295.392578125,\n                132.0478515625,\n                296.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/282\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  132.0478515625,\n                  295.392578125\n                ],\n                [\n                  133.0478515625,\n                  295.392578125\n                ],\n                [\n                  133.0478515625,\n                  296.392578125\n                ],\n                [\n                  132.0478515625,\n                  296.392578125\n                ]\n              ],\n              \"bbox\": [\n                132.0478515625,\n                295.392578125,\n                133.0478515625,\n                296.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/283\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>continue</td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  296.392578125\n                ],\n                [\n                  129.0478515625,\n                  296.392578125\n                ],\n                [\n                  129.0478515625,\n                  297.392578125\n                ],\n                [\n                  128.0478515625,\n                  297.392578125\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                296.392578125,\n                129.0478515625,\n                297.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/284\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>finally</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  296.392578125\n                ],\n                [\n                  130.0478515625,\n                  296.392578125\n                ],\n                [\n                  130.0478515625,\n                  297.392578125\n                ],\n                [\n                  129.0478515625,\n                  297.392578125\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                296.392578125,\n                130.0478515625,\n                297.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/285\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>is</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  296.392578125\n                ],\n                [\n                  131.0478515625,\n                  296.392578125\n                ],\n                [\n                  131.0478515625,\n                  297.392578125\n                ],\n                [\n                  130.0478515625,\n                  297.392578125\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                296.392578125,\n                131.0478515625,\n                297.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/286\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>return</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  296.392578125\n                ],\n                [\n                  132.0478515625,\n                  296.392578125\n                ],\n                [\n                  132.0478515625,\n                  297.392578125\n                ],\n                [\n                  131.0478515625,\n                  297.392578125\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                296.392578125,\n                132.0478515625,\n                297.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/287\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  132.0478515625,\n                  296.392578125\n                ],\n                [\n                  133.0478515625,\n                  296.392578125\n                ],\n                [\n                  133.0478515625,\n                  297.392578125\n                ],\n                [\n                  132.0478515625,\n                  297.392578125\n                ]\n              ],\n              \"bbox\": [\n                132.0478515625,\n                296.392578125,\n                133.0478515625,\n                297.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/288\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>def</td>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  297.392578125\n                ],\n                [\n                  129.0478515625,\n                  297.392578125\n                ],\n                [\n                  129.0478515625,\n                  298.392578125\n                ],\n                [\n                  128.0478515625,\n                  298.392578125\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                297.392578125,\n                129.0478515625,\n                298.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/289\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>for</td>\",\n              \"polygon\": [\n                [\n                  129.0478515625,\n                  297.392578125\n                ],\n                [\n                  130.0478515625,\n                  297.392578125\n                ],\n                [\n                  130.0478515625,\n                  298.392578125\n                ],\n                [\n                  129.0478515625,\n                  298.392578125\n                ]\n              ],\n              \"bbox\": [\n                129.0478515625,\n                297.392578125,\n                130.0478515625,\n                298.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/290\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>lambda</td>\",\n              \"polygon\": [\n                [\n                  130.0478515625,\n                  297.392578125\n                ],\n                [\n                  131.0478515625,\n                  297.392578125\n                ],\n                [\n                  131.0478515625,\n                  298.392578125\n                ],\n                [\n                  130.0478515625,\n                  298.392578125\n                ]\n              ],\n              \"bbox\": [\n                130.0478515625,\n                297.392578125,\n                131.0478515625,\n                298.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/291\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>try</td>\",\n              \"polygon\": [\n                [\n                  131.0478515625,\n                  297.392578125\n                ],\n                [\n                  132.0478515625,\n                  297.392578125\n                ],\n                [\n                  132.0478515625,\n                  298.392578125\n                ],\n                [\n                  131.0478515625,\n                  298.392578125\n                ]\n              ],\n              \"bbox\": [\n                131.0478515625,\n                297.392578125,\n                132.0478515625,\n                298.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/34/TableCell/292\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  132.0478515625,\n                  297.392578125\n                ],\n                [\n                  133.0478515625,\n                  297.392578125\n                ],\n                [\n                  133.0478515625,\n                  298.392578125\n                ],\n                [\n                  132.0478515625,\n                  298.392578125\n                ]\n              ],\n              \"bbox\": [\n                132.0478515625,\n                297.392578125,\n                133.0478515625,\n                298.392578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"3\": \"/page/33/SectionHeader/5\",\n                \"4\": \"/page/33/SectionHeader/13\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/34/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In Python 3, exec is no longer a keyword, but nonlocal is.</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              381.59063720703125\n            ],\n            [\n              386.2499694824219,\n              381.59063720703125\n            ],\n            [\n              386.2499694824219,\n              391.7027893066406\n            ],\n            [\n              128.57080078125,\n              391.7027893066406\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            381.59063720703125,\n            386.2499694824219,\n            391.7027893066406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You might want to keep this list handy. If the interpreter complains about one of your variable names and you don't know why, see if it is on this list.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              401.4140625\n            ],\n            [\n              525.6033325195312,\n              401.4140625\n            ],\n            [\n              525.6033325195312,\n              423.6217956542969\n            ],\n            [\n              128.794921875,\n              423.6217956542969\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            401.4140625,\n            525.6033325195312,\n            423.6217956542969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/33/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-34-0\\\"></span><b>2.4 Operators and operands</b></h4>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              452.3846435546875\n            ],\n            [\n              319.6728820800781,\n              452.3846435546875\n            ],\n            [\n              319.6728820800781,\n              466.7308654785156\n            ],\n            [\n              128.42138671875,\n              466.7308654785156\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            452.3846435546875,\n            319.6728820800781,\n            466.7308654785156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Operators</b> are special symbols that represent computations like addition and multiplication. The values the operator is applied to are called <b>operands</b>.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              478.37109375\n            ],\n            [\n              525.6018676757812,\n              478.37109375\n            ],\n            [\n              525.6018676757812,\n              500.82080078125\n            ],\n            [\n              128.49609375,\n              500.82080078125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            478.37109375,\n            525.6018676757812,\n            500.82080078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The operators +, -, *, / and ** perform addition, subtraction, multiplication, division and exponentiation, as in the following examples:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              510.08203125\n            ],\n            [\n              525.638671875,\n              510.08203125\n            ],\n            [\n              525.638671875,\n              532.7388000488281\n            ],\n            [\n              128.197265625,\n              532.7388000488281\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            510.08203125,\n            525.638671875,\n            532.7388000488281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">20+32 hour-1 hour*60+minute minute/60 5**2 (5+9)*(15-7)</p>\",\n          \"polygon\": [\n            [\n              126.703125,\n              538.3796539306641\n            ],\n            [\n              469.5838317871094,\n              538.3796539306641\n            ],\n            [\n              469.5838317871094,\n              548.3671875\n            ],\n            [\n              126.703125,\n              548.3671875\n            ]\n          ],\n          \"bbox\": [\n            126.703125,\n            538.3796539306641,\n            469.5838317871094,\n            548.3671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In some other languages, ^ is used for exponentiation, but in Python it is a bitwise operator called XOR. I won't cover bitwise operators in this book, but you can read about them at <a href=\\\"http://wiki.python.org/moin/BitwiseOperators\\\">http://wiki.python.org/moin/BitwiseOperators</a>.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              554.1326599121094\n            ],\n            [\n              525.6033325195312,\n              554.1326599121094\n            ],\n            [\n              525.6033325195312,\n              588.6338195800781\n            ],\n            [\n              128.0478515625,\n              588.6338195800781\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            554.1326599121094,\n            525.6033325195312,\n            588.6338195800781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In Python 2, the division operator might not do what you expect:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              598.25390625\n            ],\n            [\n              415.34735107421875,\n              598.25390625\n            ],\n            [\n              415.34735107421875,\n              608.3578186035156\n            ],\n            [\n              128.3466796875,\n              608.3578186035156\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            598.25390625,\n            415.34735107421875,\n            608.3578186035156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; minute = 59\\n&gt;&gt;&gt; minute/60\\n0</pre>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              613.9986724853516\n            ],\n            [\n              208.05555725097656,\n              613.9986724853516\n            ],\n            [\n              208.05555725097656,\n              648.3492736816406\n            ],\n            [\n              128.49609375,\n              648.3492736816406\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            613.9986724853516,\n            208.05555725097656,\n            648.3492736816406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/34/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The value of minute is 59, and in conventional arithmetic 59 divided by 60 is 0.98333, not 0. The reason for the discrepancy is that Python is performing <b>floor division</b>. When both of the operands are integers, the result is also an integer; floor division chops off the fraction part, so in this example it rounds down to zero.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              653.94140625\n            ],\n            [\n              525.9375,\n              653.94140625\n            ],\n            [\n              525.9375,\n              700.8348388671875\n            ],\n            [\n              128.6455078125,\n              700.8348388671875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            653.94140625,\n            525.9375,\n            700.8348388671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/32/SectionHeader/1\",\n        \"3\": \"/page/33/SectionHeader/5\",\n        \"4\": \"/page/34/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/35/Page/160\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/35/PageHeader/0'></content-ref><content-ref src='/page/35/PageHeader/19'></content-ref><content-ref src='/page/35/Text/1'></content-ref><content-ref src='/page/35/Text/2'></content-ref><content-ref src='/page/35/Text/3'></content-ref><content-ref src='/page/35/SectionHeader/4'></content-ref><content-ref src='/page/35/Text/5'></content-ref><content-ref src='/page/35/Text/6'></content-ref><content-ref src='/page/35/Text/7'></content-ref><content-ref src='/page/35/Text/8'></content-ref><content-ref src='/page/35/SectionHeader/9'></content-ref><content-ref src='/page/35/Text/10'></content-ref><content-ref src='/page/35/Text/11'></content-ref><content-ref src='/page/35/Code/12'></content-ref><content-ref src='/page/35/Text/13'></content-ref><content-ref src='/page/35/Text/14'></content-ref><content-ref src='/page/35/Code/158'></content-ref><content-ref src='/page/35/Text/16'></content-ref><content-ref src='/page/35/Text/17'></content-ref><content-ref src='/page/35/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/35/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.76318359375\n            ],\n            [\n              483.50390625,\n              60.76318359375\n            ],\n            [\n              483.50390625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.76318359375,\n            483.50390625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              60.47314453125\n            ],\n            [\n              97.2685546875,\n              60.47314453125\n            ],\n            [\n              97.2685546875,\n              70.23779296875\n            ],\n            [\n              85.6142578125,\n              70.23779296875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            60.47314453125,\n            97.2685546875,\n            70.23779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In Python 3, the result of this division is a float. The new operator // performs floor division.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              88.171875\n            ],\n            [\n              484.1015625,\n              88.171875\n            ],\n            [\n              484.1015625,\n              110.99188232421875\n            ],\n            [\n              85.9130859375,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            88.171875,\n            484.1015625,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If either of the operands is a floating-point number, Python performs floating-point division, and the result is a float:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              119.49609375\n            ],\n            [\n              482.4033203125,\n              119.49609375\n            ],\n            [\n              482.4033203125,\n              142.88385009765625\n            ],\n            [\n              85.9130859375,\n              142.88385009765625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            119.49609375,\n            482.4033203125,\n            142.88385009765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; minute/60.0 0.98333333333333328</p>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              148.4976806640625\n            ],\n            [\n              186.169921875,\n              148.4976806640625\n            ],\n            [\n              186.169921875,\n              170.6552734375\n            ],\n            [\n              86.13720703125,\n              170.6552734375\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            148.4976806640625,\n            186.169921875,\n            170.6552734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/34/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-35-0\\\"></span><b>2.5 Expressions and statements</b></h4>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              198.966796875\n            ],\n            [\n              298.7524108886719,\n              198.966796875\n            ],\n            [\n              298.7524108886719,\n              213.87689208984375\n            ],\n            [\n              85.6142578125,\n              213.87689208984375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            198.966796875,\n            298.7524108886719,\n            213.87689208984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An <b>expression</b> is a combination of values, variables, and operators. A value all by itself is considered an expression, and so is a variable, so the following are all legal expressions (assuming that the variable x has been assigned a value):</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              225.0703125\n            ],\n            [\n              482.90625,\n              225.0703125\n            ],\n            [\n              482.90625,\n              260.13385009765625\n            ],\n            [\n              85.9130859375,\n              260.13385009765625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            225.0703125,\n            482.90625,\n            260.13385009765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">17 x x + 17</p>\",\n          \"polygon\": [\n            [\n              86.39997863769531,\n              265.2890625\n            ],\n            [\n              117.78216552734375,\n              265.2890625\n            ],\n            [\n              117.78216552734375,\n              300.0992736816406\n            ],\n            [\n              86.39997863769531,\n              300.0992736816406\n            ]\n          ],\n          \"bbox\": [\n            86.39997863769531,\n            265.2890625,\n            117.78216552734375,\n            300.0992736816406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>statement</b> is a unit of code that the Python interpreter can execute. We have seen two kinds of statement: print and assignment.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              305.5078125\n            ],\n            [\n              482.90625,\n              305.5078125\n            ],\n            [\n              482.90625,\n              328.1688537597656\n            ],\n            [\n              86.2119140625,\n              328.1688537597656\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            305.5078125,\n            482.90625,\n            328.1688537597656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Technically an expression is also a statement, but it is probably simpler to think of them as different things. The important difference is that an expression has a value; a statement does not.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              337.412109375\n            ],\n            [\n              482.4034118652344,\n              337.412109375\n            ],\n            [\n              482.4034118652344,\n              372.255859375\n            ],\n            [\n              86.0625,\n              372.255859375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            337.412109375,\n            482.4034118652344,\n            372.255859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-35-1\\\"></span><b>2.6 Interactive mode and script mode</b></h4>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              400.640625\n            ],\n            [\n              337.83148193359375,\n              400.640625\n            ],\n            [\n              337.83148193359375,\n              415.3359375\n            ],\n            [\n              85.39013671875,\n              415.3359375\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            400.640625,\n            337.83148193359375,\n            415.3359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One of the benefits of working with an interpreted language is that you can test bits of code in interactive mode before you put them in a script. But there are differences between interactive mode and script mode that can be confusing.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              426.1640625\n            ],\n            [\n              482.40350341796875,\n              426.1640625\n            ],\n            [\n              482.40350341796875,\n              461.5848693847656\n            ],\n            [\n              86.0625,\n              461.5848693847656\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            426.1640625,\n            482.40350341796875,\n            461.5848693847656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, if you are using Python as a calculator, you might type</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              470.25\n            ],\n            [\n              386.0549621582031,\n              470.25\n            ],\n            [\n              386.0549621582031,\n              481.2828674316406\n            ],\n            [\n              85.83837890625,\n              481.2828674316406\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            470.25,\n            386.0549621582031,\n            481.2828674316406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; miles = 26.2\\n&gt;&gt;&gt; miles * 1.61\\n42.182</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              486.896728515625\n            ],\n            [\n              173.1708984375,\n              486.896728515625\n            ],\n            [\n              173.1708984375,\n              521.2483215332031\n            ],\n            [\n              85.6142578125,\n              521.2483215332031\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            486.896728515625,\n            173.1708984375,\n            521.2483215332031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first line assigns a value to miles, but it has no visible effect. The second line is an expression, so the interpreter evaluates it and displays the result. So we learn that a marathon is about 42 kilometers.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              526.32421875\n            ],\n            [\n              482.607421875,\n              526.32421875\n            ],\n            [\n              482.607421875,\n              561.5129089355469\n            ],\n            [\n              86.0625,\n              561.5129089355469\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            526.32421875,\n            482.607421875,\n            561.5129089355469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But if you type the same code into a script and run it, you get no output at all. In script mode an expression, all by itself, has no visible effect. Python actually evaluates the expression, but it doesn't display the value unless you tell it to:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              570.41015625\n            ],\n            [\n              482.90625,\n              570.41015625\n            ],\n            [\n              482.90625,\n              605.5989227294922\n            ],\n            [\n              85.6142578125,\n              605.5989227294922\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            570.41015625,\n            482.90625,\n            605.5989227294922\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Code/158\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>miles = 26.2\\nprint miles * 1.61</pre>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              609.85546875\n            ],\n            [\n              184.078125,\n              609.85546875\n            ],\n            [\n              184.078125,\n              633.83203125\n            ],\n            [\n              85.68896484375,\n              633.83203125\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            609.85546875,\n            184.078125,\n            633.83203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This behavior can be confusing at first.</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              638.859375\n            ],\n            [\n              256.4216613769531,\n              638.859375\n            ],\n            [\n              256.4216613769531,\n              649.2459259033203\n            ],\n            [\n              85.83837890625,\n              649.2459259033203\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            638.859375,\n            256.4216613769531,\n            649.2459259033203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A script usually contains a sequence of statements. If there is more than one statement, the results appear one at a time as the statements execute.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              658.1953125\n            ],\n            [\n              483.205078125,\n              658.1953125\n            ],\n            [\n              483.205078125,\n              681.1379318237305\n            ],\n            [\n              86.0625,\n              681.1379318237305\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            658.1953125,\n            483.205078125,\n            681.1379318237305\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/35/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, the script</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              690.29296875\n            ],\n            [\n              187.962890625,\n              690.29296875\n            ],\n            [\n              187.962890625,\n              700.8349304199219\n            ],\n            [\n              85.83837890625,\n              700.8349304199219\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            690.29296875,\n            187.962890625,\n            700.8349304199219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/32/SectionHeader/1\",\n        \"3\": \"/page/33/SectionHeader/5\",\n        \"4\": \"/page/35/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/36/Page/192\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/36/PageHeader/0'></content-ref><content-ref src='/page/36/PageHeader/14'></content-ref><content-ref src='/page/36/Text/1'></content-ref><content-ref src='/page/36/TextInlineMath/2'></content-ref><content-ref src='/page/36/Text/3'></content-ref><content-ref src='/page/36/SectionHeader/4'></content-ref><content-ref src='/page/36/Text/5'></content-ref><content-ref src='/page/36/ListGroup/188'></content-ref><content-ref src='/page/36/Text/10'></content-ref><content-ref src='/page/36/SectionHeader/11'></content-ref><content-ref src='/page/36/Text/12'></content-ref><content-ref src='/page/36/TextInlineMath/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/36/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              60.4248046875\n            ],\n            [\n              525.6033935546875,\n              60.4248046875\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.3466796875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            60.4248046875,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/36/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.58203125,\n              60.134765625\n            ],\n            [\n              526.53515625,\n              60.134765625\n            ],\n            [\n              526.53515625,\n              70.189453125\n            ],\n            [\n              514.58203125,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            514.58203125,\n            60.134765625,\n            526.53515625,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/36/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">print 1 x = 2 print x produces the output 1 2 The assignment statement produces no output. <b>Exercise 2.1.</b> <i>Type the following statements in the Python interpreter to see what they do:</i> 5 x = 5</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              86.431640625\n            ],\n            [\n              499.04296875,\n              86.431640625\n            ],\n            [\n              499.04296875,\n              225.67236328125\n            ],\n            [\n              128.49609375,\n              225.67236328125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            86.431640625,\n            499.04296875,\n            225.67236328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/36/TextInlineMath/2\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">x + 1</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              226.23046875\n            ],\n            [\n              155.7518310546875,\n              226.23046875\n            ],\n            [\n              155.7518310546875,\n              237.8663330078125\n            ],\n            [\n              129.5419921875,\n              237.8663330078125\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            226.23046875,\n            155.7518310546875,\n            237.8663330078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/36/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Now put the same statements into a script and run it. What is the output? Modify the script by</i> <i>transforming each expression into a print statement and then run it again.</i></p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              243.24609375\n            ],\n            [\n              525.6033325195312,\n              243.24609375\n            ],\n            [\n              525.6033325195312,\n              266.55120849609375\n            ],\n            [\n              129.60000610351562,\n              266.55120849609375\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            243.24609375,\n            525.6033325195312,\n            266.55120849609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"3\": \"/page/33/SectionHeader/5\",\n            \"4\": \"/page/35/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/36/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-36-0\\\"></span><b>2.7 Order of operations</b></h2>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              295.453125\n            ],\n            [\n              291.357421875,\n              295.453125\n            ],\n            [\n              291.357421875,\n              311.4539794921875\n            ],\n            [\n              128.42138671875,\n              311.4539794921875\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            295.453125,\n            291.357421875,\n            311.4539794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/36/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When more than one operator appears in an expression, the order of evaluation depends on the <b>rules of precedence</b>. For mathematical operators, Python follows mathematical convention. The acronym <b>PEMDAS</b> is a useful way to remember the rules:</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              323.296875\n            ],\n            [\n              527.1328125,\n              323.296875\n            ],\n            [\n              527.1328125,\n              358.6369323730469\n            ],\n            [\n              129.60000610351562,\n              358.6369323730469\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            323.296875,\n            527.1328125,\n            358.6369323730469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/36/ListGroup/188\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/36/ListItem/6'></content-ref><content-ref src='/page/36/ListItem/7'></content-ref><content-ref src='/page/36/ListItem/8'></content-ref><content-ref src='/page/36/ListItem/9'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.83984375,\n              371.443359375\n            ],\n            [\n              526.833984375,\n              371.443359375\n            ],\n            [\n              526.833984375,\n              567.6299743652344\n            ],\n            [\n              142.83984375,\n              567.6299743652344\n            ]\n          ],\n          \"bbox\": [\n            142.83984375,\n            371.443359375,\n            526.833984375,\n            567.6299743652344\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/36/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> <b>P</b>arentheses have the highest precedence and can be used to force an expression to evaluate in the order you want. Since expressions in parentheses are evaluated first, 2 * (3-1) is 4, and (1+1)**(5-2) is 8. You can also use parentheses to make an expression easier to read, as in (minute * 100) / 60, even if it doesn't change the result.</li>\",\n              \"polygon\": [\n                [\n                  143.2880859375,\n                  371.443359375\n                ],\n                [\n                  526.53515625,\n                  371.443359375\n                ],\n                [\n                  526.53515625,\n                  432.3515625\n                ],\n                [\n                  143.2880859375,\n                  432.3515625\n                ]\n              ],\n              \"bbox\": [\n                143.2880859375,\n                371.443359375,\n                526.53515625,\n                432.3515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> <b>E</b>xponentiation has the next highest precedence, so 2**1+1 is 3, not 4, and 3*1**3 is 3, not 27.</li>\",\n              \"polygon\": [\n                [\n                  142.83984375,\n                  440.47265625\n                ],\n                [\n                  526.53515625,\n                  440.47265625\n                ],\n                [\n                  526.53515625,\n                  465.14495849609375\n                ],\n                [\n                  142.83984375,\n                  465.14495849609375\n                ]\n              ],\n              \"bbox\": [\n                142.83984375,\n                440.47265625,\n                526.53515625,\n                465.14495849609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> <b>M</b>ultiplication and <b>D</b>ivision have the same precedence, which is higher than <b>A</b>ddition and <b>S</b>ubtraction, which also have the same precedence. So 2*3-1 is 5, not 4, and 6+4/2 is 8, not 5.</li>\",\n              \"polygon\": [\n                [\n                  142.9892578125,\n                  474.1171875\n                ],\n                [\n                  526.53515625,\n                  474.1171875\n                ],\n                [\n                  526.53515625,\n                  510.46875\n                ],\n                [\n                  142.9892578125,\n                  510.46875\n                ]\n              ],\n              \"bbox\": [\n                142.9892578125,\n                474.1171875,\n                526.53515625,\n                510.46875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/36/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Operators with the same precedence are evaluated from left to right (except exponentiation). So in the expression degrees / 2 * pi, the division happens first and the result is multiplied by pi. To divide by 2<i>π</i>, you can use parentheses or write degrees / 2 / pi.</li>\",\n              \"polygon\": [\n                [\n                  143.48800659179688,\n                  519.36328125\n                ],\n                [\n                  526.833984375,\n                  519.36328125\n                ],\n                [\n                  526.833984375,\n                  567.6299743652344\n                ],\n                [\n                  143.48800659179688,\n                  567.6299743652344\n                ]\n              ],\n              \"bbox\": [\n                143.48800659179688,\n                519.36328125,\n                526.833984375,\n                567.6299743652344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/36/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I don't work very hard to remember rules of precedence for other operators. If I can't tell by looking at the expression, I use parentheses to make it obvious.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              580.8515625\n            ],\n            [\n              526.53515625,\n              580.8515625\n            ],\n            [\n              526.53515625,\n              604.6039886474609\n            ],\n            [\n              128.3466796875,\n              604.6039886474609\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            580.8515625,\n            526.53515625,\n            604.6039886474609\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/36/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-36-1\\\"></span><b>2.8 String operations</b></h3>\",\n          \"polygon\": [\n            [\n              127.82373046875,\n              633.83203125\n            ],\n            [\n              275.4434814453125,\n              633.83203125\n            ],\n            [\n              275.4434814453125,\n              649.3340301513672\n            ],\n            [\n              127.82373046875,\n              649.3340301513672\n            ]\n          ],\n          \"bbox\": [\n            127.82373046875,\n            633.83203125,\n            275.4434814453125,\n            649.3340301513672\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/36/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/36/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In general, you can't perform mathematical operations on strings, even if the strings look like numbers, so the following are illegal:</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              660.90234375\n            ],\n            [\n              526.53515625,\n              660.90234375\n            ],\n            [\n              526.53515625,\n              684.3219833374023\n            ],\n            [\n              127.8984375,\n              684.3219833374023\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            660.90234375,\n            526.53515625,\n            684.3219833374023\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/36/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/36/TextInlineMath/13\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">'2' - '1' 'eggs' / 'easy' 'third' * 'a charm'</p>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              677.2975158691406\n            ],\n            [\n              362.91888427734375,\n              677.2975158691406\n            ],\n            [\n              362.91888427734375,\n              700.685417175293\n            ],\n            [\n              129.01904296875,\n              700.685417175293\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            677.2975158691406,\n            362.91888427734375,\n            700.685417175293\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/36/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/32/SectionHeader/1\",\n        \"2\": \"/page/36/SectionHeader/4\",\n        \"3\": \"/page/36/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/37/Page/211\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/37/PageHeader/0'></content-ref><content-ref src='/page/37/PageHeader/20'></content-ref><content-ref src='/page/37/Text/1'></content-ref><content-ref src='/page/37/Code/2'></content-ref><content-ref src='/page/37/Text/3'></content-ref><content-ref src='/page/37/Text/4'></content-ref><content-ref src='/page/37/SectionHeader/5'></content-ref><content-ref src='/page/37/Text/6'></content-ref><content-ref src='/page/37/Text/7'></content-ref><content-ref src='/page/37/Code/8'></content-ref><content-ref src='/page/37/Text/9'></content-ref><content-ref src='/page/37/Code/10'></content-ref><content-ref src='/page/37/Text/11'></content-ref><content-ref src='/page/37/Text/12'></content-ref><content-ref src='/page/37/Text/13'></content-ref><content-ref src='/page/37/TextInlineMath/14'></content-ref><content-ref src='/page/37/Text/15'></content-ref><content-ref src='/page/37/Text/208'></content-ref><content-ref src='/page/37/Text/17'></content-ref><content-ref src='/page/37/SectionHeader/18'></content-ref><content-ref src='/page/37/Text/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/37/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.71484375\n            ],\n            [\n              483.205078125,\n              60.71484375\n            ],\n            [\n              483.205078125,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.71484375,\n            483.205078125,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/36/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              60.76318359375\n            ],\n            [\n              96.89501953125,\n              60.76318359375\n            ],\n            [\n              96.89501953125,\n              70.43115234375\n            ],\n            [\n              85.53955078125,\n              70.43115234375\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            60.76318359375,\n            96.89501953125,\n            70.43115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/36/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The + operator works with strings, but it might not do what you expect: it performs <b>con</b><b>catenation</b>, which means joining the strings by linking them end-to-end. For example:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              88.31689453125\n            ],\n            [\n              482.90625,\n              88.31689453125\n            ],\n            [\n              482.90625,\n              111.2783203125\n            ],\n            [\n              85.46484375,\n              111.2783203125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            88.31689453125,\n            482.90625,\n            111.2783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/36/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>first = 'throat'\\nsecond = 'warbler'\\nprint first + second\\nThe output of this program is throatwarbler.</pre>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              115.83367919921875\n            ],\n            [\n              288.91265869140625,\n              115.83367919921875\n            ],\n            [\n              288.91265869140625,\n              165.28887939453125\n            ],\n            [\n              86.28662109375,\n              165.28887939453125\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            115.83367919921875,\n            288.91265869140625,\n            165.28887939453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/36/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The * operator also works on strings; it performs repetition. For example, 'Spam'*3 is 'SpamSpamSpam'. If one of the operands is a string, the other has to be an integer.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              172.86328125\n            ],\n            [\n              482.607421875,\n              172.86328125\n            ],\n            [\n              482.607421875,\n              196.40887451171875\n            ],\n            [\n              86.0625,\n              196.40887451171875\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            172.86328125,\n            482.607421875,\n            196.40887451171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/36/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This use of + and * makes sense by analogy with addition and multiplication. Just as 4*3 is equivalent to 4+4+4, we expect 'Spam'*3 to be the same as 'Spam'+'Spam'+'Spam', and it is. On the other hand, there is a significant way in which string concatenation and repetition are different from integer addition and multiplication. Can you think of a property that addition has that string concatenation does not?</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              204.767578125\n            ],\n            [\n              482.607421875,\n              204.767578125\n            ],\n            [\n              482.607421875,\n              264.11187744140625\n            ],\n            [\n              85.46484375,\n              264.11187744140625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            204.767578125,\n            482.607421875,\n            264.11187744140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/36/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-37-0\\\"></span><b>2.9 Comments</b></h3>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              291.005859375\n            ],\n            [\n              189.60665893554688,\n              291.005859375\n            ],\n            [\n              189.60665893554688,\n              306.1039123535156\n            ],\n            [\n              86.28662109375,\n              306.1039123535156\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            291.005859375,\n            189.60665893554688,\n            306.1039123535156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As programs get bigger and more complicated, they get more difficult to read. Formal languages are dense, and it is often difficult to look at a piece of code and figure out what it is doing, or why.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              317.109375\n            ],\n            [\n              482.4034729003906,\n              317.109375\n            ],\n            [\n              482.4034729003906,\n              351.5888671875\n            ],\n            [\n              86.2119140625,\n              351.5888671875\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            317.109375,\n            482.4034729003906,\n            351.5888671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For this reason, it is a good idea to add notes to your programs to explain in natural language what the program is doing. These notes are called <b>comments</b>, and they start with the # symbol:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              360.228515625\n            ],\n            [\n              482.4033508300781,\n              360.228515625\n            ],\n            [\n              482.4033508300781,\n              394.9028625488281\n            ],\n            [\n              85.9130859375,\n              394.9028625488281\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            360.228515625,\n            482.4033508300781,\n            394.9028625488281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># compute the percentage of the hour that has elapsed\\npercentage = (minute * 100) / 60</pre>\",\n          \"polygon\": [\n            [\n              86.0625,\n              399.09375\n            ],\n            [\n              364.271484375,\n              399.09375\n            ],\n            [\n              364.271484375,\n              421.90130615234375\n            ],\n            [\n              86.0625,\n              421.90130615234375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            399.09375,\n            364.271484375,\n            421.90130615234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this case, the comment appears on a line by itself. You can also put comments at the end of a line:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              425.77734375\n            ],\n            [\n              482.40338134765625,\n              425.77734375\n            ],\n            [\n              482.40338134765625,\n              449.19989013671875\n            ],\n            [\n              85.9130859375,\n              449.19989013671875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            425.77734375,\n            482.40338134765625,\n            449.19989013671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>percentage = (minute * 100) / 60 # percentage of an hour</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              453.234375\n            ],\n            [\n              400.4296875,\n              453.234375\n            ],\n            [\n              400.4296875,\n              464.00433349609375\n            ],\n            [\n              85.6142578125,\n              464.00433349609375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            453.234375,\n            400.4296875,\n            464.00433349609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Everything from the # to the end of the line is ignored—it has no effect on the program.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              468.31640625\n            ],\n            [\n              470.056640625,\n              468.31640625\n            ],\n            [\n              470.056640625,\n              479.10791015625\n            ],\n            [\n              85.763671875,\n              479.10791015625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            468.31640625,\n            470.056640625,\n            479.10791015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Comments are most useful when they document non-obvious features of the code. It is reasonable to assume that the reader can figure out <i>what</i> the code does; it is much more useful to explain <i>why</i>.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              487.265625\n            ],\n            [\n              483.50390625,\n              487.265625\n            ],\n            [\n              483.50390625,\n              522.4219055175781\n            ],\n            [\n              85.46484375,\n              522.4219055175781\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            487.265625,\n            483.50390625,\n            522.4219055175781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This comment is redundant with the code and useless:</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              530.578125\n            ],\n            [\n              326.021484375,\n              530.578125\n            ],\n            [\n              326.021484375,\n              541.347900390625\n            ],\n            [\n              85.83837890625,\n              541.347900390625\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            530.578125,\n            326.021484375,\n            541.347900390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/TextInlineMath/14\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">v = 5  # assign 5 to v</p>\",\n          \"polygon\": [\n            [\n              86.40006256103516,\n              546.046875\n            ],\n            [\n              219.638671875,\n              546.046875\n            ],\n            [\n              219.638671875,\n              556.15234375\n            ],\n            [\n              86.40006256103516,\n              556.15234375\n            ]\n          ],\n          \"bbox\": [\n            86.40006256103516,\n            546.046875,\n            219.638671875,\n            556.15234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This comment contains useful information that is not in the code:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              560.35546875\n            ],\n            [\n              373.53515625,\n              560.35546875\n            ],\n            [\n              373.53515625,\n              571.2558898925781\n            ],\n            [\n              85.6142578125,\n              571.2558898925781\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            560.35546875,\n            373.53515625,\n            571.2558898925781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/208\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">v = 5 # velocity in meters/second.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              575.82421875\n            ],\n            [\n              285.1539001464844,\n              575.82421875\n            ],\n            [\n              285.1539001464844,\n              586.0603332519531\n            ],\n            [\n              85.3154296875,\n              586.0603332519531\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            575.82421875,\n            285.1539001464844,\n            586.0603332519531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Good variable names can reduce the need for comments, but long names can make complex expressions hard to read, so there is a tradeoff.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              590.90625\n            ],\n            [\n              482.4033508300781,\n              590.90625\n            ],\n            [\n              482.4033508300781,\n              613.35888671875\n            ],\n            [\n              85.46484375,\n              613.35888671875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            590.90625,\n            482.4033508300781,\n            613.35888671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/SectionHeader/18\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-37-1\\\"></span><b>2.10 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              640.79296875\n            ],\n            [\n              201.41015625,\n              640.79296875\n            ],\n            [\n              201.41015625,\n              655.48828125\n            ],\n            [\n              85.53955078125,\n              655.48828125\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            640.79296875,\n            201.41015625,\n            655.48828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/37/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">At this point the syntax error you are most likely to make is an illegal variable name, like class and yield, which are keywords, or odd~job and US$, which contain illegal characters.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              665.54296875\n            ],\n            [\n              482.40338134765625,\n              665.54296875\n            ],\n            [\n              482.40338134765625,\n              700.8348846435547\n            ],\n            [\n              86.0625,\n              700.8348846435547\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            665.54296875,\n            482.40338134765625,\n            700.8348846435547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/32/SectionHeader/1\",\n        \"2\": \"/page/36/SectionHeader/4\",\n        \"3\": \"/page/37/SectionHeader/5\",\n        \"4\": \"/page/37/SectionHeader/18\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/38/Page/199\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/38/PageHeader/0'></content-ref><content-ref src='/page/38/PageHeader/22'></content-ref><content-ref src='/page/38/Text/1'></content-ref><content-ref src='/page/38/Text/2'></content-ref><content-ref src='/page/38/Text/3'></content-ref><content-ref src='/page/38/Text/4'></content-ref><content-ref src='/page/38/Code/5'></content-ref><content-ref src='/page/38/Text/6'></content-ref><content-ref src='/page/38/Text/7'></content-ref><content-ref src='/page/38/TextInlineMath/8'></content-ref><content-ref src='/page/38/Text/9'></content-ref><content-ref src='/page/38/SectionHeader/10'></content-ref><content-ref src='/page/38/Text/11'></content-ref><content-ref src='/page/38/ListGroup/196'></content-ref><content-ref src='/page/38/Text/14'></content-ref><content-ref src='/page/38/Text/15'></content-ref><content-ref src='/page/38/Text/16'></content-ref><content-ref src='/page/38/ListItem/17'></content-ref><content-ref src='/page/38/Text/18'></content-ref><content-ref src='/page/38/Text/19'></content-ref><content-ref src='/page/38/ListGroup/197'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/38/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.49609375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.49609375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/PageHeader/22\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.58203125,\n              60.95654296875\n            ],\n            [\n              525.33984375,\n              60.95654296875\n            ],\n            [\n              525.33984375,\n              70.04443359375\n            ],\n            [\n              514.58203125,\n              70.04443359375\n            ]\n          ],\n          \"bbox\": [\n            514.58203125,\n            60.95654296875,\n            525.33984375,\n            70.04443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you put a space in a variable name, Python thinks it is two operands without an operator:</p>\",\n          \"polygon\": [\n            [\n              127.30078125,\n              88.6552734375\n            ],\n            [\n              525.6033325195312,\n              88.6552734375\n            ],\n            [\n              525.6033325195312,\n              98.79791259765625\n            ],\n            [\n              127.30078125,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            127.30078125,\n            88.6552734375,\n            525.6033325195312,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; bad name = 5 SyntaxError: invalid syntax</p>\",\n          \"polygon\": [\n            [\n              127.52490234375,\n              105.03375244140625\n            ],\n            [\n              272.53125,\n              105.03375244140625\n            ],\n            [\n              272.53125,\n              127.1903076171875\n            ],\n            [\n              127.52490234375,\n              127.1903076171875\n            ]\n          ],\n          \"bbox\": [\n            127.52490234375,\n            105.03375244140625,\n            272.53125,\n            127.1903076171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For syntax errors, the error messages don't help much. The most common messages are SyntaxError: invalid syntax and SyntaxError: invalid token, neither of which is very informative.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              133.7080078125\n            ],\n            [\n              525.9375,\n              133.7080078125\n            ],\n            [\n              525.9375,\n              168.076904296875\n            ],\n            [\n              128.49609375,\n              168.076904296875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            133.7080078125,\n            525.9375,\n            168.076904296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The runtime error you are most likely to make is a \\\"use before def;\\\" that is, trying to use a variable before you have assigned a value. This can happen if you spell a variable name wrong:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              177.890625\n            ],\n            [\n              525.9375,\n              177.890625\n            ],\n            [\n              525.9375,\n              212.784912109375\n            ],\n            [\n              128.49609375,\n              212.784912109375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            177.890625,\n            525.9375,\n            212.784912109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; principal = 327.68\\n&gt;&gt;&gt; interest = principle * rate\\nNameError: name 'principle' is not defined</pre>\",\n          \"polygon\": [\n            [\n              127.67431640625,\n              219.020751953125\n            ],\n            [\n              354.111328125,\n              219.020751953125\n            ],\n            [\n              354.111328125,\n              253.371337890625\n            ],\n            [\n              127.67431640625,\n              253.371337890625\n            ]\n          ],\n          \"bbox\": [\n            127.67431640625,\n            219.020751953125,\n            354.111328125,\n            253.371337890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Variables names are case sensitive, so LaTeX is not the same as latex.</p>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              259.75677490234375\n            ],\n            [\n              433.2556457519531,\n              259.75677490234375\n            ],\n            [\n              433.2556457519531,\n              269.86895751953125\n            ],\n            [\n              128.27197265625,\n              269.86895751953125\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            259.75677490234375,\n            433.2556457519531,\n            269.86895751953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">At this point the most likely cause of a semantic error is the order of operations. For example, to evaluate 1 2<i>π</i> , you might be tempted to write</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              279.984375\n            ],\n            [\n              525.6034545898438,\n              279.984375\n            ],\n            [\n              525.6034545898438,\n              305.7589416503906\n            ],\n            [\n              128.794921875,\n              305.7589416503906\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            279.984375,\n            525.6034545898438,\n            305.7589416503906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/TextInlineMath/8\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; 1.0 / 2.0 * pi</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              308.6187438964844\n            ],\n            [\n              223.9716796875,\n              308.6187438964844\n            ],\n            [\n              223.9716796875,\n              318.5813293457031\n            ],\n            [\n              127.7490234375,\n              318.5813293457031\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            308.6187438964844,\n            223.9716796875,\n            318.5813293457031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But the division happens first, so you would get <i>π</i>/2, which is not the same thing! There is no way for Python to know what you meant to write, so in this case you don't get an error message; you just get the wrong answer.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              324.45703125\n            ],\n            [\n              525.638671875,\n              324.45703125\n            ],\n            [\n              525.638671875,\n              359.6484375\n            ],\n            [\n              128.794921875,\n              359.6484375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            324.45703125,\n            525.638671875,\n            359.6484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/37/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-38-0\\\"></span><b>2.11 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              389.354736328125\n            ],\n            [\n              227.2259063720703,\n              389.354736328125\n            ],\n            [\n              227.2259063720703,\n              403.7009582519531\n            ],\n            [\n              128.3466796875,\n              403.7009582519531\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            389.354736328125,\n            227.2259063720703,\n            403.7009582519531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>value:</b> One of the basic units of data, like a number or string, that a program manipulates.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              412.8611755371094\n            ],\n            [\n              525.6029052734375,\n              412.8611755371094\n            ],\n            [\n              525.6029052734375,\n              422.9208984375\n            ],\n            [\n              129.2431640625,\n              422.9208984375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            412.8611755371094,\n            525.6029052734375,\n            422.9208984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/ListGroup/196\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/38/ListItem/12'></content-ref><content-ref src='/page/38/ListItem/13'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              445.11328125\n            ],\n            [\n              525.6011962890625,\n              445.11328125\n            ],\n            [\n              525.6011962890625,\n              488.2589111328125\n            ],\n            [\n              128.0478515625,\n              488.2589111328125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            445.11328125,\n            525.6011962890625,\n            488.2589111328125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/38/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>type:</b> A category of values. The types we have seen so far are integers (type int), floatingpoint numbers (type float), and strings (type str).</li>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  445.11328125\n                ],\n                [\n                  525.6011962890625,\n                  445.11328125\n                ],\n                [\n                  525.6011962890625,\n                  467.7839050292969\n                ],\n                [\n                  128.0478515625,\n                  467.7839050292969\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                445.11328125,\n                525.6011962890625,\n                467.7839050292969\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\",\n                \"3\": \"/page/37/SectionHeader/5\",\n                \"4\": \"/page/38/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>integer:</b> A type that represents whole numbers.</li>\",\n              \"polygon\": [\n                [\n                  129.09375,\n                  478.1991882324219\n                ],\n                [\n                  340.2587890625,\n                  478.1991882324219\n                ],\n                [\n                  340.2587890625,\n                  488.2589111328125\n                ],\n                [\n                  129.09375,\n                  488.2589111328125\n                ]\n              ],\n              \"bbox\": [\n                129.09375,\n                478.1991882324219,\n                340.2587890625,\n                488.2589111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\",\n                \"3\": \"/page/37/SectionHeader/5\",\n                \"4\": \"/page/38/SectionHeader/10\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/38/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>floating-point:</b> A type that represents numbers with fractional parts.</p>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              498.6741943359375\n            ],\n            [\n              433.0107727050781,\n              498.6741943359375\n            ],\n            [\n              433.0107727050781,\n              508.7339172363281\n            ],\n            [\n              129.01904296875,\n              508.7339172363281\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            498.6741943359375,\n            433.0107727050781,\n            508.7339172363281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>string:</b> A type that represents sequences of characters.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              519.1492004394531\n            ],\n            [\n              369.00103759765625,\n              519.1492004394531\n            ],\n            [\n              369.00103759765625,\n              529.2089233398438\n            ],\n            [\n              129.09375,\n              529.2089233398438\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            519.1492004394531,\n            369.00103759765625,\n            529.2089233398438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>variable:</b> A name that refers to a value.</p>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              539.6242218017578\n            ],\n            [\n              303.69671630859375,\n              539.6242218017578\n            ],\n            [\n              303.69671630859375,\n              549.6839294433594\n            ],\n            [\n              129.01904296875,\n              549.6839294433594\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            539.6242218017578,\n            303.69671630859375,\n            549.6839294433594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/ListItem/17\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>statement:</b> A section of code that represents a command or action. So far, the statements we have seen are assignments and print statements.</li>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              559.96875\n            ],\n            [\n              525.6036376953125,\n              559.96875\n            ],\n            [\n              525.6036376953125,\n              582.3529357910156\n            ],\n            [\n              128.3466796875,\n              582.3529357910156\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            559.96875,\n            525.6036376953125,\n            582.3529357910156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>assignment:</b> A statement that assigns a value to a variable.</p>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              592.7682342529297\n            ],\n            [\n              390.568359375,\n              592.7682342529297\n            ],\n            [\n              390.568359375,\n              602.8279418945312\n            ],\n            [\n              129.60003662109375,\n              602.8279418945312\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            592.7682342529297,\n            390.568359375,\n            602.8279418945312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>state diagram:</b> A graphical representation of a set of variables and the values they refer to.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              613.2432403564453\n            ],\n            [\n              525.6030883789062,\n              613.2432403564453\n            ],\n            [\n              525.6030883789062,\n              623.3029479980469\n            ],\n            [\n              128.3466796875,\n              623.3029479980469\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            613.2432403564453,\n            525.6030883789062,\n            623.3029479980469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/38/ListGroup/197\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/38/ListItem/20'></content-ref><content-ref src='/page/38/ListItem/21'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              645.9122467041016\n            ],\n            [\n              525.9375,\n              645.9122467041016\n            ],\n            [\n              525.9375,\n              700.8349609375\n            ],\n            [\n              128.6455078125,\n              700.8349609375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            645.9122467041016,\n            525.9375,\n            700.8349609375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/38/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>keyword:</b> A reserved word that is used by the compiler to parse a program; you cannot use keywords like if, def, and while as variable names.</li>\",\n              \"polygon\": [\n                [\n                  128.6455078125,\n                  645.9122467041016\n                ],\n                [\n                  525.9375,\n                  645.9122467041016\n                ],\n                [\n                  525.9375,\n                  668.1659622192383\n                ],\n                [\n                  128.6455078125,\n                  668.1659622192383\n                ]\n              ],\n              \"bbox\": [\n                128.6455078125,\n                645.9122467041016,\n                525.9375,\n                668.1659622192383\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\",\n                \"3\": \"/page/37/SectionHeader/5\",\n                \"4\": \"/page/38/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/38/ListItem/21\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>operator:</b> A special symbol that represents a simple computation like addition, multiplication, or string concatenation.</li>\",\n              \"polygon\": [\n                [\n                  128.6455078125,\n                  678.5812454223633\n                ],\n                [\n                  525.6028442382812,\n                  678.5812454223633\n                ],\n                [\n                  525.6028442382812,\n                  700.8349609375\n                ],\n                [\n                  128.6455078125,\n                  700.8349609375\n                ]\n              ],\n              \"bbox\": [\n                128.6455078125,\n                678.5812454223633,\n                525.6028442382812,\n                700.8349609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\",\n                \"3\": \"/page/37/SectionHeader/5\",\n                \"4\": \"/page/38/SectionHeader/10\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/32/SectionHeader/1\",\n        \"2\": \"/page/36/SectionHeader/4\",\n        \"3\": \"/page/37/SectionHeader/5\",\n        \"4\": \"/page/38/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/39/Page/161\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/39/PageHeader/0'></content-ref><content-ref src='/page/39/PageHeader/17'></content-ref><content-ref src='/page/39/Text/1'></content-ref><content-ref src='/page/39/Text/2'></content-ref><content-ref src='/page/39/ListGroup/159'></content-ref><content-ref src='/page/39/Text/6'></content-ref><content-ref src='/page/39/ListItem/7'></content-ref><content-ref src='/page/39/SectionHeader/8'></content-ref><content-ref src='/page/39/Text/9'></content-ref><content-ref src='/page/39/Code/10'></content-ref><content-ref src='/page/39/Text/11'></content-ref><content-ref src='/page/39/Code/12'></content-ref><content-ref src='/page/39/Text/13'></content-ref><content-ref src='/page/39/ListGroup/160'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/39/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.908203125\n            ],\n            [\n              483.205078125,\n              60.908203125\n            ],\n            [\n              483.205078125,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.908203125,\n            483.205078125,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              61.24658203125\n            ],\n            [\n              96.29736328125,\n              61.24658203125\n            ],\n            [\n              96.29736328125,\n              69.94775390625\n            ],\n            [\n              85.53955078125,\n              69.94775390625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            61.24658203125,\n            96.29736328125,\n            69.94775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>operand:</b> One of the values on which an operator operates.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              88.171875\n            ],\n            [\n              349.03125,\n              88.171875\n            ],\n            [\n              349.03125,\n              98.79791259765625\n            ],\n            [\n              85.3154296875,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            88.171875,\n            349.03125,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>floor division:</b> The operation that divides two numbers and chops off the fraction part.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              108.66796875\n            ],\n            [\n              470.6571350097656,\n              108.66796875\n            ],\n            [\n              470.6571350097656,\n              118.9619140625\n            ],\n            [\n              85.46484375,\n              118.9619140625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            108.66796875,\n            470.6571350097656,\n            118.9619140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/ListGroup/159\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/39/ListItem/3'></content-ref><content-ref src='/page/39/ListItem/4'></content-ref><content-ref src='/page/39/ListItem/5'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              128.970703125\n            ],\n            [\n              482.90625,\n              128.970703125\n            ],\n            [\n              482.90625,\n              216.03887939453125\n            ],\n            [\n              85.6142578125,\n              216.03887939453125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            128.970703125,\n            482.90625,\n            216.03887939453125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/39/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>expression:</b> A combination of variables, operators, and values that represents a single result value.</li>\",\n              \"polygon\": [\n                [\n                  85.763671875,\n                  128.970703125\n                ],\n                [\n                  482.4032287597656,\n                  128.970703125\n                ],\n                [\n                  482.4032287597656,\n                  151.32086181640625\n                ],\n                [\n                  85.763671875,\n                  151.32086181640625\n                ]\n              ],\n              \"bbox\": [\n                85.763671875,\n                128.970703125,\n                482.4032287597656,\n                151.32086181640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\",\n                \"3\": \"/page/37/SectionHeader/5\",\n                \"4\": \"/page/38/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/39/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>evaluate:</b> To simplify an expression by performing the operations in order to yield a single value.</li>\",\n              \"polygon\": [\n                [\n                  85.763671875,\n                  161.26171875\n                ],\n                [\n                  482.4038391113281,\n                  161.26171875\n                ],\n                [\n                  482.4038391113281,\n                  183.67987060546875\n                ],\n                [\n                  85.763671875,\n                  183.67987060546875\n                ]\n              ],\n              \"bbox\": [\n                85.763671875,\n                161.26171875,\n                482.4038391113281,\n                183.67987060546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\",\n                \"3\": \"/page/37/SectionHeader/5\",\n                \"4\": \"/page/38/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/39/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>rules of precedence:</b> The set of rules governing the order in which expressions involving multiple operators and operands are evaluated.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  193.6494140625\n                ],\n                [\n                  482.90625,\n                  193.6494140625\n                ],\n                [\n                  482.90625,\n                  216.03887939453125\n                ],\n                [\n                  85.6142578125,\n                  216.03887939453125\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                193.6494140625,\n                482.90625,\n                216.03887939453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\",\n                \"3\": \"/page/37/SectionHeader/5\",\n                \"4\": \"/page/38/SectionHeader/10\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/39/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>concatenate:</b> To join two operands end-to-end.</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              225.84375\n            ],\n            [\n              293.40240478515625,\n              225.84375\n            ],\n            [\n              293.40240478515625,\n              236.202880859375\n            ],\n            [\n              85.83837890625,\n              236.202880859375\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            225.84375,\n            293.40240478515625,\n            236.202880859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/ListItem/7\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>comment:</b> Information in a program that is meant for other programmers (or anyone reading the source code) and has no effect on the execution of the program.</li>\",\n          \"polygon\": [\n            [\n              86.0625,\n              246.146484375\n            ],\n            [\n              482.40338134765625,\n              246.146484375\n            ],\n            [\n              482.40338134765625,\n              268.5618896484375\n            ],\n            [\n              86.0625,\n              268.5618896484375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            246.146484375,\n            482.40338134765625,\n            268.5618896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/38/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-39-0\\\"></span><b>2.12 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              297.7734375\n            ],\n            [\n              185.60400390625,\n              297.7734375\n            ],\n            [\n              185.60400390625,\n              312.24993896484375\n            ],\n            [\n              85.39013671875,\n              312.24993896484375\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            297.7734375,\n            185.60400390625,\n            312.24993896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/39/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 2.2.</b> <i>Assume that we execute the following assignment statements:</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              324.4225769042969\n            ],\n            [\n              393.47760009765625,\n              324.4225769042969\n            ],\n            [\n              393.47760009765625,\n              334.46075439453125\n            ],\n            [\n              85.46484375,\n              334.46075439453125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            324.4225769042969,\n            393.47760009765625,\n            334.46075439453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/39/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>width = 17\\nheight = 12.0\\ndelimiter = '.'</pre>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              340.6116943359375\n            ],\n            [\n              164.83837890625,\n              340.6116943359375\n            ],\n            [\n              164.83837890625,\n              374.9632873535156\n            ],\n            [\n              85.68896484375,\n              374.9632873535156\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            340.6116943359375,\n            164.83837890625,\n            374.9632873535156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/39/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>For each of the following expressions, write the value of the expression and the type (of the value of</i> <i>the expression).</i></p>\",\n          \"polygon\": [\n            [\n              86.40001678466797,\n              381.111328125\n            ],\n            [\n              482.4034423828125,\n              381.111328125\n            ],\n            [\n              482.4034423828125,\n              403.3001708984375\n            ],\n            [\n              86.40001678466797,\n              403.3001708984375\n            ]\n          ],\n          \"bbox\": [\n            86.40001678466797,\n            381.111328125,\n            482.4034423828125,\n            403.3001708984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/39/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>1. width/2\\n2. width/2.0\\n3. height/3\\n4. 1 + 2 * 5\\n5. delimiter * 5</pre>\",\n          \"polygon\": [\n            [\n              98.015625,\n              416.109375\n            ],\n            [\n              179.30177307128906,\n              416.109375\n            ],\n            [\n              179.30177307128906,\n              508.1163024902344\n            ],\n            [\n              98.015625,\n              508.1163024902344\n            ]\n          ],\n          \"bbox\": [\n            98.015625,\n            416.109375,\n            179.30177307128906,\n            508.1163024902344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/39/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Use the Python interpreter to check your answers.</i> <b>Exercise 2.3.</b> <i>Practice using the Python interpreter as a calculator:</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              521.68359375\n            ],\n            [\n              358.59375,\n              521.68359375\n            ],\n            [\n              358.59375,\n              544.4997863769531\n            ],\n            [\n              85.6142578125,\n              544.4997863769531\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            521.68359375,\n            358.59375,\n            544.4997863769531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/39/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/39/ListGroup/160\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/39/ListItem/14'></content-ref><content-ref src='/page/39/ListItem/15'></content-ref><content-ref src='/page/39/ListItem/16'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.8662109375,\n              556.5590209960938\n            ],\n            [\n              482.4039001464844,\n              556.5590209960938\n            ],\n            [\n              482.4039001464844,\n              657.6662139892578\n            ],\n            [\n              97.8662109375,\n              657.6662139892578\n            ]\n          ],\n          \"bbox\": [\n            97.8662109375,\n            556.5590209960938,\n            482.4039001464844,\n            657.6662139892578\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/39/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. The volume of a sphere with radius r is</i> 4 3 <i>π</i><i>r</i> 3 <i>. What is the volume of a sphere with radius 5?</i> <i>Hint: 392.7 is wrong!</i></li>\",\n              \"polygon\": [\n                [\n                  98.61328125,\n                  556.5590209960938\n                ],\n                [\n                  482.39703369140625,\n                  556.5590209960938\n                ],\n                [\n                  482.39703369140625,\n                  580.7542114257812\n                ],\n                [\n                  98.61328125,\n                  580.7542114257812\n                ]\n              ],\n              \"bbox\": [\n                98.61328125,\n                556.5590209960938,\n                482.39703369140625,\n                580.7542114257812\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\",\n                \"3\": \"/page/37/SectionHeader/5\",\n                \"4\": \"/page/39/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/39/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Suppose the cover price of a book is $24.95, but bookstores get a 40% discount. Shipping costs</i> <i>$3 for the first copy and 75 cents for each additional copy. What is the total wholesale cost for</i> <i>60 copies?</i></li>\",\n              \"polygon\": [\n                [\n                  98.015625,\n                  590.90625\n                ],\n                [\n                  482.4039001464844,\n                  590.90625\n                ],\n                [\n                  482.4039001464844,\n                  625.3072204589844\n                ],\n                [\n                  98.015625,\n                  625.3072204589844\n                ]\n              ],\n              \"bbox\": [\n                98.015625,\n                590.90625,\n                482.4039001464844,\n                625.3072204589844\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\",\n                \"3\": \"/page/37/SectionHeader/5\",\n                \"4\": \"/page/39/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/39/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. If I leave my house at 6:52 am and run 1 mile at an easy pace (8:15 per mile), then 3 miles at</i> <i>tempo (7:12 per mile) and 1 mile at easy pace again, what time do I get home for breakfast?</i></li>\",\n              \"polygon\": [\n                [\n                  97.8662109375,\n                  635.37890625\n                ],\n                [\n                  482.40313720703125,\n                  635.37890625\n                ],\n                [\n                  482.40313720703125,\n                  657.6662139892578\n                ],\n                [\n                  97.8662109375,\n                  657.6662139892578\n                ]\n              ],\n              \"bbox\": [\n                97.8662109375,\n                635.37890625,\n                482.40313720703125,\n                657.6662139892578\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/32/SectionHeader/1\",\n                \"2\": \"/page/36/SectionHeader/4\",\n                \"3\": \"/page/37/SectionHeader/5\",\n                \"4\": \"/page/39/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/36/SectionHeader/4\",\n            \"3\": \"/page/37/SectionHeader/5\",\n            \"4\": \"/page/39/SectionHeader/8\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/32/SectionHeader/1\",\n        \"2\": \"/page/36/SectionHeader/4\",\n        \"3\": \"/page/37/SectionHeader/5\",\n        \"4\": \"/page/39/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/40/Page/120\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/40/SectionHeader/0'></content-ref><content-ref src='/page/40/SectionHeader/1'></content-ref><content-ref src='/page/40/SectionHeader/2'></content-ref><content-ref src='/page/40/Text/3'></content-ref><content-ref src='/page/40/Text/4'></content-ref><content-ref src='/page/40/Text/5'></content-ref><content-ref src='/page/40/Text/6'></content-ref><content-ref src='/page/40/SectionHeader/7'></content-ref><content-ref src='/page/40/Text/8'></content-ref><content-ref src='/page/40/Code/9'></content-ref><content-ref src='/page/40/Text/10'></content-ref><content-ref src='/page/40/Code/11'></content-ref><content-ref src='/page/40/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/40/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-40-0\\\"></span><b>Chapter 3</b></h2>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              164.6455078125\n            ],\n            [\n              220.84561157226562,\n              164.6455078125\n            ],\n            [\n              220.84561157226562,\n              185.87091064453125\n            ],\n            [\n              128.27197265625,\n              185.87091064453125\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            164.6455078125,\n            220.84561157226562,\n            185.87091064453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/32/SectionHeader/1\",\n            \"2\": \"/page/40/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Functions</b></h1>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              221.65228271484375\n            ],\n            [\n              242.349609375,\n              221.65228271484375\n            ],\n            [\n              242.349609375,\n              246.4393310546875\n            ],\n            [\n              128.49609375,\n              246.4393310546875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            221.65228271484375,\n            242.349609375,\n            246.4393310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-40-1\\\"></span><b>3.1 Function calls</b></h4>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              296.033203125\n            ],\n            [\n              253.1064453125,\n              296.033203125\n            ],\n            [\n              253.1064453125,\n              310.75994873046875\n            ],\n            [\n              128.86962890625,\n              310.75994873046875\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            296.033203125,\n            253.1064453125,\n            310.75994873046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"4\": \"/page/40/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In the context of programming, a <b>function</b> is a named sequence of statements that performs a computation. When you define a function, you specify the name and the sequence of statements. Later, you can \\\"call\\\" the function by name. We have already seen one example of a <b>function call</b>:</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              324.263671875\n            ],\n            [\n              526.53515625,\n              324.263671875\n            ],\n            [\n              526.53515625,\n              371.17388916015625\n            ],\n            [\n              129.5419921875,\n              371.17388916015625\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            324.263671875,\n            526.53515625,\n            371.17388916015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"4\": \"/page/40/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; type(32) &lt;type 'int'&gt;</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              378.2109375\n            ],\n            [\n              193.04296875,\n              378.2109375\n            ],\n            [\n              193.04296875,\n              400.4713134765625\n            ],\n            [\n              128.49609375,\n              400.4713134765625\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            378.2109375,\n            193.04296875,\n            400.4713134765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"4\": \"/page/40/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The name of the function is type. The expression in parentheses is called the <b>argument</b> of the function. The result, for this function, is the type of the argument.</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              406.44140625\n            ],\n            [\n              526.236328125,\n              406.44140625\n            ],\n            [\n              526.236328125,\n              430.0688781738281\n            ],\n            [\n              129.60000610351562,\n              430.0688781738281\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            406.44140625,\n            526.236328125,\n            430.0688781738281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"4\": \"/page/40/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is common to say that a function \\\"takes\\\" an argument and \\\"returns\\\" a result. The result is called the <b>return value</b>.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              440.859375\n            ],\n            [\n              526.236328125,\n              440.859375\n            ],\n            [\n              526.236328125,\n              463.4878845214844\n            ],\n            [\n              128.794921875,\n              463.4878845214844\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            440.859375,\n            526.236328125,\n            463.4878845214844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"4\": \"/page/40/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-40-2\\\"></span><b>3.2 Type conversion functions</b></h3>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              495.38671875\n            ],\n            [\n              335.12371826171875,\n              495.38671875\n            ],\n            [\n              335.12371826171875,\n              510.4379577636719\n            ],\n            [\n              127.8984375,\n              510.4379577636719\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            495.38671875,\n            335.12371826171875,\n            510.4379577636719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/40/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python provides built-in functions that convert values from one type to another. The int function takes any value and converts it to an integer, if it can, or complains otherwise:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              524.00390625\n            ],\n            [\n              525.6041259765625,\n              524.00390625\n            ],\n            [\n              525.6041259765625,\n              546.4618835449219\n            ],\n            [\n              128.794921875,\n              546.4618835449219\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            524.00390625,\n            525.6041259765625,\n            546.4618835449219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/40/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; int('32')\\n32\\n&gt;&gt;&gt; int('Hello')\\nValueError: invalid literal for int(): Hello</pre>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              553.6027374267578\n            ],\n            [\n              359.7460021972656,\n              553.6027374267578\n            ],\n            [\n              359.7460021972656,\n              602.12109375\n            ],\n            [\n              129.60003662109375,\n              602.12109375\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            553.6027374267578,\n            359.7460021972656,\n            602.12109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/40/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">int can convert floating-point values to integers, but it doesn't round off; it chops off the fraction part:</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              607.1484375\n            ],\n            [\n              525.638671875,\n              607.1484375\n            ],\n            [\n              525.638671875,\n              629.7458953857422\n            ],\n            [\n              129.392578125,\n              629.7458953857422\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            607.1484375,\n            525.638671875,\n            629.7458953857422\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/40/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; int(3.99999)\\n3\\n&gt;&gt;&gt; int(-2.3)\\n-2</pre>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              635.765625\n            ],\n            [\n              213.29583740234375,\n              635.765625\n            ],\n            [\n              213.29583740234375,\n              684.4921875\n            ],\n            [\n              129.60003662109375,\n              684.4921875\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            635.765625,\n            213.29583740234375,\n            684.4921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/40/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/40/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">float converts integers and strings to floating-point numbers:</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              690.29296875\n            ],\n            [\n              403.44549560546875,\n              690.29296875\n            ],\n            [\n              403.44549560546875,\n              700.8349075317383\n            ],\n            [\n              128.57080078125,\n              700.8349075317383\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            690.29296875,\n            403.44549560546875,\n            700.8349075317383\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/40/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"3\": \"/page/40/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/41/Page/200\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/41/PageHeader/0'></content-ref><content-ref src='/page/41/PageHeader/16'></content-ref><content-ref src='/page/41/Code/1'></content-ref><content-ref src='/page/41/SectionHeader/2'></content-ref><content-ref src='/page/41/Text/3'></content-ref><content-ref src='/page/41/Text/4'></content-ref><content-ref src='/page/41/Code/5'></content-ref><content-ref src='/page/41/Text/6'></content-ref><content-ref src='/page/41/Code/7'></content-ref><content-ref src='/page/41/Text/8'></content-ref><content-ref src='/page/41/Code/9'></content-ref><content-ref src='/page/41/Text/10'></content-ref><content-ref src='/page/41/Text/11'></content-ref><content-ref src='/page/41/Code/12'></content-ref><content-ref src='/page/41/Text/13'></content-ref><content-ref src='/page/41/Text/14'></content-ref><content-ref src='/page/41/TextInlineMath/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/41/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.85986328125\n            ],\n            [\n              482.4034118652344,\n              60.85986328125\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.85986328125,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/40/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              60.76318359375\n            ],\n            [\n              97.64208984375,\n              60.76318359375\n            ],\n            [\n              97.64208984375,\n              69.94775390625\n            ],\n            [\n              86.13720703125,\n              69.94775390625\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            60.76318359375,\n            97.64208984375,\n            69.94775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/40/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; float(32)\\n32.0\\n&gt;&gt;&gt; float('3.14159')\\n3.14159\\nFinally, str converts its argument to a string:\\n&gt;&gt;&gt; str(32)\\n'32'\\n&gt;&gt;&gt; str(3.14159)\\n'3.14159'</pre>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              86.67333984375\n            ],\n            [\n              284.00372314453125,\n              86.67333984375\n            ],\n            [\n              284.00372314453125,\n              203.2852783203125\n            ],\n            [\n              86.4000015258789,\n              203.2852783203125\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            86.67333984375,\n            284.00372314453125,\n            203.2852783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/40/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-41-0\\\"></span><b>3.3 Math functions</b></h3>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              231.064453125\n            ],\n            [\n              219.475341796875,\n              231.064453125\n            ],\n            [\n              219.475341796875,\n              246.52093505859375\n            ],\n            [\n              85.83837890625,\n              246.52093505859375\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            231.064453125,\n            219.475341796875,\n            246.52093505859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python has a math module that provides most of the familiar mathematical functions. A <b>module</b> is a file that contains a collection of related functions.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              257.748046875\n            ],\n            [\n              482.40325927734375,\n              257.748046875\n            ],\n            [\n              482.40325927734375,\n              280.5939025878906\n            ],\n            [\n              86.0625,\n              280.5939025878906\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            257.748046875,\n            482.40325927734375,\n            280.5939025878906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Before we can use the module, we have to import it:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              290.232421875\n            ],\n            [\n              315.5625,\n              290.232421875\n            ],\n            [\n              315.5625,\n              300.3009033203125\n            ],\n            [\n              85.763671875,\n              300.3009033203125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            290.232421875,\n            315.5625,\n            300.3009033203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; import math</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              305.92474365234375\n            ],\n            [\n              164.85548400878906,\n              305.92474365234375\n            ],\n            [\n              164.85548400878906,\n              315.8873291015625\n            ],\n            [\n              85.9130859375,\n              315.8873291015625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            305.92474365234375,\n            164.85548400878906,\n            315.8873291015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This statement creates a <b>module object</b> named math. If you print the module object, you get some information about it:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              321.7131652832031\n            ],\n            [\n              482.4033203125,\n              321.7131652832031\n            ],\n            [\n              482.4033203125,\n              343.9668884277344\n            ],\n            [\n              85.6142578125,\n              343.9668884277344\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            321.7131652832031,\n            482.4033203125,\n            343.9668884277344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print math\\n&lt;module 'math' (built-in)&gt;</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              349.5907287597656\n            ],\n            [\n              223.6728515625,\n              349.5907287597656\n            ],\n            [\n              223.6728515625,\n              371.747314453125\n            ],\n            [\n              85.3154296875,\n              371.747314453125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            349.5907287597656,\n            223.6728515625,\n            371.747314453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The module object contains the functions and variables defined in the module. To access one of the functions, you have to specify the name of the module and the name of the function, separated by a dot (also known as a period). This format is called <b>dot notation</b>.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              377.4375\n            ],\n            [\n              482.4034118652344,\n              377.4375\n            ],\n            [\n              482.4034118652344,\n              412.0208740234375\n            ],\n            [\n              85.166015625,\n              412.0208740234375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            377.4375,\n            482.4034118652344,\n            412.0208740234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; ratio = signal_power / noise_power\\n&gt;&gt;&gt; decibels = 10 * math.log10(ratio)\\n&gt;&gt;&gt; radians = 0.7\\n&gt;&gt;&gt; height = math.sin(radians)</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              417.64471435546875\n            ],\n            [\n              285.1637878417969,\n              417.64471435546875\n            ],\n            [\n              285.1637878417969,\n              476.3843078613281\n            ],\n            [\n              85.9130859375,\n              476.3843078613281\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            417.64471435546875,\n            285.1637878417969,\n            476.3843078613281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first example uses log10 to compute a signal-to-noise ratio in decibels (assuming that signal_power and noise_power are defined). The math module also provides log, which computes logarithms base e.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              482.15771484375\n            ],\n            [\n              482.4012451171875,\n              482.15771484375\n            ],\n            [\n              482.4012451171875,\n              516.6588745117188\n            ],\n            [\n              85.763671875,\n              516.6588745117188\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            482.15771484375,\n            482.4012451171875,\n            516.6588745117188\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The second example finds the sine of radians. The name of the variable is a hint that sin and the other trigonometric functions (cos, tan, etc.) take arguments in radians. To convert from degrees to radians, divide by 360 and multiply by 2<i>π</i>:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              525.9375\n            ],\n            [\n              482.404052734375,\n              525.9375\n            ],\n            [\n              482.404052734375,\n              561.5645294189453\n            ],\n            [\n              86.0625,\n              561.5645294189453\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            525.9375,\n            482.404052734375,\n            561.5645294189453\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; degrees = 45\\n&gt;&gt;&gt; radians = degrees / 360.0 * 2 * math.pi\\n&gt;&gt;&gt; math.sin(radians)\\n0.707106781187</pre>\",\n          \"polygon\": [\n            [\n              86.0625,\n              566.3787231445312\n            ],\n            [\n              311.3155517578125,\n              566.3787231445312\n            ],\n            [\n              311.3155517578125,\n              612.9243316650391\n            ],\n            [\n              86.0625,\n              612.9243316650391\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            566.3787231445312,\n            311.3155517578125,\n            612.9243316650391\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The expression math.pi gets the variable pi from the math module. The value of this variable is an approximation of <i>π</i>, accurate to about 15 digits.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              618.6967315673828\n            ],\n            [\n              482.39642333984375,\n              618.6967315673828\n            ],\n            [\n              482.39642333984375,\n              641.8135375976562\n            ],\n            [\n              85.763671875,\n              641.8135375976562\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            618.6967315673828,\n            482.39642333984375,\n            641.8135375976562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you know your trigonometry, you can check the previous result by comparing it to the square root of two divided by two:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              650.07421875\n            ],\n            [\n              482.40338134765625,\n              650.07421875\n            ],\n            [\n              482.40338134765625,\n              672.904899597168\n            ],\n            [\n              85.3154296875,\n              672.904899597168\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            650.07421875,\n            482.40338134765625,\n            672.904899597168\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/41/TextInlineMath/15\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; math.sqrt(2) / 2.0 0.707106781187</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              678.5287322998047\n            ],\n            [\n              201.4779510498047,\n              678.5287322998047\n            ],\n            [\n              201.4779510498047,\n              700.6853332519531\n            ],\n            [\n              85.3154296875,\n              700.6853332519531\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            678.5287322998047,\n            201.4779510498047,\n            700.6853332519531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"3\": \"/page/41/SectionHeader/2\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/42/Page/162\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/42/PageHeader/0'></content-ref><content-ref src='/page/42/PageHeader/18'></content-ref><content-ref src='/page/42/SectionHeader/1'></content-ref><content-ref src='/page/42/Text/2'></content-ref><content-ref src='/page/42/Text/3'></content-ref><content-ref src='/page/42/Code/4'></content-ref><content-ref src='/page/42/Text/5'></content-ref><content-ref src='/page/42/TextInlineMath/6'></content-ref><content-ref src='/page/42/Text/7'></content-ref><content-ref src='/page/42/Code/159'></content-ref><content-ref src='/page/42/SectionHeader/9'></content-ref><content-ref src='/page/42/Text/10'></content-ref><content-ref src='/page/42/Text/11'></content-ref><content-ref src='/page/42/Code/12'></content-ref><content-ref src='/page/42/Text/13'></content-ref><content-ref src='/page/42/Text/14'></content-ref><content-ref src='/page/42/Text/15'></content-ref><content-ref src='/page/42/Text/16'></content-ref><content-ref src='/page/42/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/42/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              60.85986328125\n            ],\n            [\n              525.6033935546875,\n              60.85986328125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.86962890625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            60.85986328125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.58203125,\n              61.0048828125\n            ],\n            [\n              525.33984375,\n              61.0048828125\n            ],\n            [\n              525.33984375,\n              70.4794921875\n            ],\n            [\n              514.58203125,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            514.58203125,\n            61.0048828125,\n            525.33984375,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-42-0\\\"></span><b>3.4 Composition</b></h4>\",\n          \"polygon\": [\n            [\n              129.09375,\n              85.63177490234375\n            ],\n            [\n              247.15277099609375,\n              85.63177490234375\n            ],\n            [\n              247.15277099609375,\n              99.97796630859375\n            ],\n            [\n              129.09375,\n              99.97796630859375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            85.63177490234375,\n            247.15277099609375,\n            99.97796630859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So far, we have looked at the elements of a program—variables, expressions, and statements—in isolation, without talking about how to combine them.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              112.8251953125\n            ],\n            [\n              525.6033935546875,\n              112.8251953125\n            ],\n            [\n              525.6033935546875,\n              135.54193115234375\n            ],\n            [\n              129.09375,\n              135.54193115234375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            112.8251953125,\n            525.6033935546875,\n            135.54193115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One of the most useful features of programming languages is their ability to take small building blocks and <b>compose</b> them. For example, the argument of a function can be any kind of expression, including arithmetic operators:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              146.1796875\n            ],\n            [\n              525.603271484375,\n              146.1796875\n            ],\n            [\n              525.603271484375,\n              180.82696533203125\n            ],\n            [\n              129.09375,\n              180.82696533203125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            146.1796875,\n            525.603271484375,\n            180.82696533203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>x = math.sin(degrees / 360.0 * 2 * math.pi)</pre>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              187.0751953125\n            ],\n            [\n              354.5155944824219,\n              187.0751953125\n            ],\n            [\n              354.5155944824219,\n              197.60235595703125\n            ],\n            [\n              127.97314453125,\n              197.60235595703125\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            187.0751953125,\n            354.5155944824219,\n            197.60235595703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And even function calls:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              203.994140625\n            ],\n            [\n              236.52859497070312,\n              203.994140625\n            ],\n            [\n              236.52859497070312,\n              214.67596435546875\n            ],\n            [\n              129.2431640625,\n              214.67596435546875\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            203.994140625,\n            236.52859497070312,\n            214.67596435546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/TextInlineMath/6\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">x = math.exp(math.log(x + 1))</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              221.48876953125\n            ],\n            [\n              272.3818359375,\n              221.48876953125\n            ],\n            [\n              272.3818359375,\n              231.45135498046875\n            ],\n            [\n              129.60000610351562,\n              231.45135498046875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            221.48876953125,\n            272.3818359375,\n            231.45135498046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Almost anywhere you can put a value, you can put an arbitrary expression, with one exception: the left side of an assignment statement has to be a variable name. Any other expression on the left side is a syntax error (we will see exceptions to this rule later).</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              238.56231689453125\n            ],\n            [\n              525.6034545898438,\n              238.56231689453125\n            ],\n            [\n              525.6034545898438,\n              272.91400146484375\n            ],\n            [\n              128.3466796875,\n              272.91400146484375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            238.56231689453125,\n            525.6034545898438,\n            272.91400146484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Code/159\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; minutes = hours * 60 # right\\n&gt;&gt;&gt; hours * 60 = minutes # wrong!\\nSyntaxError: can't assign to operator</pre>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              279.726806640625\n            ],\n            [\n              385.8679504394531,\n              279.726806640625\n            ],\n            [\n              385.8679504394531,\n              314.077392578125\n            ],\n            [\n              129.16845703125,\n              314.077392578125\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            279.726806640625,\n            385.8679504394531,\n            314.077392578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-42-1\\\"></span><b>3.5 Adding new functions</b></h4>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              341.8738098144531\n            ],\n            [\n              309.3005065917969,\n              341.8738098144531\n            ],\n            [\n              309.3005065917969,\n              356.22003173828125\n            ],\n            [\n              128.197265625,\n              356.22003173828125\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            341.8738098144531,\n            309.3005065917969,\n            356.22003173828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So far, we have only been using the functions that come with Python, but it is also possible to add new functions. A <b>function definition</b> specifies the name of a new function and the sequence of statements that execute when the function is called.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              369.31640625\n            ],\n            [\n              525.6048583984375,\n              369.31640625\n            ],\n            [\n              525.6048583984375,\n              403.9789733886719\n            ],\n            [\n              128.3466796875,\n              403.9789733886719\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            369.31640625,\n            525.6048583984375,\n            403.9789733886719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is an example:</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              414.17578125\n            ],\n            [\n              217.248046875,\n              414.17578125\n            ],\n            [\n              217.248046875,\n              424.8749694824219\n            ],\n            [\n              128.57080078125,\n              424.8749694824219\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            414.17578125,\n            217.248046875,\n            424.8749694824219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def print_lyrics():\\n    print \\\"I'm a lumberjack, and I'm okay.\\\"\\n    print \\\"I sleep all night and I work all day.\\\"</pre>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              431.68780517578125\n            ],\n            [\n              385.8923034667969,\n              431.68780517578125\n            ],\n            [\n              385.8923034667969,\n              466.03839111328125\n            ],\n            [\n              129.46728515625,\n              466.03839111328125\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            431.68780517578125,\n            385.8923034667969,\n            466.03839111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">def is a keyword that indicates that this is a function definition. The name of the function is print_lyrics. The rules for function names are the same as for variable names: letters, numbers and some punctuation marks are legal, but the first character can't be a number. You can't use a keyword as the name of a function, and you should avoid having a variable and a function with the same name.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              472.95703125\n            ],\n            [\n              525.638671875,\n              472.95703125\n            ],\n            [\n              525.638671875,\n              531.8899536132812\n            ],\n            [\n              128.197265625,\n              531.8899536132812\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            472.95703125,\n            525.638671875,\n            531.8899536132812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The empty parentheses after the name indicate that this function doesn't take any arguments.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              542.56640625\n            ],\n            [\n              525.6033325195312,\n              542.56640625\n            ],\n            [\n              525.6033325195312,\n              564.98095703125\n            ],\n            [\n              128.0478515625,\n              564.98095703125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            542.56640625,\n            525.6033325195312,\n            564.98095703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first line of the function definition is called the <b>header</b>; the rest is called the <b>body</b>. The header has to end with a colon and the body has to be indented. By convention, the indentation is always four spaces (see Section <a href=\\\"#page-48-1\\\">3.14)</a>. The body can contain any number of statements.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              575.4375\n            ],\n            [\n              525.9375,\n              575.4375\n            ],\n            [\n              525.9375,\n              622.4599609375\n            ],\n            [\n              128.6455078125,\n              622.4599609375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            575.4375,\n            525.9375,\n            622.4599609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The strings in the print statements are enclosed in double quotes. Single quotes and double quotes do the same thing; most people use single quotes except in cases like this where a single quote (which is also an apostrophe) appears in the string.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              633.05859375\n            ],\n            [\n              525.6033935546875,\n              633.05859375\n            ],\n            [\n              525.6033935546875,\n              667.7449645996094\n            ],\n            [\n              128.49609375,\n              667.7449645996094\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            633.05859375,\n            525.6033935546875,\n            667.7449645996094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/42/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you type a function definition in interactive mode, the interpreter prints ellipses (<i>...</i>) to let you know that the definition isn't complete:</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              678.3046875\n            ],\n            [\n              525.6034545898438,\n              678.3046875\n            ],\n            [\n              525.6034545898438,\n              700.8349685668945\n            ],\n            [\n              127.7490234375,\n              700.8349685668945\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            678.3046875,\n            525.6034545898438,\n            700.8349685668945\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"3\": \"/page/41/SectionHeader/2\",\n        \"4\": \"/page/42/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/43/Page/166\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/43/PageHeader/0'></content-ref><content-ref src='/page/43/PageHeader/16'></content-ref><content-ref src='/page/43/Code/1'></content-ref><content-ref src='/page/43/Text/2'></content-ref><content-ref src='/page/43/Text/3'></content-ref><content-ref src='/page/43/Code/4'></content-ref><content-ref src='/page/43/Text/5'></content-ref><content-ref src='/page/43/Code/6'></content-ref><content-ref src='/page/43/Text/7'></content-ref><content-ref src='/page/43/Code/8'></content-ref><content-ref src='/page/43/Text/9'></content-ref><content-ref src='/page/43/Code/10'></content-ref><content-ref src='/page/43/SectionHeader/11'></content-ref><content-ref src='/page/43/Text/12'></content-ref><content-ref src='/page/43/Code/13'></content-ref><content-ref src='/page/43/Code/14'></content-ref><content-ref src='/page/43/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/43/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.8115234375\n            ],\n            [\n              482.4034118652344,\n              60.8115234375\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.8115234375,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              60.95654296875\n            ],\n            [\n              96.59619140625,\n              60.95654296875\n            ],\n            [\n              96.59619140625,\n              70.04443359375\n            ],\n            [\n              85.39013671875,\n              70.04443359375\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            60.95654296875,\n            96.59619140625,\n            70.04443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; def print_lyrics():\\n... print \\\"I'm a lumberjack, and I'm okay.\\\"\\n... print \\\"I sleep all night and I work all day.\\\"\\n...</pre>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              87.205078125\n            ],\n            [\n              366.36328125,\n              87.205078125\n            ],\n            [\n              366.36328125,\n              135.2313232421875\n            ],\n            [\n              86.2119140625,\n              135.2313232421875\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            87.205078125,\n            366.36328125,\n            135.2313232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To end the function, you have to enter an empty line (this is not necessary in a script).</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              140.185546875\n            ],\n            [\n              462.10955810546875,\n              140.185546875\n            ],\n            [\n              462.10955810546875,\n              150.81292724609375\n            ],\n            [\n              86.2119140625,\n              150.81292724609375\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            140.185546875,\n            462.10955810546875,\n            150.81292724609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Defining a function creates a variable with the same name.</p>\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              160.0048828125\n            ],\n            [\n              343.7239685058594,\n              160.0048828125\n            ],\n            [\n              343.7239685058594,\n              170.2159423828125\n            ],\n            [\n              85.24072265625,\n              170.2159423828125\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            160.0048828125,\n            343.7239685058594,\n            170.2159423828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print print_lyrics\\n&lt;function print_lyrics at 0xb7e99e9c&gt;\\n&gt;&gt;&gt; type(print_lyrics)\\n&lt;type 'function'&gt;\\nThe value of print_lyrics is a function object, which has type 'function'.</pre>\",\n          \"polygon\": [\n            [\n              84.4189453125,\n              175.5357666015625\n            ],\n            [\n              423.8246765136719,\n              175.5357666015625\n            ],\n            [\n              423.8246765136719,\n              237.6629638671875\n            ],\n            [\n              84.4189453125,\n              237.6629638671875\n            ]\n          ],\n          \"bbox\": [\n            84.4189453125,\n            175.5357666015625,\n            423.8246765136719,\n            237.6629638671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The syntax for calling the new function is the same as for built-in functions:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              240.92578125\n            ],\n            [\n              418.359375,\n              240.92578125\n            ],\n            [\n              418.359375,\n              257.06597900390625\n            ],\n            [\n              85.6142578125,\n              257.06597900390625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            240.92578125,\n            418.359375,\n            257.06597900390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print_lyrics()\\nI'm a lumberjack, and I'm okay.\\nI sleep all night and I work all day.</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              260.6484375\n            ],\n            [\n              279.9234619140625,\n              260.6484375\n            ],\n            [\n              279.9234619140625,\n              296.73638916015625\n            ],\n            [\n              85.3154296875,\n              296.73638916015625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            260.6484375,\n            279.9234619140625,\n            296.73638916015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Once you have defined a function, you can use it inside another function. For example, to repeat the previous refrain, we could write a function called repeat_lyrics:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              302.3553771972656\n            ],\n            [\n              482.4034118652344,\n              302.3553771972656\n            ],\n            [\n              482.4034118652344,\n              324.511962890625\n            ],\n            [\n              86.0625,\n              324.511962890625\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            302.3553771972656,\n            482.4034118652344,\n            324.511962890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def repeat_lyrics():\\n    print_lyrics()\\n    print_lyrics()</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              329.8318176269531\n            ],\n            [\n              192.4453125,\n              329.8318176269531\n            ],\n            [\n              192.4453125,\n              364.18341064453125\n            ],\n            [\n              85.9130859375,\n              364.18341064453125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            329.8318176269531,\n            192.4453125,\n            364.18341064453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And then call repeat_lyrics:</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              369.31640625\n            ],\n            [\n              219.638671875,\n              369.31640625\n            ],\n            [\n              219.638671875,\n              379.7649841308594\n            ],\n            [\n              86.361328125,\n              379.7649841308594\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            369.31640625,\n            219.638671875,\n            379.7649841308594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; repeat_lyrics()\\nI'm a lumberjack, and I'm okay.\\nI sleep all night and I work all day.\\nI'm a lumberjack, and I'm okay.\\nI sleep all night and I work all day.\\nBut that's not really how the song goes.</pre>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              384.78515625\n            ],\n            [\n              281.794921875,\n              384.78515625\n            ],\n            [\n              281.794921875,\n              459.406005859375\n            ],\n            [\n              85.53955078125,\n              459.406005859375\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            384.78515625,\n            281.794921875,\n            459.406005859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/42/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-43-0\\\"></span><b>3.6 Definitions and uses</b></h4>\",\n          \"polygon\": [\n            [\n              86.0625,\n              487.65234375\n            ],\n            [\n              253.33245849609375,\n              487.65234375\n            ],\n            [\n              253.33245849609375,\n              502.0660705566406\n            ],\n            [\n              86.0625,\n              502.0660705566406\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            487.65234375,\n            253.33245849609375,\n            502.0660705566406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/43/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Pulling together the code fragments from the previous section, the whole program looks like this:</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              513.17578125\n            ],\n            [\n              482.4034729003906,\n              513.17578125\n            ],\n            [\n              482.4034729003906,\n              535.8340148925781\n            ],\n            [\n              86.361328125,\n              535.8340148925781\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            513.17578125,\n            482.4034729003906,\n            535.8340148925781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/43/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def print_lyrics():\\n    print \\\"I'm a lumberjack, and I'm okay.\\\"\\n    print \\\"I sleep all night and I work all day.\\\"\\ndef repeat_lyrics():\\n    print_lyrics()\\n    print_lyrics()</pre>\",\n          \"polygon\": [\n            [\n              86.0625,\n              541.1538696289062\n            ],\n            [\n              345.744140625,\n              541.1538696289062\n            ],\n            [\n              345.744140625,\n              632.671875\n            ],\n            [\n              86.0625,\n              632.671875\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            541.1538696289062,\n            345.744140625,\n            632.671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/43/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>repeat_lyrics()</pre>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              638.7088928222656\n            ],\n            [\n              164.86549377441406,\n              638.7088928222656\n            ],\n            [\n              164.86549377441406,\n              648.9140625\n            ],\n            [\n              85.68896484375,\n              648.9140625\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            638.7088928222656,\n            164.86549377441406,\n            648.9140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/43/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/43/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This program contains two function definitions: print_lyrics and repeat_lyrics. Function definitions get executed just like other statements, but the effect is to create function objects. The statements inside the function do not get executed until the function is called, and the function definition generates no output.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              654.139892578125\n            ],\n            [\n              482.90625,\n              654.139892578125\n            ],\n            [\n              482.90625,\n              700.8350524902344\n            ],\n            [\n              86.0625,\n              700.8350524902344\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            654.139892578125,\n            482.90625,\n            700.8350524902344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/43/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"3\": \"/page/41/SectionHeader/2\",\n        \"4\": \"/page/43/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/44/Page/160\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/44/PageHeader/0'></content-ref><content-ref src='/page/44/PageHeader/18'></content-ref><content-ref src='/page/44/Text/1'></content-ref><content-ref src='/page/44/Text/2'></content-ref><content-ref src='/page/44/Text/3'></content-ref><content-ref src='/page/44/SectionHeader/4'></content-ref><content-ref src='/page/44/Text/5'></content-ref><content-ref src='/page/44/Text/6'></content-ref><content-ref src='/page/44/Text/7'></content-ref><content-ref src='/page/44/Text/8'></content-ref><content-ref src='/page/44/Text/9'></content-ref><content-ref src='/page/44/Text/10'></content-ref><content-ref src='/page/44/Text/11'></content-ref><content-ref src='/page/44/SectionHeader/12'></content-ref><content-ref src='/page/44/Text/13'></content-ref><content-ref src='/page/44/Text/14'></content-ref><content-ref src='/page/44/Code/15'></content-ref><content-ref src='/page/44/Text/16'></content-ref><content-ref src='/page/44/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/44/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              127.8984375,\n              60.85986328125\n            ],\n            [\n              525.6033935546875,\n              60.85986328125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              127.8984375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            60.85986328125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/43/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.283203125,\n              60.27978515625\n            ],\n            [\n              525.638671875,\n              60.27978515625\n            ],\n            [\n              525.638671875,\n              70.04443359375\n            ],\n            [\n              514.283203125,\n              70.04443359375\n            ]\n          ],\n          \"bbox\": [\n            514.283203125,\n            60.27978515625,\n            525.638671875,\n            70.04443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/43/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As you might expect, you have to create a function before you can execute it. In other words, the function definition has to be executed before the first time it is called.</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              88.83526611328125\n            ],\n            [\n              526.236328125,\n              88.83526611328125\n            ],\n            [\n              526.236328125,\n              111.181640625\n            ],\n            [\n              127.599609375,\n              111.181640625\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            88.83526611328125,\n            526.236328125,\n            111.181640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/43/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 3.1.</b> <i>Move the last line of this program to the top, so the function call appears before the</i> <i>definitions. Run the program and see what error message you get.</i></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              113.05157470703125\n            ],\n            [\n              525.9375,\n              113.05157470703125\n            ],\n            [\n              525.9375,\n              135.20819091796875\n            ],\n            [\n              128.9443359375,\n              135.20819091796875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            113.05157470703125,\n            525.9375,\n            135.20819091796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/43/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 3.2.</b> <i>Move the function call back to the bottom and move the definition of</i> print_lyrics <i>after the definition of</i> repeat_lyrics<i>. What happens when you run this program?</i></p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              137.4395751953125\n            ],\n            [\n              525.9375,\n              137.4395751953125\n            ],\n            [\n              525.9375,\n              159.62030029296875\n            ],\n            [\n              128.3466796875,\n              159.62030029296875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            137.4395751953125,\n            525.9375,\n            159.62030029296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/43/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-44-0\\\"></span><b>3.7 Flow of execution</b></h4>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              188.74676513671875\n            ],\n            [\n              278.2409973144531,\n              188.74676513671875\n            ],\n            [\n              278.2409973144531,\n              203.09295654296875\n            ],\n            [\n              127.8984375,\n              203.09295654296875\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            188.74676513671875,\n            278.2409973144531,\n            203.09295654296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In order to ensure that a function is defined before its first use, you have to know the order in which statements are executed, which is called the <b>flow of execution</b>.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              214.62890625\n            ],\n            [\n              525.603515625,\n              214.62890625\n            ],\n            [\n              525.603515625,\n              237.33489990234375\n            ],\n            [\n              128.9443359375,\n              237.33489990234375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            214.62890625,\n            525.603515625,\n            237.33489990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Execution always begins at the first statement of the program. Statements are executed one at a time, in order from top to bottom.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              246.919921875\n            ],\n            [\n              525.638671875,\n              246.919921875\n            ],\n            [\n              525.638671875,\n              269.40594482421875\n            ],\n            [\n              128.794921875,\n              269.40594482421875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            246.919921875,\n            525.638671875,\n            269.40594482421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Function definitions do not alter the flow of execution of the program, but remember that statements inside the function are not executed until the function is called.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              279.017578125\n            ],\n            [\n              526.236328125,\n              279.017578125\n            ],\n            [\n              526.236328125,\n              301.4769287109375\n            ],\n            [\n              128.794921875,\n              301.4769287109375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            279.017578125,\n            526.236328125,\n            301.4769287109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A function call is like a detour in the flow of execution. Instead of going to the next statement, the flow jumps to the body of the function, executes all the statements there, and then comes back to pick up where it left off.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              311.30859375\n            ],\n            [\n              525.9375,\n              311.30859375\n            ],\n            [\n              525.9375,\n              345.742919921875\n            ],\n            [\n              128.6455078125,\n              345.742919921875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            311.30859375,\n            525.9375,\n            345.742919921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">That sounds simple enough, until you remember that one function can call another. While in the middle of one function, the program might have to execute the statements in another function. But while executing that new function, the program might have to execute yet another function!</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              355.39453125\n            ],\n            [\n              526.236328125,\n              355.39453125\n            ],\n            [\n              526.236328125,\n              402.2029113769531\n            ],\n            [\n              128.794921875,\n              402.2029113769531\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            355.39453125,\n            526.236328125,\n            402.2029113769531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Fortunately, Python is good at keeping track of where it is, so each time a function completes, the program picks up where it left off in the function that called it. When it gets to the end of the program, it terminates.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              411.85546875\n            ],\n            [\n              525.9375,\n              411.85546875\n            ],\n            [\n              525.9375,\n              446.4679260253906\n            ],\n            [\n              129.09375,\n              446.4679260253906\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            411.85546875,\n            525.9375,\n            446.4679260253906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">What's the moral of this sordid tale? When you read a program, you don't always want to read from top to bottom. Sometimes it makes more sense if you follow the flow of execution.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              456.328125\n            ],\n            [\n              526.53515625,\n              456.328125\n            ],\n            [\n              526.53515625,\n              490.73394775390625\n            ],\n            [\n              129.2431640625,\n              490.73394775390625\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            456.328125,\n            526.53515625,\n            490.73394775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-44-1\\\"></span><b>3.8 Parameters and arguments</b></h4>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              519.7107849121094\n            ],\n            [\n              335.6114196777344,\n              519.7107849121094\n            ],\n            [\n              335.6114196777344,\n              534.0570068359375\n            ],\n            [\n              128.12255859375,\n              534.0570068359375\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            519.7107849121094,\n            335.6114196777344,\n            534.0570068359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Some of the built-in functions we have seen require arguments. For example, when you call math.sin you pass a number as an argument. Some functions take more than one argument: math.pow takes two, the base and the exponent.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              546.142333984375\n            ],\n            [\n              525.6033935546875,\n              546.142333984375\n            ],\n            [\n              525.6033935546875,\n              580.4929351806641\n            ],\n            [\n              128.3466796875,\n              580.4929351806641\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            546.142333984375,\n            525.6033935546875,\n            580.4929351806641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Inside the function, the arguments are assigned to variables called <b>parameters</b>. Here is an example of a user-defined function that takes an argument:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              590.3102264404297\n            ],\n            [\n              525.9375,\n              590.3102264404297\n            ],\n            [\n              525.9375,\n              612.56494140625\n            ],\n            [\n              128.3466796875,\n              612.56494140625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            590.3102264404297,\n            525.9375,\n            612.56494140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def print_twice(bruce):\\n    print bruce\\n    print bruce</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              618.3577880859375\n            ],\n            [\n              249.90830993652344,\n              618.3577880859375\n            ],\n            [\n              249.90830993652344,\n              653.5546875\n            ],\n            [\n              129.5999755859375,\n              653.5546875\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            618.3577880859375,\n            249.90830993652344,\n            653.5546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This function assigns the argument to a parameter named bruce. When the function is called, it prints the value of the parameter (whatever it is) twice.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              658.58203125\n            ],\n            [\n              525.6046752929688,\n              658.58203125\n            ],\n            [\n              525.6046752929688,\n              680.9579544067383\n            ],\n            [\n              128.3466796875,\n              680.9579544067383\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            658.58203125,\n            525.6046752929688,\n            680.9579544067383\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/44/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This function works with any value that can be printed.</p>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              689.90625\n            ],\n            [\n              375.029296875,\n              689.90625\n            ],\n            [\n              375.029296875,\n              700.8349533081055\n            ],\n            [\n              128.86962890625,\n              700.8349533081055\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            689.90625,\n            375.029296875,\n            700.8349533081055\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"3\": \"/page/41/SectionHeader/2\",\n        \"4\": \"/page/44/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/45/Page/196\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/45/PageHeader/0'></content-ref><content-ref src='/page/45/PageHeader/15'></content-ref><content-ref src='/page/45/Code/1'></content-ref><content-ref src='/page/45/Text/2'></content-ref><content-ref src='/page/45/Code/3'></content-ref><content-ref src='/page/45/Text/4'></content-ref><content-ref src='/page/45/Text/5'></content-ref><content-ref src='/page/45/Code/6'></content-ref><content-ref src='/page/45/Text/7'></content-ref><content-ref src='/page/45/SectionHeader/8'></content-ref><content-ref src='/page/45/Text/9'></content-ref><content-ref src='/page/45/Code/10'></content-ref><content-ref src='/page/45/Text/11'></content-ref><content-ref src='/page/45/Code/12'></content-ref><content-ref src='/page/45/Text/13'></content-ref><content-ref src='/page/45/Code/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/45/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.85986328125\n            ],\n            [\n              482.4034118652344,\n              60.85986328125\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.85986328125,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              60.71484375\n            ],\n            [\n              96.74560546875,\n              60.71484375\n            ],\n            [\n              96.74560546875,\n              70.2861328125\n            ],\n            [\n              85.53955078125,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            60.71484375,\n            96.74560546875,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print_twice('Spam')\\nSpam\\nSpam\\n&gt;&gt;&gt; print_twice(17)\\n17\\n17\\n&gt;&gt;&gt; print_twice(math.pi)\\n3.14159265359\\n3.14159265359</pre>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              88.68572998046875\n            ],\n            [\n              211.93870544433594,\n              88.68572998046875\n            ],\n            [\n              211.93870544433594,\n              197.3232421875\n            ],\n            [\n              86.4000015258789,\n              197.3232421875\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            88.68572998046875,\n            211.93870544433594,\n            197.3232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The same rules of composition that apply to built-in functions also apply to user-defined functions, so we can use any kind of expression as an argument for print_twice:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              201.09375\n            ],\n            [\n              482.4033508300781,\n              201.09375\n            ],\n            [\n              482.4033508300781,\n              224.296875\n            ],\n            [\n              86.0625,\n              224.296875\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            201.09375,\n            482.4033508300781,\n            224.296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print_twice('Spam '*4)\\nSpam Spam Spam Spam\\nSpam Spam Spam Spam\\n&gt;&gt;&gt; print_twice(math.cos(math.pi))\\n-1.0\\n-1.0</pre>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              229.03778076171875\n            ],\n            [\n              264.2423095703125,\n              229.03778076171875\n            ],\n            [\n              264.2423095703125,\n              299.9713134765625\n            ],\n            [\n              86.361328125,\n              299.9713134765625\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            229.03778076171875,\n            264.2423095703125,\n            299.9713134765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The argument is evaluated before the function is called, so in the examples the expressions 'Spam '*4 and math.cos(math.pi) are only evaluated once.</p>\",\n          \"polygon\": [\n            [\n              86.39998626708984,\n              305.12109375\n            ],\n            [\n              482.40338134765625,\n              305.12109375\n            ],\n            [\n              482.40338134765625,\n              327.61688232421875\n            ],\n            [\n              86.39998626708984,\n              327.61688232421875\n            ]\n          ],\n          \"bbox\": [\n            86.39998626708984,\n            305.12109375,\n            482.40338134765625,\n            327.61688232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can also use a variable as an argument:</p>\",\n          \"polygon\": [\n            [\n              86.39999389648438,\n              336.83203125\n            ],\n            [\n              277.213623046875,\n              336.83203125\n            ],\n            [\n              277.213623046875,\n              346.889892578125\n            ],\n            [\n              86.39999389648438,\n              346.889892578125\n            ]\n          ],\n          \"bbox\": [\n            86.39999389648438,\n            336.83203125,\n            277.213623046875,\n            346.889892578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; michael = 'Eric, the half a bee.'\\n&gt;&gt;&gt; print_twice(michael)\\nEric, the half a bee.\\nEric, the half a bee.</pre>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              352.0787353515625\n            ],\n            [\n              279.8783874511719,\n              352.0787353515625\n            ],\n            [\n              279.8783874511719,\n              400.25390625\n            ],\n            [\n              85.98779296875,\n              400.25390625\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            352.0787353515625,\n            279.8783874511719,\n            400.25390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The name of the variable we pass as an argument (michael) has nothing to do with the name of the parameter (bruce). It doesn't matter what the value was called back home (in the caller); here in print_twice, we call everybody bruce.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              403.734375\n            ],\n            [\n              482.39837646484375,\n              403.734375\n            ],\n            [\n              482.39837646484375,\n              438.4638977050781\n            ],\n            [\n              86.0625,\n              438.4638977050781\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            403.734375,\n            482.39837646484375,\n            438.4638977050781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/44/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-45-0\\\"></span><b>3.9 Variables and parameters are local</b></h4>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              466.3828125\n            ],\n            [\n              342.60882568359375,\n              466.3828125\n            ],\n            [\n              342.60882568359375,\n              480.94195556640625\n            ],\n            [\n              85.68896484375,\n              480.94195556640625\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            466.3828125,\n            342.60882568359375,\n            480.94195556640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/45/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you create a variable inside a function, it is <b>local</b>, which means that it only exists inside the function. For example:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              491.90625\n            ],\n            [\n              482.90625,\n              491.90625\n            ],\n            [\n              482.90625,\n              514.5798950195312\n            ],\n            [\n              86.2119140625,\n              514.5798950195312\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            491.90625,\n            482.90625,\n            514.5798950195312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/45/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def cat_twice(part1, part2):\\n    cat = part1 + part2\\n    print_twice(cat)</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              519.7687377929688\n            ],\n            [\n              232.86021423339844,\n              519.7687377929688\n            ],\n            [\n              232.86021423339844,\n              554.1203460693359\n            ],\n            [\n              85.9130859375,\n              554.1203460693359\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            519.7687377929688,\n            232.86021423339844,\n            554.1203460693359\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/45/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This function takes two arguments, concatenates them, and prints the result twice. Here is an example that uses it:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              559.1953125\n            ],\n            [\n              482.4034729003906,\n              559.1953125\n            ],\n            [\n              482.4034729003906,\n              581.764892578125\n            ],\n            [\n              86.0625,\n              581.764892578125\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            559.1953125,\n            482.4034729003906,\n            581.764892578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/45/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; line1 = 'Bing tiddle '\\n&gt;&gt;&gt; line2 = 'tiddle bang.'\\n&gt;&gt;&gt; cat_twice(line1, line2)\\nBing tiddle tiddle bang.\\nBing tiddle tiddle bang.</pre>\",\n          \"polygon\": [\n            [\n              86.40007019042969,\n              585.10546875\n            ],\n            [\n              228.603515625,\n              585.10546875\n            ],\n            [\n              228.603515625,\n              645.6943511962891\n            ],\n            [\n              86.40007019042969,\n              645.6943511962891\n            ]\n          ],\n          \"bbox\": [\n            86.40007019042969,\n            585.10546875,\n            228.603515625,\n            645.6943511962891\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/45/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When cat_twice terminates, the variable cat is destroyed. If we try to print it, we get an exception:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              650.84765625\n            ],\n            [\n              482.39874267578125,\n              650.84765625\n            ],\n            [\n              482.39874267578125,\n              674.05078125\n            ],\n            [\n              85.763671875,\n              674.05078125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            650.84765625,\n            482.39874267578125,\n            674.05078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/45/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/45/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print cat\\nNameError: name 'cat' is not defined</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              678.5287475585938\n            ],\n            [\n              276.71484375,\n              678.5287475585938\n            ],\n            [\n              276.71484375,\n              700.6853408813477\n            ],\n            [\n              85.763671875,\n              700.6853408813477\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            678.5287475585938,\n            276.71484375,\n            700.6853408813477\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/45/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"3\": \"/page/41/SectionHeader/2\",\n        \"4\": \"/page/45/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/46/Page/226\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/46/PageHeader/0'></content-ref><content-ref src='/page/46/PageHeader/13'></content-ref><content-ref src='/page/46/FigureGroup/224'></content-ref><content-ref src='/page/46/Text/3'></content-ref><content-ref src='/page/46/SectionHeader/4'></content-ref><content-ref src='/page/46/Text/5'></content-ref><content-ref src='/page/46/Text/6'></content-ref><content-ref src='/page/46/Text/7'></content-ref><content-ref src='/page/46/Text/8'></content-ref><content-ref src='/page/46/Text/9'></content-ref><content-ref src='/page/46/Text/10'></content-ref><content-ref src='/page/46/Code/11'></content-ref><content-ref src='/page/46/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/46/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.49609375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.49609375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/45/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/46/PageHeader/13\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              515.1796875,\n              60.95654296875\n            ],\n            [\n              526.53515625,\n              60.95654296875\n            ],\n            [\n              526.53515625,\n              70.04443359375\n            ],\n            [\n              515.1796875,\n              70.04443359375\n            ]\n          ],\n          \"bbox\": [\n            515.1796875,\n            60.95654296875,\n            526.53515625,\n            70.04443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/45/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/46/FigureGroup/224\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/46/Figure/1'></content-ref><content-ref src='/page/46/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              210.5244140625,\n              84.15966796875\n            ],\n            [\n              435.09375,\n              84.15966796875\n            ],\n            [\n              435.09375,\n              223.55291748046875\n            ],\n            [\n              210.5244140625,\n              223.55291748046875\n            ]\n          ],\n          \"bbox\": [\n            210.5244140625,\n            84.15966796875,\n            435.09375,\n            223.55291748046875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/46/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  210.5244140625,\n                  84.15966796875\n                ],\n                [\n                  435.09375,\n                  84.15966796875\n                ],\n                [\n                  435.09375,\n                  197.2265625\n                ],\n                [\n                  210.5244140625,\n                  197.2265625\n                ]\n              ],\n              \"bbox\": [\n                210.5244140625,\n                84.15966796875,\n                435.09375,\n                197.2265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"3\": \"/page/41/SectionHeader/2\",\n                \"4\": \"/page/45/SectionHeader/8\"\n              },\n              \"images\": {\n                \"/page/46/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/46/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-46-1\\\"></span>Figure 3.1: Stack diagram.</p>\",\n              \"polygon\": [\n                [\n                  268.7958984375,\n                  213.08203125\n                ],\n                [\n                  384.9295959472656,\n                  213.08203125\n                ],\n                [\n                  384.9295959472656,\n                  223.55291748046875\n                ],\n                [\n                  268.7958984375,\n                  223.55291748046875\n                ]\n              ],\n              \"bbox\": [\n                268.7958984375,\n                213.08203125,\n                384.9295959472656,\n                223.55291748046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"3\": \"/page/41/SectionHeader/2\",\n                \"4\": \"/page/45/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/45/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/46/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Parameters are also local. For example, outside print_twice, there is no such thing as bruce.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              244.52374267578125\n            ],\n            [\n              525.9375,\n              244.52374267578125\n            ],\n            [\n              525.9375,\n              266.82989501953125\n            ],\n            [\n              128.6455078125,\n              266.82989501953125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            244.52374267578125,\n            525.9375,\n            266.82989501953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/45/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/46/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-46-0\\\"></span><b>3.10 Stack diagrams</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              294.8467102050781\n            ],\n            [\n              269.0947265625,\n              294.8467102050781\n            ],\n            [\n              269.0947265625,\n              309.19293212890625\n            ],\n            [\n              128.3466796875,\n              309.19293212890625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            294.8467102050781,\n            269.0947265625,\n            309.19293212890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/46/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To keep track of which variables can be used where, it is sometimes useful to draw a <b>stack</b> <b>diagram</b>. Like state diagrams, stack diagrams show the value of each variable, but they also show the function each variable belongs to.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              320.4951477050781\n            ],\n            [\n              525.9375,\n              320.4951477050781\n            ],\n            [\n              525.9375,\n              354.9438781738281\n            ],\n            [\n              128.9443359375,\n              354.9438781738281\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            320.4951477050781,\n            525.9375,\n            354.9438781738281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/46/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Each function is represented by a <b>frame</b>. A frame is a box with the name of a function beside it and the parameters and variables of the function inside it. The stack diagram for the previous example is shown in Figure <a href=\\\"#page-46-1\\\">3.1.</a></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              363.708984375\n            ],\n            [\n              525.9375,\n              363.708984375\n            ],\n            [\n              525.9375,\n              398.52288818359375\n            ],\n            [\n              128.9443359375,\n              398.52288818359375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            363.708984375,\n            525.9375,\n            398.52288818359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/46/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The frames are arranged in a stack that indicates which function called which, and so on. In this example, print_twice was called by cat_twice, and cat_twice was called by __main__, which is a special name for the topmost frame. When you create a variable outside of any function, it belongs to __main__.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              407.21484375\n            ],\n            [\n              525.9375,\n              407.21484375\n            ],\n            [\n              525.9375,\n              454.2969055175781\n            ],\n            [\n              128.3466796875,\n              454.2969055175781\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            407.21484375,\n            525.9375,\n            454.2969055175781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/46/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Each parameter refers to the same value as its corresponding argument. So, part1 has the same value as line1, part2 has the same value as line2, and bruce has the same value as cat.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              463.3757629394531\n            ],\n            [\n              525.9375,\n              463.3757629394531\n            ],\n            [\n              525.9375,\n              497.8769226074219\n            ],\n            [\n              128.6455078125,\n              497.8769226074219\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            463.3757629394531,\n            525.9375,\n            497.8769226074219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/46/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If an error occurs during a function call, Python prints the name of the function, and the name of the function that called it, and the name of the function that called <i>that</i>, all the way back to __main__.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              506.98828125\n            ],\n            [\n              525.638671875,\n              506.98828125\n            ],\n            [\n              525.638671875,\n              541.4569396972656\n            ],\n            [\n              128.794921875,\n              541.4569396972656\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            506.98828125,\n            525.638671875,\n            541.4569396972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/46/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, if you try to access cat from within print_twice, you get a NameError:</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              550.5357818603516\n            ],\n            [\n              502.03125,\n              550.5357818603516\n            ],\n            [\n              502.03125,\n              560.6479339599609\n            ],\n            [\n              127.8984375,\n              560.6479339599609\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            550.5357818603516,\n            502.03125,\n            560.6479339599609\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/46/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>Traceback (innermost last):\\n  File \\\"test.py\\\", line 13, in __main__\\n    cat_twice(line1, line2)\\n  File \\\"test.py\\\", line 5, in cat_twice\\n    print_twice(cat)\\n  File \\\"test.py\\\", line 9, in print_twice\\n    print cat\\nNameError: name 'cat' is not defined</pre>\",\n          \"polygon\": [\n            [\n              129.60006713867188,\n              565.3828125\n            ],\n            [\n              339.767578125,\n              565.3828125\n            ],\n            [\n              339.767578125,\n              661.077392578125\n            ],\n            [\n              129.60006713867188,\n              661.077392578125\n            ]\n          ],\n          \"bbox\": [\n            129.60006713867188,\n            565.3828125,\n            339.767578125,\n            661.077392578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/46/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This list of functions is called a <b>traceback</b>. It tells you what program file the error occurred in, and what line, and what functions were executing at the time. It also shows the line of code that caused the error.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              665.15625\n            ],\n            [\n              525.638671875,\n              665.15625\n            ],\n            [\n              525.638671875,\n              700.8349533081055\n            ],\n            [\n              128.197265625,\n              700.8349533081055\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            665.15625,\n            525.638671875,\n            700.8349533081055\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"3\": \"/page/41/SectionHeader/2\",\n        \"4\": \"/page/46/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/47/Page/160\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/47/PageHeader/0'></content-ref><content-ref src='/page/47/PageHeader/20'></content-ref><content-ref src='/page/47/Text/1'></content-ref><content-ref src='/page/47/SectionHeader/2'></content-ref><content-ref src='/page/47/Text/3'></content-ref><content-ref src='/page/47/Text/4'></content-ref><content-ref src='/page/47/Code/5'></content-ref><content-ref src='/page/47/Text/6'></content-ref><content-ref src='/page/47/Code/7'></content-ref><content-ref src='/page/47/Text/8'></content-ref><content-ref src='/page/47/Text/9'></content-ref><content-ref src='/page/47/Text/10'></content-ref><content-ref src='/page/47/Text/11'></content-ref><content-ref src='/page/47/Code/12'></content-ref><content-ref src='/page/47/Text/13'></content-ref><content-ref src='/page/47/Code/14'></content-ref><content-ref src='/page/47/Text/15'></content-ref><content-ref src='/page/47/SectionHeader/16'></content-ref><content-ref src='/page/47/Text/17'></content-ref><content-ref src='/page/47/ListGroup/158'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/47/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.37646484375\n            ],\n            [\n              482.4034118652344,\n              60.37646484375\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.37646484375,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              61.294921875\n            ],\n            [\n              96.44677734375,\n              61.294921875\n            ],\n            [\n              96.44677734375,\n              70.8662109375\n            ],\n            [\n              85.53955078125,\n              70.8662109375\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            61.294921875,\n            96.44677734375,\n            70.8662109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The order of the functions in the traceback is the same as the order of the frames in the stack diagram. The function that is currently running is at the bottom.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              88.60693359375\n            ],\n            [\n              482.90625,\n              88.60693359375\n            ],\n            [\n              482.90625,\n              110.99188232421875\n            ],\n            [\n              85.166015625,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            88.60693359375,\n            482.90625,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/41/SectionHeader/2\",\n            \"4\": \"/page/46/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-47-0\\\"></span><b>3.11 Fruitful functions and void functions</b></h3>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              139.025390625\n            ],\n            [\n              369.6944274902344,\n              139.025390625\n            ],\n            [\n              369.6944274902344,\n              154.137939453125\n            ],\n            [\n              85.3154296875,\n              154.137939453125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            139.025390625,\n            369.6944274902344,\n            154.137939453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Some of the functions we are using, such as the math functions, yield results; for lack of a better name, I call them <b>fruitful functions</b>. Other functions, like print_twice, perform an action but don't return a value. They are called <b>void functions</b>.</p>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              165.2255859375\n            ],\n            [\n              482.40447998046875,\n              165.2255859375\n            ],\n            [\n              482.40447998046875,\n              200.44793701171875\n            ],\n            [\n              84.8671875,\n              200.44793701171875\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            165.2255859375,\n            482.40447998046875,\n            200.44793701171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you call a fruitful function, you almost always want to do something with the result; for example, you might assign it to a variable or use it as part of an expression:</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              209.21484375\n            ],\n            [\n              482.4033203125,\n              209.21484375\n            ],\n            [\n              482.4033203125,\n              232.3929443359375\n            ],\n            [\n              85.0166015625,\n              232.3929443359375\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            209.21484375,\n            482.4033203125,\n            232.3929443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>x = math.cos(radians)\\ngolden = (math.sqrt(5) + 1) / 2</pre>\",\n          \"polygon\": [\n            [\n              84.7177734375,\n              238.05877685546875\n            ],\n            [\n              248.541259765625,\n              238.05877685546875\n            ],\n            [\n              248.541259765625,\n              260.21636962890625\n            ],\n            [\n              84.7177734375,\n              260.21636962890625\n            ]\n          ],\n          \"bbox\": [\n            84.7177734375,\n            238.05877685546875,\n            248.541259765625,\n            260.21636962890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you call a function in interactive mode, Python displays the result:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              264.90234375\n            ],\n            [\n              407.016357421875,\n              264.90234375\n            ],\n            [\n              407.016357421875,\n              276.14398193359375\n            ],\n            [\n              86.0625,\n              276.14398193359375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            264.90234375,\n            407.016357421875,\n            276.14398193359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; math.sqrt(5)\\n2.2360679774997898</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              281.810791015625\n            ],\n            [\n              181.986328125,\n              281.810791015625\n            ],\n            [\n              181.986328125,\n              303.9683837890625\n            ],\n            [\n              85.46484375,\n              303.9683837890625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            281.810791015625,\n            181.986328125,\n            303.9683837890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But in a script, if you call a fruitful function all by itself, the return value is lost forever!</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              309.76171875\n            ],\n            [\n              468.5625,\n              309.76171875\n            ],\n            [\n              468.5625,\n              319.8959655761719\n            ],\n            [\n              85.763671875,\n              319.8959655761719\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            309.76171875,\n            468.5625,\n            319.8959655761719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">math.sqrt(5)</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              325.56280517578125\n            ],\n            [\n              149.17433166503906,\n              325.56280517578125\n            ],\n            [\n              149.17433166503906,\n              335.525390625\n            ],\n            [\n              85.46484375,\n              335.525390625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            325.56280517578125,\n            149.17433166503906,\n            335.525390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This script computes the square root of 5, but since it doesn't store or display the result, it is not very useful.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              341.279296875\n            ],\n            [\n              482.40338134765625,\n              341.279296875\n            ],\n            [\n              482.40338134765625,\n              363.708984375\n            ],\n            [\n              85.46484375,\n              363.708984375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            341.279296875,\n            482.40338134765625,\n            363.708984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Void functions might display something on the screen or have some other effect, but they don't have a return value. If you try to assign the result to a variable, you get a special value called None.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              372.216796875\n            ],\n            [\n              482.4034423828125,\n              372.216796875\n            ],\n            [\n              482.4034423828125,\n              407.7869567871094\n            ],\n            [\n              85.46484375,\n              407.7869567871094\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            372.216796875,\n            482.4034423828125,\n            407.7869567871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; result = print_twice('Bing')\\nBing\\nBing\\n&gt;&gt;&gt; print result\\nNone</pre>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              413.40234375\n            ],\n            [\n              253.73236083984375,\n              413.40234375\n            ],\n            [\n              253.73236083984375,\n              476.82421875\n            ],\n            [\n              85.0166015625,\n              476.82421875\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            413.40234375,\n            253.73236083984375,\n            476.82421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The value None is not the same as the string 'None'. It is a special value that has its own type:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              478.0097961425781\n            ],\n            [\n              482.399169921875,\n              478.0097961425781\n            ],\n            [\n              482.399169921875,\n              500.4140625\n            ],\n            [\n              86.0625,\n              500.4140625\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            478.0097961425781,\n            482.399169921875,\n            500.4140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print type(None)\\n&lt;type 'NoneType'&gt;</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              505.9827880859375\n            ],\n            [\n              191.0172119140625,\n              505.9827880859375\n            ],\n            [\n              191.0172119140625,\n              528.1393737792969\n            ],\n            [\n              85.46484375,\n              528.1393737792969\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            505.9827880859375,\n            191.0172119140625,\n            528.1393737792969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The functions we have written so far are all void. We will start writing fruitful functions in a few chapters.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              533.28515625\n            ],\n            [\n              482.4031982421875,\n              533.28515625\n            ],\n            [\n              482.4031982421875,\n              556.2619323730469\n            ],\n            [\n              85.9130859375,\n              556.2619323730469\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            533.28515625,\n            482.4031982421875,\n            556.2619323730469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/SectionHeader/16\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-47-1\\\"></span><b>3.12 Why functions?</b></h4>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              584.71875\n            ],\n            [\n              229.04421997070312,\n              584.71875\n            ],\n            [\n              229.04421997070312,\n              599.4089813232422\n            ],\n            [\n              85.3154296875,\n              599.4089813232422\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            584.71875,\n            229.04421997070312,\n            599.4089813232422\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\",\n            \"4\": \"/page/47/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It may not be clear why it is worth the trouble to divide a program into functions. There are several reasons:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              611.015625\n            ],\n            [\n              482.607421875,\n              611.015625\n            ],\n            [\n              482.607421875,\n              633.52392578125\n            ],\n            [\n              85.46484375,\n              633.52392578125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            611.015625,\n            482.607421875,\n            633.52392578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\",\n            \"4\": \"/page/47/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/47/ListGroup/158\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/47/ListItem/18'></content-ref><content-ref src='/page/47/ListItem/19'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              100.28797149658203,\n              645.8203125\n            ],\n            [\n              482.90625,\n              645.8203125\n            ],\n            [\n              482.90625,\n              700.8349304199219\n            ],\n            [\n              100.28797149658203,\n              700.8349304199219\n            ]\n          ],\n          \"bbox\": [\n            100.28797149658203,\n            645.8203125,\n            482.90625,\n            700.8349304199219\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/47/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Creating a new function gives you an opportunity to name a group of statements, which makes your program easier to read and debug.</li>\",\n              \"polygon\": [\n                [\n                  100.28797149658203,\n                  645.8203125\n                ],\n                [\n                  482.90625,\n                  645.8203125\n                ],\n                [\n                  482.90625,\n                  668.8069305419922\n                ],\n                [\n                  100.28797149658203,\n                  668.8069305419922\n                ]\n              ],\n              \"bbox\": [\n                100.28797149658203,\n                645.8203125,\n                482.90625,\n                668.8069305419922\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"3\": \"/page/47/SectionHeader/2\",\n                \"4\": \"/page/47/SectionHeader/16\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/47/ListItem/19\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Functions can make a program smaller by eliminating repetitive code. Later, if you make a change, you only have to make it in one place.</li>\",\n              \"polygon\": [\n                [\n                  100.28797149658203,\n                  677.53125\n                ],\n                [\n                  482.90625,\n                  677.53125\n                ],\n                [\n                  482.90625,\n                  700.8349304199219\n                ],\n                [\n                  100.28797149658203,\n                  700.8349304199219\n                ]\n              ],\n              \"bbox\": [\n                100.28797149658203,\n                677.53125,\n                482.90625,\n                700.8349304199219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"3\": \"/page/47/SectionHeader/2\",\n                \"4\": \"/page/47/SectionHeader/16\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\",\n            \"4\": \"/page/47/SectionHeader/16\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"3\": \"/page/47/SectionHeader/2\",\n        \"4\": \"/page/47/SectionHeader/16\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/48/Page/184\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/48/PageHeader/0'></content-ref><content-ref src='/page/48/PageHeader/20'></content-ref><content-ref src='/page/48/ListGroup/182'></content-ref><content-ref src='/page/48/SectionHeader/3'></content-ref><content-ref src='/page/48/Text/4'></content-ref><content-ref src='/page/48/Code/5'></content-ref><content-ref src='/page/48/Text/6'></content-ref><content-ref src='/page/48/Text/7'></content-ref><content-ref src='/page/48/Code/8'></content-ref><content-ref src='/page/48/Text/9'></content-ref><content-ref src='/page/48/Code/10'></content-ref><content-ref src='/page/48/Text/11'></content-ref><content-ref src='/page/48/Code/12'></content-ref><content-ref src='/page/48/Text/13'></content-ref><content-ref src='/page/48/Code/14'></content-ref><content-ref src='/page/48/Text/15'></content-ref><content-ref src='/page/48/SectionHeader/16'></content-ref><content-ref src='/page/48/Text/17'></content-ref><content-ref src='/page/48/Text/18'></content-ref><content-ref src='/page/48/Text/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/48/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              127.8984375,\n              61.0048828125\n            ],\n            [\n              525.5996704101562,\n              61.0048828125\n            ],\n            [\n              525.5996704101562,\n              71.13372802734375\n            ],\n            [\n              127.8984375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            61.0048828125,\n            525.5996704101562,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\",\n            \"4\": \"/page/47/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.58203125,\n              60.4248046875\n            ],\n            [\n              525.33984375,\n              60.4248046875\n            ],\n            [\n              525.33984375,\n              69.8994140625\n            ],\n            [\n              514.58203125,\n              69.8994140625\n            ]\n          ],\n          \"bbox\": [\n            514.58203125,\n            60.4248046875,\n            525.33984375,\n            69.8994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\",\n            \"4\": \"/page/47/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/ListGroup/182\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/48/ListItem/1'></content-ref><content-ref src='/page/48/ListItem/2'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.83984375,\n              88.41357421875\n            ],\n            [\n              525.603515625,\n              88.41357421875\n            ],\n            [\n              525.603515625,\n              142.61590576171875\n            ],\n            [\n              142.83984375,\n              142.61590576171875\n            ]\n          ],\n          \"bbox\": [\n            142.83984375,\n            88.41357421875,\n            525.603515625,\n            142.61590576171875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/48/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Dividing a long program into functions allows you to debug the parts one at a time and then assemble them into a working whole.</li>\",\n              \"polygon\": [\n                [\n                  143.4375,\n                  88.41357421875\n                ],\n                [\n                  525.6034545898438,\n                  88.41357421875\n                ],\n                [\n                  525.6034545898438,\n                  110.99188232421875\n                ],\n                [\n                  143.4375,\n                  110.99188232421875\n                ]\n              ],\n              \"bbox\": [\n                143.4375,\n                88.41357421875,\n                525.6034545898438,\n                110.99188232421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"3\": \"/page/47/SectionHeader/2\",\n                \"4\": \"/page/47/SectionHeader/16\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/48/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Well-designed functions are often useful for many programs. Once you write and debug one, you can reuse it.</li>\",\n              \"polygon\": [\n                [\n                  142.83984375,\n                  119.9794921875\n                ],\n                [\n                  525.603515625,\n                  119.9794921875\n                ],\n                [\n                  525.603515625,\n                  142.61590576171875\n                ],\n                [\n                  142.83984375,\n                  142.61590576171875\n                ]\n              ],\n              \"bbox\": [\n                142.83984375,\n                119.9794921875,\n                525.603515625,\n                142.61590576171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"3\": \"/page/47/SectionHeader/2\",\n                \"4\": \"/page/47/SectionHeader/16\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"3\": \"/page/47/SectionHeader/2\",\n            \"4\": \"/page/47/SectionHeader/16\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/48/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-48-0\\\"></span><b>3.13 Importing with</b> from</h2>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              168.674072265625\n            ],\n            [\n              302.5994873046875,\n              168.674072265625\n            ],\n            [\n              302.5994873046875,\n              185.096923828125\n            ],\n            [\n              127.4501953125,\n              185.096923828125\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            168.674072265625,\n            302.5994873046875,\n            185.096923828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python provides two ways to import modules; we have already seen one:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              196.3564453125\n            ],\n            [\n              452.7369689941406,\n              196.3564453125\n            ],\n            [\n              452.7369689941406,\n              206.54388427734375\n            ],\n            [\n              128.197265625,\n              206.54388427734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            196.3564453125,\n            452.7369689941406,\n            206.54388427734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; import math\\n&gt;&gt;&gt; print math\\n&lt;module 'math' (built-in)&gt;\\n&gt;&gt;&gt; print math.pi\\n3.14159265359</pre>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              211.73468017578125\n            ],\n            [\n              265.571044921875,\n              211.73468017578125\n            ],\n            [\n              265.571044921875,\n              270.47528076171875\n            ],\n            [\n              128.49609375,\n              270.47528076171875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            211.73468017578125,\n            265.571044921875,\n            270.47528076171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you import math, you get a module object named math. The module object contains constants like pi and functions like sin and exp.</p>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              275.816650390625\n            ],\n            [\n              525.9375,\n              275.816650390625\n            ],\n            [\n              525.9375,\n              298.1228332519531\n            ],\n            [\n              129.5999755859375,\n              298.1228332519531\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            275.816650390625,\n            525.9375,\n            298.1228332519531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But if you try to access pi directly, you get an error.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              307.28668212890625\n            ],\n            [\n              354.41015625,\n              307.28668212890625\n            ],\n            [\n              354.41015625,\n              317.3988342285156\n            ],\n            [\n              129.2431640625,\n              317.3988342285156\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            307.28668212890625,\n            354.41015625,\n            317.3988342285156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print pi\\nTraceback (most recent call last):\\n  File \\\"&lt;stdin&gt;\\\", line 1, in &lt;module&gt;\\nNameError: name 'pi' is not defined</pre>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              322.5906677246094\n            ],\n            [\n              324.228515625,\n              322.5906677246094\n            ],\n            [\n              324.228515625,\n              369.1362609863281\n            ],\n            [\n              129.16845703125,\n              369.1362609863281\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            322.5906677246094,\n            324.228515625,\n            369.1362609863281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As an alternative, you can import an object from a module like this:</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              373.5703125\n            ],\n            [\n              426.12890625,\n              373.5703125\n            ],\n            [\n              426.12890625,\n              384.5898132324219\n            ],\n            [\n              127.8984375,\n              384.5898132324219\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            373.5703125,\n            426.12890625,\n            384.5898132324219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; from math import pi</pre>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              389.7816467285156\n            ],\n            [\n              249.89837646484375,\n              389.7816467285156\n            ],\n            [\n              249.89837646484375,\n              401.02734375\n            ],\n            [\n              129.01904296875,\n              401.02734375\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            389.7816467285156,\n            249.89837646484375,\n            401.02734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now you can access pi directly, without dot notation.</p>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              404.89453125\n            ],\n            [\n              365.32220458984375,\n              404.89453125\n            ],\n            [\n              365.32220458984375,\n              415.1977844238281\n            ],\n            [\n              128.72021484375,\n              415.1977844238281\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            404.89453125,\n            365.32220458984375,\n            415.1977844238281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print pi\\n3.14159265359</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              420.3886413574219\n            ],\n            [\n              197.60472106933594,\n              420.3886413574219\n            ],\n            [\n              197.60472106933594,\n              442.79296875\n            ],\n            [\n              129.60000610351562,\n              442.79296875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            420.3886413574219,\n            197.60472106933594,\n            442.79296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Or you can use the star operator to import <i>everything</i> from the module:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              447.864501953125\n            ],\n            [\n              440.18243408203125,\n              447.864501953125\n            ],\n            [\n              440.18243408203125,\n              457.9997863769531\n            ],\n            [\n              129.2431640625,\n              457.9997863769531\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            447.864501953125,\n            440.18243408203125,\n            457.9997863769531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; from math import *\\n&gt;&gt;&gt; cos(pi)\\n-1.0</pre>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              463.1916198730469\n            ],\n            [\n              244.66799926757812,\n              463.1916198730469\n            ],\n            [\n              244.66799926757812,\n              497.5422058105469\n            ],\n            [\n              128.6455078125,\n              497.5422058105469\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            463.1916198730469,\n            244.66799926757812,\n            497.5422058105469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The advantage of importing everything from the math module is that your code can be more concise. The disadvantage is that there might be conflicts between names defined in different modules, or between a name from a module and one of your variables.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              502.734375\n            ],\n            [\n              525.9375,\n              502.734375\n            ],\n            [\n              525.9375,\n              537.384765625\n            ],\n            [\n              129.09375,\n              537.384765625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            502.734375,\n            525.9375,\n            537.384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/SectionHeader/16\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-48-1\\\"></span><b>3.14 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              565.5196228027344\n            ],\n            [\n              243.24609375,\n              565.5196228027344\n            ],\n            [\n              243.24609375,\n              579.8658142089844\n            ],\n            [\n              128.12255859375,\n              579.8658142089844\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            565.5196228027344,\n            243.24609375,\n            579.8658142089844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/48/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are using a text editor to write your scripts, you might run into problems with spaces and tabs. The best way to avoid these problems is to use spaces exclusively (no tabs). Most text editors that know about Python do this by default, but some don't.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              591.3501586914062\n            ],\n            [\n              525.9375,\n              591.3501586914062\n            ],\n            [\n              525.9375,\n              625.7007598876953\n            ],\n            [\n              128.6455078125,\n              625.7007598876953\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            591.3501586914062,\n            525.9375,\n            625.7007598876953\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/48/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Tabs and spaces are usually invisible, which makes them hard to debug, so try to find an editor that manages indentation for you.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              634.60546875\n            ],\n            [\n              525.6033935546875,\n              634.60546875\n            ],\n            [\n              525.6033935546875,\n              657.1707611083984\n            ],\n            [\n              128.49609375,\n              657.1707611083984\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            634.60546875,\n            525.6033935546875,\n            657.1707611083984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/48/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/48/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Also, don't forget to save your program before you run it. Some development environments do this automatically, but some don't. In that case the program you are looking at in the text editor is not the same as the program you are running.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              666.31640625\n            ],\n            [\n              525.6034545898438,\n              666.31640625\n            ],\n            [\n              525.6034545898438,\n              700.8347702026367\n            ],\n            [\n              128.3466796875,\n              700.8347702026367\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            666.31640625,\n            525.6034545898438,\n            700.8347702026367\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/48/SectionHeader/16\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"2\": \"/page/48/SectionHeader/3\",\n        \"4\": \"/page/48/SectionHeader/16\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/49/Page/173\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/49/PageHeader/0'></content-ref><content-ref src='/page/49/PageHeader/22'></content-ref><content-ref src='/page/49/Text/1'></content-ref><content-ref src='/page/49/Text/2'></content-ref><content-ref src='/page/49/SectionHeader/3'></content-ref><content-ref src='/page/49/ListGroup/172'></content-ref><content-ref src='/page/49/Text/171'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/49/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.05322265625\n            ],\n            [\n              482.4034118652344,\n              61.05322265625\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.05322265625,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/48/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/49/PageHeader/22\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              61.14990234375\n            ],\n            [\n              97.04443359375,\n              61.14990234375\n            ],\n            [\n              97.04443359375,\n              70.04443359375\n            ],\n            [\n              85.98779296875,\n              70.04443359375\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            61.14990234375,\n            97.04443359375,\n            70.04443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/48/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/49/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Debugging can take a long time if you keep running the same, incorrect, program over and over!</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              88.83526611328125\n            ],\n            [\n              482.4034729003906,\n              88.83526611328125\n            ],\n            [\n              482.4034729003906,\n              110.99188232421875\n            ],\n            [\n              85.0166015625,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            88.83526611328125,\n            482.4034729003906,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/48/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/49/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Make sure that the code you are looking at is the code you are running. If you're not sure, put something like print 'hello' at the beginning of the program and run it again. If you don't see hello, you're not running the right program!</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              121.4296875\n            ],\n            [\n              482.90625,\n              121.4296875\n            ],\n            [\n              482.90625,\n              156.04290771484375\n            ],\n            [\n              85.763671875,\n              156.04290771484375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            121.4296875,\n            482.90625,\n            156.04290771484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/48/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/49/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-49-0\\\"></span><b>3.15 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              186.78515625\n            ],\n            [\n              184.02589416503906,\n              186.78515625\n            ],\n            [\n              184.02589416503906,\n              201.30694580078125\n            ],\n            [\n              85.9130859375,\n              201.30694580078125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            186.78515625,\n            184.02589416503906,\n            201.30694580078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/49/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/49/ListGroup/172\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/49/ListItem/4'></content-ref><content-ref src='/page/49/ListItem/5'></content-ref><content-ref src='/page/49/ListItem/6'></content-ref><content-ref src='/page/49/ListItem/7'></content-ref><content-ref src='/page/49/ListItem/8'></content-ref><content-ref src='/page/49/ListItem/9'></content-ref><content-ref src='/page/49/ListItem/10'></content-ref><content-ref src='/page/49/ListItem/11'></content-ref><content-ref src='/page/49/ListItem/12'></content-ref><content-ref src='/page/49/ListItem/13'></content-ref><content-ref src='/page/49/ListItem/14'></content-ref><content-ref src='/page/49/ListItem/15'></content-ref><content-ref src='/page/49/ListItem/16'></content-ref><content-ref src='/page/49/ListItem/17'></content-ref><content-ref src='/page/49/ListItem/18'></content-ref><content-ref src='/page/49/ListItem/19'></content-ref><content-ref src='/page/49/ListItem/20'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              210.80914306640625\n            ],\n            [\n              482.90625,\n              210.80914306640625\n            ],\n            [\n              482.90625,\n              679.7749099731445\n            ],\n            [\n              85.46484375,\n              679.7749099731445\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            210.80914306640625,\n            482.90625,\n            679.7749099731445\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/49/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>function:</b> A named sequence of statements that performs some useful operation. Functions may or may not take arguments and may or may not produce a result.</li>\",\n              \"polygon\": [\n                [\n                  85.9130859375,\n                  210.80914306640625\n                ],\n                [\n                  482.4028015136719,\n                  210.80914306640625\n                ],\n                [\n                  482.4028015136719,\n                  233.06390380859375\n                ],\n                [\n                  85.9130859375,\n                  233.06390380859375\n                ]\n              ],\n              \"bbox\": [\n                85.9130859375,\n                210.80914306640625,\n                482.4028015136719,\n                233.06390380859375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>function definition:</b> A statement that creates a new function, specifying its name, parameters, and the statements it executes.</li>\",\n              \"polygon\": [\n                [\n                  86.0625,\n                  244.06414794921875\n                ],\n                [\n                  482.4034118652344,\n                  244.06414794921875\n                ],\n                [\n                  482.4034118652344,\n                  266.31793212890625\n                ],\n                [\n                  86.0625,\n                  266.31793212890625\n                ]\n              ],\n              \"bbox\": [\n                86.0625,\n                244.06414794921875,\n                482.4034118652344,\n                266.31793212890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>function object:</b> A value created by a function definition. The name of the function is a variable that refers to a function object.</li>\",\n              \"polygon\": [\n                [\n                  85.9130859375,\n                  277.27734375\n                ],\n                [\n                  482.90625,\n                  277.27734375\n                ],\n                [\n                  482.90625,\n                  299.5729064941406\n                ],\n                [\n                  85.9130859375,\n                  299.5729064941406\n                ]\n              ],\n              \"bbox\": [\n                85.9130859375,\n                277.27734375,\n                482.90625,\n                299.5729064941406\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>header:</b> The first line of a function definition.</li>\",\n              \"polygon\": [\n                [\n                  85.46484375,\n                  310.57318115234375\n                ],\n                [\n                  286.4195556640625,\n                  310.57318115234375\n                ],\n                [\n                  286.4195556640625,\n                  320.6329040527344\n                ],\n                [\n                  85.46484375,\n                  320.6329040527344\n                ]\n              ],\n              \"bbox\": [\n                85.46484375,\n                310.57318115234375,\n                286.4195556640625,\n                320.6329040527344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>body:</b> The sequence of statements inside a function definition.</li>\",\n              \"polygon\": [\n                [\n                  85.763671875,\n                  331.6331787109375\n                ],\n                [\n                  361.706787109375,\n                  331.6331787109375\n                ],\n                [\n                  361.706787109375,\n                  341.6929016113281\n                ],\n                [\n                  85.763671875,\n                  341.6929016113281\n                ]\n              ],\n              \"bbox\": [\n                85.763671875,\n                331.6331787109375,\n                361.706787109375,\n                341.6929016113281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>parameter:</b> A name used inside a function to refer to the value passed as an argument.</li>\",\n              \"polygon\": [\n                [\n                  85.763671875,\n                  352.69317626953125\n                ],\n                [\n                  468.14642333984375,\n                  352.69317626953125\n                ],\n                [\n                  468.14642333984375,\n                  362.7528991699219\n                ],\n                [\n                  85.763671875,\n                  362.7528991699219\n                ]\n              ],\n              \"bbox\": [\n                85.763671875,\n                352.69317626953125,\n                468.14642333984375,\n                362.7528991699219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>function call:</b> A statement that executes a function. It consists of the function name followed by an argument list.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  373.753173828125\n                ],\n                [\n                  482.4033508300781,\n                  373.753173828125\n                ],\n                [\n                  482.4033508300781,\n                  396.0079040527344\n                ],\n                [\n                  85.6142578125,\n                  396.0079040527344\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                373.753173828125,\n                482.4033508300781,\n                396.0079040527344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>argument:</b> A value provided to a function when the function is called. This value is assigned to the corresponding parameter in the function.</li>\",\n              \"polygon\": [\n                [\n                  86.0625,\n                  406.828125\n                ],\n                [\n                  482.4035949707031,\n                  406.828125\n                ],\n                [\n                  482.4035949707031,\n                  429.26190185546875\n                ],\n                [\n                  86.0625,\n                  429.26190185546875\n                ]\n              ],\n              \"bbox\": [\n                86.0625,\n                406.828125,\n                482.4035949707031,\n                429.26190185546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>local variable:</b> A variable defined inside a function. A local variable can only be used inside its function.</li>\",\n              \"polygon\": [\n                [\n                  85.9130859375,\n                  440.2621765136719\n                ],\n                [\n                  482.90625,\n                  440.2621765136719\n                ],\n                [\n                  482.90625,\n                  462.51690673828125\n                ],\n                [\n                  85.9130859375,\n                  462.51690673828125\n                ]\n              ],\n              \"bbox\": [\n                85.9130859375,\n                440.2621765136719,\n                482.90625,\n                462.51690673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>return value:</b> The result of a function. If a function call is used as an expression, the return value is the value of the expression.</li>\",\n              \"polygon\": [\n                [\n                  86.2119140625,\n                  473.34375\n                ],\n                [\n                  482.4033203125,\n                  473.34375\n                ],\n                [\n                  482.4033203125,\n                  495.7709045410156\n                ],\n                [\n                  86.2119140625,\n                  495.7709045410156\n                ]\n              ],\n              \"bbox\": [\n                86.2119140625,\n                473.34375,\n                482.4033203125,\n                495.7709045410156\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>fruitful function:</b> A function that returns a value.</li>\",\n              \"polygon\": [\n                [\n                  85.98779296875,\n                  506.77117919921875\n                ],\n                [\n                  306.7622985839844,\n                  506.77117919921875\n                ],\n                [\n                  306.7622985839844,\n                  516.8309020996094\n                ],\n                [\n                  85.98779296875,\n                  516.8309020996094\n                ]\n              ],\n              \"bbox\": [\n                85.98779296875,\n                506.77117919921875,\n                306.7622985839844,\n                516.8309020996094\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>void function:</b> A function that doesn't return a value.</li>\",\n              \"polygon\": [\n                [\n                  85.98779296875,\n                  527.484375\n                ],\n                [\n                  324.0973815917969,\n                  527.484375\n                ],\n                [\n                  324.0973815917969,\n                  537.8908996582031\n                ],\n                [\n                  85.98779296875,\n                  537.8908996582031\n                ]\n              ],\n              \"bbox\": [\n                85.98779296875,\n                527.484375,\n                324.0973815917969,\n                537.8908996582031\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>module:</b> A file that contains a collection of related functions and other definitions.</li>\",\n              \"polygon\": [\n                [\n                  85.9130859375,\n                  548.8921966552734\n                ],\n                [\n                  449.0685119628906,\n                  548.8921966552734\n                ],\n                [\n                  449.0685119628906,\n                  558.951904296875\n                ],\n                [\n                  85.9130859375,\n                  558.951904296875\n                ]\n              ],\n              \"bbox\": [\n                85.9130859375,\n                548.8921966552734,\n                449.0685119628906,\n                558.951904296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>import statement:</b> A statement that reads a module file and creates a module object.</li>\",\n              \"polygon\": [\n                [\n                  86.2119140625,\n                  569.9521942138672\n                ],\n                [\n                  457.87530517578125,\n                  569.9521942138672\n                ],\n                [\n                  457.87530517578125,\n                  580.0119018554688\n                ],\n                [\n                  86.2119140625,\n                  580.0119018554688\n                ]\n              ],\n              \"bbox\": [\n                86.2119140625,\n                569.9521942138672,\n                457.87530517578125,\n                580.0119018554688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>module object:</b> A value created by an import statement that provides access to the values defined in a module.</li>\",\n              \"polygon\": [\n                [\n                  86.2119140625,\n                  590.9597473144531\n                ],\n                [\n                  482.3982849121094,\n                  590.9597473144531\n                ],\n                [\n                  482.3982849121094,\n                  613.2658996582031\n                ],\n                [\n                  86.2119140625,\n                  613.2658996582031\n                ]\n              ],\n              \"bbox\": [\n                86.2119140625,\n                590.9597473144531,\n                482.3982849121094,\n                613.2658996582031\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/19\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>dot notation:</b> The syntax for calling a function in another module by specifying the module name followed by a dot (period) and the function name.</li>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  623.77734375\n                ],\n                [\n                  482.4032287597656,\n                  623.77734375\n                ],\n                [\n                  482.4032287597656,\n                  646.5209045410156\n                ],\n                [\n                  86.361328125,\n                  646.5209045410156\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                623.77734375,\n                482.4032287597656,\n                646.5209045410156\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/49/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>composition:</b> Using an expression as part of a larger expression, or a statement as part of a larger statement.</li>\",\n              \"polygon\": [\n                [\n                  86.2119140625,\n                  657.421875\n                ],\n                [\n                  482.90625,\n                  657.421875\n                ],\n                [\n                  482.90625,\n                  679.7749099731445\n                ],\n                [\n                  86.2119140625,\n                  679.7749099731445\n                ]\n              ],\n              \"bbox\": [\n                86.2119140625,\n                657.421875,\n                482.90625,\n                679.7749099731445\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/49/SectionHeader/3\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/49/Text/171\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>flow of execution:</b> The order in which statements are executed during a program run.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              690.7751922607422\n            ],\n            [\n              465.2876281738281,\n              690.7751922607422\n            ],\n            [\n              465.2876281738281,\n              700.8349075317383\n            ],\n            [\n              85.6142578125,\n              700.8349075317383\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            690.7751922607422,\n            465.2876281738281,\n            700.8349075317383\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/49/SectionHeader/3\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"2\": \"/page/48/SectionHeader/3\",\n        \"4\": \"/page/49/SectionHeader/3\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/50/Page/217\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/50/PageHeader/0'></content-ref><content-ref src='/page/50/PageHeader/21'></content-ref><content-ref src='/page/50/ListGroup/215'></content-ref><content-ref src='/page/50/Text/3'></content-ref><content-ref src='/page/50/SectionHeader/4'></content-ref><content-ref src='/page/50/Text/5'></content-ref><content-ref src='/page/50/Text/6'></content-ref><content-ref src='/page/50/Code/7'></content-ref><content-ref src='/page/50/Text/8'></content-ref><content-ref src='/page/50/Text/9'></content-ref><content-ref src='/page/50/Code/10'></content-ref><content-ref src='/page/50/Text/11'></content-ref><content-ref src='/page/50/Code/12'></content-ref><content-ref src='/page/50/Code/214'></content-ref><content-ref src='/page/50/ListGroup/216'></content-ref><content-ref src='/page/50/Text/19'></content-ref><content-ref src='/page/50/ListItem/20'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/50/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.6455078125,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/49/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/PageHeader/21\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              60.76318359375\n            ],\n            [\n              525.041015625,\n              60.76318359375\n            ],\n            [\n              525.041015625,\n              69.75439453125\n            ],\n            [\n              514.880859375,\n              69.75439453125\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            60.76318359375,\n            525.041015625,\n            69.75439453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/49/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/ListGroup/215\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/50/ListItem/1'></content-ref><content-ref src='/page/50/ListItem/2'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              88.7381591796875\n            ],\n            [\n              525.6033325195312,\n              88.7381591796875\n            ],\n            [\n              525.6033325195312,\n              145.12188720703125\n            ],\n            [\n              128.9443359375,\n              145.12188720703125\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            88.7381591796875,\n            525.6033325195312,\n            145.12188720703125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/50/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>stack diagram:</b> A graphical representation of a stack of functions, their variables, and the values they refer to.</li>\",\n              \"polygon\": [\n                [\n                  129.5419921875,\n                  88.7381591796875\n                ],\n                [\n                  525.6033325195312,\n                  88.7381591796875\n                ],\n                [\n                  525.6033325195312,\n                  110.99188232421875\n                ],\n                [\n                  129.5419921875,\n                  110.99188232421875\n                ]\n              ],\n              \"bbox\": [\n                129.5419921875,\n                88.7381591796875,\n                525.6033325195312,\n                110.99188232421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/50/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>frame:</b> A box in a stack diagram that represents a function call. It contains the local variables and parameters of the function.</li>\",\n              \"polygon\": [\n                [\n                  128.9443359375,\n                  122.58984375\n                ],\n                [\n                  525.6031494140625,\n                  122.58984375\n                ],\n                [\n                  525.6031494140625,\n                  145.12188720703125\n                ],\n                [\n                  128.9443359375,\n                  145.12188720703125\n                ]\n              ],\n              \"bbox\": [\n                128.9443359375,\n                122.58984375,\n                525.6031494140625,\n                145.12188720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/49/SectionHeader/3\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/49/SectionHeader/3\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/50/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>traceback:</b> A list of the functions that are executing, printed when an exception occurs.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              156.99713134765625\n            ],\n            [\n              512.3532104492188,\n              156.99713134765625\n            ],\n            [\n              512.3532104492188,\n              167.056884765625\n            ],\n            [\n              129.09375,\n              167.056884765625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            156.99713134765625,\n            512.3532104492188,\n            167.056884765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/49/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-50-0\\\"></span><b>3.16 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              199.51275634765625\n            ],\n            [\n              228.80398559570312,\n              199.51275634765625\n            ],\n            [\n              228.80398559570312,\n              213.85894775390625\n            ],\n            [\n              128.3466796875,\n              213.85894775390625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            199.51275634765625,\n            228.80398559570312,\n            213.85894775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 3.3.</b> <i>Python provides a built-in function called</i> len <i>that returns the length of a string, so</i> <i>the value of</i> len('allen') <i>is 5.</i></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              227.485595703125\n            ],\n            [\n              525.6041870117188,\n              227.485595703125\n            ],\n            [\n              525.6041870117188,\n              249.665283203125\n            ],\n            [\n              128.9443359375,\n              249.665283203125\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            227.485595703125,\n            525.6041870117188,\n            249.665283203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a function named</i> right_justify <i>that takes a string named</i> s <i>as a parameter and prints the</i> <i>string with enough leading spaces so that the last letter of the string is in column 70 of the display.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              260.8555908203125\n            ],\n            [\n              525.5986938476562,\n              260.8555908203125\n            ],\n            [\n              525.5986938476562,\n              283.271484375\n            ],\n            [\n              128.6455078125,\n              283.271484375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            260.8555908203125,\n            525.5986938476562,\n            283.271484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; right_justify('allen')</pre>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              290.2767333984375\n            ],\n            [\n              265.5583801269531,\n              290.2767333984375\n            ],\n            [\n              265.5583801269531,\n              300.23931884765625\n            ],\n            [\n              128.794921875,\n              300.23931884765625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            290.2767333984375,\n            265.5583801269531,\n            300.23931884765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">allen</p>\",\n          \"polygon\": [\n            [\n              469.49200439453125,\n              302.4707336425781\n            ],\n            [\n              495.6438293457031,\n              302.4707336425781\n            ],\n            [\n              495.6438293457031,\n              312.4333190917969\n            ],\n            [\n              469.49200439453125,\n              312.4333190917969\n            ]\n          ],\n          \"bbox\": [\n            469.49200439453125,\n            302.4707336425781,\n            495.6438293457031,\n            312.4333190917969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 3.4.</b> <i>A function object is a value you can assign to a variable or pass as an argument. For</i> <i>example,</i> do_twice <i>is a function that takes a function object as an argument and calls it twice:</i></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              314.40234375\n            ],\n            [\n              525.5955200195312,\n              314.40234375\n            ],\n            [\n              525.5955200195312,\n              337.60546875\n            ],\n            [\n              128.9443359375,\n              337.60546875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            314.40234375,\n            525.5955200195312,\n            337.60546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def do_twice(f):\\n    f()\\n    f()</pre>\",\n          \"polygon\": [\n            [\n              127.67431640625,\n              344.0637512207031\n            ],\n            [\n              215.75390625,\n              344.0637512207031\n            ],\n            [\n              215.75390625,\n              382.46484375\n            ],\n            [\n              127.67431640625,\n              382.46484375\n            ]\n          ],\n          \"bbox\": [\n            127.67431640625,\n            344.0637512207031,\n            215.75390625,\n            382.46484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Here's an example that uses</i> do_twice <i>to call a function named</i> print_spam <i>twice.</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              385.6336364746094\n            ],\n            [\n              465.873046875,\n              385.6336364746094\n            ],\n            [\n              465.873046875,\n              395.6193542480469\n            ],\n            [\n              128.794921875,\n              395.6193542480469\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            385.6336364746094,\n            465.873046875,\n            395.6193542480469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def print_spam():\\n    print 'spam'</pre>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              402.86077880859375\n            ],\n            [\n              218.5261993408203,\n              402.86077880859375\n            ],\n            [\n              218.5261993408203,\n              425.0173645019531\n            ],\n            [\n              127.97314453125,\n              425.0173645019531\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            402.86077880859375,\n            218.5261993408203,\n            425.0173645019531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/Code/214\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>do_twice(print_spam)</pre>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              439.44378662109375\n            ],\n            [\n              234.21728515625,\n              439.44378662109375\n            ],\n            [\n              234.21728515625,\n              449.4063720703125\n            ],\n            [\n              128.27197265625,\n              449.4063720703125\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            439.44378662109375,\n            234.21728515625,\n            449.4063720703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/ListGroup/216\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/50/ListItem/14'></content-ref><content-ref src='/page/50/ListItem/15'></content-ref><content-ref src='/page/50/ListItem/16'></content-ref><content-ref src='/page/50/ListItem/17'></content-ref><content-ref src='/page/50/ListItem/18'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.0009765625,\n              465.22265625\n            ],\n            [\n              525.9375,\n              465.22265625\n            ],\n            [\n              525.9375,\n              624.1552429199219\n            ],\n            [\n              140.0009765625,\n              624.1552429199219\n            ]\n          ],\n          \"bbox\": [\n            140.0009765625,\n            465.22265625,\n            525.9375,\n            624.1552429199219\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/50/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Type this example into a script and test it.</i></li>\",\n              \"polygon\": [\n                [\n                  142.05303955078125,\n                  465.22265625\n                ],\n                [\n                  322.29638671875,\n                  465.22265625\n                ],\n                [\n                  322.29638671875,\n                  475.4422302246094\n                ],\n                [\n                  142.05303955078125,\n                  475.4422302246094\n                ]\n              ],\n              \"bbox\": [\n                142.05303955078125,\n                465.22265625,\n                322.29638671875,\n                475.4422302246094\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/50/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/50/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Modify</i> do_twice <i>so that it takes two arguments, a function object and a value, and calls the</i> <i>function twice, passing the value as an argument.</i></li>\",\n              \"polygon\": [\n                [\n                  141.345703125,\n                  487.4146423339844\n                ],\n                [\n                  525.6005249023438,\n                  487.4146423339844\n                ],\n                [\n                  525.6005249023438,\n                  509.5722351074219\n                ],\n                [\n                  141.345703125,\n                  509.5722351074219\n                ]\n              ],\n              \"bbox\": [\n                141.345703125,\n                487.4146423339844,\n                525.6005249023438,\n                509.5722351074219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/50/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/50/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. Write a more general version of</i> print_spam<i>, called</i> print_twice<i>, that takes a string as a</i> <i>parameter and prints it twice.</i></li>\",\n              \"polygon\": [\n                [\n                  140.8974609375,\n                  521.296875\n                ],\n                [\n                  525.602783203125,\n                  521.296875\n                ],\n                [\n                  525.602783203125,\n                  543.7012329101562\n                ],\n                [\n                  140.8974609375,\n                  543.7012329101562\n                ]\n              ],\n              \"bbox\": [\n                140.8974609375,\n                521.296875,\n                525.602783203125,\n                543.7012329101562\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/50/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/50/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>4. Use the modified version of</i> do_twice <i>to call</i> print_twice <i>twice, passing</i> 'spam' <i>as an</i> <i>argument.</i></li>\",\n              \"polygon\": [\n                [\n                  140.5986328125,\n                  555.6736297607422\n                ],\n                [\n                  525.6006469726562,\n                  555.6736297607422\n                ],\n                [\n                  525.6006469726562,\n                  577.8312377929688\n                ],\n                [\n                  140.5986328125,\n                  577.8312377929688\n                ]\n              ],\n              \"bbox\": [\n                140.5986328125,\n                555.6736297607422,\n                525.6006469726562,\n                577.8312377929688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/50/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/50/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>5. Define a new function called</i> do_four <i>that takes a function object and a value and calls the</i> <i>function four times, passing the value as a parameter. There should be only two statements in</i> <i>the body of this function, not four.</i></li>\",\n              \"polygon\": [\n                [\n                  140.0009765625,\n                  589.74609375\n                ],\n                [\n                  525.9375,\n                  589.74609375\n                ],\n                [\n                  525.9375,\n                  624.1552429199219\n                ],\n                [\n                  140.0009765625,\n                  624.1552429199219\n                ]\n              ],\n              \"bbox\": [\n                140.0009765625,\n                589.74609375,\n                525.9375,\n                624.1552429199219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/40/SectionHeader/1\",\n                \"2\": \"/page/48/SectionHeader/3\",\n                \"4\": \"/page/50/SectionHeader/4\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/50/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/do_four.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/do_four.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/do_four.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/do_four.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/do_four.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/do_four.py\\\">do_</a> <a href=\\\"http://thinkpython.com/code/do_four.py\\\">four.</a> <a href=\\\"http://thinkpython.com/code/do_four.py\\\">py</a> <i>.</i> <b>Exercise 3.5.</b> <i>This exercise can be done using only the statements and other features we have learned</i> <i>so far.</i></p>\",\n          \"polygon\": [\n            [\n              126.404296875,\n              640.1709594726562\n            ],\n            [\n              526.236328125,\n              640.1709594726562\n            ],\n            [\n              526.236328125,\n              674.6032638549805\n            ],\n            [\n              126.404296875,\n              674.6032638549805\n            ]\n          ],\n          \"bbox\": [\n            126.404296875,\n            640.1709594726562,\n            526.236328125,\n            674.6032638549805\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/50/ListItem/20\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Write a function that draws a grid like the following:</i></li>\",\n          \"polygon\": [\n            [\n              141.4951171875,\n              690.6796875\n            ],\n            [\n              365.90264892578125,\n              690.6796875\n            ],\n            [\n              365.90264892578125,\n              700.6622619628906\n            ],\n            [\n              141.4951171875,\n              700.6622619628906\n            ]\n          ],\n          \"bbox\": [\n            141.4951171875,\n            690.6796875,\n            365.90264892578125,\n            700.6622619628906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"2\": \"/page/48/SectionHeader/3\",\n        \"4\": \"/page/50/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/51/Page/112\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/51/PageHeader/0'></content-ref><content-ref src='/page/51/PageHeader/10'></content-ref><content-ref src='/page/51/Code/1'></content-ref><content-ref src='/page/51/Text/2'></content-ref><content-ref src='/page/51/Code/3'></content-ref><content-ref src='/page/51/Text/4'></content-ref><content-ref src='/page/51/Code/5'></content-ref><content-ref src='/page/51/Text/6'></content-ref><content-ref src='/page/51/Text/7'></content-ref><content-ref src='/page/51/ListItem/8'></content-ref><content-ref src='/page/51/Text/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/51/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.05322265625\n            ],\n            [\n              482.4034118652344,\n              61.05322265625\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.05322265625,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/51/PageHeader/10\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.166015625,\n              60.76318359375\n            ],\n            [\n              96.521484375,\n              60.76318359375\n            ],\n            [\n              96.521484375,\n              70.23779296875\n            ],\n            [\n              85.166015625,\n              70.23779296875\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            60.76318359375,\n            96.521484375,\n            70.23779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/51/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>+ - - - - + - - - - +\\n| | |\\n| | |\\n| | |\\n| | |\\n+ - - - - + - - - - +\\n| | |\\n| | |\\n| | |\\n| | |\\n+ - - - - + - - - - +</pre>\",\n          \"polygon\": [\n            [\n              111.3070068359375,\n              88.68572998046875\n            ],\n            [\n              223.6728515625,\n              88.68572998046875\n            ],\n            [\n              223.6728515625,\n              220.59130859375\n            ],\n            [\n              111.3070068359375,\n              220.59130859375\n            ]\n          ],\n          \"bbox\": [\n            111.3070068359375,\n            88.68572998046875,\n            223.6728515625,\n            220.59130859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/51/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Hint: to print more than one value on a line, you can print a comma-separated sequence:</i></p>\",\n          \"polygon\": [\n            [\n              110.56640625,\n              229.7109375\n            ],\n            [\n              466.76953125,\n              229.7109375\n            ],\n            [\n              466.76953125,\n              240.74615478515625\n            ],\n            [\n              110.56640625,\n              240.74615478515625\n            ]\n          ],\n          \"bbox\": [\n            110.56640625,\n            229.7109375,\n            466.76953125,\n            240.74615478515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/51/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>print '+', '-'</pre>\",\n          \"polygon\": [\n            [\n              109.5205078125,\n              249.626953125\n            ],\n            [\n              184.51536560058594,\n              249.626953125\n            ],\n            [\n              184.51536560058594,\n              260.947265625\n            ],\n            [\n              109.5205078125,\n              260.947265625\n            ]\n          ],\n          \"bbox\": [\n            109.5205078125,\n            249.626953125,\n            184.51536560058594,\n            260.947265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/51/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>If the sequence ends with a comma, Python leaves the line unfinished, so the value printed</i> <i>next appears on the same line.</i></p>\",\n          \"polygon\": [\n            [\n              109.5205078125,\n              270.896484375\n            ],\n            [\n              483.50390625,\n              270.896484375\n            ],\n            [\n              483.50390625,\n              293.2961120605469\n            ],\n            [\n              109.5205078125,\n              293.2961120605469\n            ]\n          ],\n          \"bbox\": [\n            109.5205078125,\n            270.896484375,\n            483.50390625,\n            293.2961120605469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/51/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>print '+',\\nprint '-'</pre>\",\n          \"polygon\": [\n            [\n              109.74462890625,\n              303.53466796875\n            ],\n            [\n              171.52734375,\n              303.53466796875\n            ],\n            [\n              171.52734375,\n              329.291015625\n            ],\n            [\n              109.74462890625,\n              329.291015625\n            ]\n          ],\n          \"bbox\": [\n            109.74462890625,\n            303.53466796875,\n            171.52734375,\n            329.291015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/51/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The output of these statements is</i> '+ -'<i>.</i></p>\",\n          \"polygon\": [\n            [\n              111.08935546875,\n              335.865234375\n            ],\n            [\n              273.878662109375,\n              335.865234375\n            ],\n            [\n              273.878662109375,\n              345.8702697753906\n            ],\n            [\n              111.08935546875,\n              345.8702697753906\n            ]\n          ],\n          \"bbox\": [\n            111.08935546875,\n            335.865234375,\n            273.878662109375,\n            345.8702697753906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/51/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>A</i> print <i>statement all by itself ends the current line and goes to the next line.</i></p>\",\n          \"polygon\": [\n            [\n              109.96875,\n              351.52734375\n            ],\n            [\n              422.7018737792969,\n              351.52734375\n            ],\n            [\n              422.7018737792969,\n              362.04925537109375\n            ],\n            [\n              109.96875,\n              362.04925537109375\n            ]\n          ],\n          \"bbox\": [\n            109.96875,\n            351.52734375,\n            422.7018737792969,\n            362.04925537109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/51/ListItem/8\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Write a function that draws a similar grid with four rows and four columns.</i></li>\",\n          \"polygon\": [\n            [\n              98.85298156738281,\n              371.443359375\n            ],\n            [\n              416.8094482421875,\n              371.443359375\n            ],\n            [\n              416.8094482421875,\n              382.19012451171875\n            ],\n            [\n              98.85298156738281,\n              382.19012451171875\n            ]\n          ],\n          \"bbox\": [\n            98.85298156738281,\n            371.443359375,\n            416.8094482421875,\n            382.19012451171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/51/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/grid.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/grid.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/grid.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/grid.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/grid.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/grid.py\\\">grid.</a> <a href=\\\"http://thinkpython.com/code/grid.py\\\">py</a> <i>. Credit: This exercise is based on an</i> <i>exercise in Oualline,</i> Practical C Programming, Third Edition<i>, O'Reilly Media, 1997.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              395.806640625\n            ],\n            [\n              482.403076171875,\n              395.806640625\n            ],\n            [\n              482.403076171875,\n              418.81640625\n            ],\n            [\n              85.763671875,\n              418.81640625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            395.806640625,\n            482.403076171875,\n            418.81640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/48/SectionHeader/3\",\n            \"4\": \"/page/50/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/40/SectionHeader/1\",\n        \"2\": \"/page/48/SectionHeader/3\",\n        \"4\": \"/page/50/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/52/Page/115\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/52/SectionHeader/0'></content-ref><content-ref src='/page/52/SectionHeader/1'></content-ref><content-ref src='/page/52/Text/2'></content-ref><content-ref src='/page/52/SectionHeader/3'></content-ref><content-ref src='/page/52/Text/4'></content-ref><content-ref src='/page/52/Text/5'></content-ref><content-ref src='/page/52/Text/6'></content-ref><content-ref src='/page/52/Code/7'></content-ref><content-ref src='/page/52/Text/8'></content-ref><content-ref src='/page/52/Text/9'></content-ref><content-ref src='/page/52/Text/10'></content-ref><content-ref src='/page/52/Text/11'></content-ref><content-ref src='/page/52/Code/12'></content-ref><content-ref src='/page/52/Text/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/52/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-52-0\\\"></span><b>Chapter 4</b></h2>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              165.43450927734375\n            ],\n            [\n              221.2822265625,\n              165.43450927734375\n            ],\n            [\n              221.2822265625,\n              186.09698486328125\n            ],\n            [\n              128.6455078125,\n              186.09698486328125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            165.43450927734375,\n            221.2822265625,\n            186.09698486328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/40/SectionHeader/1\",\n            \"2\": \"/page/52/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Case study: interface design</b></h1>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              222.10333251953125\n            ],\n            [\n              448.83984375,\n              222.10333251953125\n            ],\n            [\n              448.83984375,\n              246.890380859375\n            ],\n            [\n              128.6455078125,\n              246.890380859375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            222.10333251953125,\n            448.83984375,\n            246.890380859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Code examples from this chapter are available from <a href=\\\"http://thinkpython.com/code/polygon.py\\\">http://thinkpython.com/code/</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">polygon.py</a>.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              296.2265625\n            ],\n            [\n              526.53515625,\n              296.2265625\n            ],\n            [\n              526.53515625,\n              318.7899475097656\n            ],\n            [\n              128.3466796875,\n              318.7899475097656\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            296.2265625,\n            526.53515625,\n            318.7899475097656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-52-1\\\"></span><b>4.1 TurtleWorld</b></h4>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              351.9140625\n            ],\n            [\n              241.05563354492188,\n              351.9140625\n            ],\n            [\n              241.05563354492188,\n              366.4170227050781\n            ],\n            [\n              128.794921875,\n              366.4170227050781\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            351.9140625,\n            241.05563354492188,\n            366.4170227050781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To accompany this book, I have written a package called Swampy. You can download Swampy from <a href=\\\"http://thinkpython.com/swampy\\\">http://thinkpython.com/swampy</a>; follow the instructions there to install Swampy on your system.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              380.337890625\n            ],\n            [\n              526.236328125,\n              380.337890625\n            ],\n            [\n              526.236328125,\n              414.95196533203125\n            ],\n            [\n              128.794921875,\n              414.95196533203125\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            380.337890625,\n            526.236328125,\n            414.95196533203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>package</b> is a collection of modules; one of the modules in Swampy is TurtleWorld, which provides a set of functions for drawing lines by steering turtles around the screen.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              426.1640625\n            ],\n            [\n              525.9375,\n              426.1640625\n            ],\n            [\n              525.9375,\n              448.59698486328125\n            ],\n            [\n              129.09375,\n              448.59698486328125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            426.1640625,\n            525.9375,\n            448.59698486328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If Swampy is installed as a package on your system, you can import TurtleWorld like this:</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              459.80859375\n            ],\n            [\n              525.9375,\n              459.80859375\n            ],\n            [\n              525.9375,\n              470.0469970703125\n            ],\n            [\n              128.0478515625,\n              470.0469970703125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            459.80859375,\n            525.9375,\n            470.0469970703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>from swampy.TurtleWorld import *</pre>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              477.4138488769531\n            ],\n            [\n              296.9815979003906,\n              477.4138488769531\n            ],\n            [\n              296.9815979003906,\n              487.3764343261719\n            ],\n            [\n              128.27197265625,\n              487.3764343261719\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            477.4138488769531,\n            296.9815979003906,\n            487.3764343261719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you downloaded the Swampy modules but did not install them as a package, you can either work in the directory that contains the Swampy files, or add that directory to Python's search path. Then you can import TurtleWorld like this:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              495.04241943359375\n            ],\n            [\n              525.9375,\n              495.04241943359375\n            ],\n            [\n              525.9375,\n              529.41796875\n            ],\n            [\n              129.09375,\n              529.41796875\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            495.04241943359375,\n            525.9375,\n            529.41796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">from TurtleWorld import *</p>\",\n          \"polygon\": [\n            [\n              127.30078125,\n              536.7598571777344\n            ],\n            [\n              260.578125,\n              536.7598571777344\n            ],\n            [\n              260.578125,\n              546.7224578857422\n            ],\n            [\n              127.30078125,\n              546.7224578857422\n            ]\n          ],\n          \"bbox\": [\n            127.30078125,\n            536.7598571777344,\n            260.578125,\n            546.7224578857422\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The details of the installation process and setting Python's search path depend on your system, so rather than include those details here, I will try to maintain current information for several systems at <a href=\\\"http://thinkpython.com/swampy\\\">http://thinkpython.com/swampy</a></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              554.3884124755859\n            ],\n            [\n              526.53515625,\n              554.3884124755859\n            ],\n            [\n              526.53515625,\n              588.7400207519531\n            ],\n            [\n              128.49609375,\n              588.7400207519531\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            554.3884124755859,\n            526.53515625,\n            588.7400207519531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Create a file named mypolygon.py and type in the following code:</p>\",\n          \"polygon\": [\n            [\n              127.52490234375,\n              600.0778656005859\n            ],\n            [\n              419.64520263671875,\n              600.0778656005859\n            ],\n            [\n              419.64520263671875,\n              610.1900177001953\n            ],\n            [\n              127.52490234375,\n              610.1900177001953\n            ]\n          ],\n          \"bbox\": [\n            127.52490234375,\n            600.0778656005859,\n            419.64520263671875,\n            610.1900177001953\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>from swampy.TurtleWorld import *\\nworld = TurtleWorld()\\nbob = Turtle()\\nprint bob</pre>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              617.5568695068359\n            ],\n            [\n              296.98162841796875,\n              617.5568695068359\n            ],\n            [\n              296.98162841796875,\n              690.29296875\n            ],\n            [\n              128.49609375,\n              690.29296875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            617.5568695068359,\n            296.98162841796875,\n            690.29296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/52/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">wait_for_user()</p>\",\n          \"polygon\": [\n            [\n              129.6000213623047,\n              690.7228546142578\n            ],\n            [\n              208.06546020507812,\n              690.7228546142578\n            ],\n            [\n              208.06546020507812,\n              700.6854553222656\n            ],\n            [\n              129.6000213623047,\n              700.6854553222656\n            ]\n          ],\n          \"bbox\": [\n            129.6000213623047,\n            690.7228546142578,\n            208.06546020507812,\n            700.6854553222656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/52/SectionHeader/1\",\n        \"4\": \"/page/52/SectionHeader/3\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/53/Page/204\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/53/PageHeader/0'></content-ref><content-ref src='/page/53/Text/1'></content-ref><content-ref src='/page/53/Text/2'></content-ref><content-ref src='/page/53/Text/3'></content-ref><content-ref src='/page/53/Text/4'></content-ref><content-ref src='/page/53/Text/5'></content-ref><content-ref src='/page/53/Text/6'></content-ref><content-ref src='/page/53/Text/7'></content-ref><content-ref src='/page/53/Text/8'></content-ref><content-ref src='/page/53/Text/9'></content-ref><content-ref src='/page/53/Text/10'></content-ref><content-ref src='/page/53/Text/11'></content-ref><content-ref src='/page/53/SectionHeader/12'></content-ref><content-ref src='/page/53/Text/13'></content-ref><content-ref src='/page/53/Code/14'></content-ref><content-ref src='/page/53/Text/15'></content-ref><content-ref src='/page/53/Code/16'></content-ref><content-ref src='/page/53/Text/17'></content-ref><content-ref src='/page/53/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/53/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.85986328125\n            ],\n            [\n              482.90625,\n              60.85986328125\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.85986328125,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first line imports everything from the TurtleWorld module in the swampy package.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              87.978515625\n            ],\n            [\n              468.481689453125,\n              87.978515625\n            ],\n            [\n              468.481689453125,\n              98.79791259765625\n            ],\n            [\n              85.46484375,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            87.978515625,\n            468.481689453125,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The next lines create a TurtleWorld assigned to world and a Turtle assigned to bob. Printing bob yields something like:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              108.5712890625\n            ],\n            [\n              482.90625,\n              108.5712890625\n            ],\n            [\n              482.90625,\n              131.42388916015625\n            ],\n            [\n              85.6142578125,\n              131.42388916015625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            108.5712890625,\n            482.90625,\n            131.42388916015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&lt;TurtleWorld.Turtle instance at 0xb7bfbf4c&gt;</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              137.478515625\n            ],\n            [\n              311.37890625,\n              137.478515625\n            ],\n            [\n              311.37890625,\n              147.73529052734375\n            ],\n            [\n              85.83837890625,\n              147.73529052734375\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            137.478515625,\n            311.37890625,\n            147.73529052734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This means that bob refers to an <b>instance</b> of a Turtle as defined in module TurtleWorld. In this context, \\\"instance\\\" means a member of a set; this Turtle is one of the set of possible Turtles.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              154.0107421875\n            ],\n            [\n              482.4034423828125,\n              154.0107421875\n            ],\n            [\n              482.4034423828125,\n              188.73388671875\n            ],\n            [\n              85.6142578125,\n              188.73388671875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            154.0107421875,\n            482.4034423828125,\n            188.73388671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">wait_for_user tells TurtleWorld to wait for the user to do something, although in this case there's not much for the user to do except close the window.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              198.580078125\n            ],\n            [\n              482.3957824707031,\n              198.580078125\n            ],\n            [\n              482.3957824707031,\n              221.35992431640625\n            ],\n            [\n              85.46484375,\n              221.35992431640625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            198.580078125,\n            482.3957824707031,\n            221.35992431640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">TurtleWorld provides several turtle-steering functions: fd and bk for forward and backward, and lt and rt for left and right turns. Also, each Turtle is holding a pen, which is either down or up; if the pen is down, the Turtle leaves a trail when it moves. The functions pu and pd stand for \\\"pen up\\\" and \\\"pen down.\\\"</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              231.64453125\n            ],\n            [\n              482.4033203125,\n              231.64453125\n            ],\n            [\n              482.4033203125,\n              278.37493896484375\n            ],\n            [\n              85.763671875,\n              278.37493896484375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            231.64453125,\n            482.4033203125,\n            278.37493896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To draw a right angle, add these lines to the program (after creating bob and before calling wait_for_user):</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              288.685546875\n            ],\n            [\n              482.90625,\n              288.685546875\n            ],\n            [\n              482.90625,\n              311.00091552734375\n            ],\n            [\n              85.6142578125,\n              311.00091552734375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            288.685546875,\n            482.90625,\n            311.00091552734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">fd(bob, 100) lt(bob) fd(bob, 100)</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              316.529296875\n            ],\n            [\n              149.16439819335938,\n              316.529296875\n            ],\n            [\n              149.16439819335938,\n              351.70135498046875\n            ],\n            [\n              85.83837890625,\n              351.70135498046875\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            316.529296875,\n            149.16439819335938,\n            351.70135498046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first line tells bob to take 100 steps forward. The second line tells him to turn left.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              357.71484375\n            ],\n            [\n              460.2214660644531,\n              357.71484375\n            ],\n            [\n              460.2214660644531,\n              368.3109130859375\n            ],\n            [\n              85.763671875,\n              368.3109130859375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            357.71484375,\n            460.2214660644531,\n            368.3109130859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you run this program, you should see bob move east and then north, leaving two line segments behind.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              378.2109375\n            ],\n            [\n              482.39788818359375,\n              378.2109375\n            ],\n            [\n              482.39788818359375,\n              400.9369201660156\n            ],\n            [\n              85.46484375,\n              400.9369201660156\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            378.2109375,\n            482.39788818359375,\n            400.9369201660156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now modify the program to draw a square. Don't go on until you've got it working!</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              410.6953125\n            ],\n            [\n              458.40234375,\n              410.6953125\n            ],\n            [\n              458.40234375,\n              421.3689270019531\n            ],\n            [\n              85.6142578125,\n              421.3689270019531\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            410.6953125,\n            458.40234375,\n            421.3689270019531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/52/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-53-0\\\"></span><b>4.2 Simple repetition</b></h4>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              451.5947570800781\n            ],\n            [\n              233.82159423828125,\n              451.5947570800781\n            ],\n            [\n              233.82159423828125,\n              465.94097900390625\n            ],\n            [\n              85.53955078125,\n              465.94097900390625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            451.5947570800781,\n            233.82159423828125,\n            465.94097900390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Chances are you wrote something like this (leaving out the code that creates TurtleWorld and waits for the user):</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              478.6993103027344\n            ],\n            [\n              482.4034423828125,\n              478.6993103027344\n            ],\n            [\n              482.4034423828125,\n              500.85589599609375\n            ],\n            [\n              85.3154296875,\n              500.85589599609375\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            478.6993103027344,\n            482.4034423828125,\n            500.85589599609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>fd(bob, 100)\\nlt(bob)\\nfd(bob, 100)\\nlt(bob)\\nfd(bob, 100)\\nlt(bob)\\nfd(bob, 100)</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              507.2037353515625\n            ],\n            [\n              157.6318359375,\n              507.2037353515625\n            ],\n            [\n              157.6318359375,\n              626.9153594970703\n            ],\n            [\n              85.763671875,\n              626.9153594970703\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            507.2037353515625,\n            157.6318359375,\n            626.9153594970703\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We can do the same thing more concisely with a for statement. Add this example to mypolygon.py and run it again:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              633.05859375\n            ],\n            [\n              482.90625,\n              633.05859375\n            ],\n            [\n              482.90625,\n              656.26171875\n            ],\n            [\n              85.6142578125,\n              656.26171875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            633.05859375,\n            482.90625,\n            656.26171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>for i in range(4):\\n    print 'Hello!'</pre>\",\n          \"polygon\": [\n            [\n              86.4000473022461,\n              661.67578125\n            ],\n            [\n              180.54661560058594,\n              661.67578125\n            ],\n            [\n              180.54661560058594,\n              684.2253494262695\n            ],\n            [\n              86.4000473022461,\n              684.2253494262695\n            ]\n          ],\n          \"bbox\": [\n            86.4000473022461,\n            661.67578125,\n            180.54661560058594,\n            684.2253494262695\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You should see something like this:</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              690.872314453125\n            ],\n            [\n              242.349609375,\n              690.872314453125\n            ],\n            [\n              242.349609375,\n              700.8349151611328\n            ],\n            [\n              86.361328125,\n              700.8349151611328\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            690.872314453125,\n            242.349609375,\n            700.8349151611328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/53/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p>32</p>\\n\",\n          \"polygon\": [\n            [\n              85.09130859375,\n              60.521484375\n            ],\n            [\n              96.74560546875,\n              60.521484375\n            ],\n            [\n              96.74560546875,\n              69.5126953125\n            ],\n            [\n              85.09130859375,\n              69.5126953125\n            ]\n          ],\n          \"bbox\": [\n            85.09130859375,\n            60.521484375,\n            96.74560546875,\n            69.5126953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/52/SectionHeader/1\",\n        \"4\": \"/page/53/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/54/Page/236\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/54/PageHeader/0'></content-ref><content-ref src='/page/54/PageHeader/18'></content-ref><content-ref src='/page/54/Text/1'></content-ref><content-ref src='/page/54/Text/2'></content-ref><content-ref src='/page/54/Text/3'></content-ref><content-ref src='/page/54/Text/4'></content-ref><content-ref src='/page/54/TextInlineMath/5'></content-ref><content-ref src='/page/54/Text/6'></content-ref><content-ref src='/page/54/Text/7'></content-ref><content-ref src='/page/54/Text/8'></content-ref><content-ref src='/page/54/SectionHeader/9'></content-ref><content-ref src='/page/54/Text/10'></content-ref><content-ref src='/page/54/Text/11'></content-ref><content-ref src='/page/54/ListItem/12'></content-ref><content-ref src='/page/54/Text/13'></content-ref><content-ref src='/page/54/ListGroup/232'></content-ref><content-ref src='/page/54/Text/16'></content-ref><content-ref src='/page/54/ListItem/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/54/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.60000610351562,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              60.85986328125\n            ],\n            [\n              526.236328125,\n              60.85986328125\n            ],\n            [\n              526.236328125,\n              70.33447265625\n            ],\n            [\n              514.880859375,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            60.85986328125,\n            526.236328125,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Hello! Hello! Hello!</p>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              87.78515625\n            ],\n            [\n              161.666015625,\n              87.78515625\n            ],\n            [\n              161.666015625,\n              124.13671875\n            ],\n            [\n              129.01904296875,\n              124.13671875\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            87.78515625,\n            161.666015625,\n            124.13671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Hello!</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              125.26873779296875\n            ],\n            [\n              160.98219299316406,\n              125.26873779296875\n            ],\n            [\n              160.98219299316406,\n              136.2216796875\n            ],\n            [\n              128.3466796875,\n              136.2216796875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            125.26873779296875,\n            160.98219299316406,\n            136.2216796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This is the simplest use of the for statement; we will see more later. But that should be enough to let you rewrite your square-drawing program. Don't go on until you do.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              141.0556640625\n            ],\n            [\n              525.5963134765625,\n              141.0556640625\n            ],\n            [\n              525.5963134765625,\n              163.5699462890625\n            ],\n            [\n              128.49609375,\n              163.5699462890625\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            141.0556640625,\n            525.5963134765625,\n            163.5699462890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is a for statement that draws a square:</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              172.9599609375\n            ],\n            [\n              323.630859375,\n              172.9599609375\n            ],\n            [\n              323.630859375,\n              183.53594970703125\n            ],\n            [\n              128.57080078125,\n              183.53594970703125\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            172.9599609375,\n            323.630859375,\n            183.53594970703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/TextInlineMath/5\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">for i in range(4): fd(bob, 100) lt(bob)</p>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              189.41876220703125\n            ],\n            [\n              223.7465362548828,\n              189.41876220703125\n            ],\n            [\n              223.7465362548828,\n              225.650390625\n            ],\n            [\n              129.5999755859375,\n              225.650390625\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            189.41876220703125,\n            223.7465362548828,\n            225.650390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The syntax of a for statement is similar to a function definition. It has a header that ends with a colon and an indented body. The body can contain any number of statements.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              229.7109375\n            ],\n            [\n              525.6016845703125,\n              229.7109375\n            ],\n            [\n              525.6016845703125,\n              252.10784912109375\n            ],\n            [\n              129.09375,\n              252.10784912109375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            229.7109375,\n            525.6016845703125,\n            252.10784912109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A for statement is sometimes called a <b>loop</b> because the flow of execution runs through the body and then loops back to the top. In this case, it runs the body four times.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              261.80859375\n            ],\n            [\n              525.6040649414062,\n              261.80859375\n            ],\n            [\n              525.6040649414062,\n              284.2688293457031\n            ],\n            [\n              129.09375,\n              284.2688293457031\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            261.80859375,\n            525.6040649414062,\n            284.2688293457031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This version is actually a little different from the previous square-drawing code because it makes another turn after drawing the last side of the square. The extra turn takes a little more time, but it simplifies the code if we do the same thing every time through the loop. This version also has the effect of leaving the turtle back in the starting position, facing in the starting direction.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              293.90625\n            ],\n            [\n              525.638671875,\n              293.90625\n            ],\n            [\n              525.638671875,\n              353.07421875\n            ],\n            [\n              128.794921875,\n              353.07421875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            293.90625,\n            525.638671875,\n            353.07421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/53/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-54-0\\\"></span><b>4.3 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              382.1136779785156\n            ],\n            [\n              222.1787109375,\n              382.1136779785156\n            ],\n            [\n              222.1787109375,\n              396.45989990234375\n            ],\n            [\n              128.0478515625,\n              396.45989990234375\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            382.1136779785156,\n            222.1787109375,\n            396.45989990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The following is a series of exercises using TurtleWorld. They are meant to be fun, but they have a point, too. While you are working on them, think about what the point is.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              407.98828125\n            ],\n            [\n              525.9375,\n              407.98828125\n            ],\n            [\n              525.9375,\n              430.79083251953125\n            ],\n            [\n              129.2431640625,\n              430.79083251953125\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            407.98828125,\n            525.9375,\n            430.79083251953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The following sections have solutions to the exercises, so don't look until you have finished (or at least tried).</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              440.0859375\n            ],\n            [\n              525.638671875,\n              440.0859375\n            ],\n            [\n              525.638671875,\n              462.95184326171875\n            ],\n            [\n              128.794921875,\n              462.95184326171875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            440.0859375,\n            525.638671875,\n            462.95184326171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/ListItem/12\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">1. Write a function called square that takes a parameter named t, which is a turtle. It should use the turtle to draw a square.</li>\",\n          \"polygon\": [\n            [\n              141.345703125,\n              476.05078125\n            ],\n            [\n              525.638671875,\n              476.05078125\n            ],\n            [\n              525.638671875,\n              498.81884765625\n            ],\n            [\n              141.345703125,\n              498.81884765625\n            ]\n          ],\n          \"bbox\": [\n            141.345703125,\n            476.05078125,\n            525.638671875,\n            498.81884765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Write a function call that passes bob as an argument to square, and then run the program again.</p>\",\n          \"polygon\": [\n            [\n              153.4482421875,\n              504.81268310546875\n            ],\n            [\n              525.6010131835938,\n              504.81268310546875\n            ],\n            [\n              525.6010131835938,\n              527.1188354492188\n            ],\n            [\n              153.4482421875,\n              527.1188354492188\n            ]\n          ],\n          \"bbox\": [\n            153.4482421875,\n            504.81268310546875,\n            525.6010131835938,\n            527.1188354492188\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/ListGroup/232\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/54/ListItem/14'></content-ref><content-ref src='/page/54/ListItem/15'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.0009765625,\n              536.765625\n            ],\n            [\n              525.9375,\n              536.765625\n            ],\n            [\n              525.9375,\n              615.9328308105469\n            ],\n            [\n              140.0009765625,\n              615.9328308105469\n            ]\n          ],\n          \"bbox\": [\n            140.0009765625,\n            536.765625,\n            525.9375,\n            615.9328308105469\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/54/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">2. Add another parameter, named length, to square. Modify the body so length of the sides is length, and then modify the function call to provide a second argument. Run the program again. Test your program with a range of values for length.</li>\",\n              \"polygon\": [\n                [\n                  141.1962890625,\n                  536.765625\n                ],\n                [\n                  525.9375,\n                  536.765625\n                ],\n                [\n                  525.9375,\n                  571.5258331298828\n                ],\n                [\n                  141.1962890625,\n                  571.5258331298828\n                ]\n              ],\n              \"bbox\": [\n                141.1962890625,\n                536.765625,\n                525.9375,\n                571.5258331298828\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"4\": \"/page/54/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/54/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">3. The functions lt and rt make 90-degree turns by default, but you can provide a second argument that specifies the number of degrees. For example, lt(bob, 45) turns bob 45 degrees to the left.</li>\",\n              \"polygon\": [\n                [\n                  140.0009765625,\n                  581.4326782226562\n                ],\n                [\n                  525.9375,\n                  581.4326782226562\n                ],\n                [\n                  525.9375,\n                  615.9328308105469\n                ],\n                [\n                  140.0009765625,\n                  615.9328308105469\n                ]\n              ],\n              \"bbox\": [\n                140.0009765625,\n                581.4326782226562,\n                525.9375,\n                615.9328308105469\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"4\": \"/page/54/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/54/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Make a copy of square and change the name to polygon. Add another parameter named n and modify the body so it draws an n-sided regular polygon. Hint: The exterior angles of an n-sided regular polygon are 360/<i>n</i> degrees.</p>\",\n          \"polygon\": [\n            [\n              152.5517578125,\n              621.84375\n            ],\n            [\n              525.9375,\n              621.84375\n            ],\n            [\n              525.9375,\n              656.4278259277344\n            ],\n            [\n              152.5517578125,\n              656.4278259277344\n            ]\n          ],\n          \"bbox\": [\n            152.5517578125,\n            621.84375,\n            525.9375,\n            656.4278259277344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/54/ListItem/17\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">4. Write a function called circle that takes a turtle, t, and radius, r, as parameters and that draws an approximate circle by invoking polygon with an appropriate length and number of sides. Test your function with a range of values of r.</li>\",\n          \"polygon\": [\n            [\n              140.2998046875,\n              665.9296875\n            ],\n            [\n              525.6051025390625,\n              665.9296875\n            ],\n            [\n              525.6051025390625,\n              700.834831237793\n            ],\n            [\n              140.2998046875,\n              700.834831237793\n            ]\n          ],\n          \"bbox\": [\n            140.2998046875,\n            665.9296875,\n            525.6051025390625,\n            700.834831237793\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/52/SectionHeader/1\",\n        \"4\": \"/page/54/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/55/Page/222\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/55/PageHeader/0'></content-ref><content-ref src='/page/55/PageHeader/18'></content-ref><content-ref src='/page/55/Text/1'></content-ref><content-ref src='/page/55/Text/2'></content-ref><content-ref src='/page/55/ListItem/3'></content-ref><content-ref src='/page/55/SectionHeader/4'></content-ref><content-ref src='/page/55/Text/5'></content-ref><content-ref src='/page/55/Code/6'></content-ref><content-ref src='/page/55/Code/7'></content-ref><content-ref src='/page/55/Text/8'></content-ref><content-ref src='/page/55/Text/9'></content-ref><content-ref src='/page/55/Text/10'></content-ref><content-ref src='/page/55/Code/11'></content-ref><content-ref src='/page/55/Text/12'></content-ref><content-ref src='/page/55/SectionHeader/13'></content-ref><content-ref src='/page/55/Text/14'></content-ref><content-ref src='/page/55/Code/15'></content-ref><content-ref src='/page/55/Text/16'></content-ref><content-ref src='/page/55/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/55/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.76318359375\n            ],\n            [\n              482.90625,\n              60.76318359375\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.76318359375,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.166015625,\n              61.05322265625\n            ],\n            [\n              96.521484375,\n              61.05322265625\n            ],\n            [\n              96.521484375,\n              70.43115234375\n            ],\n            [\n              85.166015625,\n              70.43115234375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            61.05322265625,\n            96.521484375,\n            70.43115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Hint: figure out the circumference of the circle and make sure that length * n = circumference.</p>\",\n          \"polygon\": [\n            [\n              111.3070068359375,\n              88.55859375\n            ],\n            [\n              482.4154052734375,\n              88.55859375\n            ],\n            [\n              482.4154052734375,\n              110.99188232421875\n            ],\n            [\n              111.3070068359375,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            111.3070068359375,\n            88.55859375,\n            482.4154052734375,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Another hint: if bob is too slow for you, you can speed him up by changing bob.delay, which is the time between moves, in seconds. bob.delay = 0.01 ought to get him moving.</p>\",\n          \"polygon\": [\n            [\n              109.5205078125,\n              117.043701171875\n            ],\n            [\n              482.4045104980469,\n              117.043701171875\n            ],\n            [\n              482.4045104980469,\n              151.54388427734375\n            ],\n            [\n              109.5205078125,\n              151.54388427734375\n            ]\n          ],\n          \"bbox\": [\n            109.5205078125,\n            117.043701171875,\n            482.4045104980469,\n            151.54388427734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/ListItem/3\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">5. Make a more general version of circle called arc that takes an additional parameter angle, which determines what fraction of a circle to draw. angle is in units of degrees, so when angle=360, arc should draw a complete circle.</li>\",\n          \"polygon\": [\n            [\n              97.2685546875,\n              160.7783203125\n            ],\n            [\n              482.90625,\n              160.7783203125\n            ],\n            [\n              482.90625,\n              196.06585693359375\n            ],\n            [\n              97.2685546875,\n              196.06585693359375\n            ]\n          ],\n          \"bbox\": [\n            97.2685546875,\n            160.7783203125,\n            482.90625,\n            196.06585693359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"4\": \"/page/54/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-55-0\\\"></span><b>4.4 Encapsulation</b></h3>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              224.68359375\n            ],\n            [\n              211.9005126953125,\n              224.68359375\n            ],\n            [\n              211.9005126953125,\n              239.701904296875\n            ],\n            [\n              85.6142578125,\n              239.701904296875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            224.68359375,\n            211.9005126953125,\n            239.701904296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first exercise asks you to put your square-drawing code into a function definition and then call the function, passing the turtle as a parameter. Here is a solution:</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              251.947265625\n            ],\n            [\n              482.90625,\n              251.947265625\n            ],\n            [\n              482.90625,\n              274.376953125\n            ],\n            [\n              85.166015625,\n              274.376953125\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            251.947265625,\n            482.90625,\n            274.376953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def square(t):</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              280.1846618652344\n            ],\n            [\n              173.4697265625,\n              280.1846618652344\n            ],\n            [\n              173.4697265625,\n              295.259765625\n            ],\n            [\n              85.46484375,\n              295.259765625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            280.1846618652344,\n            173.4697265625,\n            295.259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>for i in range(4):\\n    fd(t, 100)\\n    lt(t)</pre>\",\n          \"polygon\": [\n            [\n              96.0732421875,\n              292.378662109375\n            ],\n            [\n              201.4625244140625,\n              292.378662109375\n            ],\n            [\n              201.4625244140625,\n              327.55078125\n            ],\n            [\n              96.0732421875,\n              327.55078125\n            ]\n          ],\n          \"bbox\": [\n            96.0732421875,\n            292.378662109375,\n            201.4625244140625,\n            327.55078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">square(bob)</p>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              341.1556701660156\n            ],\n            [\n              143.94395446777344,\n              341.1556701660156\n            ],\n            [\n              143.94395446777344,\n              351.52734375\n            ],\n            [\n              85.98779296875,\n              351.52734375\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            341.1556701660156,\n            143.94395446777344,\n            351.52734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The innermost statements, fd and lt are indented twice to show that they are inside the for loop, which is inside the function definition. The next line, square(bob), is flush with the left margin, so that is the end of both the for loop and the function definition.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              356.94140625\n            ],\n            [\n              482.40081787109375,\n              356.94140625\n            ],\n            [\n              482.40081787109375,\n              391.78582763671875\n            ],\n            [\n              85.6142578125,\n              391.78582763671875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            356.94140625,\n            482.40081787109375,\n            391.78582763671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Inside the function, t refers to the same turtle bob refers to, so lt(t) has the same effect as lt(bob). So why not call the parameter bob? The idea is that t can be any turtle, not just bob, so you could create a second turtle and pass it as an argument to square:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              401.773681640625\n            ],\n            [\n              482.4047546386719,\n              401.773681640625\n            ],\n            [\n              482.4047546386719,\n              436.27484130859375\n            ],\n            [\n              85.3154296875,\n              436.27484130859375\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            401.773681640625,\n            482.4047546386719,\n            436.27484130859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>ray = Turtle()\\nsquare(ray)</pre>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              442.01953125\n            ],\n            [\n              159.6250762939453,\n              442.01953125\n            ],\n            [\n              159.6250762939453,\n              464.44921875\n            ],\n            [\n              85.83837890625,\n              464.44921875\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            442.01953125,\n            159.6250762939453,\n            464.44921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Wrapping a piece of code up in a function is called <b>encapsulation</b>. One of the benefits of encapsulation is that it attaches a name to the code, which serves as a kind of documentation. Another advantage is that if you re-use the code, it is more concise to call a function twice than to copy and paste the body!</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              470.63671875\n            ],\n            [\n              482.90625,\n              470.63671875\n            ],\n            [\n              482.90625,\n              517.3098449707031\n            ],\n            [\n              85.6142578125,\n              517.3098449707031\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            470.63671875,\n            482.90625,\n            517.3098449707031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-55-1\\\"></span><b>4.5 Generalization</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              546.046875\n            ],\n            [\n              216.69219970703125,\n              546.046875\n            ],\n            [\n              216.69219970703125,\n              560.9458923339844\n            ],\n            [\n              85.763671875,\n              560.9458923339844\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            546.046875,\n            216.69219970703125,\n            560.9458923339844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The next step is to add a length parameter to square. Here is a solution:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              572.73046875\n            ],\n            [\n              405.1571960449219,\n              572.73046875\n            ],\n            [\n              405.1571960449219,\n              583.2168426513672\n            ],\n            [\n              85.6142578125,\n              583.2168426513672\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            572.73046875,\n            405.1571960449219,\n            583.2168426513672\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def square(t, length):\\n    for i in range(4):\\n        fd(t, length)\\n        lt(t)</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              588.97265625\n            ],\n            [\n              202.7548828125,\n              588.97265625\n            ],\n            [\n              202.7548828125,\n              637.69921875\n            ],\n            [\n              85.46484375,\n              637.69921875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            588.97265625,\n            202.7548828125,\n            637.69921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">square(bob, 100)</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              650.2056884765625\n            ],\n            [\n              170.0957794189453,\n              650.2056884765625\n            ],\n            [\n              170.0957794189453,\n              661.2890625\n            ],\n            [\n              85.763671875,\n              661.2890625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            650.2056884765625,\n            170.0957794189453,\n            661.2890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/55/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Adding a parameter to a function is called <b>generalization</b> because it makes the function more general: in the previous version, the square is always the same size; in this version it can be any size.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              665.9296875\n            ],\n            [\n              482.90625,\n              665.9296875\n            ],\n            [\n              482.90625,\n              700.834846496582\n            ],\n            [\n              85.9130859375,\n              700.834846496582\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            665.9296875,\n            482.90625,\n            700.834846496582\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/52/SectionHeader/1\",\n        \"3\": \"/page/55/SectionHeader/4\",\n        \"4\": \"/page/55/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/56/Page/222\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/56/PageHeader/0'></content-ref><content-ref src='/page/56/PageHeader/16'></content-ref><content-ref src='/page/56/Text/1'></content-ref><content-ref src='/page/56/Code/2'></content-ref><content-ref src='/page/56/Code/3'></content-ref><content-ref src='/page/56/Text/4'></content-ref><content-ref src='/page/56/Code/5'></content-ref><content-ref src='/page/56/Text/6'></content-ref><content-ref src='/page/56/Text/7'></content-ref><content-ref src='/page/56/SectionHeader/8'></content-ref><content-ref src='/page/56/Text/9'></content-ref><content-ref src='/page/56/Code/10'></content-ref><content-ref src='/page/56/Text/11'></content-ref><content-ref src='/page/56/Text/12'></content-ref><content-ref src='/page/56/Text/13'></content-ref><content-ref src='/page/56/Text/14'></content-ref><content-ref src='/page/56/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/56/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.197265625,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.197265625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              61.0048828125\n            ],\n            [\n              525.638671875,\n              61.0048828125\n            ],\n            [\n              525.638671875,\n              70.189453125\n            ],\n            [\n              514.880859375,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            61.0048828125,\n            525.638671875,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The next step is also a generalization. Instead of drawing squares, polygon draws regular polygons with any number of sides. Here is a solution :rule</p>\",\n          \"polygon\": [\n            [\n              127.1513671875,\n              88.171875\n            ],\n            [\n              525.5977783203125,\n              88.171875\n            ],\n            [\n              525.5977783203125,\n              110.99188232421875\n            ],\n            [\n              127.1513671875,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            127.1513671875,\n            88.171875,\n            525.5977783203125,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def polygon(t, n, length):\\n    angle = 360.0 / n\\n    for i in range(n):\\n        fd(t, length)\\n        lt(t, angle)</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              120.1947021484375\n            ],\n            [\n              265.5994567871094,\n              120.1947021484375\n            ],\n            [\n              265.5994567871094,\n              185.044921875\n            ],\n            [\n              129.60000610351562,\n              185.044921875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            120.1947021484375,\n            265.5994567871094,\n            185.044921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>polygon(bob, 7, 70)</pre>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              193.3607177734375\n            ],\n            [\n              230.2470703125,\n              193.3607177734375\n            ],\n            [\n              230.2470703125,\n              203.4140625\n            ],\n            [\n              128.9443359375,\n              203.4140625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            193.3607177734375,\n            230.2470703125,\n            203.4140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This draws a 7-sided polygon with side length 70. If you have more than a few numeric arguments, it is easy to forget what they are, or what order they should be in. It is legal, and sometimes helpful, to include the names of the parameters in the argument list:</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              212.501953125\n            ],\n            [\n              525.9375,\n              212.501953125\n            ],\n            [\n              525.9375,\n              247.306640625\n            ],\n            [\n              129.5419921875,\n              247.306640625\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            212.501953125,\n            525.9375,\n            247.306640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>polygon(bob, n=7, length=70)</pre>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              252.40679931640625\n            ],\n            [\n              276.0601806640625,\n              252.40679931640625\n            ],\n            [\n              276.0601806640625,\n              262.369384765625\n            ],\n            [\n              128.197265625,\n              262.369384765625\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            252.40679931640625,\n            276.0601806640625,\n            262.369384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">These are called <b>keyword arguments</b> because they include the parameter names as \\\"keywords\\\" (not to be confused with Python keywords like while and def).</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              267.80224609375\n            ],\n            [\n              525.5990600585938,\n              267.80224609375\n            ],\n            [\n              525.5990600585938,\n              290.0569763183594\n            ],\n            [\n              129.392578125,\n              290.0569763183594\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            267.80224609375,\n            525.5990600585938,\n            290.0569763183594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This syntax makes the program more readable. It is also a reminder about how arguments and parameters work: when you call a function, the arguments are assigned to the parameters.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              299.40838623046875\n            ],\n            [\n              525.6033325195312,\n              299.40838623046875\n            ],\n            [\n              525.6033325195312,\n              333.7599792480469\n            ],\n            [\n              128.794921875,\n              333.7599792480469\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            299.40838623046875,\n            525.6033325195312,\n            333.7599792480469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/55/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-56-0\\\"></span><b>4.6 Interface design</b></h4>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              361.9498291015625\n            ],\n            [\n              267.4669494628906,\n              361.9498291015625\n            ],\n            [\n              267.4669494628906,\n              376.2960510253906\n            ],\n            [\n              128.49609375,\n              376.2960510253906\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            361.9498291015625,\n            267.4669494628906,\n            376.2960510253906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The next step is to write circle, which takes a radius, r, as a parameter. Here is a simple solution that uses polygon to draw a 50-sided polygon:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              387.6688232421875\n            ],\n            [\n              525.5991821289062,\n              387.6688232421875\n            ],\n            [\n              525.5991821289062,\n              409.9759826660156\n            ],\n            [\n              128.6455078125,\n              409.9759826660156\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            387.6688232421875,\n            525.5991821289062,\n            409.9759826660156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def circle(t, r):\\n    circumference = 2 * math.pi * r\\n    n = 50\\n    length = circumference / n\\n    polygon(t, n, length)</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              415.2068176269531\n            ],\n            [\n              313.76953125,\n              415.2068176269531\n            ],\n            [\n              313.76953125,\n              473.9464111328125\n            ],\n            [\n              129.60000610351562,\n              473.9464111328125\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            415.2068176269531,\n            313.76953125,\n            473.9464111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first line computes the circumference of a circle with radius r using the formula 2<i>π</i><i>r</i>. Since we use math.pi, we have to import math. By convention, import statements are usually at the beginning of the script.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              479.14453125\n            ],\n            [\n              525.9375,\n              479.14453125\n            ],\n            [\n              525.9375,\n              513.8279724121094\n            ],\n            [\n              128.9443359375,\n              513.8279724121094\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            479.14453125,\n            525.9375,\n            513.8279724121094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">n is the number of line segments in our approximation of a circle, so length is the length of each segment. Thus, polygon draws a 50-sides polygon that approximates a circle with radius r.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              523.0308227539062\n            ],\n            [\n              525.638671875,\n              523.0308227539062\n            ],\n            [\n              525.638671875,\n              557.5309753417969\n            ],\n            [\n              129.392578125,\n              557.5309753417969\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            523.0308227539062,\n            525.638671875,\n            557.5309753417969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One limitation of this solution is that n is a constant, which means that for very big circles, the line segments are too long, and for small circles, we waste time drawing very small segments. One solution would be to generalize the function by taking n as a parameter. This would give the user (whoever calls circle) more control, but the interface would be less clean.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              566.54296875\n            ],\n            [\n              526.236328125,\n              566.54296875\n            ],\n            [\n              526.236328125,\n              625.6229858398438\n            ],\n            [\n              128.794921875,\n              625.6229858398438\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            566.54296875,\n            526.236328125,\n            625.6229858398438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The <b>interface</b> of a function is a summary of how it is used: what are the parameters? What does the function do? And what is the return value? An interface is \\\"clean\\\" if it is \\\"as simple as possible, but not simpler. (Einstein)\\\"</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              634.60546875\n            ],\n            [\n              525.9375,\n              634.60546875\n            ],\n            [\n              525.9375,\n              669.3259963989258\n            ],\n            [\n              128.3466796875,\n              669.3259963989258\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            634.60546875,\n            525.9375,\n            669.3259963989258\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/56/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this example, r belongs in the interface because it specifies the circle to be drawn. n is less appropriate because it pertains to the details of <i>how</i> the circle should be rendered.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              678.3046875\n            ],\n            [\n              525.9375,\n              678.3046875\n            ],\n            [\n              525.9375,\n              700.8349990844727\n            ],\n            [\n              128.0478515625,\n              700.8349990844727\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            678.3046875,\n            525.9375,\n            700.8349990844727\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/52/SectionHeader/1\",\n        \"3\": \"/page/55/SectionHeader/4\",\n        \"4\": \"/page/56/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/57/Page/206\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/57/PageHeader/0'></content-ref><content-ref src='/page/57/PageHeader/13'></content-ref><content-ref src='/page/57/Text/1'></content-ref><content-ref src='/page/57/Code/2'></content-ref><content-ref src='/page/57/Text/3'></content-ref><content-ref src='/page/57/SectionHeader/4'></content-ref><content-ref src='/page/57/Text/5'></content-ref><content-ref src='/page/57/Text/6'></content-ref><content-ref src='/page/57/Code/7'></content-ref><content-ref src='/page/57/Text/8'></content-ref><content-ref src='/page/57/Code/9'></content-ref><content-ref src='/page/57/Text/10'></content-ref><content-ref src='/page/57/Code/11'></content-ref><content-ref src='/page/57/Code/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/57/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.0048828125\n            ],\n            [\n              482.4034423828125,\n              61.0048828125\n            ],\n            [\n              482.4034423828125,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.0048828125,\n            482.4034423828125,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/PageHeader/13\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.46484375,\n              60.95654296875\n            ],\n            [\n              96.8203125,\n              60.95654296875\n            ],\n            [\n              96.8203125,\n              70.52783203125\n            ],\n            [\n              85.46484375,\n              70.52783203125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            60.95654296875,\n            96.8203125,\n            70.52783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Rather than clutter up the interface, it is better to choose an appropriate value of n depending on circumference:</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              88.365234375\n            ],\n            [\n              482.3997802734375,\n              88.365234375\n            ],\n            [\n              482.3997802734375,\n              110.99188232421875\n            ],\n            [\n              85.0166015625,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            88.365234375,\n            482.3997802734375,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def circle(t, r):\\n    circumference = 2 * math.pi * r\\n    n = int(circumference / 3) + 1\\n    length = circumference / n\\n    polygon(t, n, length)</pre>\",\n          \"polygon\": [\n            [\n              86.40003204345703,\n              117.07269287109375\n            ],\n            [\n              269.45733642578125,\n              117.07269287109375\n            ],\n            [\n              269.45733642578125,\n              175.812255859375\n            ],\n            [\n              86.40003204345703,\n              175.812255859375\n            ]\n          ],\n          \"bbox\": [\n            86.40003204345703,\n            117.07269287109375,\n            269.45733642578125,\n            175.812255859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now the number of segments is (approximately) circumference/3, so the length of each segment is (approximately) 3, which is small enough that the circles look good, but big enough to be efficient, and appropriate for any size circle.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              181.0810546875\n            ],\n            [\n              482.4034729003906,\n              181.0810546875\n            ],\n            [\n              482.4034729003906,\n              216.54278564453125\n            ],\n            [\n              85.46484375,\n              216.54278564453125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            181.0810546875,\n            482.4034729003906,\n            216.54278564453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/55/SectionHeader/4\",\n            \"4\": \"/page/56/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-57-0\\\"></span><b>4.7 Refactoring</b></h3>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              244.986328125\n            ],\n            [\n              195.18724060058594,\n              244.986328125\n            ],\n            [\n              195.18724060058594,\n              260.310791015625\n            ],\n            [\n              85.6142578125,\n              260.310791015625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            244.986328125,\n            195.18724060058594,\n            260.310791015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When I wrote circle, I was able to re-use polygon because a many-sided polygon is a good approximation of a circle. But arc is not as cooperative; we can't use polygon or circle to draw an arc.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              271.86328125\n            ],\n            [\n              482.90625,\n              271.86328125\n            ],\n            [\n              482.90625,\n              307.04473876953125\n            ],\n            [\n              86.0625,\n              307.04473876953125\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            271.86328125,\n            482.90625,\n            307.04473876953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One alternative is to start with a copy of polygon and transform it into arc. The result might look like this:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              316.916015625\n            ],\n            [\n              482.405029296875,\n              316.916015625\n            ],\n            [\n              482.405029296875,\n              339.4027404785156\n            ],\n            [\n              86.0625,\n              339.4027404785156\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            316.916015625,\n            482.405029296875,\n            339.4027404785156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def arc(t, r, angle):\\n    arc_length = 2 * math.pi * r * angle / 360\\n    n = int(arc_length / 3) + 1\\n    step_length = arc_length / n\\n    step_angle = float(angle) / n\\n    for i in range(n):\\n        fd(t, step_length)\\n        lt(t, step_angle)</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              345.48358154296875\n            ],\n            [\n              326.9913635253906,\n              345.48358154296875\n            ],\n            [\n              326.9913635253906,\n              454.0078125\n            ],\n            [\n              85.3154296875,\n              454.0078125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            345.48358154296875,\n            326.9913635253906,\n            454.0078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The second half of this function looks like polygon, but we can't re-use polygon without changing the interface. We could generalize polygon to take an angle as a third argument, but then polygon would no longer be an appropriate name! Instead, let's call the more general function polyline:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              459.03515625\n            ],\n            [\n              482.4042663574219,\n              459.03515625\n            ],\n            [\n              482.4042663574219,\n              506.98828125\n            ],\n            [\n              85.46484375,\n              506.98828125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            459.03515625,\n            482.4042663574219,\n            506.98828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def polyline(t, n, length, angle):\\n    for i in range(n):\\n        fd(t, length)\\n        lt(t, angle)</pre>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              512.005615234375\n            ],\n            [\n              264.2424011230469,\n              512.005615234375\n            ],\n            [\n              264.2424011230469,\n              558.5512237548828\n            ],\n            [\n              85.68896484375,\n              558.5512237548828\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            512.005615234375,\n            264.2424011230469,\n            558.5512237548828\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now we can rewrite polygon and arc to use polyline:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              563.8359375\n            ],\n            [\n              327.9897155761719,\n              563.8359375\n            ],\n            [\n              327.9897155761719,\n              574.8937683105469\n            ],\n            [\n              85.46484375,\n              574.8937683105469\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            563.8359375,\n            327.9897155761719,\n            574.8937683105469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def polygon(t, n, length):\\n    angle = 360.0 / n\\n    polyline(t, n, length, angle)</pre>\",\n          \"polygon\": [\n            [\n              86.40005493164062,\n              579.69140625\n            ],\n            [\n              260.578125,\n              579.69140625\n            ],\n            [\n              260.578125,\n              616.81640625\n            ],\n            [\n              86.40005493164062,\n              616.81640625\n            ]\n          ],\n          \"bbox\": [\n            86.40005493164062,\n            579.69140625,\n            260.578125,\n            616.81640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/57/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def arc(t, r, angle):\\n    arc_length = 2 * math.pi * r * angle / 360\\n    n = int(arc_length / 3) + 1\\n    step_length = arc_length / n\\n    step_angle = float(angle) / n\\n    polyline(t, n, step_length, step_angle)</pre>\",\n          \"polygon\": [\n            [\n              84.64306640625,\n              628.8046875\n            ],\n            [\n              328.11328125,\n              628.8046875\n            ],\n            [\n              328.11328125,\n              701.5078125\n            ],\n            [\n              84.64306640625,\n              701.5078125\n            ]\n          ],\n          \"bbox\": [\n            84.64306640625,\n            628.8046875,\n            328.11328125,\n            701.5078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/52/SectionHeader/1\",\n        \"3\": \"/page/57/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/58/Page/152\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/58/PageHeader/0'></content-ref><content-ref src='/page/58/PageHeader/16'></content-ref><content-ref src='/page/58/Text/1'></content-ref><content-ref src='/page/58/Text/2'></content-ref><content-ref src='/page/58/Text/3'></content-ref><content-ref src='/page/58/Text/4'></content-ref><content-ref src='/page/58/SectionHeader/5'></content-ref><content-ref src='/page/58/Text/6'></content-ref><content-ref src='/page/58/ListGroup/150'></content-ref><content-ref src='/page/58/Text/12'></content-ref><content-ref src='/page/58/SectionHeader/13'></content-ref><content-ref src='/page/58/Text/14'></content-ref><content-ref src='/page/58/Code/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/58/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.197265625,\n              61.0048828125\n            ],\n            [\n              525.6033935546875,\n              61.0048828125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.197265625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            61.0048828125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/58/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              60.71484375\n            ],\n            [\n              526.236328125,\n              60.71484375\n            ],\n            [\n              526.236328125,\n              69.99609375\n            ],\n            [\n              514.880859375,\n              69.99609375\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            60.71484375,\n            526.236328125,\n            69.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/58/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Finally, we can rewrite circle to use arc:</p>\",\n          \"polygon\": [\n            [\n              127.37548828125,\n              88.41357421875\n            ],\n            [\n              312.1916809082031,\n              88.41357421875\n            ],\n            [\n              312.1916809082031,\n              98.79791259765625\n            ],\n            [\n              127.37548828125,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            127.37548828125,\n            88.41357421875,\n            312.1916809082031,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/58/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">def circle(t, r): arc(t, r, 360)</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              106.5997314453125\n            ],\n            [\n              223.74111938476562,\n              106.5997314453125\n            ],\n            [\n              223.74111938476562,\n              128.75732421875\n            ],\n            [\n              128.6455078125,\n              128.75732421875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            106.5997314453125,\n            223.74111938476562,\n            128.75732421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/58/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This process—rearranging a program to improve function interfaces and facilitate code reuse—is called <b>refactoring</b>. In this case, we noticed that there was similar code in arc and polygon, so we \\\"factored it out\\\" into polyline.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              136.318359375\n            ],\n            [\n              525.6034545898438,\n              136.318359375\n            ],\n            [\n              525.6034545898438,\n              171.20892333984375\n            ],\n            [\n              128.9443359375,\n              171.20892333984375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            136.318359375,\n            525.6034545898438,\n            171.20892333984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/58/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If we had planned ahead, we might have written polyline first and avoided refactoring, but often you don't know enough at the beginning of a project to design all the interfaces. Once you start coding, you understand the problem better. Sometimes refactoring is a sign that you have learned something.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              182.53125\n            ],\n            [\n              525.6033935546875,\n              182.53125\n            ],\n            [\n              525.6033935546875,\n              229.67791748046875\n            ],\n            [\n              128.3466796875,\n              229.67791748046875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            182.53125,\n            525.6033935546875,\n            229.67791748046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/57/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/58/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-58-0\\\"></span><b>4.8 A development plan</b></h3>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              263.548828125\n            ],\n            [\n              296.138671875,\n              263.548828125\n            ],\n            [\n              296.138671875,\n              278.6109619140625\n            ],\n            [\n              128.86962890625,\n              278.6109619140625\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            263.548828125,\n            296.138671875,\n            278.6109619140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/58/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>development plan</b> is a process for writing programs. The process we used in this case study is \\\"encapsulation and generalization.\\\" The steps of this process are:</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              293.1328125\n            ],\n            [\n              525.638671875,\n              293.1328125\n            ],\n            [\n              525.638671875,\n              315.5625\n            ],\n            [\n              129.392578125,\n              315.5625\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            293.1328125,\n            525.638671875,\n            315.5625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/58/ListGroup/150\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/58/ListItem/7'></content-ref><content-ref src='/page/58/ListItem/8'></content-ref><content-ref src='/page/58/ListItem/9'></content-ref><content-ref src='/page/58/ListItem/10'></content-ref><content-ref src='/page/58/ListItem/11'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.52392578125,\n              332.19140625\n            ],\n            [\n              525.6038818359375,\n              332.19140625\n            ],\n            [\n              525.6038818359375,\n              472.1069030761719\n            ],\n            [\n              140.52392578125,\n              472.1069030761719\n            ]\n          ],\n          \"bbox\": [\n            140.52392578125,\n            332.19140625,\n            525.6038818359375,\n            472.1069030761719\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/58/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">1. Start by writing a small program with no function definitions.</li>\",\n              \"polygon\": [\n                [\n                  142.05299377441406,\n                  332.19140625\n                ],\n                [\n                  426.56488037109375,\n                  332.19140625\n                ],\n                [\n                  426.56488037109375,\n                  342.9368896484375\n                ],\n                [\n                  142.05299377441406,\n                  342.9368896484375\n                ]\n              ],\n              \"bbox\": [\n                142.05299377441406,\n                332.19140625,\n                426.56488037109375,\n                342.9368896484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/58/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">2. Once you get the program working, encapsulate it in a function and give it a name.</li>\",\n              \"polygon\": [\n                [\n                  141.7939453125,\n                  355.201171875\n                ],\n                [\n                  519.9642944335938,\n                  355.201171875\n                ],\n                [\n                  519.9642944335938,\n                  366.0838928222656\n                ],\n                [\n                  141.7939453125,\n                  366.0838928222656\n                ]\n              ],\n              \"bbox\": [\n                141.7939453125,\n                355.201171875,\n                519.9642944335938,\n                366.0838928222656\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/58/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">3. Generalize the function by adding appropriate parameters.</li>\",\n              \"polygon\": [\n                [\n                  140.52392578125,\n                  378.2109375\n                ],\n                [\n                  414.1514892578125,\n                  378.2109375\n                ],\n                [\n                  414.1514892578125,\n                  389.23089599609375\n                ],\n                [\n                  140.52392578125,\n                  389.23089599609375\n                ]\n              ],\n              \"bbox\": [\n                140.52392578125,\n                378.2109375,\n                414.1514892578125,\n                389.23089599609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/58/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">4. Repeat steps 1–3 until you have a set of working functions. Copy and paste working code to avoid retyping (and re-debugging).</li>\",\n              \"polygon\": [\n                [\n                  141.345703125,\n                  401.4140625\n                ],\n                [\n                  525.60302734375,\n                  401.4140625\n                ],\n                [\n                  525.60302734375,\n                  424.5718994140625\n                ],\n                [\n                  141.345703125,\n                  424.5718994140625\n                ]\n              ],\n              \"bbox\": [\n                141.345703125,\n                401.4140625,\n                525.60302734375,\n                424.5718994140625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/58/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">5. Look for opportunities to improve the program by refactoring. For example, if you have similar code in several places, consider factoring it into an appropriately general function.</li>\",\n              \"polygon\": [\n                [\n                  140.8974609375,\n                  436.60546875\n                ],\n                [\n                  525.6038818359375,\n                  436.60546875\n                ],\n                [\n                  525.6038818359375,\n                  472.1069030761719\n                ],\n                [\n                  140.8974609375,\n                  472.1069030761719\n                ]\n              ],\n              \"bbox\": [\n                140.8974609375,\n                436.60546875,\n                525.6038818359375,\n                472.1069030761719\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/58/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This process has some drawbacks—we will see alternatives later—but it can be useful if you don't know ahead of time how to divide the program into functions. This approach lets you design as you go along.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              488.8125\n            ],\n            [\n              525.9375,\n              488.8125\n            ],\n            [\n              525.9375,\n              523.8719177246094\n            ],\n            [\n              128.3466796875,\n              523.8719177246094\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            488.8125,\n            525.9375,\n            523.8719177246094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/58/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-58-1\\\"></span><b>4.9 docstring</b></h4>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              558.4587707519531\n            ],\n            [\n              223.2376251220703,\n              558.4587707519531\n            ],\n            [\n              223.2376251220703,\n              572.8049621582031\n            ],\n            [\n              127.97314453125,\n              572.8049621582031\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            558.4587707519531,\n            223.2376251220703,\n            572.8049621582031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/58/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/58/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>docstring</b> is a string at the beginning of a function that explains the interface (\\\"doc\\\" is short for \\\"documentation\\\"). Here is an example:</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              587.0390625\n            ],\n            [\n              525.5960693359375,\n              587.0390625\n            ],\n            [\n              525.5960693359375,\n              609.7549133300781\n            ],\n            [\n              127.7490234375,\n              609.7549133300781\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            587.0390625,\n            525.5960693359375,\n            609.7549133300781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/58/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/58/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def polyline(t, n, length, angle):\\n    \\\"\\\"\\\"Draws n line segments with the given length and\\n    angle (in degrees) between them. t is a turtle.\\n    \\\"\\\"\\\"\\n    for i in range(n):\\n        fd(t, length)\\n        lt(t, angle)</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              617.5567626953125\n            ],\n            [\n              412.0440979003906,\n              617.5567626953125\n            ],\n            [\n              412.0440979003906,\n              700.6853637695312\n            ],\n            [\n              129.5999755859375,\n              700.6853637695312\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            617.5567626953125,\n            412.0440979003906,\n            700.6853637695312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/58/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/52/SectionHeader/1\",\n        \"3\": \"/page/58/SectionHeader/5\",\n        \"4\": \"/page/58/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/59/Page/166\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/59/PageHeader/0'></content-ref><content-ref src='/page/59/PageHeader/17'></content-ref><content-ref src='/page/59/Text/1'></content-ref><content-ref src='/page/59/Text/2'></content-ref><content-ref src='/page/59/Text/3'></content-ref><content-ref src='/page/59/SectionHeader/4'></content-ref><content-ref src='/page/59/Text/5'></content-ref><content-ref src='/page/59/Text/6'></content-ref><content-ref src='/page/59/Text/7'></content-ref><content-ref src='/page/59/Text/8'></content-ref><content-ref src='/page/59/SectionHeader/9'></content-ref><content-ref src='/page/59/ListGroup/164'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/59/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.8115234375\n            ],\n            [\n              482.90625,\n              60.8115234375\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.8115234375,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/58/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/59/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              60.908203125\n            ],\n            [\n              97.19384765625,\n              60.908203125\n            ],\n            [\n              97.19384765625,\n              70.2861328125\n            ],\n            [\n              85.83837890625,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            60.908203125,\n            97.19384765625,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/58/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/59/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This docstring is a triple-quoted string, also known as a multiline string because the triple quotes allow the string to span more than one line.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              88.83526611328125\n            ],\n            [\n              483.50390625,\n              88.83526611328125\n            ],\n            [\n              483.50390625,\n              110.99188232421875\n            ],\n            [\n              85.46484375,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            88.83526611328125,\n            483.50390625,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/58/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/59/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is terse, but it contains the essential information someone would need to use this function. It explains concisely what the function does (without getting into the details of how it does it). It explains what effect each parameter has on the behavior of the function and what type each parameter should be (if it is not obvious).</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              120.7529296875\n            ],\n            [\n              482.90625,\n              120.7529296875\n            ],\n            [\n              482.90625,\n              167.41497802734375\n            ],\n            [\n              85.46484375,\n              167.41497802734375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            120.7529296875,\n            482.90625,\n            167.41497802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/58/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/59/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Writing this kind of documentation is an important part of interface design. A welldesigned interface should be simple to explain; if you are having a hard time explaining one of your functions, that might be a sign that the interface could be improved.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              176.923828125\n            ],\n            [\n              482.90625,\n              176.923828125\n            ],\n            [\n              482.90625,\n              211.64404296875\n            ],\n            [\n              85.6142578125,\n              211.64404296875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            176.923828125,\n            482.90625,\n            211.64404296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/58/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/59/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-59-0\\\"></span><b>4.10 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              240.56890869140625\n            ],\n            [\n              201.2607421875,\n              240.56890869140625\n            ],\n            [\n              201.2607421875,\n              255.234375\n            ],\n            [\n              85.46484375,\n              255.234375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            240.56890869140625,\n            201.2607421875,\n            255.234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/59/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An interface is like a contract between a function and a caller. The caller agrees to provide certain parameters and the function agrees to do certain work.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              266.642578125\n            ],\n            [\n              482.90625,\n              266.642578125\n            ],\n            [\n              482.90625,\n              289.12005615234375\n            ],\n            [\n              85.763671875,\n              289.12005615234375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            266.642578125,\n            482.90625,\n            289.12005615234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/59/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, polyline requires four arguments: t has to be a Turtle; n is the number of line segments, so it has to be an integer; length should be a positive number; and angle has to be a number, which is understood to be in degrees.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              298.546875\n            ],\n            [\n              482.90625,\n              298.546875\n            ],\n            [\n              482.90625,\n              333.3480529785156\n            ],\n            [\n              85.9130859375,\n              333.3480529785156\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            298.546875,\n            482.90625,\n            333.3480529785156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/59/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">These requirements are called <b>preconditions</b> because they are supposed to be true before the function starts executing. Conversely, conditions at the end of the function are <b>post</b><b>conditions</b>. Postconditions include the intended effect of the function (like drawing line segments) and any side effects (like moving the Turtle or making other changes in the World).</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              343.01953125\n            ],\n            [\n              482.4033203125,\n              343.01953125\n            ],\n            [\n              482.4033203125,\n              401.966064453125\n            ],\n            [\n              86.2119140625,\n              401.966064453125\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            343.01953125,\n            482.4033203125,\n            401.966064453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/59/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Preconditions are the responsibility of the caller. If the caller violates a (properly documented!) precondition and the function doesn't work correctly, the bug is in the caller, not the function.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              411.46875\n            ],\n            [\n              482.607421875,\n              411.46875\n            ],\n            [\n              482.607421875,\n              446.1940612792969\n            ],\n            [\n              85.763671875,\n              446.1940612792969\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            411.46875,\n            482.607421875,\n            446.1940612792969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/59/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-59-1\\\"></span><b>4.11 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              474.890625\n            ],\n            [\n              184.0259246826172,\n              474.890625\n            ],\n            [\n              184.0259246826172,\n              489.46612548828125\n            ],\n            [\n              85.6142578125,\n              489.46612548828125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            474.890625,\n            184.0259246826172,\n            489.46612548828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/59/ListGroup/164\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/59/ListItem/10'></content-ref><content-ref src='/page/59/ListItem/11'></content-ref><content-ref src='/page/59/ListItem/12'></content-ref><content-ref src='/page/59/ListItem/13'></content-ref><content-ref src='/page/59/ListItem/14'></content-ref><content-ref src='/page/59/ListItem/15'></content-ref><content-ref src='/page/59/ListItem/16'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              498.09375\n            ],\n            [\n              482.90625,\n              498.09375\n            ],\n            [\n              482.90625,\n              700.8350448608398\n            ],\n            [\n              85.46484375,\n              700.8350448608398\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            498.09375,\n            482.90625,\n            700.8350448608398\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/59/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>instance:</b> A member of a set. The TurtleWorld in this chapter is a member of the set of TurtleWorlds.</li>\",\n              \"polygon\": [\n                [\n                  85.9130859375,\n                  498.09375\n                ],\n                [\n                  482.90625,\n                  498.09375\n                ],\n                [\n                  482.90625,\n                  520.4000549316406\n                ],\n                [\n                  85.9130859375,\n                  520.4000549316406\n                ]\n              ],\n              \"bbox\": [\n                85.9130859375,\n                498.09375,\n                482.90625,\n                520.4000549316406\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/59/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/59/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>loop:</b> A part of a program that can execute repeatedly.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  530.19140625\n                ],\n                [\n                  326.3203125,\n                  530.19140625\n                ],\n                [\n                  326.3203125,\n                  540.31005859375\n                ],\n                [\n                  85.6142578125,\n                  540.31005859375\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                530.19140625,\n                326.3203125,\n                540.31005859375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/59/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/59/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>encapsulation:</b> The process of transforming a sequence of statements into a function definition.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  550.1613464355469\n                ],\n                [\n                  482.4031982421875,\n                  550.1613464355469\n                ],\n                [\n                  482.4031982421875,\n                  572.4150543212891\n                ],\n                [\n                  85.6142578125,\n                  572.4150543212891\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                550.1613464355469,\n                482.4031982421875,\n                572.4150543212891\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/59/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/59/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>generalization:</b> The process of replacing something unnecessarily specific (like a number) with something appropriately general (like a variable or parameter).</li>\",\n              \"polygon\": [\n                [\n                  85.46484375,\n                  582.01171875\n                ],\n                [\n                  482.607421875,\n                  582.01171875\n                ],\n                [\n                  482.607421875,\n                  604.5200500488281\n                ],\n                [\n                  85.46484375,\n                  604.5200500488281\n                ]\n              ],\n              \"bbox\": [\n                85.46484375,\n                582.01171875,\n                482.607421875,\n                604.5200500488281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/59/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/59/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>keyword argument:</b> An argument that includes the name of the parameter as a \\\"keyword.\\\"</li>\",\n              \"polygon\": [\n                [\n                  85.763671875,\n                  614.371337890625\n                ],\n                [\n                  482.402587890625,\n                  614.371337890625\n                ],\n                [\n                  482.402587890625,\n                  636.6250457763672\n                ],\n                [\n                  85.763671875,\n                  636.6250457763672\n                ]\n              ],\n              \"bbox\": [\n                85.763671875,\n                614.371337890625,\n                482.402587890625,\n                636.6250457763672\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/59/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/59/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>interface:</b> A description of how to use a function, including the name and descriptions of the arguments and return value.</li>\",\n              \"polygon\": [\n                [\n                  85.763671875,\n                  646.4763336181641\n                ],\n                [\n                  482.90625,\n                  646.4763336181641\n                ],\n                [\n                  482.90625,\n                  668.7300491333008\n                ],\n                [\n                  85.763671875,\n                  668.7300491333008\n                ]\n              ],\n              \"bbox\": [\n                85.763671875,\n                646.4763336181641,\n                482.90625,\n                668.7300491333008\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/59/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/59/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>refactoring:</b> The process of modifying a working program to improve function interfaces and other qualities of the code.</li>\",\n              \"polygon\": [\n                [\n                  85.9130859375,\n                  678.5813293457031\n                ],\n                [\n                  482.4034118652344,\n                  678.5813293457031\n                ],\n                [\n                  482.4034118652344,\n                  700.8350448608398\n                ],\n                [\n                  85.9130859375,\n                  700.8350448608398\n                ]\n              ],\n              \"bbox\": [\n                85.9130859375,\n                678.5813293457031,\n                482.4034118652344,\n                700.8350448608398\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/59/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/9\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/52/SectionHeader/1\",\n        \"3\": \"/page/58/SectionHeader/5\",\n        \"4\": \"/page/59/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/60/Page/190\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/60/PageHeader/0'></content-ref><content-ref src='/page/60/PageHeader/18'></content-ref><content-ref src='/page/60/FigureGroup/185'></content-ref><content-ref src='/page/60/FigureGroup/186'></content-ref><content-ref src='/page/60/Text/5'></content-ref><content-ref src='/page/60/ListItem/6'></content-ref><content-ref src='/page/60/Text/7'></content-ref><content-ref src='/page/60/Text/8'></content-ref><content-ref src='/page/60/SectionHeader/9'></content-ref><content-ref src='/page/60/Text/10'></content-ref><content-ref src='/page/60/ListGroup/187'></content-ref><content-ref src='/page/60/Text/14'></content-ref><content-ref src='/page/60/Text/15'></content-ref><content-ref src='/page/60/Text/16'></content-ref><content-ref src='/page/60/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/60/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.49609375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.49609375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/60/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              515.1796875,\n              61.05322265625\n            ],\n            [\n              525.9375,\n              61.05322265625\n            ],\n            [\n              525.9375,\n              70.43115234375\n            ],\n            [\n              515.1796875,\n              70.43115234375\n            ]\n          ],\n          \"bbox\": [\n            515.1796875,\n            61.05322265625,\n            525.9375,\n            70.43115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/60/FigureGroup/185\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/60/Figure/1'></content-ref><content-ref src='/page/60/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              219.041015625,\n              87.83349609375\n            ],\n            [\n              433.001953125,\n              87.83349609375\n            ],\n            [\n              433.001953125,\n              193.1529541015625\n            ],\n            [\n              219.041015625,\n              193.1529541015625\n            ]\n          ],\n          \"bbox\": [\n            219.041015625,\n            87.83349609375,\n            433.001953125,\n            193.1529541015625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/60/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  219.041015625,\n                  87.83349609375\n                ],\n                [\n                  433.001953125,\n                  87.83349609375\n                ],\n                [\n                  433.001953125,\n                  165.708984375\n                ],\n                [\n                  219.041015625,\n                  165.708984375\n                ]\n              ],\n              \"bbox\": [\n                219.041015625,\n                87.83349609375,\n                433.001953125,\n                165.708984375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/59/SectionHeader/9\"\n              },\n              \"images\": {\n                \"/page/60/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/60/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-60-1\\\"></span>Figure 4.1: Turtle flowers.</p>\",\n              \"polygon\": [\n                [\n                  269.244140625,\n                  182.91796875\n                ],\n                [\n                  384.013427734375,\n                  182.91796875\n                ],\n                [\n                  384.013427734375,\n                  193.1529541015625\n                ],\n                [\n                  269.244140625,\n                  193.1529541015625\n                ]\n              ],\n              \"bbox\": [\n                269.244140625,\n                182.91796875,\n                384.013427734375,\n                193.1529541015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/59/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/60/FigureGroup/186\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/60/Figure/3'></content-ref><content-ref src='/page/60/Caption/4'></content-ref>\",\n          \"polygon\": [\n            [\n              233.982421875,\n              205.927734375\n            ],\n            [\n              419.255859375,\n              205.927734375\n            ],\n            [\n              419.255859375,\n              288.3758850097656\n            ],\n            [\n              233.982421875,\n              288.3758850097656\n            ]\n          ],\n          \"bbox\": [\n            233.982421875,\n            205.927734375,\n            419.255859375,\n            288.3758850097656\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/60/Figure/3\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  233.982421875,\n                  205.927734375\n                ],\n                [\n                  419.255859375,\n                  205.927734375\n                ],\n                [\n                  419.255859375,\n                  264.322265625\n                ],\n                [\n                  233.982421875,\n                  264.322265625\n                ]\n              ],\n              \"bbox\": [\n                233.982421875,\n                205.927734375,\n                419.255859375,\n                264.322265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/59/SectionHeader/9\"\n              },\n              \"images\": {\n                \"/page/60/Figure/3\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/60/Caption/4\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-60-2\\\"></span>Figure 4.2: Turtle pies.</p>\",\n              \"polygon\": [\n                [\n                  277.013671875,\n                  278.41326904296875\n                ],\n                [\n                  376.58624267578125,\n                  278.41326904296875\n                ],\n                [\n                  376.58624267578125,\n                  288.3758850097656\n                ],\n                [\n                  277.013671875,\n                  288.3758850097656\n                ]\n              ],\n              \"bbox\": [\n                277.013671875,\n                278.41326904296875,\n                376.58624267578125,\n                288.3758850097656\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/59/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/60/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>development plan:</b> A process for writing programs.</p>\",\n          \"polygon\": [\n            [\n              129.31787109375,\n              311.9531555175781\n            ],\n            [\n              362.478515625,\n              311.9531555175781\n            ],\n            [\n              362.478515625,\n              322.01287841796875\n            ],\n            [\n              129.31787109375,\n              322.01287841796875\n            ]\n          ],\n          \"bbox\": [\n            129.31787109375,\n            311.9531555175781,\n            362.478515625,\n            322.01287841796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/60/ListItem/6\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>docstring:</b> A string that appears in a function definition to document the function's interface.</li>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              333.9981689453125\n            ],\n            [\n              525.6033935546875,\n              333.9981689453125\n            ],\n            [\n              525.6033935546875,\n              356.25189208984375\n            ],\n            [\n              128.3466796875,\n              356.25189208984375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            333.9981689453125,\n            525.6033935546875,\n            356.25189208984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/60/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>precondition:</b> A requirement that should be satisfied by the caller before a function starts.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              368.2371826171875\n            ],\n            [\n              526.236328125,\n              368.2371826171875\n            ],\n            [\n              526.236328125,\n              378.2969055175781\n            ],\n            [\n              128.794921875,\n              378.2969055175781\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            368.2371826171875,\n            526.236328125,\n            378.2969055175781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/60/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>postcondition:</b> A requirement that should be satisfied by the function before it ends.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              401.4140625\n            ],\n            [\n              503.2265625,\n              401.4140625\n            ],\n            [\n              503.2265625,\n              412.5359191894531\n            ],\n            [\n              128.9443359375,\n              412.5359191894531\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            401.4140625,\n            503.2265625,\n            412.5359191894531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/59/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/60/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-60-0\\\"></span><b>4.12 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              445.11328125\n            ],\n            [\n              228.80401611328125,\n              445.11328125\n            ],\n            [\n              228.80401611328125,\n              459.5309753417969\n            ],\n            [\n              127.97314453125,\n              459.5309753417969\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            445.11328125,\n            228.80401611328125,\n            459.5309753417969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/60/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 4.1.</b> <i>Download the code in this chapter from</i> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">polygon.</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              473.1658935546875\n            ],\n            [\n              525.041015625,\n              473.1658935546875\n            ],\n            [\n              525.041015625,\n              495.4031982421875\n            ],\n            [\n              129.392578125,\n              495.4031982421875\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            473.1658935546875,\n            525.041015625,\n            495.4031982421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/60/ListGroup/187\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/60/ListItem/11'></content-ref><content-ref src='/page/60/ListItem/12'></content-ref><content-ref src='/page/60/ListItem/13'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.0009765625,\n              511.6186218261719\n            ],\n            [\n              525.9375,\n              511.6186218261719\n            ],\n            [\n              525.9375,\n              614.49609375\n            ],\n            [\n              140.0009765625,\n              614.49609375\n            ]\n          ],\n          \"bbox\": [\n            140.0009765625,\n            511.6186218261719,\n            525.9375,\n            614.49609375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/60/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Write appropriate docstrings for</i> polygon<i>,</i> arc <i>and</i> circle<i>.</i></li>\",\n              \"polygon\": [\n                [\n                  141.345703125,\n                  511.6186218261719\n                ],\n                [\n                  397.0846252441406,\n                  511.6186218261719\n                ],\n                [\n                  397.0846252441406,\n                  521.6043395996094\n                ],\n                [\n                  141.345703125,\n                  521.6043395996094\n                ]\n              ],\n              \"bbox\": [\n                141.345703125,\n                511.6186218261719,\n                397.0846252441406,\n                521.6043395996094\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/60/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/60/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Draw a stack diagram that shows the state of the program while executing</i> circle(bob, radius)<i>. You can do the arithmetic by hand or add</i> print <i>statements to the code.</i></li>\",\n              \"polygon\": [\n                [\n                  141.1962890625,\n                  533.28515625\n                ],\n                [\n                  525.6139526367188,\n                  533.28515625\n                ],\n                [\n                  525.6139526367188,\n                  555.8433532714844\n                ],\n                [\n                  141.1962890625,\n                  555.8433532714844\n                ]\n              ],\n              \"bbox\": [\n                141.1962890625,\n                533.28515625,\n                525.6139526367188,\n                555.8433532714844\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/60/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/60/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. The version of</i> arc <i>in Section </i><i><a href=\\\"#page-57-0\\\">4.7</a></i><i> is not very accurate because the linear approximation of the</i> <i>circle is always outside the true circle. As a result, the turtle ends up a few units away from</i> <i>the correct destination. My solution shows a way to reduce the effect of this error. Read the</i> <i>code and see if it makes sense to you. If you draw a diagram, you might see how it works.</i></li>\",\n              \"polygon\": [\n                [\n                  140.0009765625,\n                  567.31640625\n                ],\n                [\n                  525.9375,\n                  567.31640625\n                ],\n                [\n                  525.9375,\n                  614.49609375\n                ],\n                [\n                  140.0009765625,\n                  614.49609375\n                ]\n              ],\n              \"bbox\": [\n                140.0009765625,\n                567.31640625,\n                525.9375,\n                614.49609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/52/SectionHeader/1\",\n                \"3\": \"/page/58/SectionHeader/5\",\n                \"4\": \"/page/60/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/60/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 4.2.</b> <i>Write an appropriately general set of functions that can draw flowers as in Figure </i><i><a href=\\\"#page-60-1\\\">4.1.</a></i></p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              621.6186065673828\n            ],\n            [\n              525.5982055664062,\n              621.6186065673828\n            ],\n            [\n              525.5982055664062,\n              631.8984375\n            ],\n            [\n              128.0478515625,\n              631.8984375\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            621.6186065673828,\n            525.5982055664062,\n            631.8984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/60/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/flower.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/flower.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/flower.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/flower.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/flower.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/flower.py\\\">flower.</a> <a href=\\\"http://thinkpython.com/code/flower.py\\\">py</a> <i>, also requires</i> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">polygon.</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              642.7265625\n            ],\n            [\n              524.14453125,\n              642.7265625\n            ],\n            [\n              524.14453125,\n              666.703125\n            ],\n            [\n              129.09375,\n              666.703125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            642.7265625,\n            524.14453125,\n            666.703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/60/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 4.3.</b> <i>Write an appropriately general set of functions that can draw shapes as in Figure </i><i><a href=\\\"#page-60-2\\\">4.2.</a></i></p>\",\n          \"polygon\": [\n            [\n              129.5998992919922,\n              667.2466201782227\n            ],\n            [\n              525.6047973632812,\n              667.2466201782227\n            ],\n            [\n              525.6047973632812,\n              677.2848052978516\n            ],\n            [\n              129.5998992919922,\n              677.2848052978516\n            ]\n          ],\n          \"bbox\": [\n            129.5998992919922,\n            667.2466201782227,\n            525.6047973632812,\n            677.2848052978516\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/60/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/pie.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/pie.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/pie.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/pie.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/pie.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/pie.py\\\">pie.</a> <a href=\\\"http://thinkpython.com/code/pie.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              688.4059295654297\n            ],\n            [\n              361.884521484375,\n              688.4059295654297\n            ],\n            [\n              361.884521484375,\n              698.4492263793945\n            ],\n            [\n              129.46728515625,\n              698.4492263793945\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            688.4059295654297,\n            361.884521484375,\n            698.4492263793945\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/52/SectionHeader/1\",\n        \"3\": \"/page/58/SectionHeader/5\",\n        \"4\": \"/page/60/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/61/Page/126\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/61/PageHeader/0'></content-ref><content-ref src='/page/61/PageHeader/5'></content-ref><content-ref src='/page/61/Text/1'></content-ref><content-ref src='/page/61/Text/2'></content-ref><content-ref src='/page/61/Text/3'></content-ref><content-ref src='/page/61/Text/4'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/61/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.71484375\n            ],\n            [\n              482.90625,\n              60.71484375\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.71484375,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/61/PageHeader/5\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.568359375,\n              60.908203125\n            ],\n            [\n              96.6708984375,\n              60.908203125\n            ],\n            [\n              96.6708984375,\n              70.2861328125\n            ],\n            [\n              84.568359375,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            84.568359375,\n            60.908203125,\n            96.6708984375,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/61/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 4.4.</b> <i>The letters of the alphabet can be constructed from a moderate number of basic ele</i><i>ments, like vertical and horizontal lines and a few curves. Design a font that can be drawn with a</i> <i>minimal number of basic elements and then write functions that draw letters of the alphabet.</i></p>\",\n          \"polygon\": [\n            [\n              84.7177734375,\n              88.51025390625\n            ],\n            [\n              482.4034423828125,\n              88.51025390625\n            ],\n            [\n              482.4034423828125,\n              123.01416015625\n            ],\n            [\n              84.7177734375,\n              123.01416015625\n            ]\n          ],\n          \"bbox\": [\n            84.7177734375,\n            88.51025390625,\n            482.4034423828125,\n            123.01416015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/61/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>You should write one function for each letter, with names</i> draw_a<i>,</i> draw_b<i>, etc., and put your</i> <i>functions in a file named</i> letters.py<i>. You can download a \\\"turtle typewriter\\\" from</i> <a href=\\\"http://thinkpython.com/code/typewriter.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/typewriter.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/typewriter.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/typewriter.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/typewriter.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/typewriter.py\\\">typewriter.</a> <a href=\\\"http://thinkpython.com/code/typewriter.py\\\">py</a> <i>to help you test your code.</i></p>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              132.64453125\n            ],\n            [\n              482.4041442871094,\n              132.64453125\n            ],\n            [\n              482.4041442871094,\n              167.5401611328125\n            ],\n            [\n              84.8671875,\n              167.5401611328125\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            132.64453125,\n            482.4041442871094,\n            167.5401611328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/61/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/letters.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/letters.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/letters.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/letters.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/letters.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/letters.py\\\">letters.</a> <a href=\\\"http://thinkpython.com/code/letters.py\\\">py</a> <i>, also requires</i> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">polygon.</a> <a href=\\\"http://thinkpython.com/code/polygon.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              177.50390625\n            ],\n            [\n              481.11328125,\n              177.50390625\n            ],\n            [\n              481.11328125,\n              199.87115478515625\n            ],\n            [\n              84.8671875,\n              199.87115478515625\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            177.50390625,\n            481.11328125,\n            199.87115478515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/61/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 4.5.</b> <i>Read about spirals at</i> <a href=\\\"http://en.wikipedia.org/wiki/Spiral\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/Spiral\\\">//</a> <a href=\\\"http://en.wikipedia.org/wiki/Spiral\\\">en.</a> <a href=\\\"http://en.wikipedia.org/wiki/Spiral\\\">wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Spiral\\\">org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Spiral\\\">wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Spiral\\\">Spiral</a> <i>; then write</i> <i>a program that draws an Archimedian spiral (or one of the other kinds). Solution:</i> <a href=\\\"http://thinkpython.com/code/spiral.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/spiral.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/spiral.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/spiral.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/spiral.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/spiral.py\\\">spiral.</a> <a href=\\\"http://thinkpython.com/code/spiral.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              202.02288818359375\n            ],\n            [\n              482.3995056152344,\n              202.02288818359375\n            ],\n            [\n              482.3995056152344,\n              236.45416259765625\n            ],\n            [\n              85.3154296875,\n              236.45416259765625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            202.02288818359375,\n            482.3995056152344,\n            236.45416259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"3\": \"/page/58/SectionHeader/5\",\n            \"4\": \"/page/60/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/52/SectionHeader/1\",\n        \"3\": \"/page/58/SectionHeader/5\",\n        \"4\": \"/page/60/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/62/Page/158\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/62/SectionHeader/0'></content-ref><content-ref src='/page/62/SectionHeader/1'></content-ref><content-ref src='/page/62/SectionHeader/2'></content-ref><content-ref src='/page/62/Text/3'></content-ref><content-ref src='/page/62/Code/4'></content-ref><content-ref src='/page/62/Text/5'></content-ref><content-ref src='/page/62/Text/6'></content-ref><content-ref src='/page/62/SectionHeader/7'></content-ref><content-ref src='/page/62/Text/8'></content-ref><content-ref src='/page/62/Code/9'></content-ref><content-ref src='/page/62/Text/10'></content-ref><content-ref src='/page/62/Code/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/62/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-62-0\\\"></span><b>Chapter 5</b></h2>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              162.37750244140625\n            ],\n            [\n              221.1328125,\n              162.37750244140625\n            ],\n            [\n              221.1328125,\n              183.3046875\n            ],\n            [\n              129.16845703125,\n              183.3046875\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            162.37750244140625,\n            221.1328125,\n            183.3046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/52/SectionHeader/1\",\n            \"2\": \"/page/62/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/62/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Conditionals and recursion</b></h1>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              215.7890625\n            ],\n            [\n              438.6796875,\n              215.7890625\n            ],\n            [\n              438.6796875,\n              240.775390625\n            ],\n            [\n              128.3466796875,\n              240.775390625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            215.7890625,\n            438.6796875,\n            240.775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/62/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-62-1\\\"></span><b>5.1 Modulus operator</b></h4>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              287.9187927246094\n            ],\n            [\n              280.2350769042969,\n              287.9187927246094\n            ],\n            [\n              280.2350769042969,\n              302.2650146484375\n            ],\n            [\n              127.8984375,\n              302.2650146484375\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            287.9187927246094,\n            280.2350769042969,\n            302.2650146484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/62/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The <b>modulus operator</b> works on integers and yields the remainder when the first operand is divided by the second. In Python, the modulus operator is a percent sign (%). The syntax is the same as for other operators:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              312.08203125\n            ],\n            [\n              526.833984375,\n              312.08203125\n            ],\n            [\n              526.833984375,\n              347.2169494628906\n            ],\n            [\n              128.197265625,\n              347.2169494628906\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            312.08203125,\n            526.833984375,\n            347.2169494628906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/62/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; quotient = 7 / 3\\n&gt;&gt;&gt; print quotient\\n2\\n&gt;&gt;&gt; remainder = 7 % 3\\n&gt;&gt;&gt; print remainder\\n1\\nSo 7 divided by 3 is 2 with 1 left over.</pre>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              350.560546875\n            ],\n            [\n              293.7537536621094,\n              350.560546875\n            ],\n            [\n              293.7537536621094,\n              437.0319519042969\n            ],\n            [\n              128.86962890625,\n              437.0319519042969\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            350.560546875,\n            293.7537536621094,\n            437.0319519042969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/62/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The modulus operator turns out to be surprisingly useful. For example, you can check whether one number is divisible by another—if x % y is zero, then x is divisible by y.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              441.6328125\n            ],\n            [\n              525.6033935546875,\n              441.6328125\n            ],\n            [\n              525.6033935546875,\n              467.61895751953125\n            ],\n            [\n              128.0478515625,\n              467.61895751953125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            441.6328125,\n            525.6033935546875,\n            467.61895751953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/62/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Also, you can extract the right-most digit or digits from a number. For example, x % 10 yields the right-most digit of x (in base 10). Similarly x % 100 yields the last two digits.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              474.50390625\n            ],\n            [\n              525.9375,\n              474.50390625\n            ],\n            [\n              525.9375,\n              498.20697021484375\n            ],\n            [\n              128.6455078125,\n              498.20697021484375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            474.50390625,\n            525.9375,\n            498.20697021484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/62/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-62-2\\\"></span><b>5.2 Boolean expressions</b></h4>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              524.77734375\n            ],\n            [\n              295.3703918457031,\n              524.77734375\n            ],\n            [\n              295.3703918457031,\n              539.4530181884766\n            ],\n            [\n              128.6455078125,\n              539.4530181884766\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            524.77734375,\n            295.3703918457031,\n            539.4530181884766\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/62/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>boolean expression</b> is an expression that is either true or false. The following examples use the operator ==, which compares two operands and produces True if they are equal and False otherwise:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              549.52734375\n            ],\n            [\n              525.5968017578125,\n              549.52734375\n            ],\n            [\n              525.5968017578125,\n              584.4049682617188\n            ],\n            [\n              129.09375,\n              584.4049682617188\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            549.52734375,\n            525.5968017578125,\n            584.4049682617188\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/62/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; 5 == 5\\nTrue\\n&gt;&gt;&gt; 5 == 6\\nFalse</pre>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              587.0390625\n            ],\n            [\n              186.46875,\n              587.0390625\n            ],\n            [\n              186.46875,\n              635.2594299316406\n            ],\n            [\n              128.49609375,\n              635.2594299316406\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            587.0390625,\n            186.46875,\n            635.2594299316406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/62/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">True and False are special values that belong to the type bool; they are not strings:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              639.24609375\n            ],\n            [\n              495.4980163574219,\n              639.24609375\n            ],\n            [\n              495.4980163574219,\n              650.07421875\n            ],\n            [\n              128.3466796875,\n              650.07421875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            639.24609375,\n            495.4980163574219,\n            650.07421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/62/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; type(True)\\n&lt;type 'bool'&gt;\\n&gt;&gt;&gt; type(False)\\n&lt;type 'bool'&gt;</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              653.16796875\n            ],\n            [\n              208.06541442871094,\n              653.16796875\n            ],\n            [\n              208.06541442871094,\n              700.6854248046875\n            ],\n            [\n              129.5999755859375,\n              700.6854248046875\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            653.16796875,\n            208.06541442871094,\n            700.6854248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/62/SectionHeader/1\",\n        \"4\": \"/page/62/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/63/Page/309\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/63/PageHeader/0'></content-ref><content-ref src='/page/63/PageHeader/19'></content-ref><content-ref src='/page/63/Text/1'></content-ref><content-ref src='/page/63/Table/2'></content-ref><content-ref src='/page/63/Text/3'></content-ref><content-ref src='/page/63/SectionHeader/4'></content-ref><content-ref src='/page/63/Text/5'></content-ref><content-ref src='/page/63/Text/6'></content-ref><content-ref src='/page/63/Text/7'></content-ref><content-ref src='/page/63/Text/8'></content-ref><content-ref src='/page/63/Code/9'></content-ref><content-ref src='/page/63/Text/10'></content-ref><content-ref src='/page/63/Text/11'></content-ref><content-ref src='/page/63/SectionHeader/12'></content-ref><content-ref src='/page/63/Text/13'></content-ref><content-ref src='/page/63/Code/14'></content-ref><content-ref src='/page/63/Text/15'></content-ref><content-ref src='/page/63/Text/16'></content-ref><content-ref src='/page/63/Text/17'></content-ref><content-ref src='/page/63/Code/247'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/63/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.8115234375\n            ],\n            [\n              482.90625,\n              60.8115234375\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.8115234375,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.46484375,\n              60.27978515625\n            ],\n            [\n              96.9697265625,\n              60.27978515625\n            ],\n            [\n              96.9697265625,\n              70.23779296875\n            ],\n            [\n              85.46484375,\n              70.23779296875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            60.27978515625,\n            96.9697265625,\n            70.23779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The == operator is one of the <b>relational operators</b>; the others are:</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              88.60693359375\n            ],\n            [\n              370.546875,\n              88.60693359375\n            ],\n            [\n              370.546875,\n              98.79791259765625\n            ],\n            [\n              85.83837890625,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            88.60693359375,\n            370.546875,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Table/2\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><td></td><td>x != y</td><td></td><td></td><td></td><td># x is not equal to y</td></tr><tr><td></td><td>x &gt; y</td><td></td><td></td><td></td><td># x is greater than y</td></tr><tr><td></td><td>x &lt; y</td><td></td><td></td><td></td><td># x is less than y</td></tr><tr><td></td><td>x &gt;= y</td><td></td><td></td><td></td><td># x is greater than or equal to y</td></tr><tr><td></td><td>x &lt;= y</td><td></td><td></td><td></td><td># x is less than or equal to y</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              113.47998046875,\n              102.673828125\n            ],\n            [\n              400.1947937011719,\n              102.673828125\n            ],\n            [\n              400.1947937011719,\n              162.01531982421875\n            ],\n            [\n              113.47998046875,\n              162.01531982421875\n            ]\n          ],\n          \"bbox\": [\n            113.47998046875,\n            102.673828125,\n            400.1947937011719,\n            162.01531982421875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/63/TableCell/278\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  113.47998046875,\n                  102.673828125\n                ],\n                [\n                  114.47998046875,\n                  102.673828125\n                ],\n                [\n                  114.47998046875,\n                  103.673828125\n                ],\n                [\n                  113.47998046875,\n                  103.673828125\n                ]\n              ],\n              \"bbox\": [\n                113.47998046875,\n                102.673828125,\n                114.47998046875,\n                103.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/279\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>x != y</td>\",\n              \"polygon\": [\n                [\n                  114.47998046875,\n                  102.673828125\n                ],\n                [\n                  115.47998046875,\n                  102.673828125\n                ],\n                [\n                  115.47998046875,\n                  103.673828125\n                ],\n                [\n                  114.47998046875,\n                  103.673828125\n                ]\n              ],\n              \"bbox\": [\n                114.47998046875,\n                102.673828125,\n                115.47998046875,\n                103.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/280\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  115.47998046875,\n                  102.673828125\n                ],\n                [\n                  116.47998046875,\n                  102.673828125\n                ],\n                [\n                  116.47998046875,\n                  103.673828125\n                ],\n                [\n                  115.47998046875,\n                  103.673828125\n                ]\n              ],\n              \"bbox\": [\n                115.47998046875,\n                102.673828125,\n                116.47998046875,\n                103.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/281\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  116.47998046875,\n                  102.673828125\n                ],\n                [\n                  117.47998046875,\n                  102.673828125\n                ],\n                [\n                  117.47998046875,\n                  103.673828125\n                ],\n                [\n                  116.47998046875,\n                  103.673828125\n                ]\n              ],\n              \"bbox\": [\n                116.47998046875,\n                102.673828125,\n                117.47998046875,\n                103.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/282\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  117.47998046875,\n                  102.673828125\n                ],\n                [\n                  118.47998046875,\n                  102.673828125\n                ],\n                [\n                  118.47998046875,\n                  103.673828125\n                ],\n                [\n                  117.47998046875,\n                  103.673828125\n                ]\n              ],\n              \"bbox\": [\n                117.47998046875,\n                102.673828125,\n                118.47998046875,\n                103.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/283\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td># x is not equal to y</td>\",\n              \"polygon\": [\n                [\n                  118.47998046875,\n                  102.673828125\n                ],\n                [\n                  119.47998046875,\n                  102.673828125\n                ],\n                [\n                  119.47998046875,\n                  103.673828125\n                ],\n                [\n                  118.47998046875,\n                  103.673828125\n                ]\n              ],\n              \"bbox\": [\n                118.47998046875,\n                102.673828125,\n                119.47998046875,\n                103.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/284\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  113.47998046875,\n                  103.673828125\n                ],\n                [\n                  114.47998046875,\n                  103.673828125\n                ],\n                [\n                  114.47998046875,\n                  104.673828125\n                ],\n                [\n                  113.47998046875,\n                  104.673828125\n                ]\n              ],\n              \"bbox\": [\n                113.47998046875,\n                103.673828125,\n                114.47998046875,\n                104.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/285\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>x &gt; y</td>\",\n              \"polygon\": [\n                [\n                  114.47998046875,\n                  103.673828125\n                ],\n                [\n                  115.47998046875,\n                  103.673828125\n                ],\n                [\n                  115.47998046875,\n                  104.673828125\n                ],\n                [\n                  114.47998046875,\n                  104.673828125\n                ]\n              ],\n              \"bbox\": [\n                114.47998046875,\n                103.673828125,\n                115.47998046875,\n                104.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/286\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  115.47998046875,\n                  103.673828125\n                ],\n                [\n                  116.47998046875,\n                  103.673828125\n                ],\n                [\n                  116.47998046875,\n                  104.673828125\n                ],\n                [\n                  115.47998046875,\n                  104.673828125\n                ]\n              ],\n              \"bbox\": [\n                115.47998046875,\n                103.673828125,\n                116.47998046875,\n                104.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/287\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  116.47998046875,\n                  103.673828125\n                ],\n                [\n                  117.47998046875,\n                  103.673828125\n                ],\n                [\n                  117.47998046875,\n                  104.673828125\n                ],\n                [\n                  116.47998046875,\n                  104.673828125\n                ]\n              ],\n              \"bbox\": [\n                116.47998046875,\n                103.673828125,\n                117.47998046875,\n                104.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/288\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  117.47998046875,\n                  103.673828125\n                ],\n                [\n                  118.47998046875,\n                  103.673828125\n                ],\n                [\n                  118.47998046875,\n                  104.673828125\n                ],\n                [\n                  117.47998046875,\n                  104.673828125\n                ]\n              ],\n              \"bbox\": [\n                117.47998046875,\n                103.673828125,\n                118.47998046875,\n                104.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/289\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td># x is greater than y</td>\",\n              \"polygon\": [\n                [\n                  118.47998046875,\n                  103.673828125\n                ],\n                [\n                  119.47998046875,\n                  103.673828125\n                ],\n                [\n                  119.47998046875,\n                  104.673828125\n                ],\n                [\n                  118.47998046875,\n                  104.673828125\n                ]\n              ],\n              \"bbox\": [\n                118.47998046875,\n                103.673828125,\n                119.47998046875,\n                104.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/290\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  113.47998046875,\n                  104.673828125\n                ],\n                [\n                  114.47998046875,\n                  104.673828125\n                ],\n                [\n                  114.47998046875,\n                  105.673828125\n                ],\n                [\n                  113.47998046875,\n                  105.673828125\n                ]\n              ],\n              \"bbox\": [\n                113.47998046875,\n                104.673828125,\n                114.47998046875,\n                105.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/291\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>x &lt; y</td>\",\n              \"polygon\": [\n                [\n                  114.47998046875,\n                  104.673828125\n                ],\n                [\n                  115.47998046875,\n                  104.673828125\n                ],\n                [\n                  115.47998046875,\n                  105.673828125\n                ],\n                [\n                  114.47998046875,\n                  105.673828125\n                ]\n              ],\n              \"bbox\": [\n                114.47998046875,\n                104.673828125,\n                115.47998046875,\n                105.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/292\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  115.47998046875,\n                  104.673828125\n                ],\n                [\n                  116.47998046875,\n                  104.673828125\n                ],\n                [\n                  116.47998046875,\n                  105.673828125\n                ],\n                [\n                  115.47998046875,\n                  105.673828125\n                ]\n              ],\n              \"bbox\": [\n                115.47998046875,\n                104.673828125,\n                116.47998046875,\n                105.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/293\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  116.47998046875,\n                  104.673828125\n                ],\n                [\n                  117.47998046875,\n                  104.673828125\n                ],\n                [\n                  117.47998046875,\n                  105.673828125\n                ],\n                [\n                  116.47998046875,\n                  105.673828125\n                ]\n              ],\n              \"bbox\": [\n                116.47998046875,\n                104.673828125,\n                117.47998046875,\n                105.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/294\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  117.47998046875,\n                  104.673828125\n                ],\n                [\n                  118.47998046875,\n                  104.673828125\n                ],\n                [\n                  118.47998046875,\n                  105.673828125\n                ],\n                [\n                  117.47998046875,\n                  105.673828125\n                ]\n              ],\n              \"bbox\": [\n                117.47998046875,\n                104.673828125,\n                118.47998046875,\n                105.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/295\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td># x is less than y</td>\",\n              \"polygon\": [\n                [\n                  118.47998046875,\n                  104.673828125\n                ],\n                [\n                  119.47998046875,\n                  104.673828125\n                ],\n                [\n                  119.47998046875,\n                  105.673828125\n                ],\n                [\n                  118.47998046875,\n                  105.673828125\n                ]\n              ],\n              \"bbox\": [\n                118.47998046875,\n                104.673828125,\n                119.47998046875,\n                105.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/296\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  113.47998046875,\n                  105.673828125\n                ],\n                [\n                  114.47998046875,\n                  105.673828125\n                ],\n                [\n                  114.47998046875,\n                  106.673828125\n                ],\n                [\n                  113.47998046875,\n                  106.673828125\n                ]\n              ],\n              \"bbox\": [\n                113.47998046875,\n                105.673828125,\n                114.47998046875,\n                106.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/297\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>x &gt;= y</td>\",\n              \"polygon\": [\n                [\n                  114.47998046875,\n                  105.673828125\n                ],\n                [\n                  115.47998046875,\n                  105.673828125\n                ],\n                [\n                  115.47998046875,\n                  106.673828125\n                ],\n                [\n                  114.47998046875,\n                  106.673828125\n                ]\n              ],\n              \"bbox\": [\n                114.47998046875,\n                105.673828125,\n                115.47998046875,\n                106.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/298\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  115.47998046875,\n                  105.673828125\n                ],\n                [\n                  116.47998046875,\n                  105.673828125\n                ],\n                [\n                  116.47998046875,\n                  106.673828125\n                ],\n                [\n                  115.47998046875,\n                  106.673828125\n                ]\n              ],\n              \"bbox\": [\n                115.47998046875,\n                105.673828125,\n                116.47998046875,\n                106.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/299\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  116.47998046875,\n                  105.673828125\n                ],\n                [\n                  117.47998046875,\n                  105.673828125\n                ],\n                [\n                  117.47998046875,\n                  106.673828125\n                ],\n                [\n                  116.47998046875,\n                  106.673828125\n                ]\n              ],\n              \"bbox\": [\n                116.47998046875,\n                105.673828125,\n                117.47998046875,\n                106.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/300\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  117.47998046875,\n                  105.673828125\n                ],\n                [\n                  118.47998046875,\n                  105.673828125\n                ],\n                [\n                  118.47998046875,\n                  106.673828125\n                ],\n                [\n                  117.47998046875,\n                  106.673828125\n                ]\n              ],\n              \"bbox\": [\n                117.47998046875,\n                105.673828125,\n                118.47998046875,\n                106.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/301\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td># x is greater than or equal to y</td>\",\n              \"polygon\": [\n                [\n                  118.47998046875,\n                  105.673828125\n                ],\n                [\n                  119.47998046875,\n                  105.673828125\n                ],\n                [\n                  119.47998046875,\n                  106.673828125\n                ],\n                [\n                  118.47998046875,\n                  106.673828125\n                ]\n              ],\n              \"bbox\": [\n                118.47998046875,\n                105.673828125,\n                119.47998046875,\n                106.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/302\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  113.47998046875,\n                  106.673828125\n                ],\n                [\n                  114.47998046875,\n                  106.673828125\n                ],\n                [\n                  114.47998046875,\n                  107.673828125\n                ],\n                [\n                  113.47998046875,\n                  107.673828125\n                ]\n              ],\n              \"bbox\": [\n                113.47998046875,\n                106.673828125,\n                114.47998046875,\n                107.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/303\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>x &lt;= y</td>\",\n              \"polygon\": [\n                [\n                  114.47998046875,\n                  106.673828125\n                ],\n                [\n                  115.47998046875,\n                  106.673828125\n                ],\n                [\n                  115.47998046875,\n                  107.673828125\n                ],\n                [\n                  114.47998046875,\n                  107.673828125\n                ]\n              ],\n              \"bbox\": [\n                114.47998046875,\n                106.673828125,\n                115.47998046875,\n                107.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/304\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  115.47998046875,\n                  106.673828125\n                ],\n                [\n                  116.47998046875,\n                  106.673828125\n                ],\n                [\n                  116.47998046875,\n                  107.673828125\n                ],\n                [\n                  115.47998046875,\n                  107.673828125\n                ]\n              ],\n              \"bbox\": [\n                115.47998046875,\n                106.673828125,\n                116.47998046875,\n                107.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/305\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  116.47998046875,\n                  106.673828125\n                ],\n                [\n                  117.47998046875,\n                  106.673828125\n                ],\n                [\n                  117.47998046875,\n                  107.673828125\n                ],\n                [\n                  116.47998046875,\n                  107.673828125\n                ]\n              ],\n              \"bbox\": [\n                116.47998046875,\n                106.673828125,\n                117.47998046875,\n                107.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/306\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  117.47998046875,\n                  106.673828125\n                ],\n                [\n                  118.47998046875,\n                  106.673828125\n                ],\n                [\n                  118.47998046875,\n                  107.673828125\n                ],\n                [\n                  117.47998046875,\n                  107.673828125\n                ]\n              ],\n              \"bbox\": [\n                117.47998046875,\n                106.673828125,\n                118.47998046875,\n                107.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/63/TableCell/307\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td># x is less than or equal to y</td>\",\n              \"polygon\": [\n                [\n                  118.47998046875,\n                  106.673828125\n                ],\n                [\n                  119.47998046875,\n                  106.673828125\n                ],\n                [\n                  119.47998046875,\n                  107.673828125\n                ],\n                [\n                  118.47998046875,\n                  107.673828125\n                ]\n              ],\n              \"bbox\": [\n                118.47998046875,\n                106.673828125,\n                119.47998046875,\n                107.673828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"4\": \"/page/62/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/63/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Although these operations are probably familiar to you, the Python symbols are different from the mathematical symbols. A common error is to use a single equal sign (=) instead of a double equal sign (==). Remember that = is an assignment operator and == is a relational operator. There is no such thing as =&lt; or =&gt;.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              165.708984375\n            ],\n            [\n              482.4033203125,\n              165.708984375\n            ],\n            [\n              482.4033203125,\n              213.33697509765625\n            ],\n            [\n              85.6142578125,\n              213.33697509765625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            165.708984375,\n            482.4033203125,\n            213.33697509765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/62/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-63-0\\\"></span><b>5.3 Logical operators</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              239.958984375\n            ],\n            [\n              231.890625,\n              239.958984375\n            ],\n            [\n              231.890625,\n              254.8179931640625\n            ],\n            [\n              85.763671875,\n              254.8179931640625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            239.958984375,\n            231.890625,\n            254.8179931640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/63/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are three <b>logical operators</b>: and, or, and not. The semantics (meaning) of these operators is similar to their meaning in English. For example, x &gt; 0 and x &lt; 10 is true only if x is greater than 0 <i>and</i> less than 10.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              265.095703125\n            ],\n            [\n              483.50390625,\n              265.095703125\n            ],\n            [\n              483.50390625,\n              299.93792724609375\n            ],\n            [\n              85.6142578125,\n              299.93792724609375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            265.095703125,\n            483.50390625,\n            299.93792724609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/63/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">n%2 == 0 or n%3 == 0 is true if <i>either</i> of the conditions is true, that is, if the number is divisible by 2 <i>or</i> 3.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              307.828125\n            ],\n            [\n              482.607421875,\n              307.828125\n            ],\n            [\n              482.607421875,\n              330.69293212890625\n            ],\n            [\n              85.46484375,\n              330.69293212890625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            307.828125,\n            482.607421875,\n            330.69293212890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/63/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Finally, the not operator negates a boolean expression, so not (x &gt; y) is true if x &gt; y is false, that is, if x is less than or equal to y.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              338.958984375\n            ],\n            [\n              482.607421875,\n              338.958984375\n            ],\n            [\n              482.607421875,\n              361.44793701171875\n            ],\n            [\n              85.763671875,\n              361.44793701171875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            338.958984375,\n            482.607421875,\n            361.44793701171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/63/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Strictly speaking, the operands of the logical operators should be boolean expressions, but Python is not very strict. Any nonzero number is interpreted as \\\"true.\\\"</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              369.31640625\n            ],\n            [\n              482.90625,\n              369.31640625\n            ],\n            [\n              482.90625,\n              392.2039489746094\n            ],\n            [\n              85.46484375,\n              392.2039489746094\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            369.31640625,\n            482.90625,\n            392.2039489746094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/63/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; 17 and True</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              396.6807861328125\n            ],\n            [\n              165.251953125,\n              396.6807861328125\n            ],\n            [\n              165.251953125,\n              407.21484375\n            ],\n            [\n              85.763671875,\n              407.21484375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            396.6807861328125,\n            165.251953125,\n            407.21484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/63/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">True</p>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              408.8747863769531\n            ],\n            [\n              109.74462890625,\n              408.8747863769531\n            ],\n            [\n              109.74462890625,\n              419.58984375\n            ],\n            [\n              86.13720703125,\n              419.58984375\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            408.8747863769531,\n            109.74462890625,\n            419.58984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/63/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This flexibility can be useful, but there are some subtleties to it that might be confusing. You might want to avoid it (unless you know what you are doing).</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              422.68359375\n            ],\n            [\n              482.4033203125,\n              422.68359375\n            ],\n            [\n              482.4033203125,\n              445.77093505859375\n            ],\n            [\n              85.763671875,\n              445.77093505859375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            422.68359375,\n            482.4033203125,\n            445.77093505859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"4\": \"/page/63/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-63-1\\\"></span><b>5.4 Conditional execution</b></h3>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              471.796875\n            ],\n            [\n              264.1640625,\n              471.796875\n            ],\n            [\n              264.1640625,\n              487.25201416015625\n            ],\n            [\n              85.83837890625,\n              487.25201416015625\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            471.796875,\n            264.1640625,\n            487.25201416015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In order to write useful programs, we almost always need the ability to check conditions and change the behavior of the program accordingly. <b>Conditional statements</b> give us this ability. The simplest form is the if statement:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              497.3203125\n            ],\n            [\n              482.90625,\n              497.3203125\n            ],\n            [\n              482.90625,\n              532.3719482421875\n            ],\n            [\n              85.763671875,\n              532.3719482421875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            497.3203125,\n            482.90625,\n            532.3719482421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if x &gt; 0:\\n    print 'x is positive'</pre>\",\n          \"polygon\": [\n            [\n              86.40007019042969,\n              535.9921875\n            ],\n            [\n              222.328125,\n              535.9921875\n            ],\n            [\n              222.328125,\n              559.96875\n            ],\n            [\n              86.40007019042969,\n              559.96875\n            ]\n          ],\n          \"bbox\": [\n            86.40007019042969,\n            535.9921875,\n            222.328125,\n            559.96875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The boolean expression after if is called the <b>condition</b>. If it is true, then the indented statement gets executed. If not, nothing happens.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              563.0625\n            ],\n            [\n              482.90625,\n              563.0625\n            ],\n            [\n              482.90625,\n              585.93896484375\n            ],\n            [\n              85.9130859375,\n              585.93896484375\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            563.0625,\n            482.90625,\n            585.93896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">if statements have the same structure as function definitions: a header followed by an indented body. Statements like this are called <b>compound statements</b>.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              594.0\n            ],\n            [\n              482.90625,\n              594.0\n            ],\n            [\n              482.90625,\n              616.6939697265625\n            ],\n            [\n              85.3154296875,\n              616.6939697265625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            594.0,\n            482.90625,\n            616.6939697265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There is no limit on the number of statements that can appear in the body, but there has to be at least one. Occasionally, it is useful to have a body with no statements (usually as a place keeper for code you haven't written yet). In that case, you can use the pass statement, which does nothing.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              624.55078125\n            ],\n            [\n              482.40350341796875,\n              624.55078125\n            ],\n            [\n              482.40350341796875,\n              671.8379898071289\n            ],\n            [\n              85.3154296875,\n              671.8379898071289\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            624.55078125,\n            482.40350341796875,\n            671.8379898071289\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/63/Code/247\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if x &lt; 0:\\n   pass # need to handle negative values!</pre>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              674.82421875\n            ],\n            [\n              353.1431579589844,\n              674.82421875\n            ],\n            [\n              353.1431579589844,\n              699.57421875\n            ],\n            [\n              86.361328125,\n              699.57421875\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            674.82421875,\n            353.1431579589844,\n            699.57421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/62/SectionHeader/1\",\n        \"3\": \"/page/63/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/64/Page/191\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/64/PageHeader/0'></content-ref><content-ref src='/page/64/PageHeader/14'></content-ref><content-ref src='/page/64/SectionHeader/1'></content-ref><content-ref src='/page/64/Text/2'></content-ref><content-ref src='/page/64/TextInlineMath/3'></content-ref><content-ref src='/page/64/Text/4'></content-ref><content-ref src='/page/64/SectionHeader/5'></content-ref><content-ref src='/page/64/Text/6'></content-ref><content-ref src='/page/64/Code/7'></content-ref><content-ref src='/page/64/Text/8'></content-ref><content-ref src='/page/64/Code/9'></content-ref><content-ref src='/page/64/Text/10'></content-ref><content-ref src='/page/64/SectionHeader/11'></content-ref><content-ref src='/page/64/Text/12'></content-ref><content-ref src='/page/64/Code/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/64/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              60.908203125\n            ],\n            [\n              525.6033935546875,\n              60.908203125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.6455078125,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            60.908203125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              60.71484375\n            ],\n            [\n              525.638671875,\n              60.71484375\n            ],\n            [\n              525.638671875,\n              69.99609375\n            ],\n            [\n              514.880859375,\n              69.99609375\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            60.71484375,\n            525.638671875,\n            69.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-64-0\\\"></span><b>5.5 Alternative execution</b></h4>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              85.95379638671875\n            ],\n            [\n              302.712890625,\n              85.95379638671875\n            ],\n            [\n              302.712890625,\n              100.29998779296875\n            ],\n            [\n              128.794921875,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            85.95379638671875,\n            302.712890625,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\",\n            \"4\": \"/page/64/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A second form of the if statement is <b>alternative execution</b>, in which there are two possibilities and the condition determines which one gets executed. The syntax looks like this:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              112.53515625\n            ],\n            [\n              525.6006469726562,\n              112.53515625\n            ],\n            [\n              525.6006469726562,\n              135.11395263671875\n            ],\n            [\n              129.2431640625,\n              135.11395263671875\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            112.53515625,\n            525.6006469726562,\n            135.11395263671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\",\n            \"4\": \"/page/64/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/TextInlineMath/3\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">if x%2 == 0: print 'x is even' else: print 'x is odd'</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              141.3907470703125\n            ],\n            [\n              241.6025390625,\n              141.3907470703125\n            ],\n            [\n              241.6025390625,\n              187.93634033203125\n            ],\n            [\n              129.60000610351562,\n              187.93634033203125\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            141.3907470703125,\n            241.6025390625,\n            187.93634033203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\",\n            \"4\": \"/page/64/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the remainder when x is divided by 2 is 0, then we know that x is even, and the program displays a message to that effect. If the condition is false, the second set of statements is executed. Since the condition must be true or false, exactly one of the alternatives will be executed. The alternatives are called <b>branches</b>, because they are branches in the flow of execution.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              193.4560546875\n            ],\n            [\n              525.638671875,\n              193.4560546875\n            ],\n            [\n              525.638671875,\n              253.25091552734375\n            ],\n            [\n              128.794921875,\n              253.25091552734375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            193.4560546875,\n            525.638671875,\n            253.25091552734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/63/SectionHeader/12\",\n            \"4\": \"/page/64/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-64-1\\\"></span><b>5.6 Chained conditionals</b></h3>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              282.69140625\n            ],\n            [\n              302.5634765625,\n              282.69140625\n            ],\n            [\n              302.5634765625,\n              297.6069641113281\n            ],\n            [\n              128.6455078125,\n              297.6069641113281\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            282.69140625,\n            302.5634765625,\n            297.6069641113281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Sometimes there are more than two possibilities and we need more than two branches. One way to express a computation like that is a <b>chained conditional</b>:</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              309.181640625\n            ],\n            [\n              525.6033935546875,\n              309.181640625\n            ],\n            [\n              525.6033935546875,\n              332.4208984375\n            ],\n            [\n              129.392578125,\n              332.4208984375\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            309.181640625,\n            525.6033935546875,\n            332.4208984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if x &lt; y:\\n    print 'x is less than y'\\nelif x &gt; y:\\n    print 'x is greater than y'\\nelse:\\n    print 'x and y are equal'</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              338.6967468261719\n            ],\n            [\n              291.703369140625,\n              338.6967468261719\n            ],\n            [\n              291.703369140625,\n              409.63134765625\n            ],\n            [\n              129.5999755859375,\n              409.63134765625\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            338.6967468261719,\n            291.703369140625,\n            409.63134765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">elif is an abbreviation of \\\"else if.\\\" Again, exactly one branch will be executed. There is no limit on the number of elif statements. If there is an else clause, it has to be at the end, but there doesn't have to be one.</p>\",\n          \"polygon\": [\n            [\n              129.59999084472656,\n              414.94921875\n            ],\n            [\n              525.9375,\n              414.94921875\n            ],\n            [\n              525.9375,\n              450.55792236328125\n            ],\n            [\n              129.59999084472656,\n              450.55792236328125\n            ]\n          ],\n          \"bbox\": [\n            129.59999084472656,\n            414.94921875,\n            525.9375,\n            450.55792236328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if choice == 'a':\\n    draw_a()\\nelif choice == 'b':\\n    draw_b()\\nelif choice == 'c':\\n    draw_c()</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              456.8337707519531\n            ],\n            [\n              234.28125,\n              456.8337707519531\n            ],\n            [\n              234.28125,\n              527.7683715820312\n            ],\n            [\n              129.60000610351562,\n              527.7683715820312\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            456.8337707519531,\n            234.28125,\n            527.7683715820312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Each condition is checked in order. If the first is false, the next is checked, and so on. If one of them is true, the corresponding branch executes, and the statement ends. Even if more than one condition is true, only the first true branch executes.</p>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              533.671875\n            ],\n            [\n              525.603515625,\n              533.671875\n            ],\n            [\n              525.603515625,\n              568.6949462890625\n            ],\n            [\n              129.60003662109375,\n              568.6949462890625\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            533.671875,\n            525.603515625,\n            568.6949462890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-64-2\\\"></span><b>5.7 Nested conditionals</b></h3>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              597.8671875\n            ],\n            [\n              292.94586181640625,\n              597.8671875\n            ],\n            [\n              292.94586181640625,\n              613.0500030517578\n            ],\n            [\n              128.3466796875,\n              613.0500030517578\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            597.8671875,\n            292.94586181640625,\n            613.0500030517578\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One conditional can also be nested within another. We could have written the trichotomy example like this:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              625.32421875\n            ],\n            [\n              525.6033935546875,\n              625.32421875\n            ],\n            [\n              525.6033935546875,\n              647.8639526367188\n            ],\n            [\n              128.3466796875,\n              647.8639526367188\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            625.32421875,\n            525.6033935546875,\n            647.8639526367188\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/64/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if x == y:\\n    print 'x and y are equal'\\nelse:\\n    if x &lt; y:</pre>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              654.1398010253906\n            ],\n            [\n              281.2453918457031,\n              654.1398010253906\n            ],\n            [\n              281.2453918457031,\n              701.5078125\n            ],\n            [\n              128.9443359375,\n              701.5078125\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            654.1398010253906,\n            281.2453918457031,\n            701.5078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/62/SectionHeader/1\",\n        \"3\": \"/page/64/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/65/Page/233\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/65/PageHeader/0'></content-ref><content-ref src='/page/65/PageHeader/18'></content-ref><content-ref src='/page/65/TextInlineMath/1'></content-ref><content-ref src='/page/65/Text/2'></content-ref><content-ref src='/page/65/Text/3'></content-ref><content-ref src='/page/65/Text/4'></content-ref><content-ref src='/page/65/Code/5'></content-ref><content-ref src='/page/65/Text/6'></content-ref><content-ref src='/page/65/Code/7'></content-ref><content-ref src='/page/65/SectionHeader/8'></content-ref><content-ref src='/page/65/Text/9'></content-ref><content-ref src='/page/65/Code/10'></content-ref><content-ref src='/page/65/Text/11'></content-ref><content-ref src='/page/65/Text/12'></content-ref><content-ref src='/page/65/Code/13'></content-ref><content-ref src='/page/65/Text/14'></content-ref><content-ref src='/page/65/Text/15'></content-ref><content-ref src='/page/65/Text/16'></content-ref><content-ref src='/page/65/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/65/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.521484375\n            ],\n            [\n              482.607421875,\n              60.521484375\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.521484375,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.46484375,\n              60.6181640625\n            ],\n            [\n              96.22265625,\n              60.6181640625\n            ],\n            [\n              96.22265625,\n              69.8994140625\n            ],\n            [\n              85.46484375,\n              69.8994140625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            60.6181640625,\n            96.22265625,\n            69.8994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/TextInlineMath/1\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">print 'x is less than y' else: print 'x is greater than y'</p>\",\n          \"polygon\": [\n            [\n              107.31599426269531,\n              87.6884765625\n            ],\n            [\n              269.4203796386719,\n              87.6884765625\n            ],\n            [\n              269.4203796386719,\n              123.03729248046875\n            ],\n            [\n              107.31599426269531,\n              123.03729248046875\n            ]\n          ],\n          \"bbox\": [\n            107.31599426269531,\n            87.6884765625,\n            269.4203796386719,\n            123.03729248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The outer conditional contains two branches. The first branch contains a simple statement. The second branch contains another if statement, which has two branches of its own. Those two branches are both simple statements, although they could have been conditional statements as well.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              127.810546875\n            ],\n            [\n              482.4034118652344,\n              127.810546875\n            ],\n            [\n              482.4034118652344,\n              175.0548095703125\n            ],\n            [\n              86.0625,\n              175.0548095703125\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            127.810546875,\n            482.4034118652344,\n            175.0548095703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Although the indentation of the statements makes the structure apparent, <b>nested condi</b><b>tionals</b> become difficult to read very quickly. In general, it is a good idea to avoid them when you can.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              183.5947265625\n            ],\n            [\n              482.39678955078125,\n              183.5947265625\n            ],\n            [\n              482.39678955078125,\n              218.69976806640625\n            ],\n            [\n              85.763671875,\n              218.69976806640625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            183.5947265625,\n            482.39678955078125,\n            218.69976806640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Logical operators often provide a way to simplify nested conditional statements. For example, we can rewrite the following code using a single conditional:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              227.197265625\n            ],\n            [\n              482.4033508300781,\n              227.197265625\n            ],\n            [\n              482.4033508300781,\n              250.15081787109375\n            ],\n            [\n              85.46484375,\n              250.15081787109375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            227.197265625,\n            482.4033508300781,\n            250.15081787109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if 0 &lt; x:\\n    if x &lt; 10:\\n        print 'x is a positive single-digit number.'</pre>\",\n          \"polygon\": [\n            [\n              86.4000244140625,\n              254.84765625\n            ],\n            [\n              358.3153991699219,\n              254.84765625\n            ],\n            [\n              358.3153991699219,\n              290.0390625\n            ],\n            [\n              86.4000244140625,\n              290.0390625\n            ]\n          ],\n          \"bbox\": [\n            86.4000244140625,\n            254.84765625,\n            358.3153991699219,\n            290.0390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The print statement is executed only if we make it past both conditionals, so we can get the same effect with the and operator:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              294.099609375\n            ],\n            [\n              482.39959716796875,\n              294.099609375\n            ],\n            [\n              482.39959716796875,\n              317.3047790527344\n            ],\n            [\n              85.9130859375,\n              317.3047790527344\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            294.099609375,\n            482.39959716796875,\n            317.3047790527344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if 0 &lt; x and x &lt; 10:\\n    print 'x is a positive single-digit number.'</pre>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              322.4776306152344\n            ],\n            [\n              337.974609375,\n              322.4776306152344\n            ],\n            [\n              337.974609375,\n              344.6352233886719\n            ],\n            [\n              85.98779296875,\n              344.6352233886719\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            322.4776306152344,\n            337.974609375,\n            344.6352233886719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-65-0\\\"></span><b>5.8 Recursion</b></h4>\",\n          \"polygon\": [\n            [\n              86.0625,\n              372.603515625\n            ],\n            [\n              184.81497192382812,\n              372.603515625\n            ],\n            [\n              184.81497192382812,\n              387.2398681640625\n            ],\n            [\n              86.0625,\n              387.2398681640625\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            372.603515625,\n            184.81497192382812,\n            387.2398681640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is legal for one function to call another; it is also legal for a function to call itself. It may not be obvious why that is a good thing, but it turns out to be one of the most magical things a program can do. For example, look at the following function:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              397.93359375\n            ],\n            [\n              482.4033203125,\n              397.93359375\n            ],\n            [\n              482.4033203125,\n              433.51171875\n            ],\n            [\n              85.9130859375,\n              433.51171875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            397.93359375,\n            482.4033203125,\n            433.51171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def countdown(n):\\n    if n &lt;= 0:\\n        print 'Blastoff!'\\n    else:\\n        print n\\n        countdown(n-1)</pre>\",\n          \"polygon\": [\n            [\n              86.40003967285156,\n              438.2286682128906\n            ],\n            [\n              218.8916015625,\n              438.2286682128906\n            ],\n            [\n              218.8916015625,\n              509.16326904296875\n            ],\n            [\n              86.40003967285156,\n              509.16326904296875\n            ]\n          ],\n          \"bbox\": [\n            86.40003967285156,\n            438.2286682128906,\n            218.8916015625,\n            509.16326904296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If n is 0 or negative, it outputs the word, \\\"Blastoff!\\\" Otherwise, it outputs n and then calls a function named countdown—itself—passing n-1 as an argument.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              514.3359375\n            ],\n            [\n              482.4001159667969,\n              514.3359375\n            ],\n            [\n              482.4001159667969,\n              536.7918395996094\n            ],\n            [\n              85.9130859375,\n              536.7918395996094\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            514.3359375,\n            482.4001159667969,\n            536.7918395996094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">What happens if we call this function like this?</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              545.66015625\n            ],\n            [\n              292.16754150390625,\n              545.66015625\n            ],\n            [\n              292.16754150390625,\n              556.0488433837891\n            ],\n            [\n              85.83837890625,\n              556.0488433837891\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            545.66015625,\n            292.16754150390625,\n            556.0488433837891\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; countdown(3)</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              560.35546875\n            ],\n            [\n              170.0958709716797,\n              560.35546875\n            ],\n            [\n              170.0958709716797,\n              571.1842956542969\n            ],\n            [\n              85.46484375,\n              571.1842956542969\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            560.35546875,\n            170.0958709716797,\n            571.1842956542969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The execution of countdown begins with n=3, and since n is greater than 0, it outputs the value 3, and then calls itself...</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              575.82421875\n            ],\n            [\n              482.39666748046875,\n              575.82421875\n            ],\n            [\n              482.39666748046875,\n              598.8138427734375\n            ],\n            [\n              85.6142578125,\n              598.8138427734375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            575.82421875,\n            482.39666748046875,\n            598.8138427734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\">The execution of countdown begins with n=2, and since n is greater than 0, it outputs the value 2, and then calls itself...</p></blockquote>\",\n          \"polygon\": [\n            [\n              110.865234375,\n              610.2421875\n            ],\n            [\n              458.701171875,\n              610.2421875\n            ],\n            [\n              458.701171875,\n              632.7618560791016\n            ],\n            [\n              110.865234375,\n              632.7618560791016\n            ]\n          ],\n          \"bbox\": [\n            110.865234375,\n            610.2421875,\n            458.701171875,\n            632.7618560791016\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><blockquote><p block-type=\\\"Text\\\">The execution of countdown begins with n=1, and since n is greater than 0, it outputs the value 1, and then calls itself...</p></blockquote></blockquote>\",\n          \"polygon\": [\n            [\n              132.6796875,\n              637.69921875\n            ],\n            [\n              436.2890625,\n              637.69921875\n            ],\n            [\n              436.2890625,\n              660.3978576660156\n            ],\n            [\n              132.6796875,\n              660.3978576660156\n            ]\n          ],\n          \"bbox\": [\n            132.6796875,\n            637.69921875,\n            436.2890625,\n            660.3978576660156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/65/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><blockquote><blockquote><p block-type=\\\"Text\\\">The execution of countdown begins with n=0, and since n is not greater than 0, it outputs the word, \\\"Blastoff!\\\" and then returns.</p></blockquote></blockquote></blockquote>\",\n          \"polygon\": [\n            [\n              150.23583984375,\n              665.9296875\n            ],\n            [\n              418.060546875,\n              665.9296875\n            ],\n            [\n              418.060546875,\n              700.8348693847656\n            ],\n            [\n              150.23583984375,\n              700.8348693847656\n            ]\n          ],\n          \"bbox\": [\n            150.23583984375,\n            665.9296875,\n            418.060546875,\n            700.8348693847656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/62/SectionHeader/1\",\n        \"3\": \"/page/64/SectionHeader/11\",\n        \"4\": \"/page/65/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/66/Page/270\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/66/PageHeader/0'></content-ref><content-ref src='/page/66/PageHeader/19'></content-ref><content-ref src='/page/66/Text/1'></content-ref><content-ref src='/page/66/Text/2'></content-ref><content-ref src='/page/66/Text/3'></content-ref><content-ref src='/page/66/Text/4'></content-ref><content-ref src='/page/66/Code/5'></content-ref><content-ref src='/page/66/Text/6'></content-ref><content-ref src='/page/66/Text/7'></content-ref><content-ref src='/page/66/Code/8'></content-ref><content-ref src='/page/66/Text/9'></content-ref><content-ref src='/page/66/Text/10'></content-ref><content-ref src='/page/66/Text/11'></content-ref><content-ref src='/page/66/SectionHeader/12'></content-ref><content-ref src='/page/66/Text/13'></content-ref><content-ref src='/page/66/Text/14'></content-ref><content-ref src='/page/66/Text/15'></content-ref><content-ref src='/page/66/Text/16'></content-ref><content-ref src='/page/66/Text/17'></content-ref><content-ref src='/page/66/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/66/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.72021484375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              515.478515625,\n              61.0048828125\n            ],\n            [\n              526.236328125,\n              61.0048828125\n            ],\n            [\n              526.236328125,\n              69.99609375\n            ],\n            [\n              515.478515625,\n              69.99609375\n            ]\n          ],\n          \"bbox\": [\n            515.478515625,\n            61.0048828125,\n            526.236328125,\n            69.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The countdown that got n=1 returns.</p>\",\n          \"polygon\": [\n            [\n              171.6767578125,\n              88.365234375\n            ],\n            [\n              334.0375061035156,\n              88.365234375\n            ],\n            [\n              334.0375061035156,\n              98.79791259765625\n            ],\n            [\n              171.6767578125,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            171.6767578125,\n            88.365234375,\n            334.0375061035156,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The countdown that got n=2 returns.</p>\",\n          \"polygon\": [\n            [\n              151.8046875,\n              105.8287353515625\n            ],\n            [\n              312.275390625,\n              105.8287353515625\n            ],\n            [\n              312.275390625,\n              115.94091796875\n            ],\n            [\n              151.8046875,\n              115.94091796875\n            ]\n          ],\n          \"bbox\": [\n            151.8046875,\n            105.8287353515625,\n            312.275390625,\n            115.94091796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The countdown that got n=3 returns.</p>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              130.6142578125\n            ],\n            [\n              287.2125244140625,\n              130.6142578125\n            ],\n            [\n              287.2125244140625,\n              141.10894775390625\n            ],\n            [\n              128.42138671875,\n              141.10894775390625\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            130.6142578125,\n            287.2125244140625,\n            141.10894775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And then you're back in __main__. So, the total output looks like this:</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              151.4970703125\n            ],\n            [\n              436.2890625,\n              151.4970703125\n            ],\n            [\n              436.2890625,\n              161.803955078125\n            ],\n            [\n              127.599609375,\n              161.803955078125\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            151.4970703125,\n            436.2890625,\n            161.803955078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>3\\n2\\n1\\nBlastoff!</pre>\",\n          \"polygon\": [\n            [\n              127.67431640625,\n              168.414794921875\n            ],\n            [\n              176.67333984375,\n              168.414794921875\n            ],\n            [\n              176.67333984375,\n              215.40234375\n            ],\n            [\n              127.67431640625,\n              215.40234375\n            ]\n          ],\n          \"bbox\": [\n            127.67431640625,\n            168.414794921875,\n            176.67333984375,\n            215.40234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A function that calls itself is <b>recursive</b>; the process is called <b>recursion</b>.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              221.396484375\n            ],\n            [\n              435.7877197265625,\n              221.396484375\n            ],\n            [\n              435.7877197265625,\n              231.83306884765625\n            ],\n            [\n              128.3466796875,\n              231.83306884765625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            221.396484375,\n            435.7877197265625,\n            231.83306884765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As another example, we can write a function that prints a string n times.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              242.279296875\n            ],\n            [\n              446.7758483886719,\n              242.279296875\n            ],\n            [\n              446.7758483886719,\n              252.52703857421875\n            ],\n            [\n              128.3466796875,\n              252.52703857421875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            242.279296875,\n            446.7758483886719,\n            252.52703857421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def print_n(s, n):\\n    if n &lt;= 0:\\n        return\\n    print s\\n    print_n(s, n-1)</pre>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              259.13787841796875\n            ],\n            [\n              232.189453125,\n              259.13787841796875\n            ],\n            [\n              232.189453125,\n              317.87847900390625\n            ],\n            [\n              129.60003662109375,\n              317.87847900390625\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            259.13787841796875,\n            232.189453125,\n            317.87847900390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If n &lt;= 0 the return statement exits the function. The flow of execution immediately returns to the caller, and the remaining lines of the function are not executed.</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              324.45703125\n            ],\n            [\n              525.6012573242188,\n              324.45703125\n            ],\n            [\n              525.6012573242188,\n              346.9450378417969\n            ],\n            [\n              129.5419921875,\n              346.9450378417969\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            324.45703125,\n            525.6012573242188,\n            346.9450378417969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The rest of the function is similar to countdown: if n is greater than 0, it displays s and then calls itself to display s <i>n</i> − 1 additional times. So the number of lines of output is 1 + (n - 1), which adds up to n.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              357.52789306640625\n            ],\n            [\n              526.53515625,\n              357.52789306640625\n            ],\n            [\n              526.53515625,\n              392.0280456542969\n            ],\n            [\n              128.6455078125,\n              392.0280456542969\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            357.52789306640625,\n            526.53515625,\n            392.0280456542969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For simple examples like this, it is probably easier to use a for loop. But we will see examples later that are hard to write with a for loop and easy to write with recursion, so it is good to start early.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              402.61090087890625\n            ],\n            [\n              525.638671875,\n              402.61090087890625\n            ],\n            [\n              525.638671875,\n              437.1110534667969\n            ],\n            [\n              128.794921875,\n              437.1110534667969\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            402.61090087890625,\n            525.638671875,\n            437.1110534667969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/65/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-66-0\\\"></span><b>5.9 Stack diagrams for recursive functions</b></h4>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              468.1249084472656\n            ],\n            [\n              413.6979064941406,\n              468.1249084472656\n            ],\n            [\n              413.6979064941406,\n              482.47113037109375\n            ],\n            [\n              128.12255859375,\n              482.47113037109375\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            468.1249084472656,\n            413.6979064941406,\n            482.47113037109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/66/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In Section <a href=\\\"#page-46-0\\\">3.10,</a> we used a stack diagram to represent the state of a program during a function call. The same kind of diagram can help interpret a recursive function.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              495.38671875\n            ],\n            [\n              525.638671875,\n              495.38671875\n            ],\n            [\n              525.638671875,\n              517.7530517578125\n            ],\n            [\n              129.392578125,\n              517.7530517578125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            495.38671875,\n            525.638671875,\n            517.7530517578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/66/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Every time a function gets called, Python creates a new function frame, which contains the function's local variables and parameters. For a recursive function, there might be more than one frame on the stack at the same time.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              527.87109375\n            ],\n            [\n              525.9375,\n              527.87109375\n            ],\n            [\n              525.9375,\n              562.8360595703125\n            ],\n            [\n              129.09375,\n              562.8360595703125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            527.87109375,\n            525.9375,\n            562.8360595703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/66/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-67-2\\\">5.1</a> shows a stack diagram for countdown called with n = 3.</p>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              573.1171875\n            ],\n            [\n              422.841796875,\n              573.1171875\n            ],\n            [\n              422.841796875,\n              583.5310668945312\n            ],\n            [\n              128.12255859375,\n              583.5310668945312\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            573.1171875,\n            422.841796875,\n            583.5310668945312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/66/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As usual, the top of the stack is the frame for __main__. It is empty because we did not create any variables in __main__ or pass any arguments to it.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              594.1129150390625\n            ],\n            [\n              525.59716796875,\n              594.1129150390625\n            ],\n            [\n              525.59716796875,\n              616.4200744628906\n            ],\n            [\n              127.8984375,\n              616.4200744628906\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            594.1129150390625,\n            525.59716796875,\n            616.4200744628906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/66/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The four countdown frames have different values for the parameter n. The bottom of the stack, where n=0, is called the <b>base case</b>. It does not make a recursive call, so there are no more frames.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              627.0019226074219\n            ],\n            [\n              525.9375,\n              627.0019226074219\n            ],\n            [\n              525.9375,\n              661.5030822753906\n            ],\n            [\n              128.6455078125,\n              661.5030822753906\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            627.0019226074219,\n            525.9375,\n            661.5030822753906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/66/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/66/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 5.1.</b> <i>Draw a stack diagram for</i> print_n <i>called with</i> s = 'Hello' <i>and</i> n=2<i>.</i> <b>Exercise 5.2.</b> <i>Write a function called</i> do_n <i>that takes a function object and a number,</i> n<i>, as argu</i><i>ments, and that calls the given function</i> n <i>times.</i></p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              663.5617828369141\n            ],\n            [\n              525.5953979492188,\n              663.5617828369141\n            ],\n            [\n              525.5953979492188,\n              697.9365234375\n            ],\n            [\n              128.3466796875,\n              697.9365234375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            663.5617828369141,\n            525.5953979492188,\n            697.9365234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/66/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/62/SectionHeader/1\",\n        \"3\": \"/page/64/SectionHeader/11\",\n        \"4\": \"/page/66/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/67/Page/162\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/67/PageHeader/0'></content-ref><content-ref src='/page/67/PageHeader/13'></content-ref><content-ref src='/page/67/FigureGroup/159'></content-ref><content-ref src='/page/67/SectionHeader/3'></content-ref><content-ref src='/page/67/Text/4'></content-ref><content-ref src='/page/67/Code/158'></content-ref><content-ref src='/page/67/Text/6'></content-ref><content-ref src='/page/67/Code/7'></content-ref><content-ref src='/page/67/Text/8'></content-ref><content-ref src='/page/67/SectionHeader/9'></content-ref><content-ref src='/page/67/Text/10'></content-ref><content-ref src='/page/67/Text/11'></content-ref><content-ref src='/page/67/Code/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/67/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.85986328125\n            ],\n            [\n              482.4034423828125,\n              60.85986328125\n            ],\n            [\n              482.4034423828125,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.85986328125,\n            482.4034423828125,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/66/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/67/PageHeader/13\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              61.05322265625\n            ],\n            [\n              95.625,\n              61.05322265625\n            ],\n            [\n              95.625,\n              70.14111328125\n            ],\n            [\n              85.3154296875,\n              70.14111328125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            61.05322265625,\n            95.625,\n            70.14111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/66/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/67/FigureGroup/159\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/67/Figure/1'></content-ref><content-ref src='/page/67/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              227.07000732421875,\n              84.5947265625\n            ],\n            [\n              345.744140625,\n              84.5947265625\n            ],\n            [\n              345.744140625,\n              230.7529296875\n            ],\n            [\n              227.07000732421875,\n              230.7529296875\n            ]\n          ],\n          \"bbox\": [\n            227.07000732421875,\n            84.5947265625,\n            345.744140625,\n            230.7529296875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/67/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  228.7529296875,\n                  84.5947265625\n                ],\n                [\n                  345.744140625,\n                  84.5947265625\n                ],\n                [\n                  345.744140625,\n                  201.8671875\n                ],\n                [\n                  228.7529296875,\n                  201.8671875\n                ]\n              ],\n              \"bbox\": [\n                228.7529296875,\n                84.5947265625,\n                345.744140625,\n                201.8671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/66/SectionHeader/12\"\n              },\n              \"images\": {\n                \"/page/67/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/67/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-67-2\\\"></span>Figure 5.1: Stack diagram.</p>\",\n              \"polygon\": [\n                [\n                  227.07000732421875,\n                  220.790283203125\n                ],\n                [\n                  341.7295837402344,\n                  220.790283203125\n                ],\n                [\n                  341.7295837402344,\n                  230.7529296875\n                ],\n                [\n                  227.07000732421875,\n                  230.7529296875\n                ]\n              ],\n              \"bbox\": [\n                227.07000732421875,\n                220.790283203125,\n                341.7295837402344,\n                230.7529296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/66/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/66/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/67/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-67-0\\\"></span><b>5.10 Infinite recursion</b></h4>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              251.61279296875\n            ],\n            [\n              239.4022216796875,\n              251.61279296875\n            ],\n            [\n              239.4022216796875,\n              265.958984375\n            ],\n            [\n              85.46484375,\n              265.958984375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            251.61279296875,\n            239.4022216796875,\n            265.958984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/67/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If a recursion never reaches a base case, it goes on making recursive calls forever, and the program never terminates. This is known as <b>infinite recursion</b>, and it is generally not a good idea. Here is a minimal program with an infinite recursion:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              279.59765625\n            ],\n            [\n              482.90625,\n              279.59765625\n            ],\n            [\n              482.90625,\n              314.305908203125\n            ],\n            [\n              85.46484375,\n              314.305908203125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            279.59765625,\n            482.90625,\n            314.305908203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/67/Code/158\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def recurse():\\n    recurse()</pre>\",\n          \"polygon\": [\n            [\n              86.4000244140625,\n              321.53875732421875\n            ],\n            [\n              159.62513732910156,\n              321.53875732421875\n            ],\n            [\n              159.62513732910156,\n              343.6953430175781\n            ],\n            [\n              86.4000244140625,\n              343.6953430175781\n            ]\n          ],\n          \"bbox\": [\n            86.4000244140625,\n            321.53875732421875,\n            159.62513732910156,\n            343.6953430175781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/67/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In most programming environments, a program with infinite recursion does not really run forever. Python reports an error message when the maximum recursion depth is reached:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              351.2273254394531\n            ],\n            [\n              482.4034423828125,\n              351.2273254394531\n            ],\n            [\n              482.4034423828125,\n              373.3849182128906\n            ],\n            [\n              85.6142578125,\n              373.3849182128906\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            351.2273254394531,\n            482.4034423828125,\n            373.3849182128906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/67/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>File \\\"&lt;stdin&gt;\\\", line 2, in recurse\\n  File \\\"&lt;stdin&gt;\\\", line 2, in recurse\\n  File \\\"&lt;stdin&gt;\\\", line 2, in recurse\\n                  .\\n                  .\\n                  .\\n  File \\\"&lt;stdin&gt;\\\", line 2, in recurse\\nRuntimeError: Maximum recursion depth exceeded</pre>\",\n          \"polygon\": [\n            [\n              86.4000244140625,\n              380.6177673339844\n            ],\n            [\n              327.01666259765625,\n              380.6177673339844\n            ],\n            [\n              327.01666259765625,\n              475.94036865234375\n            ],\n            [\n              86.4000244140625,\n              475.94036865234375\n            ]\n          ],\n          \"bbox\": [\n            86.4000244140625,\n            380.6177673339844,\n            327.01666259765625,\n            475.94036865234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/67/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This traceback is a little bigger than the one we saw in the previous chapter. When the error occurs, there are 1000 recurse frames on the stack!</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              483.01171875\n            ],\n            [\n              482.40350341796875,\n              483.01171875\n            ],\n            [\n              482.40350341796875,\n              505.6289367675781\n            ],\n            [\n              85.46484375,\n              505.6289367675781\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            483.01171875,\n            482.40350341796875,\n            505.6289367675781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/67/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-67-1\\\"></span><b>5.11 Keyboard input</b></h4>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              538.5088043212891\n            ],\n            [\n              229.8620147705078,\n              538.5088043212891\n            ],\n            [\n              229.8620147705078,\n              552.8549957275391\n            ],\n            [\n              85.53955078125,\n              552.8549957275391\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            538.5088043212891,\n            229.8620147705078,\n            552.8549957275391\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/67/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The programs we have written so far are a bit rude in the sense that they accept no input from the user. They just do the same thing every time.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              566.15625\n            ],\n            [\n              482.4033508300781,\n              566.15625\n            ],\n            [\n              482.4033508300781,\n              589.0079498291016\n            ],\n            [\n              85.46484375,\n              589.0079498291016\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            566.15625,\n            482.4033508300781,\n            589.0079498291016\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/67/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python 2 provides a built-in function called raw_input that gets input from the keyboard. In Python 3, it is called input. When this function is called, the program stops and waits for the user to type something. When the user presses Return or Enter, the program resumes and raw_input returns what the user typed as a string.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              600.1875\n            ],\n            [\n              482.4004821777344,\n              600.1875\n            ],\n            [\n              482.4004821777344,\n              646.9069519042969\n            ],\n            [\n              85.6142578125,\n              646.9069519042969\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            600.1875,\n            482.4004821777344,\n            646.9069519042969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/67/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; text = raw_input()\\nWhat are you waiting for?\\n&gt;&gt;&gt; print text\\nWhat are you waiting for?</pre>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              654.1398010253906\n            ],\n            [\n              222.029296875,\n              654.1398010253906\n            ],\n            [\n              222.029296875,\n              700.6853942871094\n            ],\n            [\n              85.98779296875,\n              700.6853942871094\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            654.1398010253906,\n            222.029296875,\n            700.6853942871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/62/SectionHeader/1\",\n        \"3\": \"/page/64/SectionHeader/11\",\n        \"4\": \"/page/67/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/68/Page/163\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/68/PageHeader/0'></content-ref><content-ref src='/page/68/PageHeader/17'></content-ref><content-ref src='/page/68/Text/1'></content-ref><content-ref src='/page/68/Code/2'></content-ref><content-ref src='/page/68/Text/3'></content-ref><content-ref src='/page/68/Text/4'></content-ref><content-ref src='/page/68/Code/5'></content-ref><content-ref src='/page/68/Text/6'></content-ref><content-ref src='/page/68/Code/7'></content-ref><content-ref src='/page/68/Text/8'></content-ref><content-ref src='/page/68/SectionHeader/9'></content-ref><content-ref src='/page/68/Text/10'></content-ref><content-ref src='/page/68/ListGroup/162'></content-ref><content-ref src='/page/68/Text/13'></content-ref><content-ref src='/page/68/Code/14'></content-ref><content-ref src='/page/68/Text/15'></content-ref><content-ref src='/page/68/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/68/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.6455078125,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            60.95654296875,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.58203125,\n              60.56982421875\n            ],\n            [\n              525.33984375,\n              60.56982421875\n            ],\n            [\n              525.33984375,\n              69.94775390625\n            ],\n            [\n              514.58203125,\n              69.94775390625\n            ]\n          ],\n          \"bbox\": [\n            514.58203125,\n            60.56982421875,\n            525.33984375,\n            69.94775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Before getting input from the user, it is a good idea to print a prompt telling the user what to input. raw_input can take a prompt as an argument:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              88.55859375\n            ],\n            [\n              525.9375,\n              88.55859375\n            ],\n            [\n              525.9375,\n              110.99188232421875\n            ],\n            [\n              128.3466796875,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            88.55859375,\n            525.9375,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; name = raw_input('What...is your name?\\\\n')\\nWhat...is your name?\\nArthur, King of the Britons!\\n&gt;&gt;&gt; print name\\nArthur, King of the Britons!</pre>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              117.10369873046875\n            ],\n            [\n              370.1404113769531,\n              117.10369873046875\n            ],\n            [\n              370.1404113769531,\n              175.84326171875\n            ],\n            [\n              129.5419921875,\n              175.84326171875\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            117.10369873046875,\n            370.1404113769531,\n            175.84326171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The sequence \\\\n at the end of the prompt represents a <b>newline</b>, which is a special character that causes a line break. That's why the user's input appears below the prompt.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              181.8544921875\n            ],\n            [\n              525.5984497070312,\n              181.8544921875\n            ],\n            [\n              525.5984497070312,\n              204.41082763671875\n            ],\n            [\n              129.2431640625,\n              204.41082763671875\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            181.8544921875,\n            525.5984497070312,\n            204.41082763671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you expect the user to type an integer, you can try to convert the return value to int:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              214.435546875\n            ],\n            [\n              510.2536926269531,\n              214.435546875\n            ],\n            [\n              510.2536926269531,\n              224.6068115234375\n            ],\n            [\n              128.6455078125,\n              224.6068115234375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            214.435546875,\n            510.2536926269531,\n            224.6068115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; prompt = 'What...is the airspeed velocity of an unladen swallow?\\\\n'\\n&gt;&gt;&gt; speed = raw_input(prompt)\\nWhat...is the airspeed velocity of an unladen swallow?\\n17\\n&gt;&gt;&gt; int(speed)\\n17</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              230.7176513671875\n            ],\n            [\n              500.8683776855469,\n              230.7176513671875\n            ],\n            [\n              500.8683776855469,\n              304.34765625\n            ],\n            [\n              129.60000610351562,\n              304.34765625\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            230.7176513671875,\n            500.8683776855469,\n            304.34765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But if the user types something other than a string of digits, you get an error:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              308.06317138671875\n            ],\n            [\n              467.0034484863281,\n              308.06317138671875\n            ],\n            [\n              467.0034484863281,\n              318.0257568359375\n            ],\n            [\n              128.49609375,\n              318.0257568359375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            308.06317138671875,\n            467.0034484863281,\n            318.0257568359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; speed = raw_input(prompt)\\nWhat...is the airspeed velocity of an unladen swallow?\\nWhat do you mean, an African or a European swallow?\\n&gt;&gt;&gt; int(speed)\\nValueError: invalid literal for int() with base 10</pre>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              324.1365966796875\n            ],\n            [\n              412.083984375,\n              324.1365966796875\n            ],\n            [\n              412.083984375,\n              386.71875\n            ],\n            [\n              129.46728515625,\n              386.71875\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            324.1365966796875,\n            412.083984375,\n            386.71875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We will see how to handle this kind of error later.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              389.28717041015625\n            ],\n            [\n              346.640625,\n              389.28717041015625\n            ],\n            [\n              346.640625,\n              399.249755859375\n            ],\n            [\n              128.9443359375,\n              399.249755859375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            389.28717041015625,\n            346.640625,\n            399.249755859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/67/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-68-0\\\"></span><b>5.12 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              127.82373046875,\n              428.7655944824219\n            ],\n            [\n              243.17886352539062,\n              428.7655944824219\n            ],\n            [\n              243.17886352539062,\n              443.1796875\n            ],\n            [\n              127.82373046875,\n              443.1796875\n            ]\n          ],\n          \"bbox\": [\n            127.82373046875,\n            428.7655944824219,\n            243.17886352539062,\n            443.1796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The traceback Python displays when an error occurs contains a lot of information, but it can be overwhelming, especially when there are many frames on the stack. The most useful parts are usually:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              455.5381774902344\n            ],\n            [\n              525.9375,\n              455.5381774902344\n            ],\n            [\n              525.9375,\n              489.8897705078125\n            ],\n            [\n              128.49609375,\n              489.8897705078125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            455.5381774902344,\n            525.9375,\n            489.8897705078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/ListGroup/162\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/68/ListItem/11'></content-ref><content-ref src='/page/68/ListItem/12'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              141.943359375,\n              503.5078125\n            ],\n            [\n              287.3778076171875,\n              503.5078125\n            ],\n            [\n              287.3778076171875,\n              534.3957824707031\n            ],\n            [\n              141.943359375,\n              534.3957824707031\n            ]\n          ],\n          \"bbox\": [\n            141.943359375,\n            503.5078125,\n            287.3778076171875,\n            534.3957824707031\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/68/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> What kind of error it was, and</li>\",\n              \"polygon\": [\n                [\n                  142.6904296875,\n                  503.5078125\n                ],\n                [\n                  287.3778076171875,\n                  503.5078125\n                ],\n                [\n                  287.3778076171875,\n                  514.1327819824219\n                ],\n                [\n                  142.6904296875,\n                  514.1327819824219\n                ]\n              ],\n              \"bbox\": [\n                142.6904296875,\n                503.5078125,\n                287.3778076171875,\n                514.1327819824219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/68/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/68/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Where it occurred.</li>\",\n              \"polygon\": [\n                [\n                  141.943359375,\n                  523.6171875\n                ],\n                [\n                  236.671875,\n                  523.6171875\n                ],\n                [\n                  236.671875,\n                  534.3957824707031\n                ],\n                [\n                  141.943359375,\n                  534.3957824707031\n                ]\n              ],\n              \"bbox\": [\n                141.943359375,\n                523.6171875,\n                236.671875,\n                534.3957824707031\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/68/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/68/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Syntax errors are usually easy to find, but there are a few gotchas. Whitespace errors can be tricky because spaces and tabs are invisible and we are used to ignoring them.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              548.3671875\n            ],\n            [\n              525.6034545898438,\n              548.3671875\n            ],\n            [\n              525.6034545898438,\n              570.8327789306641\n            ],\n            [\n              127.8984375,\n              570.8327789306641\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            548.3671875,\n            525.6034545898438,\n            570.8327789306641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; x = 5\\n&gt;&gt;&gt; y = 6\\n  File \\\"&lt;stdin&gt;\\\", line 1\\n    y = 6\\n    ^</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              576.9446258544922\n            ],\n            [\n              258.9345703125,\n              576.9446258544922\n            ],\n            [\n              258.9345703125,\n              635.6842346191406\n            ],\n            [\n              129.60000610351562,\n              635.6842346191406\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            576.9446258544922,\n            258.9345703125,\n            635.6842346191406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">IndentationError: unexpected indent</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              637.9166412353516\n            ],\n            [\n              312.6726989746094,\n              637.9166412353516\n            ],\n            [\n              312.6726989746094,\n              647.8792419433594\n            ],\n            [\n              128.57080078125,\n              647.8792419433594\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            637.9166412353516,\n            312.6726989746094,\n            647.8792419433594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/68/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this example, the problem is that the second line is indented by one space. But the error message points to y, which is misleading. In general, error messages indicate where the problem was discovered, but the actual error might be earlier in the code, sometimes on a previous line.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              654.2891998291016\n            ],\n            [\n              525.603515625,\n              654.2891998291016\n            ],\n            [\n              525.603515625,\n              700.8348083496094\n            ],\n            [\n              128.6455078125,\n              700.8348083496094\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            654.2891998291016,\n            525.603515625,\n            700.8348083496094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/62/SectionHeader/1\",\n        \"3\": \"/page/64/SectionHeader/11\",\n        \"4\": \"/page/68/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/69/Page/212\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/69/PageHeader/0'></content-ref><content-ref src='/page/69/PageHeader/19'></content-ref><content-ref src='/page/69/Text/1'></content-ref><content-ref src='/page/69/TextInlineMath/2'></content-ref><content-ref src='/page/69/Code/3'></content-ref><content-ref src='/page/69/Text/4'></content-ref><content-ref src='/page/69/Code/5'></content-ref><content-ref src='/page/69/Text/6'></content-ref><content-ref src='/page/69/Text/7'></content-ref><content-ref src='/page/69/Text/8'></content-ref><content-ref src='/page/69/SectionHeader/9'></content-ref><content-ref src='/page/69/ListGroup/202'></content-ref><content-ref src='/page/69/Text/17'></content-ref><content-ref src='/page/69/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/69/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.66650390625\n            ],\n            [\n              482.607421875,\n              60.66650390625\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.66650390625,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              61.05322265625\n            ],\n            [\n              97.64208984375,\n              61.05322265625\n            ],\n            [\n              97.64208984375,\n              70.14111328125\n            ],\n            [\n              85.68896484375,\n              70.14111328125\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            61.05322265625,\n            97.64208984375,\n            70.14111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The same is true of runtime errors.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              88.365234375\n            ],\n            [\n              238.6142578125,\n              88.365234375\n            ],\n            [\n              238.6142578125,\n              98.79791259765625\n            ],\n            [\n              86.2119140625,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            88.365234375,\n            238.6142578125,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/TextInlineMath/2\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">Suppose you are trying to compute a signal-to-noise ratio in decibels. The formula is <i>SNRdb</i> = 10 log10(<i>Psignal</i>/<i>Pnoise</i>). In Python, you might write something like this:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              108.861328125\n            ],\n            [\n              484.1015625,\n              108.861328125\n            ],\n            [\n              484.1015625,\n              134.007568359375\n            ],\n            [\n              85.3154296875,\n              134.007568359375\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            108.861328125,\n            484.1015625,\n            134.007568359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>import math\\nsignal_power = 9\\nnoise_power = 10\\nratio = signal_power / noise_power\\ndecibels = 10 * math.log10(ratio)\\nprint decibels</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              137.5751953125\n            ],\n            [\n              265.359375,\n              137.5751953125\n            ],\n            [\n              265.359375,\n              209.98828125\n            ],\n            [\n              85.763671875,\n              209.98828125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            137.5751953125,\n            265.359375,\n            209.98828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But when you run it in Python 2, you get an error message.</p>\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              215.40234375\n            ],\n            [\n              346.341796875,\n              215.40234375\n            ],\n            [\n              346.341796875,\n              225.532958984375\n            ],\n            [\n              85.24072265625,\n              225.532958984375\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            215.40234375,\n            346.341796875,\n            225.532958984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>Traceback (most recent call last):\\n  File \\\"snr.py\\\", line 5, in ?\\n    decibels = 10 * math.log10(ratio)\\nValueError: math domain error</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              231.9527587890625\n            ],\n            [\n              279.9280090332031,\n              231.9527587890625\n            ],\n            [\n              279.9280090332031,\n              278.4984130859375\n            ],\n            [\n              85.3154296875,\n              278.4984130859375\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            231.9527587890625,\n            279.9280090332031,\n            278.4984130859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The error message indicates line 5, but there is nothing wrong with that line. To find the real error, it might be useful to print the value of ratio, which turns out to be 0. The problem is in line 4, because dividing two integers does floor division. The solution is to represent signal power and noise power with floating-point values.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              285.01171875\n            ],\n            [\n              482.90625,\n              285.01171875\n            ],\n            [\n              482.90625,\n              331.76397705078125\n            ],\n            [\n              85.9130859375,\n              331.76397705078125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            285.01171875,\n            482.90625,\n            331.76397705078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In general, error messages tell you where the problem was discovered, but that is often not where it was caused.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              341.666015625\n            ],\n            [\n              482.607421875,\n              341.666015625\n            ],\n            [\n              482.607421875,\n              364.46197509765625\n            ],\n            [\n              85.763671875,\n              364.46197509765625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            341.666015625,\n            482.607421875,\n            364.46197509765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In Python 3, this example does not cause an error; the division operator performs floatingpoint division even with integer operands.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              374.923828125\n            ],\n            [\n              482.40338134765625,\n              374.923828125\n            ],\n            [\n              482.40338134765625,\n              397.15997314453125\n            ],\n            [\n              85.9130859375,\n              397.15997314453125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            374.923828125,\n            482.40338134765625,\n            397.15997314453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/68/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-69-0\\\"></span><b>5.13 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              86.0625,\n              427.601806640625\n            ],\n            [\n              184.0259246826172,\n              427.601806640625\n            ],\n            [\n              184.0259246826172,\n              441.9480285644531\n            ],\n            [\n              86.0625,\n              441.9480285644531\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            427.601806640625,\n            184.0259246826172,\n            441.9480285644531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/69/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/ListGroup/202\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/69/ListItem/10'></content-ref><content-ref src='/page/69/ListItem/11'></content-ref><content-ref src='/page/69/ListItem/12'></content-ref><content-ref src='/page/69/ListItem/13'></content-ref><content-ref src='/page/69/ListItem/14'></content-ref><content-ref src='/page/69/ListItem/15'></content-ref><content-ref src='/page/69/ListItem/16'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              451.23980712890625\n            ],\n            [\n              482.403564453125,\n              451.23980712890625\n            ],\n            [\n              482.403564453125,\n              659.2560119628906\n            ],\n            [\n              85.9130859375,\n              659.2560119628906\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            451.23980712890625,\n            482.403564453125,\n            659.2560119628906\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/69/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>modulus operator:</b> An operator, denoted with a percent sign (%), that works on integers and yields the remainder when one number is divided by another.</li>\",\n              \"polygon\": [\n                [\n                  86.4000244140625,\n                  451.23980712890625\n                ],\n                [\n                  482.3994140625,\n                  451.23980712890625\n                ],\n                [\n                  482.3994140625,\n                  473.54595947265625\n                ],\n                [\n                  86.4000244140625,\n                  473.54595947265625\n                ]\n              ],\n              \"bbox\": [\n                86.4000244140625,\n                451.23980712890625,\n                482.3994140625,\n                473.54595947265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/69/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/69/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>boolean expression:</b> An expression whose value is either True or False.</li>\",\n              \"polygon\": [\n                [\n                  85.9130859375,\n                  483.78515625\n                ],\n                [\n                  406.40625,\n                  483.78515625\n                ],\n                [\n                  406.40625,\n                  494.3359680175781\n                ],\n                [\n                  85.9130859375,\n                  494.3359680175781\n                ]\n              ],\n              \"bbox\": [\n                85.9130859375,\n                483.78515625,\n                406.40625,\n                494.3359680175781\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/69/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/69/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>relational operator:</b> One of the operators that compares its operands: ==, !=, &gt;, &lt;, &gt;=, and &lt;=.</li>\",\n              \"polygon\": [\n                [\n                  86.40005493164062,\n                  504.66796875\n                ],\n                [\n                  482.39703369140625,\n                  504.66796875\n                ],\n                [\n                  482.39703369140625,\n                  527.3199768066406\n                ],\n                [\n                  86.40005493164062,\n                  527.3199768066406\n                ]\n              ],\n              \"bbox\": [\n                86.40005493164062,\n                504.66796875,\n                482.39703369140625,\n                527.3199768066406\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/69/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/69/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>logical operator:</b> One of the operators that combines boolean expressions: and, or, and not.</li>\",\n              \"polygon\": [\n                [\n                  86.0625,\n                  537.9978332519531\n                ],\n                [\n                  482.40264892578125,\n                  537.9978332519531\n                ],\n                [\n                  482.40264892578125,\n                  560.3039855957031\n                ],\n                [\n                  86.0625,\n                  560.3039855957031\n                ]\n              ],\n              \"bbox\": [\n                86.0625,\n                537.9978332519531,\n                482.40264892578125,\n                560.3039855957031\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/69/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/69/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>conditional statement:</b> A statement that controls the flow of execution depending on some condition.</li>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  571.0342864990234\n                ],\n                [\n                  482.4032287597656,\n                  571.0342864990234\n                ],\n                [\n                  482.4032287597656,\n                  593.2879943847656\n                ],\n                [\n                  86.361328125,\n                  593.2879943847656\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                571.0342864990234,\n                482.4032287597656,\n                593.2879943847656\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/69/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/69/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>condition:</b> The boolean expression in a conditional statement that determines which branch is executed.</li>\",\n              \"polygon\": [\n                [\n                  86.40008544921875,\n                  603.66796875\n                ],\n                [\n                  482.403564453125,\n                  603.66796875\n                ],\n                [\n                  482.403564453125,\n                  626.2720031738281\n                ],\n                [\n                  86.40008544921875,\n                  626.2720031738281\n                ]\n              ],\n              \"bbox\": [\n                86.40008544921875,\n                603.66796875,\n                482.403564453125,\n                626.2720031738281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/69/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/69/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>compound statement:</b> A statement that consists of a header and a body. The header ends with a colon (:). The body is indented relative to the header.</li>\",\n              \"polygon\": [\n                [\n                  86.0625,\n                  637.0023040771484\n                ],\n                [\n                  482.40289306640625,\n                  637.0023040771484\n                ],\n                [\n                  482.40289306640625,\n                  659.2560119628906\n                ],\n                [\n                  86.0625,\n                  659.2560119628906\n                ]\n              ],\n              \"bbox\": [\n                86.0625,\n                637.0023040771484,\n                482.40289306640625,\n                659.2560119628906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/69/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/69/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/69/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>branch:</b> One of the alternative sequences of statements in a conditional statement.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              669.9863052368164\n            ],\n            [\n              448.27203369140625,\n              669.9863052368164\n            ],\n            [\n              448.27203369140625,\n              680.0460205078125\n            ],\n            [\n              85.6142578125,\n              680.0460205078125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            669.9863052368164,\n            448.27203369140625,\n            680.0460205078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/69/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/69/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>chained conditional:</b> A conditional statement with a series of alternative branches.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              690.7753067016602\n            ],\n            [\n              452.93377685546875,\n              690.7753067016602\n            ],\n            [\n              452.93377685546875,\n              700.8350219726562\n            ],\n            [\n              85.46484375,\n              700.8350219726562\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            690.7753067016602,\n            452.93377685546875,\n            700.8350219726562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/69/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/62/SectionHeader/1\",\n        \"3\": \"/page/64/SectionHeader/11\",\n        \"4\": \"/page/69/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/70/Page/210\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/70/PageHeader/0'></content-ref><content-ref src='/page/70/PageHeader/19'></content-ref><content-ref src='/page/70/ListItem/1'></content-ref><content-ref src='/page/70/Text/2'></content-ref><content-ref src='/page/70/Text/3'></content-ref><content-ref src='/page/70/ListItem/4'></content-ref><content-ref src='/page/70/SectionHeader/5'></content-ref><content-ref src='/page/70/Text/6'></content-ref><content-ref src='/page/70/Equation/7'></content-ref><content-ref src='/page/70/Text/8'></content-ref><content-ref src='/page/70/ListItem/9'></content-ref><content-ref src='/page/70/Equation/10'></content-ref><content-ref src='/page/70/Text/11'></content-ref><content-ref src='/page/70/ListItem/12'></content-ref><content-ref src='/page/70/Text/13'></content-ref><content-ref src='/page/70/Text/14'></content-ref><content-ref src='/page/70/ListGroup/209'></content-ref><content-ref src='/page/70/Text/17'></content-ref><content-ref src='/page/70/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/70/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.9443359375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/69/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              60.76318359375\n            ],\n            [\n              525.041015625,\n              60.76318359375\n            ],\n            [\n              525.041015625,\n              69.75439453125\n            ],\n            [\n              514.880859375,\n              69.75439453125\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            60.76318359375,\n            525.041015625,\n            69.75439453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/69/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/ListItem/1\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>nested conditional:</b> A conditional statement that appears in one of the branches of another conditional statement.</li>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              88.7381591796875\n            ],\n            [\n              525.6031494140625,\n              88.7381591796875\n            ],\n            [\n              525.6031494140625,\n              110.99188232421875\n            ],\n            [\n              128.794921875,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            88.7381591796875,\n            525.6031494140625,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/69/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>recursion:</b> The process of calling the function that is currently executing.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              123.2666015625\n            ],\n            [\n              450.6328125,\n              123.2666015625\n            ],\n            [\n              450.6328125,\n              133.3428955078125\n            ],\n            [\n              128.197265625,\n              133.3428955078125\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            123.2666015625,\n            450.6328125,\n            133.3428955078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/69/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>base case:</b> A conditional branch in a recursive function that does not make a recursive call.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              145.6341552734375\n            ],\n            [\n              525.603271484375,\n              145.6341552734375\n            ],\n            [\n              525.603271484375,\n              155.69390869140625\n            ],\n            [\n              128.794921875,\n              155.69390869140625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            145.6341552734375,\n            525.603271484375,\n            155.69390869140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/69/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/ListItem/4\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>infinite recursion:</b> A recursion that doesn't have a base case, or never reaches it. Eventually, an infinite recursion causes a runtime error.</li>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              179.9208984375\n            ],\n            [\n              525.6033935546875,\n              179.9208984375\n            ],\n            [\n              525.6033935546875,\n              202.43292236328125\n            ],\n            [\n              127.7490234375,\n              202.43292236328125\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            179.9208984375,\n            525.6033935546875,\n            202.43292236328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/69/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-70-0\\\"></span><b>5.14 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              235.6197509765625\n            ],\n            [\n              228.80401611328125,\n              235.6197509765625\n            ],\n            [\n              228.80401611328125,\n              249.9659423828125\n            ],\n            [\n              129.01904296875,\n              249.9659423828125\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            235.6197509765625,\n            228.80401611328125,\n            249.9659423828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 5.3.</b> <i>Fermat's Last Theorem says that there are no positive integers a, b, and c such that</i></p>\",\n          \"polygon\": [\n            [\n              129.6000518798828,\n              263.93359375\n            ],\n            [\n              519.9609375,\n              263.93359375\n            ],\n            [\n              519.9609375,\n              273.97174072265625\n            ],\n            [\n              129.6000518798828,\n              273.97174072265625\n            ]\n          ],\n          \"bbox\": [\n            129.6000518798828,\n            263.93359375,\n            519.9609375,\n            273.97174072265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/Equation/7\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">a^n + b^n = c^n</math></p>\",\n          \"polygon\": [\n            [\n              299.126953125,\n              294.873046875\n            ],\n            [\n              355.904296875,\n              294.873046875\n            ],\n            [\n              355.904296875,\n              307.5091857910156\n            ],\n            [\n              299.126953125,\n              307.5091857910156\n            ]\n          ],\n          \"bbox\": [\n            299.126953125,\n            294.873046875,\n            355.904296875,\n            307.5091857910156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>for any values of n greater than 2.</i></p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              315.755859375\n            ],\n            [\n              265.270751953125,\n              315.755859375\n            ],\n            [\n              265.270751953125,\n              325.8002014160156\n            ],\n            [\n              127.599609375,\n              325.8002014160156\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            315.755859375,\n            265.270751953125,\n            325.8002014160156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/ListItem/9\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Write a function named</i> check_fermat <i>that takes four parameters—</i>a<i>,</i> b<i>,</i> c <i>and</i> n<i>—and that</i> <i>checks to see if Fermat's theorem holds. If n is greater than 2 and it turns out to be true that</i></li>\",\n          \"polygon\": [\n            [\n              141.1962890625,\n              341.859375\n            ],\n            [\n              525.9375,\n              341.859375\n            ],\n            [\n              525.9375,\n              364.5061950683594\n            ],\n            [\n              141.1962890625,\n              364.5061950683594\n            ]\n          ],\n          \"bbox\": [\n            141.1962890625,\n            341.859375,\n            525.9375,\n            364.5061950683594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/Equation/10\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">a^n + b^n = c^n</math></p>\",\n          \"polygon\": [\n            [\n              312.275390625,\n              381.6517333984375\n            ],\n            [\n              368.455078125,\n              381.6517333984375\n            ],\n            [\n              368.455078125,\n              393.9721984863281\n            ],\n            [\n              312.275390625,\n              393.9721984863281\n            ]\n          ],\n          \"bbox\": [\n            312.275390625,\n            381.6517333984375,\n            368.455078125,\n            393.9721984863281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>the program should print, \\\"Holy smokes, Fermat was wrong!\\\" Otherwise the program should</i> <i>print, \\\"No, that doesn't work.\\\"</i></p>\",\n          \"polygon\": [\n            [\n              153.1494140625,\n              402.1875\n            ],\n            [\n              525.9375,\n              402.1875\n            ],\n            [\n              525.9375,\n              424.45819091796875\n            ],\n            [\n              153.1494140625,\n              424.45819091796875\n            ]\n          ],\n          \"bbox\": [\n            153.1494140625,\n            402.1875,\n            525.9375,\n            424.45819091796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/ListItem/12\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Write a function that prompts the user to input values for</i> a<i>,</i> b<i>,</i> c <i>and</i> n<i>, converts them to</i> <i>integers, and uses</i> check_fermat <i>to check whether they violate Fermat's theorem.</i></li>\",\n          \"polygon\": [\n            [\n              141.7939453125,\n              436.21875\n            ],\n            [\n              525.9375,\n              436.21875\n            ],\n            [\n              525.9375,\n              459.0263366699219\n            ],\n            [\n              141.7939453125,\n              459.0263366699219\n            ]\n          ],\n          \"bbox\": [\n            141.7939453125,\n            436.21875,\n            525.9375,\n            459.0263366699219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 5.4.</b> <i>If you are given three sticks, you may or may not be able to arrange them in a triangle.</i> <i>For example, if one of the sticks is 12 inches long and the other two are one inch long, it is clear that</i> <i>you will not be able to get the short sticks to meet in the middle. For any three lengths, there is a</i> <i>simple test to see if it is possible to form a triangle:</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              466.3266296386719\n            ],\n            [\n              526.236328125,\n              466.3266296386719\n            ],\n            [\n              526.236328125,\n              512.8722229003906\n            ],\n            [\n              128.794921875,\n              512.8722229003906\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            466.3266296386719,\n            526.236328125,\n            512.8722229003906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>If any of the three lengths is greater than the sum of the other two, then you cannot</i> <i>form a triangle. Otherwise, you can. (If the sum of two lengths equals the third, they</i> <i>form what is called a \\\"degenerate\\\" triangle.)</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              153.4482421875,\n              529.8046875\n            ],\n            [\n              500.8359375,\n              529.8046875\n            ],\n            [\n              500.8359375,\n              564.3182220458984\n            ],\n            [\n              153.4482421875,\n              564.3182220458984\n            ]\n          ],\n          \"bbox\": [\n            153.4482421875,\n            529.8046875,\n            500.8359375,\n            564.3182220458984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/ListGroup/209\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/70/ListItem/15'></content-ref><content-ref src='/page/70/ListItem/16'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.150390625,\n              580.46484375\n            ],\n            [\n              525.638671875,\n              580.46484375\n            ],\n            [\n              525.638671875,\n              649.7863922119141\n            ],\n            [\n              140.150390625,\n              649.7863922119141\n            ]\n          ],\n          \"bbox\": [\n            140.150390625,\n            580.46484375,\n            525.638671875,\n            649.7863922119141\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/70/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Write a function named</i> is_triangle <i>that takes three integers as arguments, and that prints</i> <i>either \\\"Yes\\\" or \\\"No,\\\" depending on whether you can or cannot form a triangle from sticks</i> <i>with the given lengths.</i></li>\",\n              \"polygon\": [\n                [\n                  140.150390625,\n                  580.46484375\n                ],\n                [\n                  525.638671875,\n                  580.46484375\n                ],\n                [\n                  525.638671875,\n                  615.2182312011719\n                ],\n                [\n                  140.150390625,\n                  615.2182312011719\n                ]\n              ],\n              \"bbox\": [\n                140.150390625,\n                580.46484375,\n                525.638671875,\n                615.2182312011719\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/70/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Write a function that prompts the user to input three stick lengths, converts them to integers,</i> <i>and uses</i> is_triangle <i>to check whether sticks with the given lengths can form a triangle.</i></li>\",\n              \"polygon\": [\n                [\n                  141.943359375,\n                  627.6056365966797\n                ],\n                [\n                  525.638671875,\n                  627.6056365966797\n                ],\n                [\n                  525.638671875,\n                  649.7863922119141\n                ],\n                [\n                  141.943359375,\n                  649.7863922119141\n                ]\n              ],\n              \"bbox\": [\n                141.943359375,\n                627.6056365966797,\n                525.638671875,\n                649.7863922119141\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/70/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The following exercises use TurtleWorld from Chapter <a href=\\\"#page-52-0\\\">4:</a></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              665.9296875\n            ],\n            [\n              378.31640625,\n              665.9296875\n            ],\n            [\n              378.31640625,\n              676.4469528198242\n            ],\n            [\n              128.6455078125,\n              676.4469528198242\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            665.9296875,\n            378.31640625,\n            676.4469528198242\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/70/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 5.5.</b> <i>Read the following function and see if you can figure out what it does. Then run it</i> <i>(see the examples in Chapter </i><i><a href=\\\"#page-52-0\\\">4)</a></i><i>.</i></p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              678.3046875\n            ],\n            [\n              525.6011962890625,\n              678.3046875\n            ],\n            [\n              525.6011962890625,\n              700.6622543334961\n            ],\n            [\n              129.60000610351562,\n              700.6622543334961\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            678.3046875,\n            525.6011962890625,\n            700.6622543334961\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/62/SectionHeader/1\",\n        \"3\": \"/page/64/SectionHeader/11\",\n        \"4\": \"/page/70/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/71/Page/162\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/71/PageHeader/0'></content-ref><content-ref src='/page/71/PageHeader/17'></content-ref><content-ref src='/page/71/FigureGroup/159'></content-ref><content-ref src='/page/71/Code/3'></content-ref><content-ref src='/page/71/Text/4'></content-ref><content-ref src='/page/71/ListGroup/160'></content-ref><content-ref src='/page/71/Text/12'></content-ref><content-ref src='/page/71/ListGroup/161'></content-ref><content-ref src='/page/71/Text/15'></content-ref><content-ref src='/page/71/ListItem/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/71/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.6181640625\n            ],\n            [\n              482.90625,\n              60.6181640625\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.6181640625,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/71/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              60.95654296875\n            ],\n            [\n              96.74560546875,\n              60.95654296875\n            ],\n            [\n              96.74560546875,\n              70.04443359375\n            ],\n            [\n              85.53955078125,\n              70.04443359375\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            60.95654296875,\n            96.74560546875,\n            70.04443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/71/FigureGroup/159\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/71/Figure/1'></content-ref><content-ref src='/page/71/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              183.181640625,\n              85.1748046875\n            ],\n            [\n              388.775390625,\n              85.1748046875\n            ],\n            [\n              388.775390625,\n              173.1529541015625\n            ],\n            [\n              183.181640625,\n              173.1529541015625\n            ]\n          ],\n          \"bbox\": [\n            183.181640625,\n            85.1748046875,\n            388.775390625,\n            173.1529541015625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/71/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  183.181640625,\n                  85.1748046875\n                ],\n                [\n                  388.775390625,\n                  85.1748046875\n                ],\n                [\n                  388.775390625,\n                  152.8505859375\n                ],\n                [\n                  183.181640625,\n                  152.8505859375\n                ]\n              ],\n              \"bbox\": [\n                183.181640625,\n                85.1748046875,\n                388.775390625,\n                152.8505859375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {\n                \"/page/71/Figure/1\": \"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IcA5HpjB5qjpXw4vbXW9MvNT8U3ur22myPPbRXcStIJWXaSZDklehC9iK7+igAqpqenw6tpV5p1xnybqF4XxjIDAg4z9at0UAeYr8MNfWw+xjx3d/ZhbfYFtvsaeT9l27dpjzgyY/wCWnX2rc1bwELnRdBtNK1I6feaFt+x3TW6TDhNh3IcA5HPGOa7KigDz/TPhxfW2tabd6p4qvdWtdOma5ghu4laQTFdpPmHJ29wvYivQKKKACiiigAooooAKr31nFqGn3NlOCYbiJonx/dYYP86sUUAeZQ/DDX7exW0i8d3a28UBsobcWaeT9mwRtaPOGfBPz9elbWpfD+Ofw3oWmabqDWV1obpJZ3TQJL8yqVyyHAOc54xzXZ0UAee2Hw31GPV9PuNV8W3urWVjc/bY4LqFWf7RjGRIckJj+AcZr0KiigCG8tYr6yntJhmKeNo3HsRg/wA684g+GOv2llHaW/jq7SCCE2kFv9jTyRbkEYePOHfBPznnpXptFAHF6h8PopfC2h6Tp2oNZ3GiSRzWd20CSfOoIyyng5JycY5qz4X8Ma54fv5WvPFl1q1lMhZoLuEF1mJGWV85VMDhMYGa6uigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigD//Z\"\n              }\n            },\n            {\n              \"id\": \"/page/71/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-71-0\\\"></span>Figure 5.2: A Koch curve.</p>\",\n              \"polygon\": [\n                [\n                  228.4399871826172,\n                  162.615234375\n                ],\n                [\n                  340.6640625,\n                  162.615234375\n                ],\n                [\n                  340.6640625,\n                  173.1529541015625\n                ],\n                [\n                  228.4399871826172,\n                  173.1529541015625\n                ]\n              ],\n              \"bbox\": [\n                228.4399871826172,\n                162.615234375,\n                340.6640625,\n                173.1529541015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/71/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def draw(t, length, n):\\n    if n == 0:\\n        return\\n    angle = 50\\n    fd(t, length*n)\\n    lt(t, angle)\\n    draw(t, length, n-1)\\n    rt(t, 2*angle)\\n    draw(t, length, n-1)\\n    lt(t, angle)\\n    bk(t, length*n)</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              195.29296875\n            ],\n            [\n              216.052734375,\n              195.29296875\n            ],\n            [\n              216.052734375,\n              327.64434814453125\n            ],\n            [\n              85.46484375,\n              327.64434814453125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            195.29296875,\n            216.052734375,\n            327.64434814453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/71/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 5.6.</b> <i>The Koch curve is a fractal that looks something like Figure </i><i><a href=\\\"#page-71-0\\\">5.2.</a></i><i> To draw a Koch</i> <i>curve with length x, all you have to do is</i></p>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              328.904296875\n            ],\n            [\n              482.4046325683594,\n              328.904296875\n            ],\n            [\n              482.4046325683594,\n              352.00921630859375\n            ],\n            [\n              86.4000015258789,\n              352.00921630859375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            328.904296875,\n            482.4046325683594,\n            352.00921630859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/71/ListGroup/160\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/71/ListItem/5'></content-ref><content-ref src='/page/71/ListItem/6'></content-ref><content-ref src='/page/71/ListItem/7'></content-ref><content-ref src='/page/71/ListItem/8'></content-ref><content-ref src='/page/71/ListItem/9'></content-ref><content-ref src='/page/71/ListItem/10'></content-ref><content-ref src='/page/71/ListItem/11'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.2685546875,\n              365.642578125\n            ],\n            [\n              259.3296813964844,\n              365.642578125\n            ],\n            [\n              259.3296813964844,\n              497.304931640625\n            ],\n            [\n              97.2685546875,\n              497.304931640625\n            ]\n          ],\n          \"bbox\": [\n            97.2685546875,\n            365.642578125,\n            259.3296813964844,\n            497.304931640625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/71/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Draw a Koch curve with length x</i>/3<i>.</i></li>\",\n              \"polygon\": [\n                [\n                  97.94091796875,\n                  365.642578125\n                ],\n                [\n                  259.3296813964844,\n                  365.642578125\n                ],\n                [\n                  259.3296813964844,\n                  376.3179016113281\n                ],\n                [\n                  97.94091796875,\n                  376.3179016113281\n                ]\n              ],\n              \"bbox\": [\n                97.94091796875,\n                365.642578125,\n                259.3296813964844,\n                376.3179016113281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/71/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Turn left 60 degrees.</i></li>\",\n              \"polygon\": [\n                [\n                  98.1650390625,\n                  385.751953125\n                ],\n                [\n                  193.0593719482422,\n                  385.751953125\n                ],\n                [\n                  193.0593719482422,\n                  396.3102111816406\n                ],\n                [\n                  98.1650390625,\n                  396.3102111816406\n                ]\n              ],\n              \"bbox\": [\n                98.1650390625,\n                385.751953125,\n                193.0593719482422,\n                396.3102111816406\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/71/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. Draw a Koch curve with length x</i>/3<i>.</i></li>\",\n              \"polygon\": [\n                [\n                  98.23974609375,\n                  406.0546875\n                ],\n                [\n                  259.3296813964844,\n                  406.0546875\n                ],\n                [\n                  259.3296813964844,\n                  416.64691162109375\n                ],\n                [\n                  98.23974609375,\n                  416.64691162109375\n                ]\n              ],\n              \"bbox\": [\n                98.23974609375,\n                406.0546875,\n                259.3296813964844,\n                416.64691162109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/71/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>4. Turn right 120 degrees.</i></li>\",\n              \"polygon\": [\n                [\n                  97.716796875,\n                  426.6766357421875\n                ],\n                [\n                  205.23365783691406,\n                  426.6766357421875\n                ],\n                [\n                  205.23365783691406,\n                  436.63922119140625\n                ],\n                [\n                  97.716796875,\n                  436.63922119140625\n                ]\n              ],\n              \"bbox\": [\n                97.716796875,\n                426.6766357421875,\n                205.23365783691406,\n                436.63922119140625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/71/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>5. Draw a Koch curve with length x</i>/3<i>.</i></li>\",\n              \"polygon\": [\n                [\n                  98.09033203125,\n                  446.84063720703125\n                ],\n                [\n                  259.3296813964844,\n                  446.84063720703125\n                ],\n                [\n                  259.3296813964844,\n                  456.9759216308594\n                ],\n                [\n                  98.09033203125,\n                  456.9759216308594\n                ]\n              ],\n              \"bbox\": [\n                98.09033203125,\n                446.84063720703125,\n                259.3296813964844,\n                456.9759216308594\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/71/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>6. Turn left 60 degrees.</i></li>\",\n              \"polygon\": [\n                [\n                  97.2685546875,\n                  466.76953125\n                ],\n                [\n                  193.0593719482422,\n                  466.76953125\n                ],\n                [\n                  193.0593719482422,\n                  476.96722412109375\n                ],\n                [\n                  97.2685546875,\n                  476.96722412109375\n                ]\n              ],\n              \"bbox\": [\n                97.2685546875,\n                466.76953125,\n                193.0593719482422,\n                476.96722412109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/71/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>7. Draw a Koch curve with length x</i>/3<i>.</i></li>\",\n              \"polygon\": [\n                [\n                  98.015625,\n                  486.87890625\n                ],\n                [\n                  259.3296813964844,\n                  486.87890625\n                ],\n                [\n                  259.3296813964844,\n                  497.304931640625\n                ],\n                [\n                  98.015625,\n                  497.304931640625\n                ]\n              ],\n              \"bbox\": [\n                98.015625,\n                486.87890625,\n                259.3296813964844,\n                497.304931640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/71/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The exception is if x is less than 3: in that case, you can just draw a straight line with length x.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              510.85546875\n            ],\n            [\n              467.16058349609375,\n              510.85546875\n            ],\n            [\n              467.16058349609375,\n              521.2682495117188\n            ],\n            [\n              85.6142578125,\n              521.2682495117188\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            510.85546875,\n            467.16058349609375,\n            521.2682495117188\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/71/ListGroup/161\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/71/ListItem/13'></content-ref><content-ref src='/page/71/ListItem/14'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.5673828125,\n              534.83203125\n            ],\n            [\n              482.40447998046875,\n              534.83203125\n            ],\n            [\n              482.40447998046875,\n              589.9572448730469\n            ],\n            [\n              97.5673828125,\n              589.9572448730469\n            ]\n          ],\n          \"bbox\": [\n            97.5673828125,\n            534.83203125,\n            482.40447998046875,\n            589.9572448730469\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/71/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Write a function called</i> koch <i>that takes a turtle and a length as parameters, and that uses the</i> <i>turtle to draw a Koch curve with the given length.</i></li>\",\n              \"polygon\": [\n                [\n                  98.314453125,\n                  534.83203125\n                ],\n                [\n                  482.4009704589844,\n                  534.83203125\n                ],\n                [\n                  482.4009704589844,\n                  557.5982513427734\n                ],\n                [\n                  98.314453125,\n                  557.5982513427734\n                ]\n              ],\n              \"bbox\": [\n                98.314453125,\n                534.83203125,\n                482.4009704589844,\n                557.5982513427734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/71/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Write a function called</i> snowflake <i>that draws three Koch curves to make the outline of a</i> <i>snowflake.</i></li>\",\n              \"polygon\": [\n                [\n                  97.5673828125,\n                  567.703125\n                ],\n                [\n                  482.40447998046875,\n                  567.703125\n                ],\n                [\n                  482.40447998046875,\n                  589.9572448730469\n                ],\n                [\n                  97.5673828125,\n                  589.9572448730469\n                ]\n              ],\n              \"bbox\": [\n                97.5673828125,\n                567.703125,\n                482.40447998046875,\n                589.9572448730469\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/62/SectionHeader/1\",\n                \"3\": \"/page/64/SectionHeader/11\",\n                \"4\": \"/page/70/SectionHeader/5\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/71/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/koch.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/koch.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/koch.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/koch.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/koch.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/koch.py\\\">koch.</a> <a href=\\\"http://thinkpython.com/code/koch.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              109.59521484375,\n              596.0929565429688\n            ],\n            [\n              348.8206787109375,\n              596.0929565429688\n            ],\n            [\n              348.8206787109375,\n              606.1362457275391\n            ],\n            [\n              109.59521484375,\n              606.1362457275391\n            ]\n          ],\n          \"bbox\": [\n            109.59521484375,\n            596.0929565429688,\n            348.8206787109375,\n            606.1362457275391\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/71/ListItem/16\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. The Koch curve can be generalized in several ways. See</i> <a href=\\\"http://en.wikipedia.org/wiki/Koch_snowflake\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/Koch_snowflake\\\">//</a> <a href=\\\"http://en.wikipedia.org/wiki/Koch_snowflake\\\">en.</a> <a href=\\\"http://en.wikipedia.org/wiki/Koch_snowflake\\\">wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Koch_snowflake\\\">org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Koch_snowflake\\\">wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Koch_snowflake\\\">Koch_</a> <a href=\\\"http://en.wikipedia.org/wiki/Koch_snowflake\\\">snowflake</a> <i>for examples and implement your favorite.</i></li>\",\n          \"polygon\": [\n            [\n              97.2685546875,\n              616.2579498291016\n            ],\n            [\n              480.7077331542969,\n              616.2579498291016\n            ],\n            [\n              480.7077331542969,\n              638.4952392578125\n            ],\n            [\n              97.2685546875,\n              638.4952392578125\n            ]\n          ],\n          \"bbox\": [\n            97.2685546875,\n            616.2579498291016,\n            480.7077331542969,\n            638.4952392578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"3\": \"/page/64/SectionHeader/11\",\n            \"4\": \"/page/70/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/62/SectionHeader/1\",\n        \"3\": \"/page/64/SectionHeader/11\",\n        \"4\": \"/page/70/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/72/Page/121\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/72/SectionHeader/0'></content-ref><content-ref src='/page/72/SectionHeader/1'></content-ref><content-ref src='/page/72/SectionHeader/2'></content-ref><content-ref src='/page/72/Text/3'></content-ref><content-ref src='/page/72/Text/4'></content-ref><content-ref src='/page/72/Text/5'></content-ref><content-ref src='/page/72/Text/6'></content-ref><content-ref src='/page/72/Code/7'></content-ref><content-ref src='/page/72/Text/8'></content-ref><content-ref src='/page/72/Code/9'></content-ref><content-ref src='/page/72/Text/10'></content-ref><content-ref src='/page/72/Text/11'></content-ref><content-ref src='/page/72/Code/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/72/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-72-0\\\"></span><b>Chapter 6</b></h2>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              165.2255859375\n            ],\n            [\n              220.84561157226562,\n              165.2255859375\n            ],\n            [\n              220.84561157226562,\n              186.46197509765625\n            ],\n            [\n              128.27197265625,\n              186.46197509765625\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            165.2255859375,\n            220.84561157226562,\n            186.46197509765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/62/SectionHeader/1\",\n            \"2\": \"/page/72/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Fruitful functions</b></h1>\",\n          \"polygon\": [\n            [\n              127.001953125,\n              222.169921875\n            ],\n            [\n              331.2926330566406,\n              222.169921875\n            ],\n            [\n              331.2926330566406,\n              247.620361328125\n            ],\n            [\n              127.001953125,\n              247.620361328125\n            ]\n          ],\n          \"bbox\": [\n            127.001953125,\n            222.169921875,\n            331.2926330566406,\n            247.620361328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-72-1\\\"></span><b>6.1 Return values</b></h4>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              297.966796875\n            ],\n            [\n              253.705078125,\n              297.966796875\n            ],\n            [\n              253.705078125,\n              312.531982421875\n            ],\n            [\n              128.49609375,\n              312.531982421875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            297.966796875,\n            253.705078125,\n            312.531982421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Some of the built-in functions we have used, such as the math functions, produce results. Calling the function generates a value, which we usually assign to a variable or use as part of an expression.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              327.226318359375\n            ],\n            [\n              526.53515625,\n              327.226318359375\n            ],\n            [\n              526.53515625,\n              361.5779113769531\n            ],\n            [\n              129.2431640625,\n              361.5779113769531\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            327.226318359375,\n            526.53515625,\n            361.5779113769531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">e = math.exp(1.0) height = radius * math.sin(radians)</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              369.30975341796875\n            ],\n            [\n              312.6726989746094,\n              369.30975341796875\n            ],\n            [\n              312.6726989746094,\n              391.4663391113281\n            ],\n            [\n              128.197265625,\n              391.4663391113281\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            369.30975341796875,\n            312.6726989746094,\n            391.4663391113281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">All of the functions we have written so far are void; they print something or move turtles around, but their return value is None.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              398.70703125\n            ],\n            [\n              525.9375,\n              398.70703125\n            ],\n            [\n              525.9375,\n              421.6539001464844\n            ],\n            [\n              128.9443359375,\n              421.6539001464844\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            398.70703125,\n            525.9375,\n            421.6539001464844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this chapter, we are (finally) going to write fruitful functions. The first example is area, which returns the area of a circle with the given radius:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              433.35675048828125\n            ],\n            [\n              525.9375,\n              433.35675048828125\n            ],\n            [\n              525.9375,\n              455.6639099121094\n            ],\n            [\n              128.3466796875,\n              455.6639099121094\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            433.35675048828125,\n            525.9375,\n            455.6639099121094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def area(radius):\\n    temp = math.pi * radius**2\\n    return temp</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              463.3947448730469\n            ],\n            [\n              288.369140625,\n              463.3947448730469\n            ],\n            [\n              288.369140625,\n              497.746337890625\n            ],\n            [\n              129.60000610351562,\n              497.746337890625\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            463.3947448730469,\n            288.369140625,\n            497.746337890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We have seen the return statement before, but in a fruitful function the return statement includes an expression. This statement means: \\\"Return immediately from this function and use the following expression as a return value.\\\" The expression can be arbitrarily complicated, so we could have written this function more concisely:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              505.44140625\n            ],\n            [\n              526.236328125,\n              505.44140625\n            ],\n            [\n              526.236328125,\n              552.3229064941406\n            ],\n            [\n              128.794921875,\n              552.3229064941406\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            505.44140625,\n            526.236328125,\n            552.3229064941406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def area(radius):\\n    return math.pi * radius**2</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              559.58203125\n            ],\n            [\n              287.771484375,\n              559.58203125\n            ],\n            [\n              287.771484375,\n              582.2113494873047\n            ],\n            [\n              129.5999755859375,\n              582.2113494873047\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            559.58203125,\n            287.771484375,\n            582.2113494873047\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">On the other hand, <b>temporary variables</b> like temp often make debugging easier.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              590.0927429199219\n            ],\n            [\n              480.515625,\n              590.0927429199219\n            ],\n            [\n              480.515625,\n              600.2048950195312\n            ],\n            [\n              128.794921875,\n              600.2048950195312\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            590.0927429199219,\n            480.515625,\n            600.2048950195312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Sometimes it is useful to have multiple return statements, one in each branch of a conditional:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              612.0572967529297\n            ],\n            [\n              525.6033325195312,\n              612.0572967529297\n            ],\n            [\n              525.6033325195312,\n              634.2138977050781\n            ],\n            [\n              128.3466796875,\n              634.2138977050781\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            612.0572967529297,\n            525.6033325195312,\n            634.2138977050781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/72/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def absolute_value(x):\\n    if x &lt; 0:\\n        return -x\\n    else:\\n        return x</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              641.9457397460938\n            ],\n            [\n              244.67794799804688,\n              641.9457397460938\n            ],\n            [\n              244.67794799804688,\n              701.12109375\n            ],\n            [\n              129.5999755859375,\n              701.12109375\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            641.9457397460938,\n            244.67794799804688,\n            701.12109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"4\": \"/page/72/SectionHeader/2\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/73/Page/247\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/73/PageHeader/0'></content-ref><content-ref src='/page/73/PageHeader/19'></content-ref><content-ref src='/page/73/Text/1'></content-ref><content-ref src='/page/73/Text/2'></content-ref><content-ref src='/page/73/Text/3'></content-ref><content-ref src='/page/73/Code/4'></content-ref><content-ref src='/page/73/Text/5'></content-ref><content-ref src='/page/73/Code/6'></content-ref><content-ref src='/page/73/Text/7'></content-ref><content-ref src='/page/73/SectionHeader/8'></content-ref><content-ref src='/page/73/Text/9'></content-ref><content-ref src='/page/73/Text/10'></content-ref><content-ref src='/page/73/Text/11'></content-ref><content-ref src='/page/73/Equation/12'></content-ref><content-ref src='/page/73/Text/13'></content-ref><content-ref src='/page/73/Text/14'></content-ref><content-ref src='/page/73/Text/15'></content-ref><content-ref src='/page/73/Code/16'></content-ref><content-ref src='/page/73/Text/17'></content-ref><content-ref src='/page/73/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/73/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.71484375\n            ],\n            [\n              482.4034729003906,\n              60.71484375\n            ],\n            [\n              482.4034729003906,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.71484375,\n            482.4034729003906,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              60.908203125\n            ],\n            [\n              97.04443359375,\n              60.908203125\n            ],\n            [\n              97.04443359375,\n              70.0927734375\n            ],\n            [\n              85.98779296875,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            60.908203125,\n            97.04443359375,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since these return statements are in an alternative conditional, only one will be executed.</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              88.6552734375\n            ],\n            [\n              480.6423034667969,\n              88.6552734375\n            ],\n            [\n              480.6423034667969,\n              98.79791259765625\n            ],\n            [\n              85.0166015625,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            88.6552734375,\n            480.6423034667969,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As soon as a return statement executes, the function terminates without executing any subsequent statements. Code that appears after a return statement, or any other place the flow of execution can never reach, is called <b>dead code</b>.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              109.0546875\n            ],\n            [\n              482.90625,\n              109.0546875\n            ],\n            [\n              482.90625,\n              144.01092529296875\n            ],\n            [\n              85.6142578125,\n              144.01092529296875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            109.0546875,\n            482.90625,\n            144.01092529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In a fruitful function, it is a good idea to ensure that every possible path through the program hits a return statement. For example:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              154.30078125\n            ],\n            [\n              482.4032287597656,\n              154.30078125\n            ],\n            [\n              482.4032287597656,\n              177.02996826171875\n            ],\n            [\n              85.6142578125,\n              177.02996826171875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            154.30078125,\n            482.4032287597656,\n            177.02996826171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def absolute_value(x):\\n    if x &lt; 0:\\n        return -x\\n    if x &gt; 0:\\n        return x</pre>\",\n          \"polygon\": [\n            [\n              86.39995574951172,\n              183.77081298828125\n            ],\n            [\n              201.47792053222656,\n              183.77081298828125\n            ],\n            [\n              201.47792053222656,\n              243.6328125\n            ],\n            [\n              86.39995574951172,\n              243.6328125\n            ]\n          ],\n          \"bbox\": [\n            86.39995574951172,\n            183.77081298828125,\n            201.47792053222656,\n            243.6328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This function is incorrect because if x happens to be 0, neither condition is true, and the function ends without hitting a return statement. If the flow of execution gets to the end of a function, the return value is None, which is not the absolute value of 0.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              249.240234375\n            ],\n            [\n              482.40374755859375,\n              249.240234375\n            ],\n            [\n              482.40374755859375,\n              283.90203857421875\n            ],\n            [\n              85.763671875,\n              283.90203857421875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            249.240234375,\n            482.40374755859375,\n            283.90203857421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print absolute_value(0)\\nNone</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              289.458984375\n            ],\n            [\n              227.62973022460938,\n              289.458984375\n            ],\n            [\n              227.62973022460938,\n              312.80047607421875\n            ],\n            [\n              85.763671875,\n              312.80047607421875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            289.458984375,\n            227.62973022460938,\n            312.80047607421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">By the way, Python provides a built-in function called abs that computes absolute values. <b>Exercise 6.1.</b> <i>Write a</i> compare <i>function that returns</i> 1 <i>if</i> x &gt; y<i>,</i> 0 <i>if</i> x == y<i>, and</i> -1 <i>if</i> x &lt; y<i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              319.4296875\n            ],\n            [\n              479.317626953125,\n              319.4296875\n            ],\n            [\n              479.317626953125,\n              341.8999328613281\n            ],\n            [\n              85.763671875,\n              341.8999328613281\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            319.4296875,\n            479.317626953125,\n            341.8999328613281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/72/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-73-0\\\"></span><b>6.2 Incremental development</b></h4>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              373.40087890625\n            ],\n            [\n              288.0703125,\n              373.40087890625\n            ],\n            [\n              288.0703125,\n              387.7471008300781\n            ],\n            [\n              85.39013671875,\n              387.7471008300781\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            373.40087890625,\n            288.0703125,\n            387.7471008300781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As you write larger functions, you might find yourself spending more time debugging.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              399.8671875\n            ],\n            [\n              469.0234680175781,\n              399.8671875\n            ],\n            [\n              469.0234680175781,\n              411.01702880859375\n            ],\n            [\n              85.9130859375,\n              411.01702880859375\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            399.8671875,\n            469.0234680175781,\n            411.01702880859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To deal with increasingly complex programs, you might want to try a process called <b>in</b><b>cremental development</b>. The goal of incremental development is to avoid long debugging sessions by adding and testing only a small amount of code at a time.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              421.13671875\n            ],\n            [\n              482.90625,\n              421.13671875\n            ],\n            [\n              482.90625,\n              456.2310485839844\n            ],\n            [\n              85.6142578125,\n              456.2310485839844\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            421.13671875,\n            482.90625,\n            456.2310485839844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As an example, suppose you want to find the distance between two points, given by the coordinates (<i>x</i>1, <i>y</i>1) and (<i>x</i>2, <i>y</i>2). By the Pythagorean theorem, the distance is:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              465.99609375\n            ],\n            [\n              482.90625,\n              465.99609375\n            ],\n            [\n              482.90625,\n              490.4317626953125\n            ],\n            [\n              85.46484375,\n              490.4317626953125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            465.99609375,\n            482.90625,\n            490.4317626953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Equation/12\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">\\\\mathrm{distance} = \\\\sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}</math></p>\",\n          \"polygon\": [\n            [\n              200.8125,\n              507.375\n            ],\n            [\n              366.064453125,\n              507.375\n            ],\n            [\n              366.064453125,\n              528.2578125\n            ],\n            [\n              200.8125,\n              528.2578125\n            ]\n          ],\n          \"bbox\": [\n            200.8125,\n            507.375,\n            366.064453125,\n            528.2578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first step is to consider what a distance function should look like in Python. In other words, what are the inputs (parameters) and what is the output (return value)?</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              533.28515625\n            ],\n            [\n              483.802734375,\n              533.28515625\n            ],\n            [\n              483.802734375,\n              555.8779296875\n            ],\n            [\n              85.46484375,\n              555.8779296875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            533.28515625,\n            483.802734375,\n            555.8779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this case, the inputs are two points, which you can represent using four numbers. The return value is the distance, which is a floating-point value.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              566.15625\n            ],\n            [\n              483.50390625,\n              566.15625\n            ],\n            [\n              483.50390625,\n              588.8969421386719\n            ],\n            [\n              85.3154296875,\n              588.8969421386719\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            566.15625,\n            483.50390625,\n            588.8969421386719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Already you can write an outline of the function:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              598.640625\n            ],\n            [\n              301.9658203125,\n              598.640625\n            ],\n            [\n              301.9658203125,\n              609.720947265625\n            ],\n            [\n              85.6142578125,\n              609.720947265625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            598.640625,\n            301.9658203125,\n            609.720947265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def distance(x1, y1, x2, y2):\\n    return 0.0</pre>\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              616.04296875\n            ],\n            [\n              238.09046936035156,\n              616.04296875\n            ],\n            [\n              238.09046936035156,\n              638.6194000244141\n            ],\n            [\n              85.24072265625,\n              638.6194000244141\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            616.04296875,\n            238.09046936035156,\n            638.6194000244141\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Obviously, this version doesn't compute distances; it always returns zero. But it is syntactically correct, and it runs, which means that you can test it before you make it more complicated.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              645.046875\n            ],\n            [\n              482.90625,\n              645.046875\n            ],\n            [\n              482.90625,\n              680.0109558105469\n            ],\n            [\n              85.46484375,\n              680.0109558105469\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            645.046875,\n            482.90625,\n            680.0109558105469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/73/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To test the new function, call it with sample arguments:</p>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              690.6796875\n            ],\n            [\n              329.9356689453125,\n              690.6796875\n            ],\n            [\n              329.9356689453125,\n              700.8349533081055\n            ],\n            [\n              85.98779296875,\n              700.8349533081055\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            690.6796875,\n            329.9356689453125,\n            700.8349533081055\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"4\": \"/page/73/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/74/Page/204\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/74/PageHeader/0'></content-ref><content-ref src='/page/74/PageHeader/15'></content-ref><content-ref src='/page/74/TextInlineMath/1'></content-ref><content-ref src='/page/74/Text/2'></content-ref><content-ref src='/page/74/Text/3'></content-ref><content-ref src='/page/74/Code/4'></content-ref><content-ref src='/page/74/Text/5'></content-ref><content-ref src='/page/74/Text/6'></content-ref><content-ref src='/page/74/Code/7'></content-ref><content-ref src='/page/74/Text/8'></content-ref><content-ref src='/page/74/Code/9'></content-ref><content-ref src='/page/74/Text/10'></content-ref><content-ref src='/page/74/Text/11'></content-ref><content-ref src='/page/74/Text/12'></content-ref><content-ref src='/page/74/Text/13'></content-ref><content-ref src='/page/74/ListItem/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/74/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.197265625,\n              61.1015625\n            ],\n            [\n              525.6033935546875,\n              61.1015625\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.197265625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            61.1015625,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              60.56982421875\n            ],\n            [\n              526.236328125,\n              60.56982421875\n            ],\n            [\n              526.236328125,\n              69.94775390625\n            ],\n            [\n              514.880859375,\n              69.94775390625\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            60.56982421875,\n            526.236328125,\n            69.94775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/TextInlineMath/1\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; distance(1, 2, 4, 6) 0.0</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              88.02685546875\n            ],\n            [\n              255.12875366210938,\n              88.02685546875\n            ],\n            [\n              255.12875366210938,\n              110.84228515625\n            ],\n            [\n              128.0478515625,\n              110.84228515625\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            88.02685546875,\n            255.12875366210938,\n            110.84228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I chose these values so that the horizontal distance is 3 and the vertical distance is 4; that way, the result is 5 (the hypotenuse of a 3-4-5 triangle). When testing a function, it is useful to know the right answer.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              116.4990234375\n            ],\n            [\n              525.9375,\n              116.4990234375\n            ],\n            [\n              525.9375,\n              151.42584228515625\n            ],\n            [\n              127.8984375,\n              151.42584228515625\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            116.4990234375,\n            525.9375,\n            151.42584228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">At this point we have confirmed that the function is syntactically correct, and we can start adding code to the body. A reasonable next step is to find the differences <i>x</i>2 − <i>x</i>1 and <i>y</i>2 − <i>y</i>1. The next version stores those values in temporary variables and prints them.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              160.5849609375\n            ],\n            [\n              525.638671875,\n              160.5849609375\n            ],\n            [\n              525.638671875,\n              197.01251220703125\n            ],\n            [\n              128.197265625,\n              197.01251220703125\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            160.5849609375,\n            525.638671875,\n            197.01251220703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def distance(x1, y1, x2, y2):\\n    dx = x2 - x1\\n    dy = y2 - y1\\n    print 'dx is', dx\\n    print 'dy is', dy\\n    return 0.0</pre>\",\n          \"polygon\": [\n            [\n              129.59996032714844,\n              201.763671875\n            ],\n            [\n              281.794921875,\n              201.763671875\n            ],\n            [\n              281.794921875,\n              272.6982421875\n            ],\n            [\n              129.59996032714844,\n              272.6982421875\n            ]\n          ],\n          \"bbox\": [\n            129.59996032714844,\n            201.763671875,\n            281.794921875,\n            272.6982421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the function is working, it should display 'dx is 3' and 'dy is 4'. If so, we know that the function is getting the right arguments and performing the first computation correctly. If not, there are only a few lines to check.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              278.05078125\n            ],\n            [\n              525.9375,\n              278.05078125\n            ],\n            [\n              525.9375,\n              313.2818298339844\n            ],\n            [\n              128.6455078125,\n              313.2818298339844\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            278.05078125,\n            525.9375,\n            313.2818298339844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Next we compute the sum of squares of dx and dy:</p>\",\n          \"polygon\": [\n            [\n              127.52490234375,\n              322.716796875\n            ],\n            [\n              351.879638671875,\n              322.716796875\n            ],\n            [\n              351.879638671875,\n              333.2978210449219\n            ],\n            [\n              127.52490234375,\n              333.2978210449219\n            ]\n          ],\n          \"bbox\": [\n            127.52490234375,\n            322.716796875,\n            351.879638671875,\n            333.2978210449219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def distance(x1, y1, x2, y2):\\n    dx = x2 - x1\\n    dy = y2 - y1\\n    dsquared = dx**2 + dy**2\\n    print 'dsquared is: ', dsquared\\n    return 0.0</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              339.15234375\n            ],\n            [\n              318.251953125,\n              339.15234375\n            ],\n            [\n              318.251953125,\n              410.165283203125\n            ],\n            [\n              129.5999755859375,\n              410.165283203125\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            339.15234375,\n            318.251953125,\n            410.165283203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Again, you would run the program at this stage and check the output (which should be 25). Finally, you can use math.sqrt to compute and return the result:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              415.3359375\n            ],\n            [\n              525.638671875,\n              415.3359375\n            ],\n            [\n              525.638671875,\n              438.5538635253906\n            ],\n            [\n              128.794921875,\n              438.5538635253906\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            415.3359375,\n            525.638671875,\n            438.5538635253906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def distance(x1, y1, x2, y2):\\n    dx = x2 - x1\\n    dy = y2 - y1\\n    dsquared = dx**2 + dy**2\\n    result = math.sqrt(dsquared)\\n    return result</pre>\",\n          \"polygon\": [\n            [\n              129.59996032714844,\n              444.4867248535156\n            ],\n            [\n              296.9761047363281,\n              444.4867248535156\n            ],\n            [\n              296.9761047363281,\n              515.4213256835938\n            ],\n            [\n              129.59996032714844,\n              515.4213256835938\n            ]\n          ],\n          \"bbox\": [\n            129.59996032714844,\n            444.4867248535156,\n            296.9761047363281,\n            515.4213256835938\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If that works correctly, you are done. Otherwise, you might want to print the value of result before the return statement.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              520.5234375\n            ],\n            [\n              525.9375,\n              520.5234375\n            ],\n            [\n              525.9375,\n              543.8099060058594\n            ],\n            [\n              127.8984375,\n              543.8099060058594\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            520.5234375,\n            525.9375,\n            543.8099060058594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The final version of the function doesn't display anything when it runs; it only returns a value. The print statements we wrote are useful for debugging, but once you get the function working, you should remove them. Code like that is called <b>scaffolding</b> because it is helpful for building the program but is not part of the final product.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              553.0078125\n            ],\n            [\n              526.236328125,\n              553.0078125\n            ],\n            [\n              526.236328125,\n              600.409912109375\n            ],\n            [\n              128.197265625,\n              600.409912109375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            553.0078125,\n            526.236328125,\n            600.409912109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you start out, you should add only a line or two of code at a time. As you gain more experience, you might find yourself writing and debugging bigger chunks. Either way, incremental development can save you a lot of debugging time.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              610.2421875\n            ],\n            [\n              526.236328125,\n              610.2421875\n            ],\n            [\n              526.236328125,\n              645.046875\n            ],\n            [\n              128.197265625,\n              645.046875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            610.2421875,\n            526.236328125,\n            645.046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The key aspects of the process are:</p>\",\n          \"polygon\": [\n            [\n              127.82373046875,\n              654.71484375\n            ],\n            [\n              281.197265625,\n              654.71484375\n            ],\n            [\n              281.197265625,\n              664.831916809082\n            ],\n            [\n              127.82373046875,\n              664.831916809082\n            ]\n          ],\n          \"bbox\": [\n            127.82373046875,\n            654.71484375,\n            281.197265625,\n            664.831916809082\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/74/ListItem/14\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">1. Start with a working program and make small incremental changes. At any point, if there is an error, you should have a good idea where it is.</li>\",\n          \"polygon\": [\n            [\n              142.052978515625,\n              677.53125\n            ],\n            [\n              525.9375,\n              677.53125\n            ],\n            [\n              525.9375,\n              700.8349151611328\n            ],\n            [\n              142.052978515625,\n              700.8349151611328\n            ]\n          ],\n          \"bbox\": [\n            142.052978515625,\n            677.53125,\n            525.9375,\n            700.8349151611328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"4\": \"/page/73/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/75/Page/168\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/75/PageHeader/0'></content-ref><content-ref src='/page/75/PageHeader/18'></content-ref><content-ref src='/page/75/ListGroup/165'></content-ref><content-ref src='/page/75/Text/3'></content-ref><content-ref src='/page/75/SectionHeader/4'></content-ref><content-ref src='/page/75/Text/5'></content-ref><content-ref src='/page/75/Text/6'></content-ref><content-ref src='/page/75/Text/7'></content-ref><content-ref src='/page/75/TextInlineMath/8'></content-ref><content-ref src='/page/75/Text/9'></content-ref><content-ref src='/page/75/Code/10'></content-ref><content-ref src='/page/75/Text/11'></content-ref><content-ref src='/page/75/Code/12'></content-ref><content-ref src='/page/75/Text/13'></content-ref><content-ref src='/page/75/Code/14'></content-ref><content-ref src='/page/75/SectionHeader/15'></content-ref><content-ref src='/page/75/Text/16'></content-ref><content-ref src='/page/75/Code/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/75/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.66650390625\n            ],\n            [\n              482.4034729003906,\n              60.66650390625\n            ],\n            [\n              482.4034729003906,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.66650390625,\n            482.4034729003906,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.09130859375,\n              60.6181640625\n            ],\n            [\n              95.99853515625,\n              60.6181640625\n            ],\n            [\n              95.99853515625,\n              69.8994140625\n            ],\n            [\n              85.09130859375,\n              69.8994140625\n            ]\n          ],\n          \"bbox\": [\n            85.09130859375,\n            60.6181640625,\n            95.99853515625,\n            69.8994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/ListGroup/165\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/75/ListItem/1'></content-ref><content-ref src='/page/75/ListItem/2'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.716796875,\n              88.80029296875\n            ],\n            [\n              482.90625,\n              88.80029296875\n            ],\n            [\n              482.90625,\n              157.158935546875\n            ],\n            [\n              97.716796875,\n              157.158935546875\n            ]\n          ],\n          \"bbox\": [\n            97.716796875,\n            88.80029296875,\n            482.90625,\n            157.158935546875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/75/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">2. Use temporary variables to hold intermediate values so you can display and check them.</li>\",\n              \"polygon\": [\n                [\n                  98.8530044555664,\n                  88.80029296875\n                ],\n                [\n                  482.90625,\n                  88.80029296875\n                ],\n                [\n                  482.90625,\n                  110.99188232421875\n                ],\n                [\n                  98.8530044555664,\n                  110.99188232421875\n                ]\n              ],\n              \"bbox\": [\n                98.8530044555664,\n                88.80029296875,\n                482.90625,\n                110.99188232421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"4\": \"/page/73/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/75/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">3. Once the program is working, you might want to remove some of the scaffolding or consolidate multiple statements into compound expressions, but only if it does not make the program difficult to read.</li>\",\n              \"polygon\": [\n                [\n                  97.716796875,\n                  122.203125\n                ],\n                [\n                  482.40380859375,\n                  122.203125\n                ],\n                [\n                  482.40380859375,\n                  157.158935546875\n                ],\n                [\n                  97.716796875,\n                  157.158935546875\n                ]\n              ],\n              \"bbox\": [\n                97.716796875,\n                122.203125,\n                482.40380859375,\n                157.158935546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"4\": \"/page/73/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/75/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 6.2.</b> <i>Use incremental development to write a function called</i> hypotenuse <i>that returns the</i> <i>length of the hypotenuse of a right triangle given the lengths of the two legs as arguments. Record</i> <i>each stage of the development process as you go.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              163.775390625\n            ],\n            [\n              482.40350341796875,\n              163.775390625\n            ],\n            [\n              482.40350341796875,\n              198.374267578125\n            ],\n            [\n              85.763671875,\n              198.374267578125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            163.775390625,\n            482.40350341796875,\n            198.374267578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/73/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-75-0\\\"></span><b>6.3 Composition</b></h4>\",\n          \"polygon\": [\n            [\n              86.0625,\n              230.725830078125\n            ],\n            [\n              203.9527587890625,\n              230.725830078125\n            ],\n            [\n              203.9527587890625,\n              245.072021484375\n            ],\n            [\n              86.0625,\n              245.072021484375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            230.725830078125,\n            203.9527587890625,\n            245.072021484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As you should expect by now, you can call one function from within another. This ability is called <b>composition</b>.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              258.71484375\n            ],\n            [\n              482.4032897949219,\n              258.71484375\n            ],\n            [\n              482.4032897949219,\n              280.8979797363281\n            ],\n            [\n              86.2119140625,\n              280.8979797363281\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            258.71484375,\n            482.4032897949219,\n            280.8979797363281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As an example, we'll write a function that takes two points, the center of the circle and a point on the perimeter, and computes the area of the circle.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              291.5859375\n            ],\n            [\n              482.607421875,\n              291.5859375\n            ],\n            [\n              482.607421875,\n              314.1759948730469\n            ],\n            [\n              86.0625,\n              314.1759948730469\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            291.5859375,\n            482.607421875,\n            314.1759948730469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Assume that the center point is stored in the variables xc and yc, and the perimeter point is in xp and yp. The first step is to find the radius of the circle, which is the distance between the two points. We just wrote a function, distance, that does that:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              325.037109375\n            ],\n            [\n              483.50390625,\n              325.037109375\n            ],\n            [\n              483.50390625,\n              359.64801025390625\n            ],\n            [\n              85.9130859375,\n              359.64801025390625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            325.037109375,\n            483.50390625,\n            359.64801025390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/TextInlineMath/8\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">radius = distance(xc, yc, xp, yp)</p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              366.6468505859375\n            ],\n            [\n              259.0119323730469,\n              366.6468505859375\n            ],\n            [\n              259.0119323730469,\n              377.4375\n            ],\n            [\n              85.39013671875,\n              377.4375\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            366.6468505859375,\n            259.0119323730469,\n            377.4375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The next step is to find the area of a circle with that radius; we just wrote that, too:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              383.23828125\n            ],\n            [\n              447.046875,\n              383.23828125\n            ],\n            [\n              447.046875,\n              393.8710021972656\n            ],\n            [\n              85.763671875,\n              393.8710021972656\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            383.23828125,\n            447.046875,\n            393.8710021972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>result = area(radius)</pre>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              400.8698425292969\n            ],\n            [\n              197.82421875,\n              400.8698425292969\n            ],\n            [\n              197.82421875,\n              410.8324279785156\n            ],\n            [\n              85.39013671875,\n              410.8324279785156\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            400.8698425292969,\n            197.82421875,\n            410.8324279785156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Encapsulating these steps in a function, we get:</p>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              418.04296875\n            ],\n            [\n              294.64453125,\n              418.04296875\n            ],\n            [\n              294.64453125,\n              428.093994140625\n            ],\n            [\n              85.53955078125,\n              428.093994140625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            418.04296875,\n            294.64453125,\n            428.093994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def circle_area(xc, yc, xp, yp):\\n    radius = distance(xc, yc, xp, yp)\\n    result = area(radius)\\n    return result</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              435.05859375\n            ],\n            [\n              279.9279479980469,\n              435.05859375\n            ],\n            [\n              279.9279479980469,\n              481.6394348144531\n            ],\n            [\n              85.6142578125,\n              481.6394348144531\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            435.05859375,\n            279.9279479980469,\n            481.6394348144531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The temporary variables radius and result are useful for development and debugging, but once the program is working, we can make it more concise by composing the function calls:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              488.787841796875\n            ],\n            [\n              482.90625,\n              488.787841796875\n            ],\n            [\n              482.90625,\n              523.6171875\n            ],\n            [\n              85.6142578125,\n              523.6171875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            488.787841796875,\n            482.90625,\n            523.6171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def circle_area(xc, yc, xp, yp):\\n    return area(distance(xc, yc, xp, yp))</pre>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              530.287841796875\n            ],\n            [\n              300.8493957519531,\n              530.287841796875\n            ],\n            [\n              300.8493957519531,\n              552.4454498291016\n            ],\n            [\n              86.28662109375,\n              552.4454498291016\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            530.287841796875,\n            300.8493957519531,\n            552.4454498291016\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/SectionHeader/15\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-75-1\\\"></span><b>6.4 Boolean functions</b></h4>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              584.7738647460938\n            ],\n            [\n              237.82412719726562,\n              584.7738647460938\n            ],\n            [\n              237.82412719726562,\n              599.1200561523438\n            ],\n            [\n              85.0166015625,\n              599.1200561523438\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            584.7738647460938,\n            237.82412719726562,\n            599.1200561523438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Functions can return booleans, which is often convenient for hiding complicated tests inside functions. For example:</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              612.7894134521484\n            ],\n            [\n              482.4032897949219,\n              612.7894134521484\n            ],\n            [\n              482.4032897949219,\n              634.9460144042969\n            ],\n            [\n              85.0166015625,\n              634.9460144042969\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            612.7894134521484,\n            482.4032897949219,\n            634.9460144042969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/75/Code/17\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def is_divisible(x, y):\\n    if x % y == 0:\\n        return True\\n    else:\\n        return False</pre>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              641.9458618164062\n            ],\n            [\n              210.97265625,\n              641.9458618164062\n            ],\n            [\n              210.97265625,\n              700.6854553222656\n            ],\n            [\n              86.2119140625,\n              700.6854553222656\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            641.9458618164062,\n            210.97265625,\n            700.6854553222656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"4\": \"/page/75/SectionHeader/15\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/76/Page/219\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/76/PageHeader/0'></content-ref><content-ref src='/page/76/PageHeader/19'></content-ref><content-ref src='/page/76/Text/1'></content-ref><content-ref src='/page/76/Text/2'></content-ref><content-ref src='/page/76/Code/3'></content-ref><content-ref src='/page/76/Text/4'></content-ref><content-ref src='/page/76/Code/5'></content-ref><content-ref src='/page/76/Text/6'></content-ref><content-ref src='/page/76/TextInlineMath/7'></content-ref><content-ref src='/page/76/TextInlineMath/8'></content-ref><content-ref src='/page/76/Text/9'></content-ref><content-ref src='/page/76/TextInlineMath/10'></content-ref><content-ref src='/page/76/Text/11'></content-ref><content-ref src='/page/76/SectionHeader/12'></content-ref><content-ref src='/page/76/Text/13'></content-ref><content-ref src='/page/76/Text/14'></content-ref><content-ref src='/page/76/Text/15'></content-ref><content-ref src='/page/76/Text/16'></content-ref><content-ref src='/page/76/Text/17'></content-ref><content-ref src='/page/76/Equation/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/76/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.197265625,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.197265625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              61.05322265625\n            ],\n            [\n              525.041015625,\n              61.05322265625\n            ],\n            [\n              525.041015625,\n              70.43115234375\n            ],\n            [\n              514.880859375,\n              70.43115234375\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            61.05322265625,\n            525.041015625,\n            70.43115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is common to give boolean functions names that sound like yes/no questions; is_divisible returns either True or False to indicate whether x is divisible by y.</p>\",\n          \"polygon\": [\n            [\n              127.30078125,\n              88.51025390625\n            ],\n            [\n              525.9375,\n              88.51025390625\n            ],\n            [\n              525.9375,\n              110.99188232421875\n            ],\n            [\n              127.30078125,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            127.30078125,\n            88.51025390625,\n            525.9375,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is an example:</p>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              119.689453125\n            ],\n            [\n              219.041015625,\n              119.689453125\n            ],\n            [\n              219.041015625,\n              130.06787109375\n            ],\n            [\n              128.12255859375,\n              130.06787109375\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            119.689453125,\n            219.041015625,\n            130.06787109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; is_divisible(6, 4)\\nFalse\\n&gt;&gt;&gt; is_divisible(6, 3)\\nTrue</pre>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              135.0587158203125\n            ],\n            [\n              255.3486328125,\n              135.0587158203125\n            ],\n            [\n              255.3486328125,\n              181.604248046875\n            ],\n            [\n              128.3466796875,\n              181.604248046875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            135.0587158203125,\n            255.3486328125,\n            181.604248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The result of the == operator is a boolean, so we can write the function more concisely by returning it directly:</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              186.591796875\n            ],\n            [\n              525.638671875,\n              186.591796875\n            ],\n            [\n              525.638671875,\n              209.0528564453125\n            ],\n            [\n              129.60000610351562,\n              209.0528564453125\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            186.591796875,\n            525.638671875,\n            209.0528564453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def is_divisible(x, y):\\n    return x % y == 0</pre>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              213.46875\n            ],\n            [\n              249.90834045410156,\n              213.46875\n            ],\n            [\n              249.90834045410156,\n              236.2012939453125\n            ],\n            [\n              128.6455078125,\n              236.2012939453125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            213.46875,\n            249.90834045410156,\n            236.2012939453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Boolean functions are often used in conditional statements:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              241.3125\n            ],\n            [\n              389.1954040527344,\n              241.3125\n            ],\n            [\n              389.1954040527344,\n              251.45489501953125\n            ],\n            [\n              128.197265625,\n              251.45489501953125\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            241.3125,\n            389.1954040527344,\n            251.45489501953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/TextInlineMath/7\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">if is_divisible(x, y):</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              256.44573974609375\n            ],\n            [\n              266.1064453125,\n              256.44573974609375\n            ],\n            [\n              266.1064453125,\n              268.962890625\n            ],\n            [\n              129.60000610351562,\n              268.962890625\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            256.44573974609375,\n            266.1064453125,\n            268.962890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/TextInlineMath/8\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">print 'x is divisible by y'</p>\",\n          \"polygon\": [\n            [\n              147.62109375,\n              268.6407470703125\n            ],\n            [\n              291.955078125,\n              268.6407470703125\n            ],\n            [\n              291.955078125,\n              282.69140625\n            ],\n            [\n              147.62109375,\n              282.69140625\n            ]\n          ],\n          \"bbox\": [\n            147.62109375,\n            268.6407470703125,\n            291.955078125,\n            282.69140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It might be tempting to write something like:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              283.8943176269531\n            ],\n            [\n              327.515625,\n              283.8943176269531\n            ],\n            [\n              327.515625,\n              294.29296875\n            ],\n            [\n              128.3466796875,\n              294.29296875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            283.8943176269531,\n            327.515625,\n            294.29296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/TextInlineMath/10\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">if is_divisible(x, y) == True: print 'x is divisible by y'</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              298.8477478027344\n            ],\n            [\n              291.7033996582031,\n              298.8477478027344\n            ],\n            [\n              291.7033996582031,\n              321.0053405761719\n            ],\n            [\n              129.60000610351562,\n              321.0053405761719\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            298.8477478027344,\n            291.7033996582031,\n            321.0053405761719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But the extra comparison is unnecessary. <b>Exercise 6.3.</b> <i>Write a function</i> is_between(x, y, z) <i>that returns</i> True <i>if x</i> ≤ <i>y</i> ≤ <i>z or</i> False <i>otherwise.</i></p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              325.423828125\n            ],\n            [\n              525.6057739257812,\n              325.423828125\n            ],\n            [\n              525.6057739257812,\n              360.4742126464844\n            ],\n            [\n              127.8984375,\n              360.4742126464844\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            325.423828125,\n            525.6057739257812,\n            360.4742126464844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/75/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-76-0\\\"></span><b>6.5 More recursion</b></h4>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              388.5017395019531\n            ],\n            [\n              261.9006652832031,\n              388.5017395019531\n            ],\n            [\n              261.9006652832031,\n              402.84796142578125\n            ],\n            [\n              128.49609375,\n              402.84796142578125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            388.5017395019531,\n            261.9006652832031,\n            402.84796142578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We have only covered a small subset of Python, but you might be interested to know that this subset is a <i>complete</i> programming language, which means that anything that can be computed can be expressed in this language. Any program ever written could be rewritten using only the language features you have learned so far (actually, you would need a few commands to control devices like the keyboard, mouse, disks, etc., but that's all).</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              413.7890625\n            ],\n            [\n              525.638671875,\n              413.7890625\n            ],\n            [\n              525.638671875,\n              472.8719177246094\n            ],\n            [\n              128.794921875,\n              472.8719177246094\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            413.7890625,\n            525.638671875,\n            472.8719177246094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Proving that claim is a nontrivial exercise first accomplished by Alan Turing, one of the first computer scientists (some would argue that he was a mathematician, but a lot of early computer scientists started as mathematicians). Accordingly, it is known as the Turing Thesis. For a more complete (and accurate) discussion of the Turing Thesis, I recommend Michael Sipser's book <i>Introduction to the Theory of Computation</i>.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              481.9843444824219\n            ],\n            [\n              525.9375,\n              481.9843444824219\n            ],\n            [\n              525.9375,\n              540.7239379882812\n            ],\n            [\n              128.6455078125,\n              540.7239379882812\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            481.9843444824219,\n            525.9375,\n            540.7239379882812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To give you an idea of what you can do with the tools you have learned so far, we'll evaluate a few recursively defined mathematical functions. A recursive definition is similar to a circular definition, in the sense that the definition contains a reference to the thing being defined. A truly circular definition is not very useful:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              549.8373413085938\n            ],\n            [\n              525.638671875,\n              549.8373413085938\n            ],\n            [\n              525.638671875,\n              596.3829498291016\n            ],\n            [\n              128.794921875,\n              596.3829498291016\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            549.8373413085938,\n            525.638671875,\n            596.3829498291016\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>vorpal:</b> An adjective used to describe something that is vorpal.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              607.53515625\n            ],\n            [\n              407.70611572265625,\n              607.53515625\n            ],\n            [\n              407.70611572265625,\n              617.6449584960938\n            ],\n            [\n              128.0478515625,\n              617.6449584960938\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            607.53515625,\n            407.70611572265625,\n            617.6449584960938\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you saw that definition in the dictionary, you might be annoyed. On the other hand, if you looked up the definition of the factorial function, denoted with the symbol !, you might get something like this:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              628.41796875\n            ],\n            [\n              525.6033935546875,\n              628.41796875\n            ],\n            [\n              525.6033935546875,\n              663.2959594726562\n            ],\n            [\n              128.6455078125,\n              663.2959594726562\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            628.41796875,\n            525.6033935546875,\n            663.2959594726562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/76/Equation/18\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">\\\\begin{array}{l}{{0!=1}}\\\\\\\\ {{n!=n(n-1)!!}}\\\\end{array}</math></p>\",\n          \"polygon\": [\n            [\n              303.908203125,\n              674.7209014892578\n            ],\n            [\n              368.9265441894531,\n              674.7209014892578\n            ],\n            [\n              368.9265441894531,\n              700.8349685668945\n            ],\n            [\n              303.908203125,\n              700.8349685668945\n            ]\n          ],\n          \"bbox\": [\n            303.908203125,\n            674.7209014892578,\n            368.9265441894531,\n            700.8349685668945\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"4\": \"/page/76/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/77/Page/214\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/77/PageHeader/0'></content-ref><content-ref src='/page/77/PageHeader/20'></content-ref><content-ref src='/page/77/Text/1'></content-ref><content-ref src='/page/77/Text/2'></content-ref><content-ref src='/page/77/Text/3'></content-ref><content-ref src='/page/77/Code/4'></content-ref><content-ref src='/page/77/Text/5'></content-ref><content-ref src='/page/77/Code/6'></content-ref><content-ref src='/page/77/Text/7'></content-ref><content-ref src='/page/77/Code/8'></content-ref><content-ref src='/page/77/Text/9'></content-ref><content-ref src='/page/77/Text/10'></content-ref><content-ref src='/page/77/Text/11'></content-ref><content-ref src='/page/77/Text/12'></content-ref><content-ref src='/page/77/Text/13'></content-ref><content-ref src='/page/77/Text/14'></content-ref><content-ref src='/page/77/Text/15'></content-ref><content-ref src='/page/77/Text/16'></content-ref><content-ref src='/page/77/Text/17'></content-ref><content-ref src='/page/77/Text/18'></content-ref><content-ref src='/page/77/Text/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/77/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.76318359375\n            ],\n            [\n              482.90625,\n              60.76318359375\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.76318359375,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              61.05322265625\n            ],\n            [\n              97.716796875,\n              61.05322265625\n            ],\n            [\n              97.716796875,\n              69.94775390625\n            ],\n            [\n              86.2119140625,\n              69.94775390625\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            61.05322265625,\n            97.716796875,\n            69.94775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This definition says that the factorial of 0 is 1, and the factorial of any other value, <i>n</i>, is <i>n</i> multiplied by the factorial of <i>n</i> − 1.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              88.66259765625\n            ],\n            [\n              484.1015625,\n              88.66259765625\n            ],\n            [\n              484.1015625,\n              110.99188232421875\n            ],\n            [\n              85.6142578125,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            88.66259765625,\n            484.1015625,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So 3! is 3 times 2!, which is 2 times 1!, which is 1 times 0!. Putting it all together, 3! equals 3 times 2 times 1 times 1, which is 6.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              122.203125\n            ],\n            [\n              483.50390625,\n              122.203125\n            ],\n            [\n              483.50390625,\n              144.53985595703125\n            ],\n            [\n              85.6142578125,\n              144.53985595703125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            122.203125,\n            483.50390625,\n            144.53985595703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you can write a recursive definition of something, you can usually write a Python program to evaluate it. The first step is to decide what the parameters should be. In this case it should be clear that factorial takes an integer:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              155.5576171875\n            ],\n            [\n              482.4033203125,\n              155.5576171875\n            ],\n            [\n              482.4033203125,\n              190.28179931640625\n            ],\n            [\n              85.6142578125,\n              190.28179931640625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            155.5576171875,\n            482.4033203125,\n            190.28179931640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def factorial(n):</pre>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              197.033203125\n            ],\n            [\n              177.802734375,\n              197.033203125\n            ],\n            [\n              177.802734375,\n              207.51422119140625\n            ],\n            [\n              85.39013671875,\n              207.51422119140625\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            197.033203125,\n            177.802734375,\n            207.51422119140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the argument happens to be 0, all we have to do is return 1:</p>\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              214.048828125\n            ],\n            [\n              356.0177307128906,\n              214.048828125\n            ],\n            [\n              356.0177307128906,\n              225.04583740234375\n            ],\n            [\n              85.24072265625,\n              225.04583740234375\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            214.048828125,\n            356.0177307128906,\n            225.04583740234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def factorial(n):\\n    if n == 0:\\n        return 1</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              231.837890625\n            ],\n            [\n              175.8603515625,\n              231.837890625\n            ],\n            [\n              175.8603515625,\n              266.66729736328125\n            ],\n            [\n              85.46484375,\n              266.66729736328125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            231.837890625,\n            175.8603515625,\n            266.66729736328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Otherwise, and this is the interesting part, we have to make a recursive call to find the factorial of <i>n</i> − 1 and then multiply it by <i>n</i>:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              273.796875\n            ],\n            [\n              482.4033203125,\n              273.796875\n            ],\n            [\n              482.4033203125,\n              296.3928527832031\n            ],\n            [\n              85.3154296875,\n              296.3928527832031\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            273.796875,\n            482.4033203125,\n            296.3928527832031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def factorial(n):\\n    if n == 0:\\n        return 1\\n    else:\\n        recurse = factorial(n-1)\\n        result = n * recurse\\n        return result</pre>\",\n          \"polygon\": [\n            [\n              86.39997863769531,\n              303.6626892089844\n            ],\n            [\n              253.77166748046875,\n              303.6626892089844\n            ],\n            [\n              253.77166748046875,\n              387.10546875\n            ],\n            [\n              86.39997863769531,\n              387.10546875\n            ]\n          ],\n          \"bbox\": [\n            86.39997863769531,\n            303.6626892089844,\n            253.77166748046875,\n            387.10546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The flow of execution for this program is similar to the flow of countdown in Section <a href=\\\"#page-65-0\\\">5.8.</a> If we call factorial with the value 3:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              393.6796875\n            ],\n            [\n              482.3974914550781,\n              393.6796875\n            ],\n            [\n              482.3974914550781,\n              416.516845703125\n            ],\n            [\n              86.0625,\n              416.516845703125\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            393.6796875,\n            482.3974914550781,\n            416.516845703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since 3 is not 0, we take the second branch and calculate the factorial of n-1...</p>\",\n          \"polygon\": [\n            [\n              86.40000915527344,\n              427.32421875\n            ],\n            [\n              424.9329528808594,\n              427.32421875\n            ],\n            [\n              424.9329528808594,\n              437.870849609375\n            ],\n            [\n              86.40000915527344,\n              437.870849609375\n            ]\n          ],\n          \"bbox\": [\n            86.40000915527344,\n            427.32421875,\n            424.9329528808594,\n            437.870849609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since 2 is not 0, we take the second branch and calculate the factorial of n-1...</p>\",\n          \"polygon\": [\n            [\n              111.3070068359375,\n              454.0078125\n            ],\n            [\n              449.8399353027344,\n              454.0078125\n            ],\n            [\n              449.8399353027344,\n              464.2598571777344\n            ],\n            [\n              111.3070068359375,\n              464.2598571777344\n            ]\n          ],\n          \"bbox\": [\n            111.3070068359375,\n            454.0078125,\n            449.8399353027344,\n            464.2598571777344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since 1 is not 0, we take the second branch and calculate the factorial of n-1...</p>\",\n          \"polygon\": [\n            [\n              130.2890625,\n              472.56427001953125\n            ],\n            [\n              435.578857421875,\n              472.56427001953125\n            ],\n            [\n              435.578857421875,\n              495.0\n            ],\n            [\n              130.2890625,\n              495.0\n            ]\n          ],\n          \"bbox\": [\n            130.2890625,\n            472.56427001953125,\n            435.578857421875,\n            495.0\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\">Since 0 <i>is</i> 0, we take the first branch and return 1 without making any more recursive calls.</p></blockquote>\",\n          \"polygon\": [\n            [\n              150.08642578125,\n              502.734375\n            ],\n            [\n              418.359375,\n              502.734375\n            ],\n            [\n              418.359375,\n              525.1278686523438\n            ],\n            [\n              150.08642578125,\n              525.1278686523438\n            ]\n          ],\n          \"bbox\": [\n            150.08642578125,\n            502.734375,\n            418.359375,\n            525.1278686523438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The return value (1) is multiplied by <i>n</i>, which is 1, and the result is returned.</p>\",\n          \"polygon\": [\n            [\n              131.484375,\n              533.20556640625\n            ],\n            [\n              435.69140625,\n              533.20556640625\n            ],\n            [\n              435.69140625,\n              555.5358734130859\n            ],\n            [\n              131.484375,\n              555.5358734130859\n            ]\n          ],\n          \"bbox\": [\n            131.484375,\n            533.20556640625,\n            435.69140625,\n            555.5358734130859\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The return value (1) is multiplied by <i>n</i>, which is 2, and the result is returned.</p>\",\n          \"polygon\": [\n            [\n              111.30695343017578,\n              563.6675720214844\n            ],\n            [\n              447.1139221191406,\n              563.6675720214844\n            ],\n            [\n              447.1139221191406,\n              573.8028717041016\n            ],\n            [\n              111.30695343017578,\n              573.8028717041016\n            ]\n          ],\n          \"bbox\": [\n            111.30695343017578,\n            563.6675720214844,\n            447.1139221191406,\n            573.8028717041016\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The return value (2) is multiplied by <i>n</i>, which is 3, and the result, 6, becomes the return value of the function call that started the whole process.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              589.359375\n            ],\n            [\n              482.90625,\n              589.359375\n            ],\n            [\n              482.90625,\n              612.3858642578125\n            ],\n            [\n              85.46484375,\n              612.3858642578125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            589.359375,\n            482.90625,\n            612.3858642578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-78-2\\\">6.1</a> shows what the stack diagram looks like for this sequence of function calls.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              623.390625\n            ],\n            [\n              462.488037109375,\n              623.390625\n            ],\n            [\n              462.488037109375,\n              633.7398681640625\n            ],\n            [\n              85.3154296875,\n              633.7398681640625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            623.390625,\n            462.488037109375,\n            633.7398681640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The return values are shown being passed back up the stack. In each frame, the return value is the value of result, which is the product of n and recurse.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              645.1302642822266\n            ],\n            [\n              484.1015625,\n              645.1302642822266\n            ],\n            [\n              484.1015625,\n              667.2878723144531\n            ],\n            [\n              85.6142578125,\n              667.2878723144531\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            645.1302642822266,\n            484.1015625,\n            667.2878723144531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/77/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In the last frame, the local variables recurse and result do not exist, because the branch that creates them does not execute.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              678.5287017822266\n            ],\n            [\n              483.50390625,\n              678.5287017822266\n            ],\n            [\n              483.50390625,\n              700.8348693847656\n            ],\n            [\n              85.763671875,\n              700.8348693847656\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            678.5287017822266,\n            483.50390625,\n            700.8348693847656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"4\": \"/page/76/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/78/Page/232\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/78/PageHeader/0'></content-ref><content-ref src='/page/78/PageHeader/13'></content-ref><content-ref src='/page/78/FigureGroup/229'></content-ref><content-ref src='/page/78/SectionHeader/3'></content-ref><content-ref src='/page/78/Text/4'></content-ref><content-ref src='/page/78/Text/5'></content-ref><content-ref src='/page/78/Text/6'></content-ref><content-ref src='/page/78/Text/7'></content-ref><content-ref src='/page/78/Text/8'></content-ref><content-ref src='/page/78/SectionHeader/9'></content-ref><content-ref src='/page/78/Text/10'></content-ref><content-ref src='/page/78/Code/11'></content-ref><content-ref src='/page/78/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/78/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              127.8984375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              127.8984375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/78/PageHeader/13\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              60.66650390625\n            ],\n            [\n              525.638671875,\n              60.66650390625\n            ],\n            [\n              525.638671875,\n              70.33447265625\n            ],\n            [\n              514.880859375,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            60.66650390625,\n            525.638671875,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/78/FigureGroup/229\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/78/Figure/1'></content-ref><content-ref src='/page/78/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              200.8125,\n              82.564453125\n            ],\n            [\n              455.1559753417969,\n              82.564453125\n            ],\n            [\n              455.1559753417969,\n              230.7529296875\n            ],\n            [\n              200.8125,\n              230.7529296875\n            ]\n          ],\n          \"bbox\": [\n            200.8125,\n            82.564453125,\n            455.1559753417969,\n            230.7529296875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/78/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  200.8125,\n                  82.564453125\n                ],\n                [\n                  455.1559753417969,\n                  82.564453125\n                ],\n                [\n                  455.1559753417969,\n                  207.087890625\n                ],\n                [\n                  200.8125,\n                  207.087890625\n                ]\n              ],\n              \"bbox\": [\n                200.8125,\n                82.564453125,\n                455.1559753417969,\n                207.087890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"4\": \"/page/76/SectionHeader/12\"\n              },\n              \"images\": {\n                \"/page/78/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/78/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-78-2\\\"></span>Figure 6.1: Stack diagram.</p>\",\n              \"polygon\": [\n                [\n                  270.27001953125,\n                  220.4296875\n                ],\n                [\n                  385.787109375,\n                  220.4296875\n                ],\n                [\n                  385.787109375,\n                  230.7529296875\n                ],\n                [\n                  270.27001953125,\n                  230.7529296875\n                ]\n              ],\n              \"bbox\": [\n                270.27001953125,\n                220.4296875,\n                385.787109375,\n                230.7529296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"4\": \"/page/76/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/76/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/78/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-78-0\\\"></span><b>6.6 Leap of faith</b></h4>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              251.32977294921875\n            ],\n            [\n              245.56033325195312,\n              251.32977294921875\n            ],\n            [\n              245.56033325195312,\n              265.67596435546875\n            ],\n            [\n              128.27197265625,\n              265.67596435546875\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            251.32977294921875,\n            245.56033325195312,\n            265.67596435546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/78/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/78/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Following the flow of execution is one way to read programs, but it can quickly become labyrinthine. An alternative is what I call the \\\"leap of faith.\\\" When you come to a function call, instead of following the flow of execution, you <i>assume</i> that the function works correctly and returns the right result.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              278.630859375\n            ],\n            [\n              525.9375,\n              278.630859375\n            ],\n            [\n              525.9375,\n              325.7549133300781\n            ],\n            [\n              128.9443359375,\n              325.7549133300781\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            278.630859375,\n            525.9375,\n            325.7549133300781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/78/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/78/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In fact, you are already practicing this leap of faith when you use built-in functions. When you call math.cos or math.exp, you don't examine the bodies of those functions. You just assume that they work because the people who wrote the built-in functions were good programmers.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              336.251953125\n            ],\n            [\n              526.53515625,\n              336.251953125\n            ],\n            [\n              526.53515625,\n              383.3229064941406\n            ],\n            [\n              128.49609375,\n              383.3229064941406\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            336.251953125,\n            526.53515625,\n            383.3229064941406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/78/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/78/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The same is true when you call one of your own functions. For example, in Section <a href=\\\"#page-75-1\\\">6.4,</a> we wrote a function called is_divisible that determines whether one number is divisible by another. Once we have convinced ourselves that this function is correct—by examining the code and testing—we can use the function without looking at the body again.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              393.486328125\n            ],\n            [\n              526.236328125,\n              393.486328125\n            ],\n            [\n              526.236328125,\n              440.89190673828125\n            ],\n            [\n              129.392578125,\n              440.89190673828125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            393.486328125,\n            526.236328125,\n            440.89190673828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/78/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/78/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The same is true of recursive programs. When you get to the recursive call, instead of following the flow of execution, you should assume that the recursive call works (yields the correct result) and then ask yourself, \\\"Assuming that I can find the factorial of <i>n</i> − 1, can I compute the factorial of <i>n</i>?\\\" In this case, it is clear that you can, by multiplying by <i>n</i>.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              451.30078125\n            ],\n            [\n              526.53515625,\n              451.30078125\n            ],\n            [\n              526.53515625,\n              498.48046875\n            ],\n            [\n              128.6455078125,\n              498.48046875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            451.30078125,\n            526.53515625,\n            498.48046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/78/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/78/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Of course, it's a bit strange to assume that the function works correctly when you haven't finished writing it, but that's why it's called a leap of faith!</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              508.53515625\n            ],\n            [\n              525.9375,\n              508.53515625\n            ],\n            [\n              525.9375,\n              531.73828125\n            ],\n            [\n              128.9443359375,\n              531.73828125\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            508.53515625,\n            525.9375,\n            531.73828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"4\": \"/page/78/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/78/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-78-1\\\"></span><b>6.7 One more example</b></h3>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              562.2890625\n            ],\n            [\n              286.27734375,\n              562.2890625\n            ],\n            [\n              286.27734375,\n              577.8719329833984\n            ],\n            [\n              128.27197265625,\n              577.8719329833984\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            562.2890625,\n            286.27734375,\n            577.8719329833984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/78/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">After factorial, the most common example of a recursively defined mathematical function is fibonacci, which has the following definition (see <a href=\\\"http://en.wikipedia.org/wiki/Fibonacci_number\\\">http://en.wikipedia.org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Fibonacci_number\\\">wiki/Fibonacci_number</a>):</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              590.90625\n            ],\n            [\n              525.9375,\n              590.90625\n            ],\n            [\n              525.9375,\n              625.7568969726562\n            ],\n            [\n              129.09375,\n              625.7568969726562\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            590.90625,\n            525.9375,\n            625.7568969726562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/78/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>fibonacci(0) = 0\\nfibonacci(1) = 1\\nfibonacci(n) = fibonacci(n − 1) + fibonacci(n − 2)</pre>\",\n          \"polygon\": [\n            [\n              226.51171875,\n              637.1818389892578\n            ],\n            [\n              450.03515625,\n              637.1818389892578\n            ],\n            [\n              450.03515625,\n              678.4789047241211\n            ],\n            [\n              226.51171875,\n              678.4789047241211\n            ]\n          ],\n          \"bbox\": [\n            226.51171875,\n            637.1818389892578,\n            450.03515625,\n            678.4789047241211\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/78/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Translated into Python, it looks like this:</p>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              689.90625\n            ],\n            [\n              306.896484375,\n              689.90625\n            ],\n            [\n              306.896484375,\n              700.8349075317383\n            ],\n            [\n              129.46728515625,\n              700.8349075317383\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            689.90625,\n            306.896484375,\n            700.8349075317383\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"3\": \"/page/78/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/79/Page/191\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/79/PageHeader/0'></content-ref><content-ref src='/page/79/PageHeader/14'></content-ref><content-ref src='/page/79/Code/1'></content-ref><content-ref src='/page/79/Text/2'></content-ref><content-ref src='/page/79/SectionHeader/3'></content-ref><content-ref src='/page/79/Text/4'></content-ref><content-ref src='/page/79/Code/5'></content-ref><content-ref src='/page/79/Text/6'></content-ref><content-ref src='/page/79/Text/7'></content-ref><content-ref src='/page/79/Text/8'></content-ref><content-ref src='/page/79/Text/9'></content-ref><content-ref src='/page/79/Text/10'></content-ref><content-ref src='/page/79/Code/11'></content-ref><content-ref src='/page/79/Text/12'></content-ref><content-ref src='/page/79/Code/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/79/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.56982421875\n            ],\n            [\n              482.607421875,\n              60.56982421875\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.56982421875,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              60.521484375\n            ],\n            [\n              97.716796875,\n              60.521484375\n            ],\n            [\n              97.716796875,\n              69.99609375\n            ],\n            [\n              86.2119140625,\n              69.99609375\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            60.521484375,\n            97.716796875,\n            69.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def fibonacci (n):\\n    if n == 0:\\n        return 0\\n    elif n == 1:\\n        return 1\\n    else:\\n        return fibonacci(n-1) + fibonacci(n-2)</pre>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              88.22021484375\n            ],\n            [\n              326.9967956542969,\n              88.22021484375\n            ],\n            [\n              326.9967956542969,\n              171.8143310546875\n            ],\n            [\n              86.4000015258789,\n              171.8143310546875\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            88.22021484375,\n            326.9967956542969,\n            171.8143310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you try to follow the flow of execution here, even for fairly small values of <i>n</i>, your head explodes. But according to the leap of faith, if you assume that the two recursive calls work correctly, then it is clear that you get the right result by adding them together.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              175.8603515625\n            ],\n            [\n              482.4042053222656,\n              175.8603515625\n            ],\n            [\n              482.4042053222656,\n              211.50189208984375\n            ],\n            [\n              85.46484375,\n              211.50189208984375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            175.8603515625,\n            482.4042053222656,\n            211.50189208984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-79-0\\\"></span><b>6.8 Checking types</b></h4>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              239.4217529296875\n            ],\n            [\n              220.27874755859375,\n              239.4217529296875\n            ],\n            [\n              220.27874755859375,\n              253.7679443359375\n            ],\n            [\n              85.39013671875,\n              253.7679443359375\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            239.4217529296875,\n            220.27874755859375,\n            253.7679443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">What happens if we call factorial and give it 1.5 as an argument?</p>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              264.708984375\n            ],\n            [\n              381.00238037109375,\n              264.708984375\n            ],\n            [\n              381.00238037109375,\n              275.0599365234375\n            ],\n            [\n              85.98779296875,\n              275.0599365234375\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            264.708984375,\n            381.00238037109375,\n            275.0599365234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; factorial(1.5)</pre>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              279.791015625\n            ],\n            [\n              180.55654907226562,\n              279.791015625\n            ],\n            [\n              180.55654907226562,\n              290.059326171875\n            ],\n            [\n              85.53955078125,\n              290.059326171875\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            279.791015625,\n            180.55654907226562,\n            290.059326171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">RuntimeError: Maximum recursion depth exceeded</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              292.291748046875\n            ],\n            [\n              327.515625,\n              292.291748046875\n            ],\n            [\n              327.515625,\n              302.25433349609375\n            ],\n            [\n              85.763671875,\n              302.25433349609375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            292.291748046875,\n            327.515625,\n            302.25433349609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It looks like an infinite recursion. But how can that be? There is a base case—when n == 0. But if n is not an integer, we can <i>miss</i> the base case and recurse forever.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              307.44073486328125\n            ],\n            [\n              482.3996887207031,\n              307.44073486328125\n            ],\n            [\n              482.3996887207031,\n              329.7478942871094\n            ],\n            [\n              85.763671875,\n              329.7478942871094\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            307.44073486328125,\n            482.3996887207031,\n            329.7478942871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In the first recursive call, the value of n is 0.5. In the next, it is -0.5. From there, it gets smaller (more negative), but it will never be 0.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              338.7567443847656\n            ],\n            [\n              482.90625,\n              338.7567443847656\n            ],\n            [\n              482.90625,\n              361.0628967285156\n            ],\n            [\n              85.6142578125,\n              361.0628967285156\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            338.7567443847656,\n            482.90625,\n            361.0628967285156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We have two choices. We can try to generalize the factorial function to work with floating-point numbers, or we can make factorial check the type of its argument. The first option is called the gamma function and it's a little beyond the scope of this book. So we'll go for the second.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              369.896484375\n            ],\n            [\n              482.607421875,\n              369.896484375\n            ],\n            [\n              482.607421875,\n              416.76690673828125\n            ],\n            [\n              85.763671875,\n              416.76690673828125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            369.896484375,\n            482.607421875,\n            416.76690673828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We can use the built-in function isinstance to verify the type of the argument. While we're at it, we can also make sure the argument is positive:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              425.390625\n            ],\n            [\n              482.607421875,\n              425.390625\n            ],\n            [\n              482.607421875,\n              448.0829162597656\n            ],\n            [\n              85.46484375,\n              448.0829162597656\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            425.390625,\n            482.607421875,\n            448.0829162597656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def factorial (n):\\n    if not isinstance(n, int):\\n        print 'Factorial is only defined for integers.'\\n        return None\\n    elif n &lt; 0:\\n        print 'Factorial is not defined for negative integers.'\\n        return None\\n    elif n == 0:\\n        return 1\\n    else:\\n        return n * factorial(n-1)</pre>\",\n          \"polygon\": [\n            [\n              86.39997863769531,\n              453.1207580566406\n            ],\n            [\n              415.8353576660156,\n              453.1207580566406\n            ],\n            [\n              415.8353576660156,\n              585.87890625\n            ],\n            [\n              86.39997863769531,\n              585.87890625\n            ]\n          ],\n          \"bbox\": [\n            86.39997863769531,\n            453.1207580566406,\n            415.8353576660156,\n            585.87890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first base case handles nonintegers; the second catches negative integers. In both cases, the program prints an error message and returns None to indicate that something went wrong:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              590.1328125\n            ],\n            [\n              482.90625,\n              590.1328125\n            ],\n            [\n              482.90625,\n              624.7139282226562\n            ],\n            [\n              85.6142578125,\n              624.7139282226562\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            590.1328125,\n            482.90625,\n            624.7139282226562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/79/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; factorial('fred')\\nFactorial is only defined for integers.\\nNone\\n&gt;&gt;&gt; factorial(-2)\\nFactorial is not defined for negative integers.\\nNone</pre>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              627.64453125\n            ],\n            [\n              333.791015625,\n              627.64453125\n            ],\n            [\n              333.791015625,\n              700.6863708496094\n            ],\n            [\n              85.68896484375,\n              700.6863708496094\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            627.64453125,\n            333.791015625,\n            700.6863708496094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"3\": \"/page/78/SectionHeader/9\",\n        \"4\": \"/page/79/SectionHeader/3\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/80/Page/171\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/80/PageHeader/0'></content-ref><content-ref src='/page/80/PageHeader/15'></content-ref><content-ref src='/page/80/Text/1'></content-ref><content-ref src='/page/80/Text/2'></content-ref><content-ref src='/page/80/Text/3'></content-ref><content-ref src='/page/80/SectionHeader/4'></content-ref><content-ref src='/page/80/Text/5'></content-ref><content-ref src='/page/80/ListGroup/170'></content-ref><content-ref src='/page/80/Text/9'></content-ref><content-ref src='/page/80/Text/10'></content-ref><content-ref src='/page/80/Text/11'></content-ref><content-ref src='/page/80/Text/12'></content-ref><content-ref src='/page/80/Code/13'></content-ref><content-ref src='/page/80/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/80/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.49609375,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.49609375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            60.95654296875,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              515.1796875,\n              60.8115234375\n            ],\n            [\n              525.33984375,\n              60.8115234375\n            ],\n            [\n              525.33984375,\n              70.189453125\n            ],\n            [\n              515.1796875,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            515.1796875,\n            60.8115234375,\n            525.33984375,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If we get past both checks, then we know that <i>n</i> is positive or zero, so we can prove that the recursion terminates.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              88.66259765625\n            ],\n            [\n              525.6028442382812,\n              88.66259765625\n            ],\n            [\n              525.6028442382812,\n              110.99188232421875\n            ],\n            [\n              128.49609375,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            88.66259765625,\n            525.6028442382812,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This program demonstrates a pattern sometimes called a <b>guardian</b>. The first two conditionals act as guardians, protecting the code that follows from values that might cause an error. The guardians make it possible to prove the correctness of the code.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              122.783203125\n            ],\n            [\n              525.638671875,\n              122.783203125\n            ],\n            [\n              525.638671875,\n              157.35186767578125\n            ],\n            [\n              129.392578125,\n              157.35186767578125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            122.783203125,\n            525.638671875,\n            157.35186767578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In Section <a href=\\\"#page-125-0\\\">11.3</a> we will see a more flexible alternative to printing an error message: raising an exception.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              169.0927734375\n            ],\n            [\n              525.6033935546875,\n              169.0927734375\n            ],\n            [\n              525.6033935546875,\n              191.51690673828125\n            ],\n            [\n              129.09375,\n              191.51690673828125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            169.0927734375,\n            525.6033935546875,\n            191.51690673828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/79/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-80-0\\\"></span><b>6.9 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              226.3597412109375\n            ],\n            [\n              236.373046875,\n              226.3597412109375\n            ],\n            [\n              236.373046875,\n              240.92578125\n            ],\n            [\n              128.27197265625,\n              240.92578125\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            226.3597412109375,\n            236.373046875,\n            240.92578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Breaking a large program into smaller functions creates natural checkpoints for debugging. If a function is not working, there are three possibilities to consider:</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              255.041015625\n            ],\n            [\n              525.6034545898438,\n              255.041015625\n            ],\n            [\n              525.6034545898438,\n              277.77484130859375\n            ],\n            [\n              129.392578125,\n              277.77484130859375\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            255.041015625,\n            525.6034545898438,\n            277.77484130859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/ListGroup/170\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/80/ListItem/6'></content-ref><content-ref src='/page/80/ListItem/7'></content-ref><content-ref src='/page/80/ListItem/8'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              143.48800659179688,\n              294.486328125\n            ],\n            [\n              525.6033935546875,\n              294.486328125\n            ],\n            [\n              525.6033935546875,\n              364.0867919921875\n            ],\n            [\n              143.48800659179688,\n              364.0867919921875\n            ]\n          ],\n          \"bbox\": [\n            143.48800659179688,\n            294.486328125,\n            525.6033935546875,\n            364.0867919921875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/80/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> There is something wrong with the arguments the function is getting; a precondition is violated.</li>\",\n              \"polygon\": [\n                [\n                  143.48800659179688,\n                  294.486328125\n                ],\n                [\n                  525.6033935546875,\n                  294.486328125\n                ],\n                [\n                  525.6033935546875,\n                  317.689453125\n                ],\n                [\n                  143.48800659179688,\n                  317.689453125\n                ]\n              ],\n              \"bbox\": [\n                143.48800659179688,\n                294.486328125,\n                525.6033935546875,\n                317.689453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"3\": \"/page/78/SectionHeader/9\",\n                \"4\": \"/page/80/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/80/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> There is something wrong with the function; a postcondition is violated.</li>\",\n              \"polygon\": [\n                [\n                  143.48800659179688,\n                  330.064453125\n                ],\n                [\n                  472.074462890625,\n                  330.064453125\n                ],\n                [\n                  472.074462890625,\n                  340.7947998046875\n                ],\n                [\n                  143.48800659179688,\n                  340.7947998046875\n                ]\n              ],\n              \"bbox\": [\n                143.48800659179688,\n                330.064453125,\n                472.074462890625,\n                340.7947998046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"3\": \"/page/78/SectionHeader/9\",\n                \"4\": \"/page/80/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/80/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> There is something wrong with the return value or the way it is being used.</li>\",\n              \"polygon\": [\n                [\n                  143.48800659179688,\n                  353.267578125\n                ],\n                [\n                  486.3309631347656,\n                  353.267578125\n                ],\n                [\n                  486.3309631347656,\n                  364.0867919921875\n                ],\n                [\n                  143.48800659179688,\n                  364.0867919921875\n                ]\n              ],\n              \"bbox\": [\n                143.48800659179688,\n                353.267578125,\n                486.3309631347656,\n                364.0867919921875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"3\": \"/page/78/SectionHeader/9\",\n                \"4\": \"/page/80/SectionHeader/4\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/80/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To rule out the first possibility, you can add a print statement at the beginning of the function and display the values of the parameters (and maybe their types). Or you can write code that checks the preconditions explicitly.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              380.53125\n            ],\n            [\n              525.9375,\n              380.53125\n            ],\n            [\n              525.9375,\n              416.109375\n            ],\n            [\n              128.9443359375,\n              416.109375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            380.53125,\n            525.9375,\n            416.109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the parameters look good, add a print statement before each return statement that displays the return value. If possible, check the result by hand. Consider calling the function with values that make it easy to check the result (as in Section <a href=\\\"#page-73-0\\\">6.2)</a>.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              427.32421875\n            ],\n            [\n              525.6033935546875,\n              427.32421875\n            ],\n            [\n              525.6033935546875,\n              462.3677978515625\n            ],\n            [\n              128.49609375,\n              462.3677978515625\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            427.32421875,\n            525.6033935546875,\n            462.3677978515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the function seems to be working, look at the function call to make sure the return value is being used correctly (or used at all!).</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              474.1171875\n            ],\n            [\n              525.9375,\n              474.1171875\n            ],\n            [\n              525.9375,\n              496.546875\n            ],\n            [\n              128.6455078125,\n              496.546875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            474.1171875,\n            525.9375,\n            496.546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Adding print statements at the beginning and end of a function can help make the flow of execution more visible. For example, here is a version of factorial with print statements:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              508.542236328125\n            ],\n            [\n              525.9375,\n              508.542236328125\n            ],\n            [\n              525.9375,\n              530.6988220214844\n            ],\n            [\n              128.6455078125,\n              530.6988220214844\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            508.542236328125,\n            525.9375,\n            530.6988220214844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def factorial(n):\\n    space = ' ' * (4 * n)\\n    print space, 'factorial', n\\n    if n == 0:\\n        print space, 'returning 1'\\n        return 1\\n    else:\\n        recurse = factorial(n-1)\\n        result = n * recurse\\n        print space, 'returning', result\\n        return result</pre>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              537.3553619384766\n            ],\n            [\n              338.77398681640625,\n              537.3553619384766\n            ],\n            [\n              338.77398681640625,\n              670.4922790527344\n            ],\n            [\n              129.60003662109375,\n              670.4922790527344\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            537.3553619384766,\n            338.77398681640625,\n            670.4922790527344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/80/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">space is a string of space characters that controls the indentation of the output. Here is the result of factorial(5) :</p>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              678.3046875\n            ],\n            [\n              525.599609375,\n              678.3046875\n            ],\n            [\n              525.599609375,\n              700.834846496582\n            ],\n            [\n              127.4501953125,\n              700.834846496582\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            678.3046875,\n            525.599609375,\n            700.834846496582\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"3\": \"/page/78/SectionHeader/9\",\n        \"4\": \"/page/80/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/81/Page/165\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/81/PageHeader/0'></content-ref><content-ref src='/page/81/PageHeader/14'></content-ref><content-ref src='/page/81/Code/1'></content-ref><content-ref src='/page/81/Text/2'></content-ref><content-ref src='/page/81/SectionHeader/3'></content-ref><content-ref src='/page/81/ListGroup/163'></content-ref><content-ref src='/page/81/SectionHeader/10'></content-ref><content-ref src='/page/81/Text/11'></content-ref><content-ref src='/page/81/Code/12'></content-ref><content-ref src='/page/81/Code/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/81/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.47314453125\n            ],\n            [\n              482.607421875,\n              60.47314453125\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.47314453125,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/81/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.94189453125,\n              59.748046875\n            ],\n            [\n              96.29736328125,\n              59.748046875\n            ],\n            [\n              96.29736328125,\n              70.0927734375\n            ],\n            [\n              84.94189453125,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            84.94189453125,\n            59.748046875,\n            96.29736328125,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/81/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>factorial 5\\n                 factorial 4\\n             factorial 3\\n        factorial 2\\n    factorial 1\\nfactorial 0\\nreturning 1\\n    returning 1\\n        returning 2\\n             returning 6\\n                 returning 24\\n                     returning 120</pre>\",\n          \"polygon\": [\n            [\n              91.21728515625,\n              85.89990234375\n            ],\n            [\n              270.73828125,\n              85.89990234375\n            ],\n            [\n              270.73828125,\n              238.60546875\n            ],\n            [\n              91.21728515625,\n              238.60546875\n            ]\n          ],\n          \"bbox\": [\n            91.21728515625,\n            85.89990234375,\n            270.73828125,\n            238.60546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/81/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are confused about the flow of execution, this kind of output can be helpful. It takes some time to develop effective scaffolding, but a little bit of scaffolding can save a lot of debugging.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              238.21875\n            ],\n            [\n              482.4032897949219,\n              238.21875\n            ],\n            [\n              482.4032897949219,\n              273.41015625\n            ],\n            [\n              86.2119140625,\n              273.41015625\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            238.21875,\n            482.4032897949219,\n            273.41015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"3\": \"/page/78/SectionHeader/9\",\n            \"4\": \"/page/80/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/81/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-81-0\\\"></span><b>6.10 Glossary</b></h2>\",\n          \"polygon\": [\n            [\n              86.39997863769531,\n              301.25390625\n            ],\n            [\n              184.02586364746094,\n              301.25390625\n            ],\n            [\n              184.02586364746094,\n              316.90087890625\n            ],\n            [\n              86.39997863769531,\n              316.90087890625\n            ]\n          ],\n          \"bbox\": [\n            86.39997863769531,\n            301.25390625,\n            184.02586364746094,\n            316.90087890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/81/ListGroup/163\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/81/ListItem/4'></content-ref><content-ref src='/page/81/ListItem/5'></content-ref><content-ref src='/page/81/ListItem/6'></content-ref><content-ref src='/page/81/ListItem/7'></content-ref><content-ref src='/page/81/ListItem/8'></content-ref><content-ref src='/page/81/ListItem/9'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              325.6171875\n            ],\n            [\n              482.90625,\n              325.6171875\n            ],\n            [\n              482.90625,\n              509.31787109375\n            ],\n            [\n              85.763671875,\n              509.31787109375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            325.6171875,\n            482.90625,\n            509.31787109375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/81/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>temporary variable:</b> A variable used to store an intermediate value in a complex calculation.</li>\",\n              \"polygon\": [\n                [\n                  86.39997863769531,\n                  325.6171875\n                ],\n                [\n                  482.4025573730469,\n                  325.6171875\n                ],\n                [\n                  482.4025573730469,\n                  348.0168151855469\n                ],\n                [\n                  86.39997863769531,\n                  348.0168151855469\n                ]\n              ],\n              \"bbox\": [\n                86.39997863769531,\n                325.6171875,\n                482.4025573730469,\n                348.0168151855469\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"2\": \"/page/81/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/81/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>dead code:</b> Part of a program that can never be executed, often because it appears after a return statement.</li>\",\n              \"polygon\": [\n                [\n                  86.361328125,\n                  357.71484375\n                ],\n                [\n                  482.90625,\n                  357.71484375\n                ],\n                [\n                  482.90625,\n                  380.2768249511719\n                ],\n                [\n                  86.361328125,\n                  380.2768249511719\n                ]\n              ],\n              \"bbox\": [\n                86.361328125,\n                357.71484375,\n                482.90625,\n                380.2768249511719\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"2\": \"/page/81/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/81/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">None<b>:</b> A special value returned by functions that have no return statement or a return statement without an argument.</li>\",\n              \"polygon\": [\n                [\n                  86.0625,\n                  389.619140625\n                ],\n                [\n                  482.3979187011719,\n                  389.619140625\n                ],\n                [\n                  482.3979187011719,\n                  412.5368347167969\n                ],\n                [\n                  86.0625,\n                  412.5368347167969\n                ]\n              ],\n              \"bbox\": [\n                86.0625,\n                389.619140625,\n                482.3979187011719,\n                412.5368347167969\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"2\": \"/page/81/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/81/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>incremental development:</b> A program development plan intended to avoid debugging by adding and testing only a small amount of code at a time.</li>\",\n              \"polygon\": [\n                [\n                  85.9130859375,\n                  421.5234375\n                ],\n                [\n                  482.4027099609375,\n                  421.5234375\n                ],\n                [\n                  482.4027099609375,\n                  444.7968444824219\n                ],\n                [\n                  85.9130859375,\n                  444.7968444824219\n                ]\n              ],\n              \"bbox\": [\n                85.9130859375,\n                421.5234375,\n                482.4027099609375,\n                444.7968444824219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"2\": \"/page/81/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/81/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>scaffolding:</b> Code that is used during program development but is not part of the final version.</li>\",\n              \"polygon\": [\n                [\n                  85.763671875,\n                  454.0078125\n                ],\n                [\n                  482.40289306640625,\n                  454.0078125\n                ],\n                [\n                  482.40289306640625,\n                  477.0568542480469\n                ],\n                [\n                  85.763671875,\n                  477.0568542480469\n                ]\n              ],\n              \"bbox\": [\n                85.763671875,\n                454.0078125,\n                482.40289306640625,\n                477.0568542480469\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"2\": \"/page/81/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/81/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>guardian:</b> A programming pattern that uses a conditional statement to check for and handle circumstances that might cause an error.</li>\",\n              \"polygon\": [\n                [\n                  86.0625,\n                  486.4921875\n                ],\n                [\n                  482.4032287597656,\n                  486.4921875\n                ],\n                [\n                  482.4032287597656,\n                  509.31787109375\n                ],\n                [\n                  86.0625,\n                  509.31787109375\n                ]\n              ],\n              \"bbox\": [\n                86.0625,\n                486.4921875,\n                482.4032287597656,\n                509.31787109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"2\": \"/page/81/SectionHeader/3\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/81/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-81-1\\\"></span><b>6.11 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              538.3125\n            ],\n            [\n              185.60397338867188,\n              538.3125\n            ],\n            [\n              185.60397338867188,\n              552.8439178466797\n            ],\n            [\n              85.9130859375,\n              552.8439178466797\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            538.3125,\n            185.60397338867188,\n            552.8439178466797\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/81/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 6.4.</b> <i>Draw a stack diagram for the following program. What does the program print?</i> <i>Solution:</i> <a href=\\\"http://thinkpython.com/code/stack_diagram.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/stack_diagram.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/stack_diagram.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/stack_diagram.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/stack_diagram.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/stack_diagram.py\\\">stack_</a> <a href=\\\"http://thinkpython.com/code/stack_diagram.py\\\">diagram.</a> <a href=\\\"http://thinkpython.com/code/stack_diagram.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              564.22265625\n            ],\n            [\n              482.3963317871094,\n              564.22265625\n            ],\n            [\n              482.3963317871094,\n              587.0581817626953\n            ],\n            [\n              86.0625,\n              587.0581817626953\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            564.22265625,\n            482.3963317871094,\n            587.0581817626953\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/81/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def b(z):\\n    prod = a(z, z)\\n    print z, prod\\n    return prod\\ndef a(x, y):</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              592.06640625\n            ],\n            [\n              180.54110717773438,\n              592.06640625\n            ],\n            [\n              180.54110717773438,\n              664.1023330688477\n            ],\n            [\n              85.3154296875,\n              664.1023330688477\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            592.06640625,\n            180.54110717773438,\n            664.1023330688477\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/81/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>x = x + 1\\nreturn x * y</pre>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              658.96875\n            ],\n            [\n              170.0803680419922,\n              658.96875\n            ],\n            [\n              170.0803680419922,\n              689.90625\n            ],\n            [\n              85.68896484375,\n              689.90625\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            658.96875,\n            170.0803680419922,\n            689.90625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"2\": \"/page/81/SectionHeader/3\",\n        \"4\": \"/page/81/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/82/Page/367\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/82/PageHeader/0'></content-ref><content-ref src='/page/82/PageHeader/16'></content-ref><content-ref src='/page/82/Code/1'></content-ref><content-ref src='/page/82/Equation/2'></content-ref><content-ref src='/page/82/Text/3'></content-ref><content-ref src='/page/82/Text/4'></content-ref><content-ref src='/page/82/Text/5'></content-ref><content-ref src='/page/82/Code/6'></content-ref><content-ref src='/page/82/Code/7'></content-ref><content-ref src='/page/82/Code/362'></content-ref><content-ref src='/page/82/Text/9'></content-ref><content-ref src='/page/82/ListGroup/363'></content-ref><content-ref src='/page/82/Text/12'></content-ref><content-ref src='/page/82/Text/13'></content-ref><content-ref src='/page/82/Text/14'></content-ref><content-ref src='/page/82/TextInlineMath/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/82/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              127.37548828125,\n              60.908203125\n            ],\n            [\n              525.6033935546875,\n              60.908203125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              127.37548828125,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            127.37548828125,\n            60.908203125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              515.1796875,\n              61.294921875\n            ],\n            [\n              525.33984375,\n              61.294921875\n            ],\n            [\n              525.33984375,\n              70.6728515625\n            ],\n            [\n              515.1796875,\n              70.6728515625\n            ]\n          ],\n          \"bbox\": [\n            515.1796875,\n            61.294921875,\n            525.33984375,\n            70.6728515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def c(x, y, z):\\n    total = x + y + z\\n    square = b(total)**2\\n    return square\\nx = 1\\ny = x + 1\\nprint c(x, y+3, x+y)\\nExercise 6.5. The Ackermann function, A(m, n), is defined:</pre>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              87.3984375\n            ],\n            [\n              379.810546875,\n              87.3984375\n            ],\n            [\n              379.810546875,\n              196.3529052734375\n            ],\n            [\n              128.57080078125,\n              196.3529052734375\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            87.3984375,\n            379.810546875,\n            196.3529052734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/Equation/2\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<span id=\\\"page-82-1\\\"></span><p block-type=\\\"Equation\\\"><math display=\\\"block\\\">A(m,n) = \\\\begin{cases} n+1 &amp; \\\\text{if } m = 0\\\\\\\\ A(m-1, 1) &amp; \\\\text{if } m &gt; 0 \\\\text{ and } n = 0\\\\\\\\ A(m-1, A(m, n-1)) &amp; \\\\text{if } m &gt; 0 \\\\text{ and } n &gt; 0 \\\\end{cases}</math></p>\",\n          \"polygon\": [\n            [\n              194.23828125,\n              224.29632568359375\n            ],\n            [\n              440.3678283691406,\n              224.29632568359375\n            ],\n            [\n              440.3678283691406,\n              267.135986328125\n            ],\n            [\n              194.23828125,\n              267.135986328125\n            ]\n          ],\n          \"bbox\": [\n            194.23828125,\n            224.29632568359375,\n            440.3678283691406,\n            267.135986328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>See</i> <a href=\\\"http://en.wikipedia.org/wiki/Ackermann_function\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/Ackermann_function\\\">//</a> <a href=\\\"http://en.wikipedia.org/wiki/Ackermann_function\\\">en.</a> <a href=\\\"http://en.wikipedia.org/wiki/Ackermann_function\\\">wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Ackermann_function\\\">org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Ackermann_function\\\">wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Ackermann_function\\\">Ackermann_</a> <a href=\\\"http://en.wikipedia.org/wiki/Ackermann_function\\\">function</a> <i>. Write a function named</i> ack <i>that evaluates Ackermann's function. Use your function to evaluate</i> ack(3, 4)<i>, which should be</i> <i>125. What happens for larger values of</i> m <i>and</i> n<i>? Solution:</i> <a href=\\\"http://thinkpython.com/code/ackermann.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/ackermann.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/ackermann.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/ackermann.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/ackermann.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/ackermann.py\\\">ackermann.</a> <a href=\\\"http://thinkpython.com/code/ackermann.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              278.7479248046875\n            ],\n            [\n              525.6039428710938,\n              278.7479248046875\n            ],\n            [\n              525.6039428710938,\n              325.3742370605469\n            ],\n            [\n              128.0478515625,\n              325.3742370605469\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            278.7479248046875,\n            525.6039428710938,\n            325.3742370605469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-82-0\\\"></span><b>Exercise 6.6.</b> <i>A palindrome is a word that is spelled the same backward and forward, like \\\"noon\\\"</i> <i>and \\\"redivider\\\". Recursively, a word is a palindrome if the first and last letters are the same and the</i> <i>middle is a palindrome.</i></p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              327.357421875\n            ],\n            [\n              525.6033325195312,\n              327.357421875\n            ],\n            [\n              525.6033325195312,\n              361.9572448730469\n            ],\n            [\n              129.2431640625,\n              361.9572448730469\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            327.357421875,\n            525.6033325195312,\n            361.9572448730469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The following are functions that take a string argument and return the first, last, and middle letters:</i></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              371.056640625\n            ],\n            [\n              525.6033325195312,\n              371.056640625\n            ],\n            [\n              525.6033325195312,\n              381.1552429199219\n            ],\n            [\n              129.392578125,\n              381.1552429199219\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            371.056640625,\n            525.6033325195312,\n            381.1552429199219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def first(word):\\n    return word[0]</pre>\",\n          \"polygon\": [\n            [\n              129.59988403320312,\n              385.55859375\n            ],\n            [\n              223.75096130371094,\n              385.55859375\n            ],\n            [\n              223.75096130371094,\n              412.62890625\n            ],\n            [\n              129.59988403320312,\n              412.62890625\n            ]\n          ],\n          \"bbox\": [\n            129.59988403320312,\n            385.55859375,\n            223.75096130371094,\n            412.62890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def last(word):\\n    return word[-1]</pre>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              423.0257873535156\n            ],\n            [\n              228.9813232421875,\n              423.0257873535156\n            ],\n            [\n              228.9813232421875,\n              445.182373046875\n            ],\n            [\n              128.0478515625,\n              445.182373046875\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            423.0257873535156,\n            228.9813232421875,\n            445.182373046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/Code/362\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def middle(word):\\n    return word[1:-1]</pre>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              459.6087951660156\n            ],\n            [\n              239.44204711914062,\n              459.6087951660156\n            ],\n            [\n              239.44204711914062,\n              481.765380859375\n            ],\n            [\n              128.197265625,\n              481.765380859375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            459.6087951660156,\n            239.44204711914062,\n            481.765380859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>We'll see how they work in Chapter </i><i><a href=\\\"#page-92-0\\\">8.</a></i></p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              486.87890625\n            ],\n            [\n              281.5992736816406,\n              486.87890625\n            ],\n            [\n              281.5992736816406,\n              496.96923828125\n            ],\n            [\n              129.09375,\n              496.96923828125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            486.87890625,\n            281.5992736816406,\n            496.96923828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/ListGroup/363\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/82/ListItem/10'></content-ref><content-ref src='/page/82/ListItem/11'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.150390625,\n              508.53515625\n            ],\n            [\n              525.9375,\n              508.53515625\n            ],\n            [\n              525.9375,\n              586.7042541503906\n            ],\n            [\n              140.150390625,\n              586.7042541503906\n            ]\n          ],\n          \"bbox\": [\n            140.150390625,\n            508.53515625,\n            525.9375,\n            586.7042541503906\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/82/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Type these functions into a file named</i> palindrome.py <i>and test them out. What happens if</i> <i>you call</i> middle <i>with a string with two letters? One letter? What about the empty string,</i> <i>which is written</i> '' <i>and contains no letters?</i></li>\",\n              \"polygon\": [\n                [\n                  140.8974609375,\n                  508.53515625\n                ],\n                [\n                  525.9375,\n                  508.53515625\n                ],\n                [\n                  525.9375,\n                  542.9522399902344\n                ],\n                [\n                  140.8974609375,\n                  542.9522399902344\n                ]\n              ],\n              \"bbox\": [\n                140.8974609375,\n                508.53515625,\n                525.9375,\n                542.9522399902344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"2\": \"/page/81/SectionHeader/3\",\n                \"4\": \"/page/81/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/82/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Write a function called</i> is_palindrome <i>that takes a string argument and returns</i> True <i>if it</i> <i>is a palindrome and</i> False <i>otherwise. Remember that you can use the built-in function</i> len <i>to check the length of a string.</i></li>\",\n              \"polygon\": [\n                [\n                  140.150390625,\n                  551.84765625\n                ],\n                [\n                  525.638671875,\n                  551.84765625\n                ],\n                [\n                  525.638671875,\n                  586.7042541503906\n                ],\n                [\n                  140.150390625,\n                  586.7042541503906\n                ]\n              ],\n              \"bbox\": [\n                140.150390625,\n                551.84765625,\n                525.638671875,\n                586.7042541503906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/72/SectionHeader/1\",\n                \"2\": \"/page/81/SectionHeader/3\",\n                \"4\": \"/page/81/SectionHeader/10\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/82/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/palindrome_soln.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/palindrome_soln.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/palindrome_soln.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/palindrome_soln.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/palindrome_soln.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/palindrome_soln.py\\\">palindrome_</a> <a href=\\\"http://thinkpython.com/code/palindrome_soln.py\\\">soln.</a> <a href=\\\"http://thinkpython.com/code/palindrome_soln.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              129.5998992919922,\n              598.2549591064453\n            ],\n            [\n              426.3625793457031,\n              598.2549591064453\n            ],\n            [\n              426.3625793457031,\n              608.2982482910156\n            ],\n            [\n              129.5998992919922,\n              608.2982482910156\n            ]\n          ],\n          \"bbox\": [\n            129.5998992919922,\n            598.2549591064453,\n            426.3625793457031,\n            608.2982482910156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 6.7.</b> <i>A number, a, is a power of b if it is divisible by b and a</i>/<i>b is a power of b. Write a</i> <i>function called</i> is_power <i>that takes parameters</i> a <i>and</i> b <i>and returns</i> True <i>if</i> a <i>is a power of</i> b<i>. Note:</i> <i>you will have to think about the base case.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              609.85546875\n            ],\n            [\n              525.9375,\n              609.85546875\n            ],\n            [\n              525.9375,\n              644.8812561035156\n            ],\n            [\n              128.6455078125,\n              644.8812561035156\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            609.85546875,\n            525.9375,\n            644.8812561035156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 6.8.</b> <i>The greatest common divisor (GCD) of a and b is the largest number that divides</i> <i>both of them with no remainder.</i></p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              647.1136627197266\n            ],\n            [\n              525.9375,\n              647.1136627197266\n            ],\n            [\n              525.9375,\n              669.2702713012695\n            ],\n            [\n              128.0478515625,\n              669.2702713012695\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            647.1136627197266,\n            525.9375,\n            669.2702713012695\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/82/TextInlineMath/15\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\"><i>One way to find the GCD of two numbers is based on the observation that if r is the remainder when </i><i>a is divided by b, then gcd(a, b) = gcd(b, r). As a base case, we can use gcd(a, 0) = a. </i></p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              678.3046875\n            ],\n            [\n              525.603271484375,\n              678.3046875\n            ],\n            [\n              525.603271484375,\n              700.8349685668945\n            ],\n            [\n              127.8984375,\n              700.8349685668945\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            678.3046875,\n            525.603271484375,\n            700.8349685668945\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"2\": \"/page/81/SectionHeader/3\",\n        \"4\": \"/page/81/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/83/Page/28\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/83/PageHeader/0'></content-ref><content-ref src='/page/83/PageHeader/3'></content-ref><content-ref src='/page/83/Text/1'></content-ref><content-ref src='/page/83/Text/2'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/83/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.76318359375\n            ],\n            [\n              482.607421875,\n              60.76318359375\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.76318359375,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/83/PageHeader/3\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              61.14990234375\n            ],\n            [\n              97.2685546875,\n              61.14990234375\n            ],\n            [\n              97.2685546875,\n              70.81787109375\n            ],\n            [\n              85.9130859375,\n              70.81787109375\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            61.14990234375,\n            97.2685546875,\n            70.81787109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/83/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a function called</i> gcd <i>that takes parameters</i> a <i>and</i> b <i>and returns their greatest common divisor.</i></p>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              88.171875\n            ],\n            [\n              482.607421875,\n              88.171875\n            ],\n            [\n              482.607421875,\n              98.6483154296875\n            ],\n            [\n              84.8671875,\n              98.6483154296875\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            88.171875,\n            482.607421875,\n            98.6483154296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/83/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Credit: This exercise is based on an example from Abelson and Sussman's</i> Structure and Interpretation of Computer Programs<i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              108.5712890625\n            ],\n            [\n              482.4015197753906,\n              108.5712890625\n            ],\n            [\n              482.4015197753906,\n              131.12994384765625\n            ],\n            [\n              85.9130859375,\n              131.12994384765625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            108.5712890625,\n            482.4015197753906,\n            131.12994384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/81/SectionHeader/3\",\n            \"4\": \"/page/81/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/72/SectionHeader/1\",\n        \"2\": \"/page/81/SectionHeader/3\",\n        \"4\": \"/page/81/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/84/Page/165\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/84/SectionHeader/0'></content-ref><content-ref src='/page/84/SectionHeader/1'></content-ref><content-ref src='/page/84/SectionHeader/2'></content-ref><content-ref src='/page/84/Text/3'></content-ref><content-ref src='/page/84/TextInlineMath/4'></content-ref><content-ref src='/page/84/Text/5'></content-ref><content-ref src='/page/84/Text/6'></content-ref><content-ref src='/page/84/Text/7'></content-ref><content-ref src='/page/84/Text/8'></content-ref><content-ref src='/page/84/Text/9'></content-ref><content-ref src='/page/84/Text/10'></content-ref><content-ref src='/page/84/Text/11'></content-ref><content-ref src='/page/84/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/84/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-84-0\\\"></span><b>Chapter 7</b></h2>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              163.99639892578125\n            ],\n            [\n              221.73046875,\n              163.99639892578125\n            ],\n            [\n              221.73046875,\n              184.65887451171875\n            ],\n            [\n              128.794921875,\n              184.65887451171875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            163.99639892578125,\n            221.73046875,\n            184.65887451171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/72/SectionHeader/1\",\n            \"2\": \"/page/84/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Iteration</b></h1>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              219.22723388671875\n            ],\n            [\n              227.408203125,\n              219.22723388671875\n            ],\n            [\n              227.408203125,\n              244.0142822265625\n            ],\n            [\n              128.794921875,\n              244.0142822265625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            219.22723388671875,\n            227.408203125,\n            244.0142822265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-84-1\\\"></span><b>7.1 Multiple assignment</b></h4>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              292.77667236328125\n            ],\n            [\n              299.42578125,\n              292.77667236328125\n            ],\n            [\n              299.42578125,\n              307.1228942871094\n            ],\n            [\n              128.86962890625,\n              307.1228942871094\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            292.77667236328125,\n            299.42578125,\n            307.1228942871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As you may have discovered, it is legal to make more than one assignment to the same variable. A new assignment makes an existing variable refer to a new value (and stop referring to the old value).</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              319.3432312011719\n            ],\n            [\n              526.53515625,\n              319.3432312011719\n            ],\n            [\n              526.53515625,\n              353.84765625\n            ],\n            [\n              129.2431640625,\n              353.84765625\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            319.3432312011719,\n            526.53515625,\n            353.84765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/TextInlineMath/4\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">bruce = 5 print bruce, bruce = 7 print bruce</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              359.6236572265625\n            ],\n            [\n              193.341796875,\n              359.6236572265625\n            ],\n            [\n              193.341796875,\n              406.16925048828125\n            ],\n            [\n              128.57080078125,\n              406.16925048828125\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            359.6236572265625,\n            193.341796875,\n            406.16925048828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The output of this program is 5 7, because the first time bruce is printed, its value is 5, and the second time, its value is 7. The comma at the end of the first print statement suppresses the newline, which is why both outputs appear on the same line.</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              411.85546875\n            ],\n            [\n              525.9375,\n              411.85546875\n            ],\n            [\n              525.9375,\n              446.7478332519531\n            ],\n            [\n              129.60000610351562,\n              446.7478332519531\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            411.85546875,\n            525.9375,\n            446.7478332519531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-85-2\\\">7.1</a> shows what <b>multiple assignment</b> looks like in a state diagram.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              456.70111083984375\n            ],\n            [\n              453.1051940917969,\n              456.70111083984375\n            ],\n            [\n              453.1051940917969,\n              466.76953125\n            ],\n            [\n              128.9443359375,\n              466.76953125\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            456.70111083984375,\n            453.1051940917969,\n            466.76953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">With multiple assignment it is especially important to distinguish between an assignment operation and a statement of equality. Because Python uses the equal sign (=) for assignment, it is tempting to interpret a statement like a = b as a statement of equality. It is not!</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              476.81024169921875\n            ],\n            [\n              526.236328125,\n              476.81024169921875\n            ],\n            [\n              526.236328125,\n              511.1618347167969\n            ],\n            [\n              128.794921875,\n              511.1618347167969\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            476.81024169921875,\n            526.236328125,\n            511.1618347167969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">First, equality is a symmetric relation and assignment is not. For example, in mathematics, if <i>a</i> = 7 then 7 = <i>a</i>. But in Python, the statement a = 7 is legal and 7 = a is not.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              532.8984375\n            ],\n            [\n              525.9375,\n              532.8984375\n            ],\n            [\n              525.9375,\n              555.5628356933594\n            ],\n            [\n              128.3466796875,\n              555.5628356933594\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            532.8984375,\n            525.9375,\n            555.5628356933594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Furthermore, in mathematics, a statement of equality is either true or false, for all time. If <i>a</i> = <i>b</i> now, then <i>a</i> will always equal <i>b</i>. In Python, an assignment statement can make two variables equal, but they don't have to stay that way:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              565.3828125\n            ],\n            [\n              525.9375,\n              565.3828125\n            ],\n            [\n              525.9375,\n              599.9638366699219\n            ],\n            [\n              128.3466796875,\n              599.9638366699219\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            565.3828125,\n            525.9375,\n            599.9638366699219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">a = 5 b = a # a and b are now equal a = 3 # a and b are no longer equal</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              605.8926849365234\n            ],\n            [\n              329.30859375,\n              605.8926849365234\n            ],\n            [\n              329.30859375,\n              640.2432861328125\n            ],\n            [\n              128.6455078125,\n              640.2432861328125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            605.8926849365234,\n            329.30859375,\n            640.2432861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The third line changes the value of a but does not change the value of b, so they are no longer equal.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              646.20703125\n            ],\n            [\n              525.9375,\n              646.20703125\n            ],\n            [\n              525.9375,\n              668.63671875\n            ],\n            [\n              129.2431640625,\n              668.63671875\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            646.20703125,\n            525.9375,\n            668.63671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/84/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Although multiple assignment is frequently helpful, you should use it with caution. If the values of variables change frequently, it can make the code difficult to read and debug.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              678.3046875\n            ],\n            [\n              525.6033935546875,\n              678.3046875\n            ],\n            [\n              525.6033935546875,\n              700.834846496582\n            ],\n            [\n              128.6455078125,\n              700.834846496582\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            678.3046875,\n            525.6033935546875,\n            700.834846496582\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/84/SectionHeader/1\",\n        \"4\": \"/page/84/SectionHeader/2\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/85/Page/225\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/85/PageHeader/0'></content-ref><content-ref src='/page/85/PageHeader/20'></content-ref><content-ref src='/page/85/FigureGroup/219'></content-ref><content-ref src='/page/85/SectionHeader/3'></content-ref><content-ref src='/page/85/Text/4'></content-ref><content-ref src='/page/85/TextInlineMath/5'></content-ref><content-ref src='/page/85/Text/6'></content-ref><content-ref src='/page/85/Text/7'></content-ref><content-ref src='/page/85/Code/8'></content-ref><content-ref src='/page/85/Text/9'></content-ref><content-ref src='/page/85/TextInlineMath/10'></content-ref><content-ref src='/page/85/Text/11'></content-ref><content-ref src='/page/85/SectionHeader/12'></content-ref><content-ref src='/page/85/Text/13'></content-ref><content-ref src='/page/85/Text/14'></content-ref><content-ref src='/page/85/Text/15'></content-ref><content-ref src='/page/85/Code/16'></content-ref><content-ref src='/page/85/Text/17'></content-ref><content-ref src='/page/85/Text/18'></content-ref><content-ref src='/page/85/ListItem/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/85/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.521484375\n            ],\n            [\n              482.607421875,\n              60.521484375\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.521484375,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.49365234375,\n              60.521484375\n            ],\n            [\n              95.25146484375,\n              60.521484375\n            ],\n            [\n              95.25146484375,\n              70.4794921875\n            ],\n            [\n              84.49365234375,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            84.49365234375,\n            60.521484375,\n            95.25146484375,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/FigureGroup/219\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/85/Figure/1'></content-ref><content-ref src='/page/85/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              227.8564453125,\n              87.3017578125\n            ],\n            [\n              340.75885009765625,\n              87.3017578125\n            ],\n            [\n              340.75885009765625,\n              144.3529052734375\n            ],\n            [\n              227.8564453125,\n              144.3529052734375\n            ]\n          ],\n          \"bbox\": [\n            227.8564453125,\n            87.3017578125,\n            340.75885009765625,\n            144.3529052734375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/85/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"<span id=\\\"page-85-2\\\"></span>\",\n              \"polygon\": [\n                [\n                  251.7626953125,\n                  87.3017578125\n                ],\n                [\n                  311.9765625,\n                  87.3017578125\n                ],\n                [\n                  311.9765625,\n                  118.6259765625\n                ],\n                [\n                  251.7626953125,\n                  118.6259765625\n                ]\n              ],\n              \"bbox\": [\n                251.7626953125,\n                87.3017578125,\n                311.9765625,\n                118.6259765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/84/SectionHeader/1\",\n                \"4\": \"/page/84/SectionHeader/2\"\n              },\n              \"images\": {\n                \"/page/85/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/85/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p>Figure 7.1: State diagram.</p>\",\n              \"polygon\": [\n                [\n                  227.8564453125,\n                  133.8046875\n                ],\n                [\n                  340.75885009765625,\n                  133.8046875\n                ],\n                [\n                  340.75885009765625,\n                  144.3529052734375\n                ],\n                [\n                  227.8564453125,\n                  144.3529052734375\n                ]\n              ],\n              \"bbox\": [\n                227.8564453125,\n                133.8046875,\n                340.75885009765625,\n                144.3529052734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/84/SectionHeader/1\",\n                \"4\": \"/page/84/SectionHeader/2\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"4\": \"/page/84/SectionHeader/2\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/85/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-85-0\\\"></span><b>7.2 Updating variables</b></h3>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              163.2919921875\n            ],\n            [\n              244.19384765625,\n              163.2919921875\n            ],\n            [\n              244.19384765625,\n              178.75494384765625\n            ],\n            [\n              85.68896484375,\n              178.75494384765625\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            163.2919921875,\n            244.19384765625,\n            178.75494384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"3\": \"/page/85/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One of the most common forms of multiple assignment is an <b>update</b>, where the new value of the variable depends on the old.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              190.5556640625\n            ],\n            [\n              482.4026794433594,\n              190.5556640625\n            ],\n            [\n              482.4026794433594,\n              213.58892822265625\n            ],\n            [\n              85.6142578125,\n              213.58892822265625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            190.5556640625,\n            482.4026794433594,\n            213.58892822265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"3\": \"/page/85/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/TextInlineMath/5\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">x = x + 1</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              219.462890625\n            ],\n            [\n              123.01251220703125,\n              219.462890625\n            ],\n            [\n              123.01251220703125,\n              229.84234619140625\n            ],\n            [\n              85.83837890625,\n              229.84234619140625\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            219.462890625,\n            123.01251220703125,\n            229.84234619140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"3\": \"/page/85/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This means \\\"get the current value of x, add one, and then update x with the new value.\\\"</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              235.705078125\n            ],\n            [\n              474.5679016113281,\n              235.705078125\n            ],\n            [\n              474.5679016113281,\n              246.3939208984375\n            ],\n            [\n              85.6142578125,\n              246.3939208984375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            235.705078125,\n            474.5679016113281,\n            246.3939208984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"3\": \"/page/85/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you try to update a variable that doesn't exist, you get an error, because Python evaluates the right side before it assigns a value to x:</p>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              256.201171875\n            ],\n            [\n              483.50390625,\n              256.201171875\n            ],\n            [\n              483.50390625,\n              278.96295166015625\n            ],\n            [\n              84.8671875,\n              278.96295166015625\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            256.201171875,\n            483.50390625,\n            278.96295166015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"3\": \"/page/85/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; x = x+1\\nNameError: name 'x' is not defined</pre>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              285.2537841796875\n            ],\n            [\n              264.2071533203125,\n              285.2537841796875\n            ],\n            [\n              264.2071533203125,\n              307.4103698730469\n            ],\n            [\n              85.0166015625,\n              307.4103698730469\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            285.2537841796875,\n            264.2071533203125,\n            307.4103698730469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"3\": \"/page/85/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Before you can update a variable, you have to <b>initialize</b> it, usually with a simple assignment:</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              312.46875\n            ],\n            [\n              482.3976135253906,\n              312.46875\n            ],\n            [\n              482.3976135253906,\n              336.15692138671875\n            ],\n            [\n              85.0166015625,\n              336.15692138671875\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            312.46875,\n            482.3976135253906,\n            336.15692138671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"3\": \"/page/85/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/TextInlineMath/10\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; x = 0 &gt;&gt;&gt; x = x + 1</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              340.3125\n            ],\n            [\n              143.96044921875,\n              340.3125\n            ],\n            [\n              143.96044921875,\n              364.67578125\n            ],\n            [\n              85.68896484375,\n              364.67578125\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            340.3125,\n            143.96044921875,\n            364.67578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"3\": \"/page/85/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Updating a variable by adding 1 is called an <b>increment</b>; subtracting 1 is called a <b>decrement</b>.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              369.896484375\n            ],\n            [\n              482.39971923828125,\n              369.896484375\n            ],\n            [\n              482.39971923828125,\n              381.1568908691406\n            ],\n            [\n              85.3154296875,\n              381.1568908691406\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            369.896484375,\n            482.39971923828125,\n            381.1568908691406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"3\": \"/page/85/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-85-1\\\"></span><b>7.3 The</b> while <b>statement</b></h2>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              421.3271179199219\n            ],\n            [\n              251.61328125,\n              421.3271179199219\n            ],\n            [\n              251.61328125,\n              437.7499694824219\n            ],\n            [\n              85.83837890625,\n              437.7499694824219\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            421.3271179199219,\n            251.61328125,\n            437.7499694824219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Computers are often used to automate repetitive tasks. Repeating identical or similar tasks without making errors is something that computers do well and people do poorly.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              449.3671875\n            ],\n            [\n              482.4033508300781,\n              449.3671875\n            ],\n            [\n              482.4033508300781,\n              472.58392333984375\n            ],\n            [\n              85.9130859375,\n              472.58392333984375\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            449.3671875,\n            482.4033508300781,\n            472.58392333984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We have seen two programs, countdown and print_n, that use recursion to perform repetition, which is also called <b>iteration</b>. Because iteration is so common, Python provides several language features to make it easier. One is the for statement we saw in Section <a href=\\\"#page-53-0\\\">4.2.</a> We'll get back to that later.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              482.84576416015625\n            ],\n            [\n              482.90625,\n              482.84576416015625\n            ],\n            [\n              482.90625,\n              529.5409240722656\n            ],\n            [\n              85.763671875,\n              529.5409240722656\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            482.84576416015625,\n            482.90625,\n            529.5409240722656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Another is the while statement. Here is a version of countdown that uses a while statement:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              539.0859375\n            ],\n            [\n              482.607421875,\n              539.0859375\n            ],\n            [\n              482.607421875,\n              549.9149169921875\n            ],\n            [\n              85.763671875,\n              549.9149169921875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            539.0859375,\n            482.607421875,\n            549.9149169921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def countdown(n):\\n    while n &gt; 0:\\n        print n\\n        n = n-1\\n    print 'Blastoff!'</pre>\",\n          \"polygon\": [\n            [\n              86.40008544921875,\n              554.5546875\n            ],\n            [\n              196.2124481201172,\n              554.5546875\n            ],\n            [\n              196.2124481201172,\n              616.4296875\n            ],\n            [\n              86.40008544921875,\n              616.4296875\n            ]\n          ],\n          \"bbox\": [\n            86.40008544921875,\n            554.5546875,\n            196.2124481201172,\n            616.4296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can almost read the while statement as if it were English. It means, \\\"While n is greater than 0, display the value of n and then reduce the value of n by 1. When you get to 0, display the word Blastoff!\\\"</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              620.68359375\n            ],\n            [\n              482.40118408203125,\n              620.68359375\n            ],\n            [\n              482.40118408203125,\n              655.8859252929688\n            ],\n            [\n              85.9130859375,\n              655.8859252929688\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            620.68359375,\n            482.40118408203125,\n            655.8859252929688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">More formally, here is the flow of execution for a while statement:</p>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              665.9296875\n            ],\n            [\n              376.88201904296875,\n              665.9296875\n            ],\n            [\n              376.88201904296875,\n              676.2609329223633\n            ],\n            [\n              85.53955078125,\n              676.2609329223633\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            665.9296875,\n            376.88201904296875,\n            676.2609329223633\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/85/ListItem/19\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">1. Evaluate the condition, yielding True or False.</li>\",\n          \"polygon\": [\n            [\n              96.521484375,\n              690.29296875\n            ],\n            [\n              318.5557556152344,\n              690.29296875\n            ],\n            [\n              318.5557556152344,\n              700.8349304199219\n            ],\n            [\n              96.521484375,\n              700.8349304199219\n            ]\n          ],\n          \"bbox\": [\n            96.521484375,\n            690.29296875,\n            318.5557556152344,\n            700.8349304199219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/84/SectionHeader/1\",\n        \"2\": \"/page/85/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/86/Page/234\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/86/PageHeader/0'></content-ref><content-ref src='/page/86/PageHeader/16'></content-ref><content-ref src='/page/86/ListGroup/233'></content-ref><content-ref src='/page/86/Text/3'></content-ref><content-ref src='/page/86/Text/4'></content-ref><content-ref src='/page/86/Text/5'></content-ref><content-ref src='/page/86/Code/6'></content-ref><content-ref src='/page/86/Code/7'></content-ref><content-ref src='/page/86/Text/8'></content-ref><content-ref src='/page/86/Text/9'></content-ref><content-ref src='/page/86/Text/10'></content-ref><content-ref src='/page/86/Text/11'></content-ref><content-ref src='/page/86/Text/12'></content-ref><content-ref src='/page/86/SectionHeader/13'></content-ref><content-ref src='/page/86/Text/14'></content-ref><content-ref src='/page/86/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/86/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              61.11871337890625\n            ],\n            [\n              525.5996704101562,\n              61.11871337890625\n            ],\n            [\n              525.5996704101562,\n              71.13372802734375\n            ],\n            [\n              128.42138671875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            61.11871337890625,\n            525.5996704101562,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              61.1982421875\n            ],\n            [\n              525.041015625,\n              61.1982421875\n            ],\n            [\n              525.041015625,\n              70.2861328125\n            ],\n            [\n              514.880859375,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            61.1982421875,\n            525.041015625,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/ListGroup/233\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/86/ListItem/1'></content-ref><content-ref src='/page/86/ListItem/2'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.8974609375,\n              88.51025390625\n            ],\n            [\n              525.5966796875,\n              88.51025390625\n            ],\n            [\n              525.5966796875,\n              133.4578857421875\n            ],\n            [\n              140.8974609375,\n              133.4578857421875\n            ]\n          ],\n          \"bbox\": [\n            140.8974609375,\n            88.51025390625,\n            525.5966796875,\n            133.4578857421875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/86/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">2. If the condition is false, exit the while statement and continue execution at the next statement.</li>\",\n              \"polygon\": [\n                [\n                  140.8974609375,\n                  88.51025390625\n                ],\n                [\n                  525.5966796875,\n                  88.51025390625\n                ],\n                [\n                  525.5966796875,\n                  110.99188232421875\n                ],\n                [\n                  140.8974609375,\n                  110.99188232421875\n                ]\n              ],\n              \"bbox\": [\n                140.8974609375,\n                88.51025390625,\n                525.5966796875,\n                110.99188232421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/84/SectionHeader/1\",\n                \"2\": \"/page/85/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/86/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">3. If the condition is true, execute the body and then go back to step 1.</li>\",\n              \"polygon\": [\n                [\n                  141.1962890625,\n                  122.4931640625\n                ],\n                [\n                  451.2322998046875,\n                  122.4931640625\n                ],\n                [\n                  451.2322998046875,\n                  133.4578857421875\n                ],\n                [\n                  141.1962890625,\n                  133.4578857421875\n                ]\n              ],\n              \"bbox\": [\n                141.1962890625,\n                122.4931640625,\n                451.2322998046875,\n                133.4578857421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/84/SectionHeader/1\",\n                \"2\": \"/page/85/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/86/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This type of flow is called a <b>loop</b> because the third step loops back around to the top.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              149.3701171875\n            ],\n            [\n              502.62890625,\n              149.3701171875\n            ],\n            [\n              502.62890625,\n              160.0938720703125\n            ],\n            [\n              129.2431640625,\n              160.0938720703125\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            149.3701171875,\n            502.62890625,\n            160.0938720703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The body of the loop should change the value of one or more variables so that eventually the condition becomes false and the loop terminates. Otherwise the loop will repeat forever, which is called an <b>infinite loop</b>. An endless source of amusement for computer scientists is the observation that the directions on shampoo, \\\"Lather, rinse, repeat,\\\" are an infinite loop.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              171.4130859375\n            ],\n            [\n              525.6033935546875,\n              171.4130859375\n            ],\n            [\n              525.6033935546875,\n              230.35784912109375\n            ],\n            [\n              128.9443359375,\n              230.35784912109375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            171.4130859375,\n            525.6033935546875,\n            230.35784912109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In the case of countdown, we can prove that the loop terminates because we know that the value of n is finite, and we can see that the value of n gets smaller each time through the loop, so eventually we have to get to 0. In other cases, it is not so easy to tell:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              241.732666015625\n            ],\n            [\n              525.59765625,\n              241.732666015625\n            ],\n            [\n              525.59765625,\n              276.23284912109375\n            ],\n            [\n              128.3466796875,\n              276.23284912109375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            241.732666015625,\n            525.59765625,\n            276.23284912109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def sequence(n):</pre>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              283.63665771484375\n            ],\n            [\n              213.36328125,\n              283.63665771484375\n            ],\n            [\n              213.36328125,\n              293.5992431640625\n            ],\n            [\n              127.8984375,\n              293.5992431640625\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            283.63665771484375,\n            213.36328125,\n            293.5992431640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>while n != 1:\\n   print n,\\n   if n%2 == 0: # n is even\\n      n = n/2\\n   else: # n is odd\\n      n = n*3+1</pre>\",\n          \"polygon\": [\n            [\n              147.99462890625,\n              295.259765625\n            ],\n            [\n              335.583984375,\n              295.259765625\n            ],\n            [\n              335.583984375,\n              366.7652587890625\n            ],\n            [\n              147.99462890625,\n              366.7652587890625\n            ]\n          ],\n          \"bbox\": [\n            147.99462890625,\n            295.259765625,\n            335.583984375,\n            366.7652587890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The condition for this loop is n != 1, so the loop will continue until n is 1, which makes the condition false.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              374.150390625\n            ],\n            [\n              525.5995483398438,\n              374.150390625\n            ],\n            [\n              525.5995483398438,\n              396.62384033203125\n            ],\n            [\n              129.392578125,\n              396.62384033203125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            374.150390625,\n            525.5995483398438,\n            396.62384033203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Each time through the loop, the program outputs the value of n and then checks whether it is even or odd. If it is even, n is divided by 2. If it is odd, the value of n is replaced with n*3+1. For example, if the argument passed to sequence is 3, the resulting sequence is 3, 10, 5, 16, 8, 4, 2, 1.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              407.98828125\n            ],\n            [\n              525.6026611328125,\n              407.98828125\n            ],\n            [\n              525.6026611328125,\n              454.69384765625\n            ],\n            [\n              128.6455078125,\n              454.69384765625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            407.98828125,\n            525.6026611328125,\n            454.69384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since n sometimes increases and sometimes decreases, there is no obvious proof that n will ever reach 1, or that the program terminates. For some particular values of n, we can prove termination. For example, if the starting value is a power of two, then the value of n will be even each time through the loop until it reaches 1. The previous example ends with such a sequence, starting with 16.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              465.609375\n            ],\n            [\n              525.9375,\n              465.609375\n            ],\n            [\n              525.9375,\n              524.9578552246094\n            ],\n            [\n              128.6455078125,\n              524.9578552246094\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            465.609375,\n            525.9375,\n            524.9578552246094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The hard question is whether we can prove that this program terminates for <i>all posi</i><i>tive values</i> of n. So far, no one has been able to prove it <i>or</i> disprove it! (See <a href=\\\"http://en.wikipedia.org/wiki/Collatz_conjecture\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/Collatz_conjecture\\\">//en.wikipedia.org/wiki/Collatz_conjecture</a>.)</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              535.60546875\n            ],\n            [\n              525.6057739257812,\n              535.60546875\n            ],\n            [\n              525.6057739257812,\n              570.8328552246094\n            ],\n            [\n              129.09375,\n              570.8328552246094\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            535.60546875,\n            525.6057739257812,\n            570.8328552246094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 7.1.</b> <i>Rewrite the function</i> print_n <i>from Section </i><i><a href=\\\"#page-65-0\\\">5.8</a></i><i> using iteration instead of recursion.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              572.73046875\n            ],\n            [\n              524.7421875,\n              572.73046875\n            ],\n            [\n              524.7421875,\n              582.9297485351562\n            ],\n            [\n              128.6455078125,\n              582.9297485351562\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            572.73046875,\n            524.7421875,\n            582.9297485351562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/85/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-86-0\\\"></span><b>7.4</b> break</h2>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              614.340087890625\n            ],\n            [\n              198.31837463378906,\n              614.340087890625\n            ],\n            [\n              198.31837463378906,\n              630.7629089355469\n            ],\n            [\n              127.7490234375,\n              630.7629089355469\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            614.340087890625,\n            198.31837463378906,\n            630.7629089355469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Sometimes you don't know it's time to end a loop until you get half way through the body. In that case you can use the break statement to jump out of the loop.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              644.9972534179688\n            ],\n            [\n              525.6034545898438,\n              644.9972534179688\n            ],\n            [\n              525.6034545898438,\n              667.1538619995117\n            ],\n            [\n              128.49609375,\n              667.1538619995117\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            644.9972534179688,\n            525.6034545898438,\n            667.1538619995117\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/86/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, suppose you want to take input from the user until they type done. You could write:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              678.5287017822266\n            ],\n            [\n              525.6047973632812,\n              678.5287017822266\n            ],\n            [\n              525.6047973632812,\n              700.8348617553711\n            ],\n            [\n              128.3466796875,\n              700.8348617553711\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            678.5287017822266,\n            525.6047973632812,\n            700.8348617553711\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/84/SectionHeader/1\",\n        \"2\": \"/page/86/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/87/Page/185\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/87/PageHeader/0'></content-ref><content-ref src='/page/87/PageHeader/16'></content-ref><content-ref src='/page/87/Code/1'></content-ref><content-ref src='/page/87/Text/2'></content-ref><content-ref src='/page/87/Text/3'></content-ref><content-ref src='/page/87/Text/4'></content-ref><content-ref src='/page/87/Code/5'></content-ref><content-ref src='/page/87/Text/6'></content-ref><content-ref src='/page/87/SectionHeader/7'></content-ref><content-ref src='/page/87/Text/8'></content-ref><content-ref src='/page/87/Text/9'></content-ref><content-ref src='/page/87/Equation/10'></content-ref><content-ref src='/page/87/Text/11'></content-ref><content-ref src='/page/87/Code/12'></content-ref><content-ref src='/page/87/Text/13'></content-ref><content-ref src='/page/87/Code/14'></content-ref><content-ref src='/page/87/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/87/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.8115234375\n            ],\n            [\n              482.4033508300781,\n              60.8115234375\n            ],\n            [\n              482.4033508300781,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.8115234375,\n            482.4033508300781,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              60.908203125\n            ],\n            [\n              96.89501953125,\n              60.908203125\n            ],\n            [\n              96.89501953125,\n              70.2861328125\n            ],\n            [\n              85.39013671875,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            60.908203125,\n            96.89501953125,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>while True:\\n    line = raw_input('&gt; ')\\n    if line == 'done':\\n        break\\n    print line</pre>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              88.55859375\n            ],\n            [\n              223.0751953125,\n              88.55859375\n            ],\n            [\n              223.0751953125,\n              152.947265625\n            ],\n            [\n              86.2119140625,\n              152.947265625\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            88.55859375,\n            223.0751953125,\n            152.947265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">print 'Done!'</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              161.26171875\n            ],\n            [\n              154.37936401367188,\n              161.26171875\n            ],\n            [\n              154.37936401367188,\n              171.81427001953125\n            ],\n            [\n              86.2119140625,\n              171.81427001953125\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            161.26171875,\n            154.37936401367188,\n            171.81427001953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The loop condition is True, which is always true, so the loop runs until it hits the break statement.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              179.05078125\n            ],\n            [\n              482.4029235839844,\n              179.05078125\n            ],\n            [\n              482.4029235839844,\n              201.81085205078125\n            ],\n            [\n              85.3154296875,\n              201.81085205078125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            179.05078125,\n            482.4029235839844,\n            201.81085205078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Each time through, it prompts the user with an angle bracket. If the user types done, the break statement exits the loop. Otherwise the program echoes whatever the user types and goes back to the top of the loop. Here's a sample run:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              212.501953125\n            ],\n            [\n              482.40045166015625,\n              212.501953125\n            ],\n            [\n              482.40045166015625,\n              247.8248291015625\n            ],\n            [\n              85.46484375,\n              247.8248291015625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            212.501953125,\n            482.40045166015625,\n            247.8248291015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt; not done\\nnot done\\n&gt; done\\nDone!</pre>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              255.36566162109375\n            ],\n            [\n              138.70364379882812,\n              255.36566162109375\n            ],\n            [\n              138.70364379882812,\n              301.9112243652344\n            ],\n            [\n              85.98779296875,\n              301.9112243652344\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            255.36566162109375,\n            138.70364379882812,\n            301.9112243652344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This way of writing while loops is common because you can check the condition anywhere in the loop (not just at the top) and you can express the stop condition affirmatively (\\\"stop when this happens\\\") rather than negatively (\\\"keep going until that happens.\\\").</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              309.375\n            ],\n            [\n              482.40447998046875,\n              309.375\n            ],\n            [\n              482.40447998046875,\n              344.1796875\n            ],\n            [\n              86.0625,\n              344.1796875\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            309.375,\n            482.40447998046875,\n            344.1796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-87-0\\\"></span><b>7.5 Square roots</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              377.9056091308594\n            ],\n            [\n              201.16961669921875,\n              377.9056091308594\n            ],\n            [\n              201.16961669921875,\n              392.2518310546875\n            ],\n            [\n              85.763671875,\n              392.2518310546875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            377.9056091308594,\n            201.16961669921875,\n            392.2518310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Loops are often used in programs that compute numerical results by starting with an approximate answer and iteratively improving it.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              406.44140625\n            ],\n            [\n              482.40338134765625,\n              406.44140625\n            ],\n            [\n              482.40338134765625,\n              428.83575439453125\n            ],\n            [\n              86.2119140625,\n              428.83575439453125\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            406.44140625,\n            482.40338134765625,\n            428.83575439453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, one way of computing square roots is Newton's method. Suppose that you want to know the square root of <i>a</i>. If you start with almost any estimate, <i>x</i>, you can compute a better estimate with the following formula:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              440.0859375\n            ],\n            [\n              482.4034423828125,\n              440.0859375\n            ],\n            [\n              482.4034423828125,\n              474.8497619628906\n            ],\n            [\n              86.0625,\n              474.8497619628906\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            440.0859375,\n            482.4034423828125,\n            474.8497619628906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Equation/10\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">y = \\\\frac{x + a/x}{2}</math></p>\",\n          \"polygon\": [\n            [\n              255.498046875,\n              493.453125\n            ],\n            [\n              310.86724853515625,\n              493.453125\n            ],\n            [\n              310.86724853515625,\n              518.306884765625\n            ],\n            [\n              255.498046875,\n              518.306884765625\n            ]\n          ],\n          \"bbox\": [\n            255.498046875,\n            493.453125,\n            310.86724853515625,\n            518.306884765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, if <i>a</i> is 4 and <i>x</i> is 3:</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              522.0703125\n            ],\n            [\n              223.673828125,\n              522.0703125\n            ],\n            [\n              223.673828125,\n              532.6678771972656\n            ],\n            [\n              86.361328125,\n              532.6678771972656\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            522.0703125,\n            223.673828125,\n            532.6678771972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; a = 4.0\\n&gt;&gt;&gt; x = 3.0\\n&gt;&gt;&gt; y = (x + a/x) / 2\\n&gt;&gt;&gt; print y\\n2.16666666667</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              539.859375\n            ],\n            [\n              196.23760986328125,\n              539.859375\n            ],\n            [\n              196.23760986328125,\n              598.9493408203125\n            ],\n            [\n              85.46484375,\n              598.9493408203125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            539.859375,\n            196.23760986328125,\n            598.9493408203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Which is closer to the correct answer (√ 4 = 2). If we repeat the process with the new estimate, it gets even closer:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              597.00830078125\n            ],\n            [\n              482.4031677246094,\n              597.00830078125\n            ],\n            [\n              482.4031677246094,\n              628.9459075927734\n            ],\n            [\n              85.46484375,\n              628.9459075927734\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            597.00830078125,\n            482.4031677246094,\n            628.9459075927734\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; x = y\\n&gt;&gt;&gt; y = (x + a/x) / 2\\n&gt;&gt;&gt; print y\\n2.00641025641</pre>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              636.4867553710938\n            ],\n            [\n              197.525390625,\n              636.4867553710938\n            ],\n            [\n              197.525390625,\n              683.032356262207\n            ],\n            [\n              85.166015625,\n              683.032356262207\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            636.4867553710938,\n            197.525390625,\n            683.032356262207\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/87/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">After a few more updates, the estimate is almost exact:</p>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              690.6796875\n            ],\n            [\n              326.3092956542969,\n              690.6796875\n            ],\n            [\n              326.3092956542969,\n              700.8349227905273\n            ],\n            [\n              86.13720703125,\n              700.8349227905273\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            690.6796875,\n            326.3092956542969,\n            700.8349227905273\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/84/SectionHeader/1\",\n        \"2\": \"/page/86/SectionHeader/13\",\n        \"4\": \"/page/87/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/88/Page/204\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/88/PageHeader/0'></content-ref><content-ref src='/page/88/PageHeader/13'></content-ref><content-ref src='/page/88/Code/1'></content-ref><content-ref src='/page/88/Text/2'></content-ref><content-ref src='/page/88/Code/3'></content-ref><content-ref src='/page/88/Text/4'></content-ref><content-ref src='/page/88/Code/5'></content-ref><content-ref src='/page/88/Text/6'></content-ref><content-ref src='/page/88/Text/7'></content-ref><content-ref src='/page/88/Code/8'></content-ref><content-ref src='/page/88/Text/9'></content-ref><content-ref src='/page/88/SectionHeader/10'></content-ref><content-ref src='/page/88/Text/11'></content-ref><content-ref src='/page/88/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/88/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              60.8115234375\n            ],\n            [\n              525.6033935546875,\n              60.8115234375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.0478515625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            60.8115234375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/PageHeader/13\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              60.76318359375\n            ],\n            [\n              525.638671875,\n              60.76318359375\n            ],\n            [\n              525.638671875,\n              70.43115234375\n            ],\n            [\n              514.880859375,\n              70.43115234375\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            60.76318359375,\n            525.638671875,\n            70.43115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; x = y\\n&gt;&gt;&gt; y = (x + a/x) / 2\\n&gt;&gt;&gt; print y\\n2.00001024003\\n&gt;&gt;&gt; x = y\\n&gt;&gt;&gt; y = (x + a/x) / 2\\n&gt;&gt;&gt; print y\\n2.00000000003</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              87.8818359375\n            ],\n            [\n              242.2001953125,\n              87.8818359375\n            ],\n            [\n              242.2001953125,\n              184.00830078125\n            ],\n            [\n              129.60000610351562,\n              184.00830078125\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            87.8818359375,\n            242.2001953125,\n            184.00830078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In general we don't know ahead of time how many steps it takes to get to the right answer, but we know when we get there because the estimate stops changing:</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              189.9755859375\n            ],\n            [\n              525.6033325195312,\n              189.9755859375\n            ],\n            [\n              525.6033325195312,\n              212.78289794921875\n            ],\n            [\n              128.9443359375,\n              212.78289794921875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            189.9755859375,\n            525.6033325195312,\n            212.78289794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; x = y\\n&gt;&gt;&gt; y = (x + a/x) / 2\\n&gt;&gt;&gt; print y\\n2.0\\n&gt;&gt;&gt; x = y\\n&gt;&gt;&gt; y = (x + a/x) / 2\\n&gt;&gt;&gt; print y\\n2.0</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              219.10174560546875\n            ],\n            [\n              242.947265625,\n              219.10174560546875\n            ],\n            [\n              242.947265625,\n              314.42431640625\n            ],\n            [\n              129.60000610351562,\n              314.42431640625\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            219.10174560546875,\n            242.947265625,\n            314.42431640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When y == x, we can stop. Here is a loop that starts with an initial estimate, x, and improves it until it stops changing:</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              320.8927307128906\n            ],\n            [\n              525.603759765625,\n              320.8927307128906\n            ],\n            [\n              525.603759765625,\n              343.40625\n            ],\n            [\n              129.392578125,\n              343.40625\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            320.8927307128906,\n            525.603759765625,\n            343.40625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>while True:\\n    print x\\n    y = (x + a/x) / 2\\n    if y == x:\\n        break\\n    x = y</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              349.5177307128906\n            ],\n            [\n              239.4322052001953,\n              349.5177307128906\n            ],\n            [\n              239.4322052001953,\n              420.45233154296875\n            ],\n            [\n              129.60000610351562,\n              420.45233154296875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            349.5177307128906,\n            239.4322052001953,\n            420.45233154296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For most values of a this works fine, but in general it is dangerous to test float equality. Floating-point values are only approximately right: most rational numbers, like 1/3, and irrational numbers, like √ 2, can't be represented exactly with a float.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              426.1640625\n            ],\n            [\n              525.603271484375,\n              426.1640625\n            ],\n            [\n              525.603271484375,\n              462.451904296875\n            ],\n            [\n              128.6455078125,\n              462.451904296875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            426.1640625,\n            525.603271484375,\n            462.451904296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Rather than checking whether x and y are exactly equal, it is safer to use the built-in function abs to compute the absolute value, or magnitude, of the difference between them:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              472.18359375\n            ],\n            [\n              525.5997924804688,\n              472.18359375\n            ],\n            [\n              525.5997924804688,\n              495.04888916015625\n            ],\n            [\n              128.6455078125,\n              495.04888916015625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            472.18359375,\n            525.5997924804688,\n            495.04888916015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if abs(y-x) &lt; epsilon:\\n    break</pre>\",\n          \"polygon\": [\n            [\n              147.1728515625,\n              501.36773681640625\n            ],\n            [\n              265.5939636230469,\n              501.36773681640625\n            ],\n            [\n              265.5939636230469,\n              523.5243225097656\n            ],\n            [\n              147.1728515625,\n              523.5243225097656\n            ]\n          ],\n          \"bbox\": [\n            147.1728515625,\n            501.36773681640625,\n            265.5939636230469,\n            523.5243225097656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Where epsilon has a value like 0.0000001 that determines how close is close enough. <b>Exercise 7.2.</b> <i>Encapsulate this loop in a function called</i> square_root <i>that takes</i> a <i>as a parameter,</i> <i>chooses a reasonable value of</i> x<i>, and returns an estimate of the square root of</i> a<i>.</i></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              529.41796875\n            ],\n            [\n              525.6019897460938,\n              529.41796875\n            ],\n            [\n              525.6019897460938,\n              564.3443450927734\n            ],\n            [\n              128.49609375,\n              564.3443450927734\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            529.41796875,\n            525.6019897460938,\n            564.3443450927734\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"4\": \"/page/87/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-88-0\\\"></span><b>7.6 Algorithms</b></h3>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              594.0\n            ],\n            [\n              236.7947998046875,\n              594.0\n            ],\n            [\n              236.7947998046875,\n              608.9769439697266\n            ],\n            [\n              128.12255859375,\n              608.9769439697266\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            594.0,\n            236.7947998046875,\n            608.9769439697266\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"3\": \"/page/88/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Newton's method is an example of an <b>algorithm</b>: it is a mechanical process for solving a category of problems (in this case, computing square roots).</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              621.0703125\n            ],\n            [\n              525.5950927734375,\n              621.0703125\n            ],\n            [\n              525.5950927734375,\n              643.8498992919922\n            ],\n            [\n              128.49609375,\n              643.8498992919922\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            621.0703125,\n            525.5950927734375,\n            643.8498992919922\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"3\": \"/page/88/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/88/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is not easy to define an algorithm. It might help to start with something that is not an algorithm. When you learned to multiply single-digit numbers, you probably memorized the multiplication table. In effect, you memorized 100 specific solutions. That kind of knowledge is not algorithmic.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              653.5546875\n            ],\n            [\n              525.9375,\n              653.5546875\n            ],\n            [\n              525.9375,\n              700.8348999023438\n            ],\n            [\n              128.6455078125,\n              700.8348999023438\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            653.5546875,\n            525.9375,\n            700.8348999023438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"3\": \"/page/88/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/84/SectionHeader/1\",\n        \"2\": \"/page/86/SectionHeader/13\",\n        \"3\": \"/page/88/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/89/Page/152\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/89/PageHeader/0'></content-ref><content-ref src='/page/89/PageHeader/15'></content-ref><content-ref src='/page/89/Text/1'></content-ref><content-ref src='/page/89/Text/2'></content-ref><content-ref src='/page/89/Text/3'></content-ref><content-ref src='/page/89/Text/4'></content-ref><content-ref src='/page/89/Text/5'></content-ref><content-ref src='/page/89/SectionHeader/6'></content-ref><content-ref src='/page/89/Text/7'></content-ref><content-ref src='/page/89/Text/8'></content-ref><content-ref src='/page/89/Text/9'></content-ref><content-ref src='/page/89/Text/10'></content-ref><content-ref src='/page/89/Text/11'></content-ref><content-ref src='/page/89/Text/12'></content-ref><content-ref src='/page/89/SectionHeader/13'></content-ref><content-ref src='/page/89/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/89/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.2314453125\n            ],\n            [\n              482.90625,\n              60.2314453125\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.2314453125,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"3\": \"/page/88/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              59.98974609375\n            ],\n            [\n              97.79150390625,\n              59.98974609375\n            ],\n            [\n              97.79150390625,\n              70.33447265625\n            ],\n            [\n              85.39013671875,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            59.98974609375,\n            97.79150390625,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"3\": \"/page/88/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But if you were \\\"lazy,\\\" you probably cheated by learning a few tricks. For example, to find the product of <i>n</i> and 9, you can write <i>n</i> − 1 as the first digit and 10 − <i>n</i> as the second digit. This trick is a general solution for multiplying any single-digit number by 9. That's an algorithm!</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              87.3984375\n            ],\n            [\n              483.50390625,\n              87.3984375\n            ],\n            [\n              483.50390625,\n              135.38092041015625\n            ],\n            [\n              85.3154296875,\n              135.38092041015625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            87.3984375,\n            483.50390625,\n            135.38092041015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"3\": \"/page/88/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Similarly, the techniques you learned for addition with carrying, subtraction with borrowing, and long division are all algorithms. One of the characteristics of algorithms is that they do not require any intelligence to carry out. They are mechanical processes in which each step follows from the last according to a simple set of rules.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              144.439453125\n            ],\n            [\n              483.50390625,\n              144.439453125\n            ],\n            [\n              483.50390625,\n              192.05889892578125\n            ],\n            [\n              85.46484375,\n              192.05889892578125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            144.439453125,\n            483.50390625,\n            192.05889892578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"3\": \"/page/88/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In my opinion, it is embarrassing that humans spend so much time in school learning to execute algorithms that, quite literally, require no intelligence.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              200.70703125\n            ],\n            [\n              483.50390625,\n              200.70703125\n            ],\n            [\n              483.50390625,\n              224.34783935546875\n            ],\n            [\n              85.6142578125,\n              224.34783935546875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            200.70703125,\n            483.50390625,\n            224.34783935546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"3\": \"/page/88/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">On the other hand, the process of designing algorithms is interesting, intellectually challenging, and a central part of what we call programming.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              232.611328125\n            ],\n            [\n              482.90625,\n              232.611328125\n            ],\n            [\n              482.90625,\n              256.6378173828125\n            ],\n            [\n              85.6142578125,\n              256.6378173828125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            232.611328125,\n            482.90625,\n            256.6378173828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"3\": \"/page/88/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Some of the things that people do naturally, without difficulty or conscious thought, are the hardest to express algorithmically. Understanding natural language is a good example. We all do it, but so far no one has been able to explain <i>how</i> we do it, at least not in the form of an algorithm.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              265.2890625\n            ],\n            [\n              483.50390625,\n              265.2890625\n            ],\n            [\n              483.50390625,\n              313.62890625\n            ],\n            [\n              85.763671875,\n              313.62890625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            265.2890625,\n            483.50390625,\n            313.62890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/86/SectionHeader/13\",\n            \"3\": \"/page/88/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-89-0\\\"></span><b>7.7 Debugging</b></h2>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              340.892578125\n            ],\n            [\n              193.341796875,\n              340.892578125\n            ],\n            [\n              193.341796875,\n              357.908203125\n            ],\n            [\n              85.46484375,\n              357.908203125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            340.892578125,\n            193.341796875,\n            357.908203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As you start writing bigger programs, you might find yourself spending more time debugging. More code means more chances to make an error and more place for bugs to hide.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              368.15625\n            ],\n            [\n              482.90625,\n              368.15625\n            ],\n            [\n              482.90625,\n              391.74609375\n            ],\n            [\n              85.46484375,\n              391.74609375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            368.15625,\n            482.90625,\n            391.74609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One way to cut your debugging time is \\\"debugging by bisection.\\\" For example, if there are 100 lines in your program and you check them one at a time, it would take 100 steps.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              411.46875\n            ],\n            [\n              484.1015625,\n              411.46875\n            ],\n            [\n              484.1015625,\n              435.8877868652344\n            ],\n            [\n              85.6142578125,\n              435.8877868652344\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            411.46875,\n            484.1015625,\n            435.8877868652344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Instead, try to break the problem in half. Look at the middle of the program, or near it, for an intermediate value you can check. Add a print statement (or something else that has a verifiable effect) and run the program.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              444.33984375\n            ],\n            [\n              483.50390625,\n              444.33984375\n            ],\n            [\n              483.50390625,\n              480.3717956542969\n            ],\n            [\n              85.9130859375,\n              480.3717956542969\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            444.33984375,\n            483.50390625,\n            480.3717956542969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the mid-point check is incorrect, there must be a problem in the first half of the program. If it is correct, the problem is in the second half.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              489.19921875\n            ],\n            [\n              483.205078125,\n              489.19921875\n            ],\n            [\n              483.205078125,\n              512.6607971191406\n            ],\n            [\n              85.763671875,\n              512.6607971191406\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            489.19921875,\n            483.205078125,\n            512.6607971191406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Every time you perform a check like this, you halve the number of lines you have to search. After six steps (which is fewer than 100), you would be down to one or two lines of code, at least in theory.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              521.296875\n            ],\n            [\n              483.50390625,\n              521.296875\n            ],\n            [\n              483.50390625,\n              557.1448059082031\n            ],\n            [\n              85.9130859375,\n              557.1448059082031\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            521.296875,\n            483.50390625,\n            557.1448059082031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In practice it is not always clear what the \\\"middle of the program\\\" is and not always possible to check it. It doesn't make sense to count lines and find the exact midpoint. Instead, think about places in the program where there might be errors and places where it is easy to put a check. Then choose a spot where you think the chances are about the same that the bug is before or after the check.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              565.76953125\n            ],\n            [\n              484.1015625,\n              565.76953125\n            ],\n            [\n              484.1015625,\n              626.0168151855469\n            ],\n            [\n              85.9130859375,\n              626.0168151855469\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            565.76953125,\n            484.1015625,\n            626.0168151855469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-89-1\\\"></span><b>7.8 Glossary</b></h2>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              653.94140625\n            ],\n            [\n              177.205078125,\n              653.94140625\n            ],\n            [\n              177.205078125,\n              669.645866394043\n            ],\n            [\n              85.6142578125,\n              669.645866394043\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            653.94140625,\n            177.205078125,\n            669.645866394043\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/89/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>multiple assignment:</b> Making more than one assignment to the same variable during the execution of a program.</p>\",\n          \"polygon\": [\n            [\n              86.39991760253906,\n              676.7578125\n            ],\n            [\n              483.802734375,\n              676.7578125\n            ],\n            [\n              483.802734375,\n              700.8348236083984\n            ],\n            [\n              86.39991760253906,\n              700.8348236083984\n            ]\n          ],\n          \"bbox\": [\n            86.39991760253906,\n            676.7578125,\n            483.802734375,\n            700.8348236083984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/84/SectionHeader/1\",\n        \"2\": \"/page/89/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/90/Page/237\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/90/PageHeader/0'></content-ref><content-ref src='/page/90/PageHeader/17'></content-ref><content-ref src='/page/90/Text/1'></content-ref><content-ref src='/page/90/Text/2'></content-ref><content-ref src='/page/90/Text/3'></content-ref><content-ref src='/page/90/Text/4'></content-ref><content-ref src='/page/90/Text/5'></content-ref><content-ref src='/page/90/Text/6'></content-ref><content-ref src='/page/90/SectionHeader/7'></content-ref><content-ref src='/page/90/Text/8'></content-ref><content-ref src='/page/90/Code/9'></content-ref><content-ref src='/page/90/Text/10'></content-ref><content-ref src='/page/90/Text/11'></content-ref><content-ref src='/page/90/Code/12'></content-ref><content-ref src='/page/90/Text/13'></content-ref><content-ref src='/page/90/Text/14'></content-ref><content-ref src='/page/90/Text/15'></content-ref><content-ref src='/page/90/Equation/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/90/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.9443359375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.283203125,\n              61.1015625\n            ],\n            [\n              525.041015625,\n              61.1015625\n            ],\n            [\n              525.041015625,\n              70.0927734375\n            ],\n            [\n              514.283203125,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            514.283203125,\n            61.1015625,\n            525.041015625,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>update:</b> An assignment where the new value of the variable depends on the old.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              88.55859375\n            ],\n            [\n              484.69921875,\n              88.55859375\n            ],\n            [\n              484.69921875,\n              98.79791259765625\n            ],\n            [\n              129.2431640625,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            88.55859375,\n            484.69921875,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>initialization:</b> An assignment that gives an initial value to a variable that will be updated.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              108.16015625\n            ],\n            [\n              525.6035766601562,\n              108.16015625\n            ],\n            [\n              525.6035766601562,\n              118.21990966796875\n            ],\n            [\n              128.9443359375,\n              118.21990966796875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            108.16015625,\n            525.6035766601562,\n            118.21990966796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>increment:</b> An update that increases the value of a variable (often by one).</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              139.21875\n            ],\n            [\n              458.365234375,\n              139.21875\n            ],\n            [\n              458.365234375,\n              149.83489990234375\n            ],\n            [\n              128.6455078125,\n              149.83489990234375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            139.21875,\n            458.365234375,\n            149.83489990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>decrement:</b> An update that decreases the value of a variable.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              159.134765625\n            ],\n            [\n              398.63671875,\n              159.134765625\n            ],\n            [\n              398.63671875,\n              169.25689697265625\n            ],\n            [\n              128.794921875,\n              169.25689697265625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            159.134765625,\n            398.63671875,\n            169.25689697265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>iteration:</b> Repeated execution of a set of statements using either a recursive function call or a loop.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              178.3740234375\n            ],\n            [\n              525.6027221679688,\n              178.3740234375\n            ],\n            [\n              525.6027221679688,\n              200.87286376953125\n            ],\n            [\n              128.3466796875,\n              200.87286376953125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            178.3740234375,\n            525.6027221679688,\n            200.87286376953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>infinite loop:</b> A loop in which the terminating condition is never satisfied.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              209.794921875\n            ],\n            [\n              457.8475646972656,\n              209.794921875\n            ],\n            [\n              457.8475646972656,\n              220.29486083984375\n            ],\n            [\n              128.9443359375,\n              220.29486083984375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            209.794921875,\n            457.8475646972656,\n            220.29486083984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-90-0\\\"></span><b>7.9 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              248.41668701171875\n            ],\n            [\n              221.73046875,\n              248.41668701171875\n            ],\n            [\n              221.73046875,\n              262.76287841796875\n            ],\n            [\n              128.49609375,\n              262.76287841796875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            248.41668701171875,\n            221.73046875,\n            262.76287841796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 7.3.</b> <i>To test the square root algorithm in this chapter, you could compare it with</i> math.sqrt<i>. Write a function named</i> test_square_root <i>that prints a table like this:</i></p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              273.796875\n            ],\n            [\n              525.5997314453125,\n              273.796875\n            ],\n            [\n              525.5997314453125,\n              296.2452392578125\n            ],\n            [\n              129.2431640625,\n              296.2452392578125\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            273.796875,\n            525.5997314453125,\n            296.2452392578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>1.0 1.0 1.0 0.0\\n2.0 1.41421356237 1.41421356237 2.22044604925e-16\\n3.0 1.73205080757 1.73205080757 0.0\\n4.0 2.0 2.0 0.0\\n5.0 2.2360679775 2.2360679775 0.0\\n6.0 2.44948974278 2.44948974278 0.0\\n7.0 2.64575131106 2.64575131106 0.0\\n8.0 2.82842712475 2.82842712475 4.4408920985e-16\\n9.0 3.0 3.0 0.0</pre>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              301.5776672363281\n            ],\n            [\n              386.982421875,\n              301.5776672363281\n            ],\n            [\n              386.982421875,\n              409.0942687988281\n            ],\n            [\n              128.72021484375,\n              409.0942687988281\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            301.5776672363281,\n            386.982421875,\n            409.0942687988281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The first column is a number, a; the second column is the square root of a computed with the function</i> <i>from Section </i><i><a href=\\\"#page-87-0\\\">7.5;</a></i><i> the third column is the square root computed by</i> math.sqrt<i>; the fourth column is</i> <i>the absolute value of the difference between the two estimates.</i></p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              426.55078125\n            ],\n            [\n              525.6033935546875,\n              426.55078125\n            ],\n            [\n              525.6033935546875,\n              460.9491271972656\n            ],\n            [\n              128.197265625,\n              460.9491271972656\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            426.55078125,\n            525.6033935546875,\n            460.9491271972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 7.4.</b> <i>The built-in function</i> eval <i>takes a string and evaluates it using the Python inter</i><i>preter. For example:</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              462.90234375\n            ],\n            [\n              525.5967407226562,\n              462.90234375\n            ],\n            [\n              525.5967407226562,\n              485.338134765625\n            ],\n            [\n              128.6455078125,\n              485.338134765625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            462.90234375,\n            525.5967407226562,\n            485.338134765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; eval('1 + 2 * 3')\\n7\\n&gt;&gt;&gt; import math\\n&gt;&gt;&gt; eval('math.sqrt(5)')\\n2.2360679774997898\\n&gt;&gt;&gt; eval('type(math.pi)')\\n&lt;type 'float'&gt;</pre>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              490.6936950683594\n            ],\n            [\n              260.32940673828125,\n              490.6936950683594\n            ],\n            [\n              260.32940673828125,\n              573.8223114013672\n            ],\n            [\n              128.794921875,\n              573.8223114013672\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            490.6936950683594,\n            260.32940673828125,\n            573.8223114013672\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a function called</i> eval_loop <i>that iteratively prompts the user, takes the resulting input and</i> <i>evaluates it using</i> eval<i>, and prints the result.</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              578.91796875\n            ],\n            [\n              525.5994873046875,\n              578.91796875\n            ],\n            [\n              525.5994873046875,\n              601.3113098144531\n            ],\n            [\n              128.794921875,\n              601.3113098144531\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            578.91796875,\n            525.5994873046875,\n            601.3113098144531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>It should continue until the user enters</i> 'done'<i>, and then return the value of the last expression it</i> <i>evaluated.</i></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              610.5925598144531\n            ],\n            [\n              525.6043090820312,\n              610.5925598144531\n            ],\n            [\n              525.6043090820312,\n              632.7491607666016\n            ],\n            [\n              128.9443359375,\n              632.7491607666016\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            610.5925598144531,\n            525.6043090820312,\n            632.7491607666016\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 7.5.</b> <i>The mathematician Srinivasa Ramanujan found an infinite series that can be used to</i> <i>generate a numerical approximation of</i> 1/<i>π</i><i>:</i></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              634.9805603027344\n            ],\n            [\n              525.5974731445312,\n              634.9805603027344\n            ],\n            [\n              525.5974731445312,\n              658.1195068359375\n            ],\n            [\n              128.49609375,\n              658.1195068359375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            634.9805603027344,\n            525.5974731445312,\n            658.1195068359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/90/Equation/16\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">\\\\frac{1}{\\\\pi} = \\\\frac{2\\\\sqrt{2}}{9801} \\\\sum_{k=0}^{\\\\infty} \\\\frac{(4k)!(1103 + 26390k)}{(k!)^4 396^{4k}}</math></p>\",\n          \"polygon\": [\n            [\n              248.923828125,\n              667.3243103027344\n            ],\n            [\n              404.6767883300781,\n              667.3243103027344\n            ],\n            [\n              404.6767883300781,\n              704.0226211547852\n            ],\n            [\n              248.923828125,\n              704.0226211547852\n            ]\n          ],\n          \"bbox\": [\n            248.923828125,\n            667.3243103027344,\n            404.6767883300781,\n            704.0226211547852\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/84/SectionHeader/1\",\n        \"2\": \"/page/89/SectionHeader/13\",\n        \"4\": \"/page/90/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/91/Page/52\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/91/PageHeader/0'></content-ref><content-ref src='/page/91/PageHeader/3'></content-ref><content-ref src='/page/91/Text/1'></content-ref><content-ref src='/page/91/Text/2'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/91/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.8115234375\n            ],\n            [\n              482.90625,\n              60.8115234375\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.8115234375,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/91/PageHeader/3\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              60.6181640625\n            ],\n            [\n              96.9697265625,\n              60.6181640625\n            ],\n            [\n              96.9697265625,\n              70.3828125\n            ],\n            [\n              85.6142578125,\n              70.3828125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            60.6181640625,\n            96.9697265625,\n            70.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/91/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a function called</i> estimate_pi <i>that uses this formula to compute and return an estimate of</i> <i>π</i><i>. It should use a</i> while <i>loop to compute terms of the summation until the last term is smaller than</i> 1e-15 <i>(which is Python notation for</i> 10−15<i>). You can check the result by comparing it to</i> math.pi<i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              88.55859375\n            ],\n            [\n              482.90625,\n              88.55859375\n            ],\n            [\n              482.90625,\n              123.1868896484375\n            ],\n            [\n              85.166015625,\n              123.1868896484375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            88.55859375,\n            482.90625,\n            123.1868896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/91/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/pi.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/pi.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/pi.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/pi.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/pi.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/pi.py\\\">pi.</a> <a href=\\\"http://thinkpython.com/code/pi.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              132.5478515625\n            ],\n            [\n              313.45562744140625,\n              132.5478515625\n            ],\n            [\n              313.45562744140625,\n              143.15118408203125\n            ],\n            [\n              86.2119140625,\n              143.15118408203125\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            132.5478515625,\n            313.45562744140625,\n            143.15118408203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/89/SectionHeader/13\",\n            \"4\": \"/page/90/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/84/SectionHeader/1\",\n        \"2\": \"/page/89/SectionHeader/13\",\n        \"4\": \"/page/90/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/92/Page/140\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/92/SectionHeader/0'></content-ref><content-ref src='/page/92/SectionHeader/1'></content-ref><content-ref src='/page/92/SectionHeader/2'></content-ref><content-ref src='/page/92/Text/3'></content-ref><content-ref src='/page/92/Text/4'></content-ref><content-ref src='/page/92/Text/5'></content-ref><content-ref src='/page/92/Text/6'></content-ref><content-ref src='/page/92/Text/7'></content-ref><content-ref src='/page/92/Text/8'></content-ref><content-ref src='/page/92/Text/9'></content-ref><content-ref src='/page/92/Code/10'></content-ref><content-ref src='/page/92/Text/11'></content-ref><content-ref src='/page/92/Text/12'></content-ref><content-ref src='/page/92/Code/13'></content-ref><content-ref src='/page/92/SectionHeader/14'></content-ref><content-ref src='/page/92/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/92/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-92-0\\\"></span><b>Chapter 8</b></h2>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              164.62750244140625\n            ],\n            [\n              220.84561157226562,\n              164.62750244140625\n            ],\n            [\n              220.84561157226562,\n              185.28997802734375\n            ],\n            [\n              128.197265625,\n              185.28997802734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            164.62750244140625,\n            220.84561157226562,\n            185.28997802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/84/SectionHeader/1\",\n            \"2\": \"/page/92/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Strings</b></h1>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              220.4903564453125\n            ],\n            [\n              211.1220703125,\n              220.4903564453125\n            ],\n            [\n              211.1220703125,\n              245.27740478515625\n            ],\n            [\n              129.2431640625,\n              245.27740478515625\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            220.4903564453125,\n            211.1220703125,\n            245.27740478515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-92-1\\\"></span><b>8.1 A string is a sequence</b></h4>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              294.6708068847656\n            ],\n            [\n              304.5088806152344,\n              294.6708068847656\n            ],\n            [\n              304.5088806152344,\n              309.01702880859375\n            ],\n            [\n              128.49609375,\n              309.01702880859375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            294.6708068847656,\n            304.5088806152344,\n            309.01702880859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A string is a <b>sequence</b> of characters. You can access the characters one at a time with the bracket operator:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              321.9742431640625\n            ],\n            [\n              526.53515625,\n              321.9742431640625\n            ],\n            [\n              526.53515625,\n              344.22796630859375\n            ],\n            [\n              129.2431640625,\n              344.22796630859375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            321.9742431640625,\n            526.53515625,\n            344.22796630859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; fruit = 'banana' &gt;&gt;&gt; letter = fruit[1]</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              350.7878112792969\n            ],\n            [\n              239.43765258789062,\n              350.7878112792969\n            ],\n            [\n              239.43765258789062,\n              372.990234375\n            ],\n            [\n              128.57080078125,\n              372.990234375\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            350.7878112792969,\n            239.43765258789062,\n            372.990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The second statement selects character number 1 from fruit and assigns it to letter.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              379.65380859375\n            ],\n            [\n              506.2596740722656,\n              379.65380859375\n            ],\n            [\n              506.2596740722656,\n              389.7659606933594\n            ],\n            [\n              129.09375,\n              389.7659606933594\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            379.65380859375,\n            506.2596740722656,\n            389.7659606933594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The expression in brackets is called an <b>index</b>. The index indicates which character in the sequence you want (hence the name).</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              399.8671875\n            ],\n            [\n              526.53515625,\n              399.8671875\n            ],\n            [\n              526.53515625,\n              422.6039733886719\n            ],\n            [\n              129.2431640625,\n              422.6039733886719\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            399.8671875,\n            526.53515625,\n            422.6039733886719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But you might not get what you expect:</p>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              433.125\n            ],\n            [\n              304.505859375,\n              433.125\n            ],\n            [\n              304.505859375,\n              443.24798583984375\n            ],\n            [\n              129.46728515625,\n              443.24798583984375\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            433.125,\n            304.505859375,\n            443.24798583984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; print letter a</p>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              449.8078308105469\n            ],\n            [\n              213.2858123779297,\n              449.8078308105469\n            ],\n            [\n              213.2858123779297,\n              477.2109375\n            ],\n            [\n              129.5999755859375,\n              477.2109375\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            449.8078308105469,\n            213.2858123779297,\n            477.2109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For most people, the first letter of 'banana' is b, not a. But for computer scientists, the index is an offset from the beginning of the string, and the offset of the first letter is zero.</p>\",\n          \"polygon\": [\n            [\n              129.59994506835938,\n              478.673828125\n            ],\n            [\n              525.9375,\n              478.673828125\n            ],\n            [\n              525.9375,\n              501.1875\n            ],\n            [\n              129.59994506835938,\n              501.1875\n            ]\n          ],\n          \"bbox\": [\n            129.59994506835938,\n            478.673828125,\n            525.9375,\n            501.1875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; letter = fruit[0]\\n&gt;&gt;&gt; print letter\\nb</pre>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              507.54083251953125\n            ],\n            [\n              239.43759155273438,\n              507.54083251953125\n            ],\n            [\n              239.43759155273438,\n              541.8914337158203\n            ],\n            [\n              128.42138671875,\n              541.8914337158203\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            507.54083251953125,\n            239.43759155273438,\n            541.8914337158203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So b is the 0th letter (\\\"zero-eth\\\") of 'banana', a is the 1th letter (\\\"one-eth\\\"), and n is the 2th (\\\"two-eth\\\") letter.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              548.3671875\n            ],\n            [\n              525.9375,\n              548.3671875\n            ],\n            [\n              525.9375,\n              570.9079895019531\n            ],\n            [\n              129.09375,\n              570.9079895019531\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            548.3671875,\n            525.9375,\n            570.9079895019531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can use any expression, including variables and operators, as an index, but the value of the index has to be an integer. Otherwise you get:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              581.23828125\n            ],\n            [\n              526.53515625,\n              581.23828125\n            ],\n            [\n              526.53515625,\n              603.7460021972656\n            ],\n            [\n              128.49609375,\n              603.7460021972656\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            581.23828125,\n            526.53515625,\n            603.7460021972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; letter = fruit[1.5]\\nTypeError: string indices must be integers, not float</pre>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              610.3058471679688\n            ],\n            [\n              406.8192138671875,\n              610.3058471679688\n            ],\n            [\n              406.8192138671875,\n              632.4624481201172\n            ],\n            [\n              128.57080078125,\n              632.4624481201172\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            610.3058471679688,\n            406.8192138671875,\n            632.4624481201172\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"4\": \"/page/92/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/SectionHeader/14\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-92-2\\\"></span><b>8.2</b> len</h2>\",\n          \"polygon\": [\n            [\n              127.67431640625,\n              661.3962249755859\n            ],\n            [\n              183.7425537109375,\n              661.3962249755859\n            ],\n            [\n              183.7425537109375,\n              677.8190460205078\n            ],\n            [\n              127.67431640625,\n              677.8190460205078\n            ]\n          ],\n          \"bbox\": [\n            127.67431640625,\n            661.3962249755859,\n            183.7425537109375,\n            677.8190460205078\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/92/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/92/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">len is a built-in function that returns the number of characters in a string:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              690.7228393554688\n            ],\n            [\n              452.2249755859375,\n              690.7228393554688\n            ],\n            [\n              452.2249755859375,\n              700.8349990844727\n            ],\n            [\n              128.3466796875,\n              700.8349990844727\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            690.7228393554688,\n            452.2249755859375,\n            700.8349990844727\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/92/SectionHeader/14\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/92/SectionHeader/1\",\n        \"2\": \"/page/92/SectionHeader/14\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/93/Page/198\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/93/PageHeader/0'></content-ref><content-ref src='/page/93/PageHeader/16'></content-ref><content-ref src='/page/93/Code/1'></content-ref><content-ref src='/page/93/Text/2'></content-ref><content-ref src='/page/93/Code/3'></content-ref><content-ref src='/page/93/Text/4'></content-ref><content-ref src='/page/93/Code/5'></content-ref><content-ref src='/page/93/Text/6'></content-ref><content-ref src='/page/93/SectionHeader/7'></content-ref><content-ref src='/page/93/Text/8'></content-ref><content-ref src='/page/93/Code/9'></content-ref><content-ref src='/page/93/Text/10'></content-ref><content-ref src='/page/93/Text/11'></content-ref><content-ref src='/page/93/Text/12'></content-ref><content-ref src='/page/93/Code/13'></content-ref><content-ref src='/page/93/Text/14'></content-ref><content-ref src='/page/93/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/93/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.66650390625\n            ],\n            [\n              482.4034118652344,\n              60.66650390625\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.66650390625,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/92/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              60.95654296875\n            ],\n            [\n              96.89501953125,\n              60.95654296875\n            ],\n            [\n              96.89501953125,\n              70.52783203125\n            ],\n            [\n              85.68896484375,\n              70.52783203125\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            60.95654296875,\n            96.89501953125,\n            70.52783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/92/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; fruit = 'banana'\\n&gt;&gt;&gt; len(fruit)\\n6</pre>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              88.68572998046875\n            ],\n            [\n              191.548828125,\n              88.68572998046875\n            ],\n            [\n              191.548828125,\n              123.03729248046875\n            ],\n            [\n              86.2119140625,\n              123.03729248046875\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            88.68572998046875,\n            191.548828125,\n            123.03729248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/92/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To get the last letter of a string, you might be tempted to try something like this:</p>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              130.2275390625\n            ],\n            [\n              438.08203125,\n              130.2275390625\n            ],\n            [\n              438.08203125,\n              140.8623046875\n            ],\n            [\n              86.4000015258789,\n              140.8623046875\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            130.2275390625,\n            438.08203125,\n            140.8623046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/92/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; length = len(fruit)\\n&gt;&gt;&gt; last = fruit[length]\\nIndexError: string index out of range</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              148.13671875\n            ],\n            [\n              279.93341064453125,\n              148.13671875\n            ],\n            [\n              279.93341064453125,\n              182.48834228515625\n            ],\n            [\n              85.46484375,\n              182.48834228515625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            148.13671875,\n            279.93341064453125,\n            182.48834228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/92/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The reason for the IndexError is that there is no letter in 'banana' with the index 6. Since we started counting at zero, the six letters are numbered 0 to 5. To get the last character, you have to subtract 1 from length:</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              189.2021484375\n            ],\n            [\n              482.40338134765625,\n              189.2021484375\n            ],\n            [\n              482.40338134765625,\n              224.5579833984375\n            ],\n            [\n              86.361328125,\n              224.5579833984375\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            189.2021484375,\n            482.40338134765625,\n            224.5579833984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/92/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; last = fruit[length-1]\\n&gt;&gt;&gt; print last\\na</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              231.976806640625\n            ],\n            [\n              222.39944458007812,\n              231.976806640625\n            ],\n            [\n              222.39944458007812,\n              266.32843017578125\n            ],\n            [\n              85.9130859375,\n              266.32843017578125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            231.976806640625,\n            222.39944458007812,\n            266.32843017578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/92/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Alternatively, you can use negative indices, which count backward from the end of the string. The expression fruit[-1] yields the last letter, fruit[-2] yields the second to last, and so on.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              273.41015625\n            ],\n            [\n              482.40338134765625,\n              273.41015625\n            ],\n            [\n              482.40338134765625,\n              308.3970031738281\n            ],\n            [\n              85.9130859375,\n              308.3970031738281\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            273.41015625,\n            482.40338134765625,\n            308.3970031738281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/92/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-93-0\\\"></span><b>8.3 Traversal with a</b> for <b>loop</b></h2>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              339.75921630859375\n            ],\n            [\n              281.5877685546875,\n              339.75921630859375\n            ],\n            [\n              281.5877685546875,\n              356.18206787109375\n            ],\n            [\n              85.763671875,\n              356.18206787109375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            339.75921630859375,\n            281.5877685546875,\n            356.18206787109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A lot of computations involve processing a string one character at a time. Often they start at the beginning, select each character in turn, do something to it, and continue until the end. This pattern of processing is called a <b>traversal</b>. One way to write a traversal is with a while loop:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              369.896484375\n            ],\n            [\n              482.4033203125,\n              369.896484375\n            ],\n            [\n              482.4033203125,\n              416.9840087890625\n            ],\n            [\n              85.6142578125,\n              416.9840087890625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            369.896484375,\n            482.4033203125,\n            416.9840087890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>index = 0\\nwhile index &lt; len(fruit):\\n    letter = fruit[index]\\n    print letter\\n    index = index + 1</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              424.4028625488281\n            ],\n            [\n              219.33984375,\n              424.4028625488281\n            ],\n            [\n              219.33984375,\n              483.3984375\n            ],\n            [\n              85.763671875,\n              483.3984375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            424.4028625488281,\n            219.33984375,\n            483.3984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This loop traverses the string and displays each letter on a line by itself. The loop condition is index &lt; len(fruit), so when index is equal to the length of the string, the condition is false, and the body of the loop is not executed. The last character accessed is the one with the index len(fruit)-1, which is the last character in the string.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              490.74609375\n            ],\n            [\n              482.40338134765625,\n              490.74609375\n            ],\n            [\n              482.40338134765625,\n              537.4070434570312\n            ],\n            [\n              85.763671875,\n              537.4070434570312\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            490.74609375,\n            482.40338134765625,\n            537.4070434570312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 8.1.</b> <i>Write a function that takes a string as an argument and displays the letters backward,</i> <i>one per line.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              539.0859375\n            ],\n            [\n              482.4005126953125,\n              539.0859375\n            ],\n            [\n              482.4005126953125,\n              561.6233520507812\n            ],\n            [\n              85.6142578125,\n              561.6233520507812\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            539.0859375,\n            482.4005126953125,\n            561.6233520507812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Another way to write a traversal is with a for loop:</p>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              572.73046875\n            ],\n            [\n              312.6154479980469,\n              572.73046875\n            ],\n            [\n              312.6154479980469,\n              583.2980499267578\n            ],\n            [\n              86.28662109375,\n              583.2980499267578\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            572.73046875,\n            312.6154479980469,\n            583.2980499267578\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>for char in fruit:\\n    print char</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              590.51953125\n            ],\n            [\n              181.6875,\n              590.51953125\n            ],\n            [\n              181.6875,\n              612.94921875\n            ],\n            [\n              85.6142578125,\n              612.94921875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            590.51953125,\n            181.6875,\n            612.94921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Each time through the loop, the next character in the string is assigned to the variable char. The loop continues until no characters are left.</p>\",\n          \"polygon\": [\n            [\n              86.39997863769531,\n              620.296875\n            ],\n            [\n              482.399658203125,\n              620.296875\n            ],\n            [\n              482.399658203125,\n              642.7500610351562\n            ],\n            [\n              86.39997863769531,\n              642.7500610351562\n            ]\n          ],\n          \"bbox\": [\n            86.39997863769531,\n            620.296875,\n            482.399658203125,\n            642.7500610351562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/93/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The following example shows how to use concatenation (string addition) and a for loop to generate an abecedarian series (that is, in alphabetical order). In Robert McCloskey's book <i>Make Way for Ducklings</i>, the names of the ducklings are Jack, Kack, Lack, Mack, Nack, Ouack, Pack, and Quack. This loop outputs these names in order:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              653.94140625\n            ],\n            [\n              482.4034423828125,\n              653.94140625\n            ],\n            [\n              482.4034423828125,\n              700.8350677490234\n            ],\n            [\n              85.763671875,\n              700.8350677490234\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            653.94140625,\n            482.4034423828125,\n            700.8350677490234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/92/SectionHeader/1\",\n        \"2\": \"/page/93/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/94/Page/172\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/94/PageHeader/0'></content-ref><content-ref src='/page/94/PageHeader/12'></content-ref><content-ref src='/page/94/FigureGroup/170'></content-ref><content-ref src='/page/94/Code/3'></content-ref><content-ref src='/page/94/SectionHeader/4'></content-ref><content-ref src='/page/94/Text/5'></content-ref><content-ref src='/page/94/Code/6'></content-ref><content-ref src='/page/94/Text/7'></content-ref><content-ref src='/page/94/Text/8'></content-ref><content-ref src='/page/94/Code/9'></content-ref><content-ref src='/page/94/Text/10'></content-ref><content-ref src='/page/94/Code/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/94/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              61.05322265625\n            ],\n            [\n              525.6033935546875,\n              61.05322265625\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              127.7490234375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            61.05322265625,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/94/PageHeader/12\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              515.77734375,\n              60.71484375\n            ],\n            [\n              526.53515625,\n              60.71484375\n            ],\n            [\n              526.53515625,\n              70.4794921875\n            ],\n            [\n              515.77734375,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            515.77734375,\n            60.71484375,\n            526.53515625,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/94/FigureGroup/170\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/94/Figure/1'></content-ref><content-ref src='/page/94/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              248.7744140625,\n              86.044921875\n            ],\n            [\n              408.19921875,\n              86.044921875\n            ],\n            [\n              408.19921875,\n              152.3529052734375\n            ],\n            [\n              248.7744140625,\n              152.3529052734375\n            ]\n          ],\n          \"bbox\": [\n            248.7744140625,\n            86.044921875,\n            408.19921875,\n            152.3529052734375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/94/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  248.7744140625,\n                  86.044921875\n                ],\n                [\n                  408.19921875,\n                  86.044921875\n                ],\n                [\n                  408.19921875,\n                  131.291015625\n                ],\n                [\n                  248.7744140625,\n                  131.291015625\n                ]\n              ],\n              \"bbox\": [\n                248.7744140625,\n                86.044921875,\n                408.19921875,\n                131.291015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/92/SectionHeader/1\",\n                \"2\": \"/page/93/SectionHeader/7\"\n              },\n              \"images\": {\n                \"/page/94/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/94/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-94-1\\\"></span>Figure 8.1: Slice indices.</p>\",\n              \"polygon\": [\n                [\n                  270.5888671875,\n                  141.345703125\n                ],\n                [\n                  380.27252197265625,\n                  141.345703125\n                ],\n                [\n                  380.27252197265625,\n                  152.3529052734375\n                ],\n                [\n                  270.5888671875,\n                  152.3529052734375\n                ]\n              ],\n              \"bbox\": [\n                270.5888671875,\n                141.345703125,\n                380.27252197265625,\n                152.3529052734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/92/SectionHeader/1\",\n                \"2\": \"/page/93/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/94/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>prefixes = 'JKLMNOPQ'\\nsuffix = 'ack'\\nfor letter in prefixes:\\n    print letter + suffix\\nThe output is:\\nJack\\nKack\\nLack\\nMack\\nNack\\nOack\\nPack\\nQack\\nOf course, that's not quite right because \\\"Ouack\\\" and \\\"Quack\\\" are misspelled.\\nExercise 8.2. Modify the program to fix this error.</pre>\",\n          \"polygon\": [\n            [\n              107.4287109375,\n              172.4765625\n            ],\n            [\n              474.7243347167969,\n              172.4765625\n            ],\n            [\n              474.7243347167969,\n              373.77685546875\n            ],\n            [\n              107.4287109375,\n              373.77685546875\n            ]\n          ],\n          \"bbox\": [\n            107.4287109375,\n            172.4765625,\n            474.7243347167969,\n            373.77685546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/94/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-94-0\\\"></span><b>8.4 String slices</b></h4>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              401.02734375\n            ],\n            [\n              241.945068359375,\n              401.02734375\n            ],\n            [\n              241.945068359375,\n              415.7750244140625\n            ],\n            [\n              128.9443359375,\n              415.7750244140625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            401.02734375,\n            241.945068359375,\n            415.7750244140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/94/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A segment of a string is called a <b>slice</b>. Selecting a slice is similar to selecting a character:</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              426.55078125\n            ],\n            [\n              514.7135620117188,\n              426.55078125\n            ],\n            [\n              514.7135620117188,\n              436.80596923828125\n            ],\n            [\n              129.5419921875,\n              436.80596923828125\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            426.55078125,\n            514.7135620117188,\n            436.80596923828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/94/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; s = 'Monty Python'\\n&gt;&gt;&gt; print s[0:5]\\nMonty\\n&gt;&gt;&gt; print s[6:12]\\nPython</pre>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              441.5838317871094\n            ],\n            [\n              244.64134216308594,\n              441.5838317871094\n            ],\n            [\n              244.64134216308594,\n              501.1875\n            ],\n            [\n              129.2431640625,\n              501.1875\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            441.5838317871094,\n            244.64134216308594,\n            501.1875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/94/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The operator [n:m] returns the part of the string from the \\\"n-eth\\\" character to the \\\"m-eth\\\" character, including the first but excluding the last. This behavior is counterintuitive, but it might help to imagine the indices pointing <i>between</i> the characters, as in Figure <a href=\\\"#page-94-1\\\">8.1.</a></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              505.2508544921875\n            ],\n            [\n              525.638671875,\n              505.2508544921875\n            ],\n            [\n              525.638671875,\n              539.7510070800781\n            ],\n            [\n              129.392578125,\n              539.7510070800781\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            505.2508544921875,\n            525.638671875,\n            539.7510070800781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/94/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you omit the first index (before the colon), the slice starts at the beginning of the string. If you omit the second index, the slice goes to the end of the string:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              547.98046875\n            ],\n            [\n              525.603271484375,\n              547.98046875\n            ],\n            [\n              525.603271484375,\n              570.8070068359375\n            ],\n            [\n              129.09375,\n              570.8070068359375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            547.98046875,\n            525.603271484375,\n            570.8070068359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/94/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; fruit = 'banana'\\n&gt;&gt;&gt; fruit[:3]\\n'ban'\\n&gt;&gt;&gt; fruit[3:]\\n'ana'</pre>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              575.05078125\n            ],\n            [\n              234.1833038330078,\n              575.05078125\n            ],\n            [\n              234.1833038330078,\n              634.60546875\n            ],\n            [\n              129.392578125,\n              634.60546875\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            575.05078125,\n            234.1833038330078,\n            634.60546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/94/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the first index is greater than or equal to the second the result is an <b>empty string</b>, represented by two quotation marks:</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              639.24609375\n            ],\n            [\n              525.6005249023438,\n              639.24609375\n            ],\n            [\n              525.6005249023438,\n              661.5570220947266\n            ],\n            [\n              129.5419921875,\n              661.5570220947266\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            639.24609375,\n            525.6005249023438,\n            661.5570220947266\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/94/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; fruit = 'banana'\\n&gt;&gt;&gt; fruit[3:3]\\n''</pre>\",\n          \"polygon\": [\n            [\n              129.59994506835938,\n              665.54296875\n            ],\n            [\n              234.1833038330078,\n              665.54296875\n            ],\n            [\n              234.1833038330078,\n              697.25390625\n            ],\n            [\n              129.59994506835938,\n              697.25390625\n            ]\n          ],\n          \"bbox\": [\n            129.59994506835938,\n            665.54296875,\n            234.1833038330078,\n            697.25390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/92/SectionHeader/1\",\n        \"2\": \"/page/93/SectionHeader/7\",\n        \"4\": \"/page/94/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/95/Page/216\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/95/PageHeader/0'></content-ref><content-ref src='/page/95/PageHeader/19'></content-ref><content-ref src='/page/95/Text/1'></content-ref><content-ref src='/page/95/Text/2'></content-ref><content-ref src='/page/95/SectionHeader/3'></content-ref><content-ref src='/page/95/Text/4'></content-ref><content-ref src='/page/95/Code/5'></content-ref><content-ref src='/page/95/Text/6'></content-ref><content-ref src='/page/95/Text/7'></content-ref><content-ref src='/page/95/Text/8'></content-ref><content-ref src='/page/95/Code/9'></content-ref><content-ref src='/page/95/Text/10'></content-ref><content-ref src='/page/95/SectionHeader/11'></content-ref><content-ref src='/page/95/Text/12'></content-ref><content-ref src='/page/95/Code/13'></content-ref><content-ref src='/page/95/Text/14'></content-ref><content-ref src='/page/95/Text/15'></content-ref><content-ref src='/page/95/Text/16'></content-ref><content-ref src='/page/95/Text/17'></content-ref><content-ref src='/page/95/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/95/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.95654296875\n            ],\n            [\n              482.4034118652344,\n              60.95654296875\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.95654296875,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              60.8115234375\n            ],\n            [\n              96.59619140625,\n              60.8115234375\n            ],\n            [\n              96.59619140625,\n              70.8662109375\n            ],\n            [\n              85.53955078125,\n              70.8662109375\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            60.8115234375,\n            96.59619140625,\n            70.8662109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An empty string contains no characters and has length 0, but other than that, it is the same as any other string.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              88.55859375\n            ],\n            [\n              482.90625,\n              88.55859375\n            ],\n            [\n              482.90625,\n              110.99188232421875\n            ],\n            [\n              85.763671875,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            88.55859375,\n            482.90625,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 8.3.</b> <i>Given that</i> fruit <i>is a string, what does</i> fruit[:] <i>mean?</i></p>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              112.341796875\n            ],\n            [\n              378.8342590332031,\n              112.341796875\n            ],\n            [\n              378.8342590332031,\n              123.0897216796875\n            ],\n            [\n              85.53955078125,\n              123.0897216796875\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            112.341796875,\n            378.8342590332031,\n            123.0897216796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"4\": \"/page/94/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-95-0\\\"></span><b>8.5 Strings are immutable</b></h3>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              150.43359375\n            ],\n            [\n              264.5080871582031,\n              150.43359375\n            ],\n            [\n              264.5080871582031,\n              165.4459228515625\n            ],\n            [\n              85.46484375,\n              165.4459228515625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            150.43359375,\n            264.5080871582031,\n            165.4459228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is tempting to use the [] operator on the left side of an assignment, with the intention of changing a character in a string. For example:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              175.8603515625\n            ],\n            [\n              482.39837646484375,\n              175.8603515625\n            ],\n            [\n              482.39837646484375,\n              198.92694091796875\n            ],\n            [\n              85.3154296875,\n              198.92694091796875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            175.8603515625,\n            482.39837646484375,\n            198.92694091796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; greeting = 'Hello, world!'\\n&gt;&gt;&gt; greeting[0] = 'J'\\nTypeError: 'str' object does not support item assignment</pre>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              203.02734375\n            ],\n            [\n              379.2892150878906,\n              203.02734375\n            ],\n            [\n              379.2892150878906,\n              238.3114013671875\n            ],\n            [\n              85.53955078125,\n              238.3114013671875\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            203.02734375,\n            379.2892150878906,\n            238.3114013671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The \\\"object\\\" in this case is the string and the \\\"item\\\" is the character you tried to assign. For</p>\",\n          \"polygon\": [\n            [\n              86.4000473022461,\n              238.21875\n            ],\n            [\n              482.4034423828125,\n              238.21875\n            ],\n            [\n              482.4034423828125,\n              262.58203125\n            ],\n            [\n              86.4000473022461,\n              262.58203125\n            ]\n          ],\n          \"bbox\": [\n            86.4000473022461,\n            238.21875,\n            482.4034423828125,\n            262.58203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">now, an <b>object</b> is the same thing as a value, but we will refine that definition later. An <b>item</b> is one of the values in a sequence.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              255.740234375\n            ],\n            [\n              482.4001770019531,\n              255.740234375\n            ],\n            [\n              482.4001770019531,\n              283.078125\n            ],\n            [\n              85.3154296875,\n              283.078125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            255.740234375,\n            482.4001770019531,\n            283.078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The reason for the error is that strings are <b>immutable</b>, which means you can't change an existing string. The best you can do is create a new string that is a variation on the original:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              286.9453125\n            ],\n            [\n              482.90625,\n              286.9453125\n            ],\n            [\n              482.90625,\n              309.76171875\n            ],\n            [\n              85.9130859375,\n              309.76171875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            286.9453125,\n            482.90625,\n            309.76171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; greeting = 'Hello, world!'\\n&gt;&gt;&gt; new_greeting = 'J' + greeting[1:]\\n&gt;&gt;&gt; print new_greeting\\nJello, world!</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              314.33880615234375\n            ],\n            [\n              279.8952331542969,\n              314.33880615234375\n            ],\n            [\n              279.8952331542969,\n              362.548828125\n            ],\n            [\n              85.763671875,\n              362.548828125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            314.33880615234375,\n            279.8952331542969,\n            362.548828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This example concatenates a new first letter onto a slice of greeting. It has no effect on the original string.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              365.8359375\n            ],\n            [\n              482.90625,\n              365.8359375\n            ],\n            [\n              482.90625,\n              388.3729553222656\n            ],\n            [\n              86.0625,\n              388.3729553222656\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            365.8359375,\n            482.90625,\n            388.3729553222656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-95-1\\\"></span><b>8.6 Searching</b></h4>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              416.109375\n            ],\n            [\n              184.02597045898438,\n              416.109375\n            ],\n            [\n              184.02597045898438,\n              430.8046875\n            ],\n            [\n              86.13720703125,\n              430.8046875\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            416.109375,\n            184.02597045898438,\n            430.8046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/95/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">What does the following function do?</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              441.24609375\n            ],\n            [\n              252.80859375,\n              441.24609375\n            ],\n            [\n              252.80859375,\n              452.07421875\n            ],\n            [\n              85.83837890625,\n              452.07421875\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            441.24609375,\n            252.80859375,\n            452.07421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/95/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def find(word, letter):\\n    index = 0\\n    while index &lt; len(word):\\n        if word[index] == letter:\\n            return index\\n        index = index + 1\\n    return -1</pre>\",\n          \"polygon\": [\n            [\n              86.40008544921875,\n              456.328125\n            ],\n            [\n              259.98046875,\n              456.328125\n            ],\n            [\n              259.98046875,\n              540.0814056396484\n            ],\n            [\n              86.40008544921875,\n              540.0814056396484\n            ]\n          ],\n          \"bbox\": [\n            86.40008544921875,\n            456.328125,\n            259.98046875,\n            540.0814056396484\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/95/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In a sense, find is the opposite of the [] operator. Instead of taking an index and extracting the corresponding character, it takes a character and finds the index where that character appears. If the character is not found, the function returns -1.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              544.5\n            ],\n            [\n              483.205078125,\n              544.5\n            ],\n            [\n              483.205078125,\n              579.7639617919922\n            ],\n            [\n              86.0625,\n              579.7639617919922\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            544.5,\n            483.205078125,\n            579.7639617919922\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/95/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This is the first example we have seen of a return statement inside a loop. If word[index] == letter, the function breaks out of the loop and returns immediately.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              587.8125\n            ],\n            [\n              482.4141540527344,\n              587.8125\n            ],\n            [\n              482.4141540527344,\n              611.0749664306641\n            ],\n            [\n              85.763671875,\n              611.0749664306641\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            587.8125,\n            482.4141540527344,\n            611.0749664306641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/95/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the character doesn't appear in the string, the program exits the loop normally and returns -1.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              618.75\n            ],\n            [\n              482.4034729003906,\n              618.75\n            ],\n            [\n              482.4034729003906,\n              642.3859710693359\n            ],\n            [\n              85.6142578125,\n              642.3859710693359\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            618.75,\n            482.4034729003906,\n            642.3859710693359\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/95/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This pattern of computation—traversing a sequence and returning when we find what we are looking for—is called a <b>search</b>.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              650.07421875\n            ],\n            [\n              482.90625,\n              650.07421875\n            ],\n            [\n              482.90625,\n              673.6969833374023\n            ],\n            [\n              85.9130859375,\n              673.6969833374023\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            650.07421875,\n            482.90625,\n            673.6969833374023\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/95/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/95/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 8.4.</b> <i>Modify</i> find <i>so that it has a third parameter, the index in</i> word <i>where it should start</i> <i>looking.</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              675.59765625\n            ],\n            [\n              482.607421875,\n              675.59765625\n            ],\n            [\n              482.607421875,\n              697.9132843017578\n            ],\n            [\n              85.46484375,\n              697.9132843017578\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            675.59765625,\n            482.607421875,\n            697.9132843017578\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/95/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/92/SectionHeader/1\",\n        \"2\": \"/page/93/SectionHeader/7\",\n        \"3\": \"/page/95/SectionHeader/3\",\n        \"4\": \"/page/95/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/96/Page/224\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/96/PageHeader/0'></content-ref><content-ref src='/page/96/PageHeader/18'></content-ref><content-ref src='/page/96/SectionHeader/1'></content-ref><content-ref src='/page/96/Text/2'></content-ref><content-ref src='/page/96/Code/3'></content-ref><content-ref src='/page/96/Text/4'></content-ref><content-ref src='/page/96/Text/5'></content-ref><content-ref src='/page/96/Text/6'></content-ref><content-ref src='/page/96/SectionHeader/7'></content-ref><content-ref src='/page/96/Text/8'></content-ref><content-ref src='/page/96/Text/9'></content-ref><content-ref src='/page/96/Code/10'></content-ref><content-ref src='/page/96/Text/11'></content-ref><content-ref src='/page/96/Text/12'></content-ref><content-ref src='/page/96/Text/13'></content-ref><content-ref src='/page/96/Code/14'></content-ref><content-ref src='/page/96/Text/15'></content-ref><content-ref src='/page/96/Text/16'></content-ref><content-ref src='/page/96/Code/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/96/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.9443359375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/95/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              515.1796875,\n              60.908203125\n            ],\n            [\n              525.9375,\n              60.908203125\n            ],\n            [\n              525.9375,\n              70.0927734375\n            ],\n            [\n              515.1796875,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            515.1796875,\n            60.908203125,\n            525.9375,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/95/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-96-0\\\"></span><b>8.7 Looping and counting</b></h4>\",\n          \"polygon\": [\n            [\n              127.82373046875,\n              85.95379638671875\n            ],\n            [\n              307.494140625,\n              85.95379638671875\n            ],\n            [\n              307.494140625,\n              100.546875\n            ],\n            [\n              127.82373046875,\n              100.546875\n            ]\n          ],\n          \"bbox\": [\n            127.82373046875,\n            85.95379638671875,\n            307.494140625,\n            100.546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The following program counts the number of times the letter a appears in a string:</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              112.6187744140625\n            ],\n            [\n              491.1990966796875,\n              112.6187744140625\n            ],\n            [\n              491.1990966796875,\n              122.73095703125\n            ],\n            [\n              128.0478515625,\n              122.73095703125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            112.6187744140625,\n            491.1990966796875,\n            122.73095703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>word = 'banana'\\ncount = 0\\nfor letter in word:\\n    if letter == 'a':\\n        count = count + 1\\nprint count</pre>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              128.87176513671875\n            ],\n            [\n              261.9228515625,\n              128.87176513671875\n            ],\n            [\n              261.9228515625,\n              199.80633544921875\n            ],\n            [\n              128.0478515625,\n              199.80633544921875\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            128.87176513671875,\n            261.9228515625,\n            199.80633544921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This program demonstrates another pattern of computation called a <b>counter</b>. The variable count is initialized to 0 and then incremented each time an a is found. When the loop exits, count contains the result—the total number of a's.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              206.149169921875\n            ],\n            [\n              525.9375,\n              206.149169921875\n            ],\n            [\n              525.9375,\n              240.597900390625\n            ],\n            [\n              127.8984375,\n              240.597900390625\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            206.149169921875,\n            525.9375,\n            240.597900390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 8.5.</b> <i>Encapsulate this code in a function named</i> count<i>, and generalize it so that it accepts</i> <i>the string and the letter as arguments.</i></p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              242.6566162109375\n            ],\n            [\n              525.6008911132812,\n              242.6566162109375\n            ],\n            [\n              525.6008911132812,\n              264.81317138671875\n            ],\n            [\n              128.3466796875,\n              264.81317138671875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            242.6566162109375,\n            525.6008911132812,\n            264.81317138671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 8.6.</b> <i>Rewrite this function so that instead of traversing the string, it uses the three</i><i>parameter version of</i> find <i>from the previous section.</i></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              267.04559326171875\n            ],\n            [\n              525.6040649414062,\n              267.04559326171875\n            ],\n            [\n              525.6040649414062,\n              289.2253112792969\n            ],\n            [\n              128.49609375,\n              289.2253112792969\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            267.04559326171875,\n            525.6040649414062,\n            289.2253112792969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-96-1\\\"></span><b>8.8 String methods</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              318.9787292480469\n            ],\n            [\n              262.68975830078125,\n              318.9787292480469\n            ],\n            [\n              262.68975830078125,\n              333.324951171875\n            ],\n            [\n              128.3466796875,\n              333.324951171875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            318.9787292480469,\n            262.68975830078125,\n            333.324951171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>method</b> is similar to a function—it takes arguments and returns a value—but the syntax is different. For example, the method upper takes a string and returns a new string with all uppercase letters:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              345.6951599121094\n            ],\n            [\n              525.9375,\n              345.6951599121094\n            ],\n            [\n              525.9375,\n              380.1438903808594\n            ],\n            [\n              129.2431640625,\n              380.1438903808594\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            345.6951599121094,\n            525.9375,\n            380.1438903808594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Instead of the function syntax upper(word), it uses the method syntax word.upper().</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              390.2567443847656\n            ],\n            [\n              505.4187316894531,\n              390.2567443847656\n            ],\n            [\n              505.4187316894531,\n              400.368896484375\n            ],\n            [\n              128.49609375,\n              400.368896484375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            390.2567443847656,\n            505.4187316894531,\n            400.368896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; word = 'banana'\\n&gt;&gt;&gt; new_word = word.upper()\\n&gt;&gt;&gt; print new_word\\nBANANA</pre>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              406.5097351074219\n            ],\n            [\n              270.8299255371094,\n              406.5097351074219\n            ],\n            [\n              270.8299255371094,\n              453.0553283691406\n            ],\n            [\n              128.86962890625,\n              453.0553283691406\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            406.5097351074219,\n            270.8299255371094,\n            453.0553283691406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This form of dot notation specifies the name of the method, upper, and the name of the string to apply the method to, word. The empty parentheses indicate that this method takes no argument.</p>\",\n          \"polygon\": [\n            [\n              129.60011291503906,\n              459.3457336425781\n            ],\n            [\n              525.6026000976562,\n              459.3457336425781\n            ],\n            [\n              525.6026000976562,\n              493.8468933105469\n            ],\n            [\n              129.60011291503906,\n              493.8468933105469\n            ]\n          ],\n          \"bbox\": [\n            129.60011291503906,\n            459.3457336425781,\n            525.6026000976562,\n            493.8468933105469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A method call is called an <b>invocation</b>; in this case, we would say that we are invoking upper on the word.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              504.0121765136719\n            ],\n            [\n              525.638671875,\n              504.0121765136719\n            ],\n            [\n              525.638671875,\n              526.2658996582031\n            ],\n            [\n              129.392578125,\n              526.2658996582031\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            504.0121765136719,\n            525.638671875,\n            526.2658996582031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As it turns out, there is a string method named find that is remarkably similar to the function we wrote:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              536.3787536621094\n            ],\n            [\n              525.9375,\n              536.3787536621094\n            ],\n            [\n              525.9375,\n              558.6849060058594\n            ],\n            [\n              128.6455078125,\n              558.6849060058594\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            536.3787536621094,\n            525.9375,\n            558.6849060058594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; word = 'banana'\\n&gt;&gt;&gt; index = word.find('a')\\n&gt;&gt;&gt; print index\\n1</pre>\",\n          \"polygon\": [\n            [\n              129.09375,\n              564.8257598876953\n            ],\n            [\n              265.5585021972656,\n              564.8257598876953\n            ],\n            [\n              265.5585021972656,\n              611.7890625\n            ],\n            [\n              129.09375,\n              611.7890625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            564.8257598876953,\n            265.5585021972656,\n            611.7890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this example, we invoke find on word and pass the letter we are looking for as a parameter.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              617.6627655029297\n            ],\n            [\n              525.6044921875,\n              617.6627655029297\n            ],\n            [\n              525.6044921875,\n              640.40625\n            ],\n            [\n              129.09375,\n              640.40625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            617.6627655029297,\n            525.6044921875,\n            640.40625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Actually, the find method is more general than our function; it can find substrings, not just characters:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              650.0817718505859\n            ],\n            [\n              525.602783203125,\n              650.0817718505859\n            ],\n            [\n              525.602783203125,\n              672.50390625\n            ],\n            [\n              128.6455078125,\n              672.50390625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            650.0817718505859,\n            525.602783203125,\n            672.50390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/96/Code/17\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; word.find('na')\\n2</pre>\",\n          \"polygon\": [\n            [\n              129.09375,\n              678.5287628173828\n            ],\n            [\n              228.9545135498047,\n              678.5287628173828\n            ],\n            [\n              228.9545135498047,\n              700.6863632202148\n            ],\n            [\n              129.09375,\n              700.6863632202148\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            678.5287628173828,\n            228.9545135498047,\n            700.6863632202148\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/92/SectionHeader/1\",\n        \"2\": \"/page/93/SectionHeader/7\",\n        \"3\": \"/page/95/SectionHeader/3\",\n        \"4\": \"/page/96/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/97/Page/244\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/97/PageHeader/0'></content-ref><content-ref src='/page/97/PageHeader/19'></content-ref><content-ref src='/page/97/Text/1'></content-ref><content-ref src='/page/97/Code/2'></content-ref><content-ref src='/page/97/Text/3'></content-ref><content-ref src='/page/97/Code/4'></content-ref><content-ref src='/page/97/Text/5'></content-ref><content-ref src='/page/97/Text/6'></content-ref><content-ref src='/page/97/Text/7'></content-ref><content-ref src='/page/97/SectionHeader/8'></content-ref><content-ref src='/page/97/Text/9'></content-ref><content-ref src='/page/97/Code/10'></content-ref><content-ref src='/page/97/Text/11'></content-ref><content-ref src='/page/97/Text/12'></content-ref><content-ref src='/page/97/Code/13'></content-ref><content-ref src='/page/97/Text/14'></content-ref><content-ref src='/page/97/Text/15'></content-ref><content-ref src='/page/97/Code/16'></content-ref><content-ref src='/page/97/SectionHeader/17'></content-ref><content-ref src='/page/97/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/97/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.95654296875\n            ],\n            [\n              482.607421875,\n              60.95654296875\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.95654296875,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.763671875,\n              60.2314453125\n            ],\n            [\n              97.716796875,\n              60.2314453125\n            ],\n            [\n              97.716796875,\n              70.4794921875\n            ],\n            [\n              85.763671875,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            60.2314453125,\n            97.716796875,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It can take as a second argument the index where it should start:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              88.0751953125\n            ],\n            [\n              369.1186218261719,\n              88.0751953125\n            ],\n            [\n              369.1186218261719,\n              98.79791259765625\n            ],\n            [\n              86.0625,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            88.0751953125,\n            369.1186218261719,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; word.find('na', 3)\\n4</pre>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              103.833984375\n            ],\n            [\n              201.4454803466797,\n              103.833984375\n            ],\n            [\n              201.4454803466797,\n              126.477294921875\n            ],\n            [\n              85.83837890625,\n              126.477294921875\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            103.833984375,\n            201.4454803466797,\n            126.477294921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And as a third argument the index where it should stop:</p>\",\n          \"polygon\": [\n            [\n              86.4000244140625,\n              131.484375\n            ],\n            [\n              333.7314453125,\n              131.484375\n            ],\n            [\n              333.7314453125,\n              142.26190185546875\n            ],\n            [\n              86.4000244140625,\n              142.26190185546875\n            ]\n          ],\n          \"bbox\": [\n            86.4000244140625,\n            131.484375,\n            333.7314453125,\n            142.26190185546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; name = 'bob'\\n&gt;&gt;&gt; name.find('b', 1, 2)\\n-1</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              147.78570556640625\n            ],\n            [\n              211.9075927734375,\n              147.78570556640625\n            ],\n            [\n              211.9075927734375,\n              182.13623046875\n            ],\n            [\n              85.46484375,\n              182.13623046875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            147.78570556640625,\n            211.9075927734375,\n            182.13623046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This search fails because b does not appear in the index range from 1 to 2 (not including 2). <b>Exercise 8.7.</b> <i>There is a string method called</i> count <i>that is similar to the function in the previous</i> <i>exercise. Read the documentation of this method and write an invocation that counts the number of</i> a<i>s in</i> 'banana'<i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              187.751953125\n            ],\n            [\n              482.607421875,\n              187.751953125\n            ],\n            [\n              482.607421875,\n              234.354248046875\n            ],\n            [\n              85.763671875,\n              234.354248046875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            187.751953125,\n            482.607421875,\n            234.354248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 8.8.</b> <i>Read the documentation of the string methods at</i> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#string-methods\\\">http:</a> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#string-methods\\\">//</a> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#string-methods\\\">docs.</a> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#string-methods\\\">python.</a> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#string-methods\\\">org/</a> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#string-methods\\\">2/</a> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#string-methods\\\">library/</a> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#string-methods\\\">stdtypes.</a> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#string-methods\\\">html#</a> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#string-methods\\\">string-methods</a> <i>. You might want to experiment with some of them</i> <i>to make sure you understand how they work.</i> strip <i>and</i> replace <i>are particularly useful.</i></p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              235.51171875\n            ],\n            [\n              482.40093994140625,\n              235.51171875\n            ],\n            [\n              482.40093994140625,\n              270.937255859375\n            ],\n            [\n              86.0625,\n              270.937255859375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            235.51171875,\n            482.40093994140625,\n            270.937255859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The documentation uses a syntax that might be confusing. For example, in</i> find(sub[, start[, end]])<i>, the brackets indicate optional arguments. So</i> sub <i>is required, but</i> start <i>is optional, and if you include</i> start<i>, then</i> end <i>is optional.</i></p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              280.177734375\n            ],\n            [\n              482.4034118652344,\n              280.177734375\n            ],\n            [\n              482.4034118652344,\n              314.9332580566406\n            ],\n            [\n              86.2119140625,\n              314.9332580566406\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            280.177734375,\n            482.4034118652344,\n            314.9332580566406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/93/SectionHeader/7\",\n            \"3\": \"/page/95/SectionHeader/3\",\n            \"4\": \"/page/96/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-97-0\\\"></span><b>8.9 The</b> in <b>operator</b></h2>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              341.6040344238281\n            ],\n            [\n              220.9252471923828,\n              341.6040344238281\n            ],\n            [\n              220.9252471923828,\n              358.0268859863281\n            ],\n            [\n              85.9130859375,\n              358.0268859863281\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            341.6040344238281,\n            220.9252471923828,\n            358.0268859863281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The word in is a boolean operator that takes two strings and returns True if the first appears as a substring in the second:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              369.31640625\n            ],\n            [\n              482.39691162109375,\n              369.31640625\n            ],\n            [\n              482.39691162109375,\n              391.9988098144531\n            ],\n            [\n              85.6142578125,\n              391.9988098144531\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            369.31640625,\n            482.39691162109375,\n            391.9988098144531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; 'a' in 'banana'\\nTrue\\n&gt;&gt;&gt; 'seed' in 'banana'</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              397.52166748046875\n            ],\n            [\n              201.44131469726562,\n              397.52166748046875\n            ],\n            [\n              201.44131469726562,\n              432.3515625\n            ],\n            [\n              85.6142578125,\n              432.3515625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            397.52166748046875,\n            201.44131469726562,\n            432.3515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">False</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              434.10467529296875\n            ],\n            [\n              112.55177307128906,\n              434.10467529296875\n            ],\n            [\n              112.55177307128906,\n              444.7265625\n            ],\n            [\n              86.0625,\n              444.7265625\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            434.10467529296875,\n            112.55177307128906,\n            444.7265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, the following function prints all the letters from word1 that also appear in word2:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              448.98046875\n            ],\n            [\n              482.398681640625,\n              448.98046875\n            ],\n            [\n              482.398681640625,\n              472.0468444824219\n            ],\n            [\n              85.6142578125,\n              472.0468444824219\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            448.98046875,\n            482.398681640625,\n            472.0468444824219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def in_both(word1, word2):\\n    for letter in word1:\\n        if letter in word2:\\n            print letter</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              477.5697021484375\n            ],\n            [\n              227.60986328125,\n              477.5697021484375\n            ],\n            [\n              227.60986328125,\n              524.1152954101562\n            ],\n            [\n              85.6142578125,\n              524.1152954101562\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            477.5697021484375,\n            227.60986328125,\n            524.1152954101562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">With well-chosen variable names, Python sometimes reads like English. You could read this loop, \\\"for (each) letter in (the first) word, if (the) letter (appears) in (the second) word, print (the) letter.\\\"</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              528.64453125\n            ],\n            [\n              482.4033508300781,\n              528.64453125\n            ],\n            [\n              482.4033508300781,\n              564.2878570556641\n            ],\n            [\n              85.46484375,\n              564.2878570556641\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            528.64453125,\n            482.4033508300781,\n            564.2878570556641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's what you get if you compare apples and oranges:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              573.1171875\n            ],\n            [\n              334.538330078125,\n              573.1171875\n            ],\n            [\n              334.538330078125,\n              583.9453125\n            ],\n            [\n              85.6142578125,\n              583.9453125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            573.1171875,\n            334.538330078125,\n            583.9453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; in_both('apples', 'oranges')\\na\\ne\\ns</pre>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              589.4176940917969\n            ],\n            [\n              253.73231506347656,\n              589.4176940917969\n            ],\n            [\n              253.73231506347656,\n              635.9633026123047\n            ],\n            [\n              85.68896484375,\n              635.9633026123047\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            589.4176940917969,\n            253.73231506347656,\n            635.9633026123047\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/SectionHeader/17\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-97-1\\\"></span><b>8.10 String comparison</b></h4>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              664.7117080688477\n            ],\n            [\n              246.83203125,\n              664.7117080688477\n            ],\n            [\n              246.83203125,\n              679.0579071044922\n            ],\n            [\n              85.98779296875,\n              679.0579071044922\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            664.7117080688477,\n            246.83203125,\n            679.0579071044922\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/97/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/97/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The relational operators work on strings. To see if two strings are equal:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              690.29296875\n            ],\n            [\n              401.73614501953125,\n              690.29296875\n            ],\n            [\n              401.73614501953125,\n              700.8348617553711\n            ],\n            [\n              86.2119140625,\n              700.8348617553711\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            690.29296875,\n            401.73614501953125,\n            700.8348617553711\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/97/SectionHeader/17\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/92/SectionHeader/1\",\n        \"2\": \"/page/97/SectionHeader/8\",\n        \"4\": \"/page/97/SectionHeader/17\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/98/Page/208\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/98/PageHeader/0'></content-ref><content-ref src='/page/98/PageHeader/14'></content-ref><content-ref src='/page/98/TextInlineMath/1'></content-ref><content-ref src='/page/98/Text/2'></content-ref><content-ref src='/page/98/Code/3'></content-ref><content-ref src='/page/98/Text/4'></content-ref><content-ref src='/page/98/Text/5'></content-ref><content-ref src='/page/98/Text/6'></content-ref><content-ref src='/page/98/SectionHeader/7'></content-ref><content-ref src='/page/98/Text/8'></content-ref><content-ref src='/page/98/Code/9'></content-ref><content-ref src='/page/98/Text/10'></content-ref><content-ref src='/page/98/Text/11'></content-ref><content-ref src='/page/98/Text/12'></content-ref><content-ref src='/page/98/TextInlineMath/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/98/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.9443359375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/97/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              61.1982421875\n            ],\n            [\n              525.041015625,\n              61.1982421875\n            ],\n            [\n              525.041015625,\n              70.2861328125\n            ],\n            [\n              514.880859375,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            61.1982421875,\n            525.041015625,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/97/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/TextInlineMath/1\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">if word == 'banana': print 'All right, bananas.'</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              88.68572998046875\n            ],\n            [\n              291.7033996582031,\n              88.68572998046875\n            ],\n            [\n              291.7033996582031,\n              110.84228515625\n            ],\n            [\n              129.60000610351562,\n              110.84228515625\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            88.68572998046875,\n            291.7033996582031,\n            110.84228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/97/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Other relational operations are useful for putting words in alphabetical order:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              116.982421875\n            ],\n            [\n              471.01824951171875,\n              116.982421875\n            ],\n            [\n              471.01824951171875,\n              127.19989013671875\n            ],\n            [\n              129.09375,\n              127.19989013671875\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            116.982421875,\n            471.01824951171875,\n            127.19989013671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/97/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if word &lt; 'banana':\\n    print 'Your word,' + word + ', comes before banana.'\\nelif word &gt; 'banana':\\n    print 'Your word,' + word + ', comes after banana.'\\nelse:\\n    print 'All right, bananas.'</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              133.29669189453125\n            ],\n            [\n              424.634765625,\n              133.29669189453125\n            ],\n            [\n              424.634765625,\n              204.230224609375\n            ],\n            [\n              129.60000610351562,\n              204.230224609375\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            133.29669189453125,\n            424.634765625,\n            204.230224609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/97/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python does not handle uppercase and lowercase letters the same way that people do. All the uppercase letters come before all the lowercase letters, so:</p>\",\n          \"polygon\": [\n            [\n              129.60006713867188,\n              209.21484375\n            ],\n            [\n              525.6034545898438,\n              209.21484375\n            ],\n            [\n              525.6034545898438,\n              232.78277587890625\n            ],\n            [\n              129.60006713867188,\n              232.78277587890625\n            ]\n          ],\n          \"bbox\": [\n            129.60006713867188,\n            209.21484375,\n            525.6034545898438,\n            232.78277587890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/97/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Your word, Pineapple, comes before banana.</p>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              238.87860107421875\n            ],\n            [\n              349.2853088378906,\n              238.87860107421875\n            ],\n            [\n              349.2853088378906,\n              248.8411865234375\n            ],\n            [\n              128.12255859375,\n              248.8411865234375\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            238.87860107421875,\n            349.2853088378906,\n            248.8411865234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/97/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A common way to address this problem is to convert strings to a standard format, such as all lowercase, before performing the comparison. Keep that in mind in case you have to defend yourself against a man armed with a Pineapple.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              255.23614501953125\n            ],\n            [\n              525.603515625,\n              255.23614501953125\n            ],\n            [\n              525.603515625,\n              289.5877685546875\n            ],\n            [\n              128.49609375,\n              289.5877685546875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            255.23614501953125,\n            525.603515625,\n            289.5877685546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/97/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-98-0\\\"></span><b>8.11 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              319.0566101074219\n            ],\n            [\n              243.17892456054688,\n              319.0566101074219\n            ],\n            [\n              243.17892456054688,\n              333.40283203125\n            ],\n            [\n              128.0478515625,\n              333.40283203125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            319.0566101074219,\n            243.17892456054688,\n            333.40283203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you use indices to traverse the values in a sequence, it is tricky to get the beginning and end of the traversal right. Here is a function that is supposed to compare two words and return True if one of the words is the reverse of the other, but it contains two errors:</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              345.80718994140625\n            ],\n            [\n              525.9375,\n              345.80718994140625\n            ],\n            [\n              525.9375,\n              380.1587829589844\n            ],\n            [\n              128.9443359375,\n              380.1587829589844\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            345.80718994140625,\n            525.9375,\n            380.1587829589844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def is_reverse(word1, word2):\\n    if len(word1) != len(word2):\\n        return False\\n    i = 0\\n    j = len(word2)\\n    while j &gt; 0:\\n        if word1[i] != word2[j]:\\n            return False\\n        i = i+1\\n        j = j-1\\n    return True</pre>\",\n          \"polygon\": [\n            [\n              129.60006713867188,\n              386.254638671875\n            ],\n            [\n              301.9658203125,\n              386.254638671875\n            ],\n            [\n              301.9658203125,\n              554.7442779541016\n            ],\n            [\n              129.60006713867188,\n              554.7442779541016\n            ]\n          ],\n          \"bbox\": [\n            129.60006713867188,\n            386.254638671875,\n            301.9658203125,\n            554.7442779541016\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first if statement checks whether the words are the same length. If not, we can return False immediately and then, for the rest of the function, we can assume that the words are the same length. This is an example of the guardian pattern in Section <a href=\\\"#page-79-0\\\">6.8.</a></p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              560.35546875\n            ],\n            [\n              525.9375,\n              560.35546875\n            ],\n            [\n              525.9375,\n              595.4898376464844\n            ],\n            [\n              128.3466796875,\n              595.4898376464844\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            560.35546875,\n            525.9375,\n            595.4898376464844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">i and j are indices: i traverses word1 forward while j traverses word2 backward. If we find two letters that don't match, we can return False immediately. If we get through the whole loop and all the letters match, we return True.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              605.5576782226562\n            ],\n            [\n              525.9375,\n              605.5576782226562\n            ],\n            [\n              525.9375,\n              640.058837890625\n            ],\n            [\n              128.6455078125,\n              640.058837890625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            605.5576782226562,\n            525.9375,\n            640.058837890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If we test this function with the words \\\"pots\\\" and \\\"stop\\\", we expect the return value True, but we get an IndexError:</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              650.1266784667969\n            ],\n            [\n              525.5997314453125,\n              650.1266784667969\n            ],\n            [\n              525.5997314453125,\n              672.4328384399414\n            ],\n            [\n              128.0478515625,\n              672.4328384399414\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            650.1266784667969,\n            525.5997314453125,\n            672.4328384399414\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/98/TextInlineMath/13\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; is_reverse('pots', 'stop') ...</p>\",\n          \"polygon\": [\n            [\n              129.60006713867188,\n              678.5286712646484\n            ],\n            [\n              286.4744567871094,\n              678.5286712646484\n            ],\n            [\n              286.4744567871094,\n              700.734375\n            ],\n            [\n              129.60006713867188,\n              700.734375\n            ]\n          ],\n          \"bbox\": [\n            129.60006713867188,\n            678.5286712646484,\n            286.4744567871094,\n            700.734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/92/SectionHeader/1\",\n        \"2\": \"/page/97/SectionHeader/8\",\n        \"4\": \"/page/98/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/99/Page/182\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/99/PageHeader/0'></content-ref><content-ref src='/page/99/PageHeader/16'></content-ref><content-ref src='/page/99/FigureGroup/179'></content-ref><content-ref src='/page/99/Code/3'></content-ref><content-ref src='/page/99/Text/4'></content-ref><content-ref src='/page/99/Code/5'></content-ref><content-ref src='/page/99/Text/6'></content-ref><content-ref src='/page/99/Code/7'></content-ref><content-ref src='/page/99/Text/8'></content-ref><content-ref src='/page/99/Text/9'></content-ref><content-ref src='/page/99/Code/10'></content-ref><content-ref src='/page/99/Text/11'></content-ref><content-ref src='/page/99/Text/12'></content-ref><content-ref src='/page/99/Text/13'></content-ref><content-ref src='/page/99/SectionHeader/14'></content-ref><content-ref src='/page/99/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/99/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.85986328125\n            ],\n            [\n              482.90625,\n              60.85986328125\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.85986328125,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.94189453125,\n              60.8115234375\n            ],\n            [\n              96.14794921875,\n              60.8115234375\n            ],\n            [\n              96.14794921875,\n              70.3828125\n            ],\n            [\n              84.94189453125,\n              70.3828125\n            ]\n          ],\n          \"bbox\": [\n            84.94189453125,\n            60.8115234375,\n            96.14794921875,\n            70.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/FigureGroup/179\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/99/Figure/178'></content-ref><content-ref src='/page/99/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              188.26171875,\n              86.28662109375\n            ],\n            [\n              380.109375,\n              86.28662109375\n            ],\n            [\n              380.109375,\n              155.55291748046875\n            ],\n            [\n              188.26171875,\n              155.55291748046875\n            ]\n          ],\n          \"bbox\": [\n            188.26171875,\n            86.28662109375,\n            380.109375,\n            155.55291748046875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/99/Figure/178\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  188.26171875,\n                  86.28662109375\n                ],\n                [\n                  380.109375,\n                  86.28662109375\n                ],\n                [\n                  380.109375,\n                  131.9677734375\n                ],\n                [\n                  188.26171875,\n                  131.9677734375\n                ]\n              ],\n              \"bbox\": [\n                188.26171875,\n                86.28662109375,\n                380.109375,\n                131.9677734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/92/SectionHeader/1\",\n                \"2\": \"/page/97/SectionHeader/8\",\n                \"4\": \"/page/98/SectionHeader/7\"\n              },\n              \"images\": {\n                \"/page/99/Figure/178\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAB6AgADASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD07+xLv/oZNb/7/R//ABFH9iXf/Qya3/3+j/8AiK2KKAMf+xLv/oZNb/7/AEf/AMRR/Yl3/wBDJrf/AH+j/wDiK2KKAMf+xLv/AKGTW/8Av9H/APEUf2Jd/wDQya3/AN/o/wD4itiigDH/ALEu/wDoZNb/AO/0f/xFH9iXf/Qya3/3+j/+IrYooAx/7Eu/+hk1v/v9H/8AEUf2Jd/9DJrf/f6P/wCIrYooAx/7Eu/+hk1v/v8AR/8AxFH9iXf/AEMmt/8Af6P/AOIqzrGtWGg2P23UZjFB5ix7ghb5mOAMAE9auTTR28Ek8rhIo1Lux6AAZJoAyv7Eu/8AoZNb/wC/0f8A8RR/Yl3/ANDJrf8A3+j/APiK0bK8t9Qsoby0lEtvMgeOQdGU9DU9AGP/AGJd/wDQya3/AN/o/wD4ij+xLv8A6GTW/wDv9H/8RWxRQBj/ANiXf/Qya3/3+j/+Io/sS7/6GTW/+/0f/wARWxRQBj/2Jd/9DJrf/f6P/wCIo/sS7/6GTW/+/wBH/wDEVsUUAY/9iXf/AEMmt/8Af6P/AOIo/sS7/wChk1v/AL/R/wDxFbFZw13Tz4gOhCc/2iIPtBi2Njy84zuxjr2zQBB/Yl3/ANDJrf8A3+j/APiKP7Eu/wDoZNb/AO/0f/xFbFFAGP8A2Jd/9DJrf/f6P/4ij+xLv/oZNb/7/R//ABFbFRLcwPcSW6TxtPGAXjDgsoPQkdRQBmf2Jd/9DJrf/f6P/wCIo/sS7/6GTW/+/wBH/wDEVsVnX+u6dpupafp93OUudQdktk2Md5AyeQMD8aAIP7Eu/wDoZNb/AO/0f/xFH9iXf/Qya3/3+j/+IrYooAx/7Eu/+hk1v/v9H/8AEUf2Jd/9DJrf/f6P/wCIrYooAx/7Eu/+hk1v/v8AR/8AxFH9iXf/AEMmt/8Af6P/AOIrYooAx/7Eu/8AoZNb/wC/0f8A8RR/Yl3/ANDJrf8A3+j/APiK2KKAMf8AsS7/AOhk1v8A7/R//EUf2Jd/9DJrf/f6P/4itiigDH/sS7/6GTW/+/0f/wARR/Yl3/0Mmt/9/o//AIitiqF3rVhZarY6ZcTFbu+3/Z02E79oy3IGBx60AVv7Eu/+hk1v/v8AR/8AxFH9iXf/AEMmt/8Af6P/AOIqLV/GfhvQbsWup6za21wRnymfLAe4HT8a17S7tr+1jurSeOe3kG5JYmDKw9iKAM3+xLv/AKGTW/8Av9H/APEUf2Jd/wDQya3/AN/o/wD4itiigDH/ALEu/wDoZNb/AO/0f/xFH9iXf/Qya3/3+j/+IrYooAx/7Eu/+hk1v/v9H/8AEUf2Jd/9DJrf/f6P/wCIrYooAx/7Eu/+hk1v/v8AR/8AxFH9iXf/AEMmt/8Af6P/AOIrYooAx/7Eu/8AoZNb/wC/0f8A8RR/Yl3/ANDJrf8A3+j/APiKn0vXdO1ma+hsZzI9jObe4BRl2OOo5HP1FaNAGP8A2Jd/9DJrf/f6P/4ij+xLv/oZNb/7/R//ABFaYuYGuWthPGbhVDtEHG4L6kdcVLQBj/2Jd/8AQya3/wB/o/8A4ij+xLv/AKGTW/8Av9H/APEVsUUAY/8AYl3/ANDJrf8A3+j/APiKP7Eu/wDoZNb/AO/0f/xFTxa7p82vz6JHOTqEEInki2Nwh4BzjH61o0AY/wDYl3/0Mmt/9/o//iKP7Eu/+hk1v/v9H/8AEVsUUAY/9iXf/Qya3/3+j/8AiKP7Eu/+hk1v/v8AR/8AxFbFFAGP/Yl3/wBDJrf/AH+j/wDiKP7Eu/8AoZNb/wC/0f8A8RWxRQAUUUUAFFFFAGT4mudQsvDOo3el7DewQNLEJF3KSvOMfQGuG8U/EfUbHwh4f1PR4oZbvUIzcTIy7gsaJmTAz2NenOqujIwBVhgg9xXkHg3wjqR8Rarpuq2c6aZp1tcWVjJJGQsizOTlSRg4XjigDr7zxXdTeLPDumaaYTbXlq99duy5KwgDbjnjJrJ07V/GvjCC51fQrvTtO01JXjs4biAyNcBTjczZ+UEjtVL4W6Dq4uNRu9etJ7eW3tk0u286MqWiTOWGeoPHIo8M+I5PAOjyeG9Z0fVHubSWQWr2tq0qXSMxKlWHGee9AFq8+I1//wAK5GvQWkcepQXy2d1bEbgHD7WC89x0+tWdS8ReKvDmhCfUlsbnV9Uuo4NOs4VISEsOjt1bHc1ztx4a1mP4ZSmfT521HUdZS/ktYoy7RK0gOCB6AZPpXX/EXTNQuLDS9V0y2a7utIvUu/syfelQcMF9TigDjfiAnjOw8O20euXen6hZ3F5AGe3hMTW7hwQPRlOCPXpXYfEjQJdV8M39yNZ1G0it7ORmtraQLHMQCfn4yR2xmuY8aeJrjxpolvp+g6DrEuy6hmunls2XygrD5fc59OgBr0TxXBLc+D9YggieWaSzlVI0UszEqcAAdTQBW8B/8iDoP/XlF/6DXRE4GT0rB8FW81r4J0W3uIZIZo7ONXjkUqykDkEHkGt0gEEEAg9QaAK39pWH/P7bf9/V/wAaP7SsP+f22/7+r/jVb/hG9C/6Aunf+Aqf4Uf8I3oX/QF07/wFT/CgCz/aVh/z+23/AH9X/GobvVYo7WRrOexmuAPkjluhGrc92AbHGexpn/CN6F/0BdO/8BU/wqC78NaY1rILLSNIS4I+RprNWQc9wME8e4oApf8ACaQW3Gp6fdWw7yQlLpPw8olvzUVp6f4k0TVZBHY6raTTH/lisoEg+qH5h+VYX/CvrS651KeJwesVlZRWyfmAZB/33Wppvgvw1pMiS2ei2izxnKTyJ5kq/R2y360AbtZGoWCW93da8GLXUNk8cSkDao+8T0yckDqe3Fa9UtY/5Al//wBe0n/oJoA870LV/iJ4q8NQa5Y3Gk2a7D5dtJAWNyV4JJz8oJBAxVuT4jXd94U0ebSrKL+3NVuTZpBMT5cMi8OxxyQOv41h+BfHp0LwBYWN5omqy3SRN9j+z2xkS5UklcMOAc8HPpSReF9c0Hw34d102Elzf2GoS315ZQjc4Sb7wUd2AxxQB0T6z4r8J6xpcfiK7sdS0zUZxbGeCAwvbyt93jOCp/OqGgQa6nxh8QNLfWjIkMDXAW3ILx4OxV+bgjjJ5z7Uur6s/wAQ9T0XTdI03UEs7W9S8vLu6t2iWMJyEGerE1dtbltM+MOsrPb3C/2laQLaS+SzRuyqcgsBgfjQBnaZ4i8a+K7O91fRNR0iEW8rrFpDxb5GCnGHYkFSfwH0ruo7B9Yj0fUNTge1urX9+1qCrBZSuOWGc4yehryrU5dA1KO6Ou+ENSsfFas4RtLtpVMj87XRlOGzxyc16l4Oi1WHwjpketszaksI84uctntk9zjGfegDcooooAKKKKACuW8ca9f+G7DT9RtREbUXsUV6HXJETHBI9CDiuprG8W6QNe8J6npmMvPAwj/3xyv6gUAcrrvju+034k6do0McLaUxiiu5SuWWSXdsAOeOgqe48c3FnrXiuaVY20fQ4EACr88k7DO3d+nTvXJWHh3XNV+G+u6nf6fcxa7NPFPBC8TCX/RwoXCkZ5w2PrWzpnhPUtX+FOsQ3cD2+s61JLePHMpRlctlVIPI4UdfWgCWbU/iHZeH/wDhKJ5tLkgWMXMmkrAQVi6kCTOdwH4Va17xrqxvPDEXhyC3m/tyCR0FwDhDtUqSR2XJJHfFZt543utQ8IP4fh8P6t/wkM1t9ka2a1YIjFdpcueNvU5q2nh290vxH4Atlt5potOtZorieOMlEbywOW6DJzjNAE+o634rt73SvClncWM2v3EL3F3fPERFDEGIBCdz2/8A11jynxHB8VvCtl4gktLoxrcPBeWyGPzAUwQy9iMdvWtjxV9r8OePLDxYlhc3unNZtZXgto98kI3blfaOo9azzql74p+JXhzU7LRtRj0azWdftU9syBnZDk47L0AJ6nNAG1Y6Fongqx1fU/EN5ZzyX1y8011cRAEqekYBJJx6Dr6VB8KLSaDQ9RuFt5LXTbu/kn0+CQYKQnGDjsD2rkbLVJLjxDd6z4p8F+KdTvFnYWUa6az29tED8u1WIG7uTivVPDuvHxBZyznSNU0zy32eXqNv5LtxnIGTkUAa0kiRIXkdUQdWY4Aqv/aVh/z+23/f1f8AGpri3gu4GguYY5oX+9HIoZT9Qaof8I3oX/QF07/wFT/CgCz/AGlYf8/tt/39X/Gj+0rD/n9tv+/q/wCNVv8AhG9C/wCgLp3/AICp/hR/wjehf9AXTv8AwFT/AAoAZqOsm3iR9P8AsN22750e9WIgf7PBBPsSPrWcvjnTYmCajBd2DeskYlT/AL7iLqB9SKn1HwvaSxIum6dolu5b55LjTllwPZQV5+prPHw50i4IbUna677Ioo7ZB9PKVWx9WNAHR6frOmaspbTtRtbsKMt5Eyvt+uDxV2svS/Dmi6KxbTdKs7WQjBkihAdh7t1P4mtSgDj/ABNeDwL4b1rXbSP7Td3EyyHzcBAxwi52gfKBj3PrzVLS7nxzFeaZdyX2l67pd24W4+xxiP7OCPvK275gPz9q6DxjcX9r4ZuZtP0qLVJFx5lnIu4Sx5+YBe5x2ry5LfSbrXdLm8BaPrOmambpGvP3UkUCRfxiQMdv4CgDesYdcT42ak7X9n5a2Mby/wCjnm33nCD5uGH979Ks6dq/jXxhBc6voV3p2naakrx2cNxAZGuApxuZs/KCR2qSeUWHxiuftcFyINS0yO2gmSFmQvuOQWAwPxrO8M+I5PAOjyeG9Z0fVHubSWQWr2tq0qXSMxKlWHGee9AEt/8AEnUx4Es9YtbGJdTXUlsLu0OSN4JDKp7Z4we2an1TWfHHhKGDW9an0y90tpUW7tbeEo1srHGVYn5sE9//AK9crrWlato/w5tLu5tdmqX/AIhS+FqTyjMSVQ+/A/Ot7xR4ln8caMPDGk6JqkV9eSIt0bq2aNLVAwLFmPB6cYoA9Eh0y3OsyayHZ5pYFhQYAVUznjAycnHUnoK0KjgiEFvHEpyEUKD9BipKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqC8t/tdjcW27b5sbR7sZxkYzU9FAGP4W0Q+G/DNho5uBcG1j2eaE27uSemTjr61sVBElyt1cNLKjQNt8lAuCnHOT3yanoAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAwfFXhw+JbOxgF0Lf7LexXeSm7dsOdvUYz61vUVBE1ybm4EyRiAFfJZSdzDHO705oAnooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigCCKO4W6uHkuA8L7fKj2AeXgc898nn2qeoIoZkuriR7gyRSbfLiKgCPAwee+TzU9ABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABUEX2r7Tced5P2fK+Rszuxj5t2eOvTHap6giW6FzcGZ4zASvkhQdwGOd3rzQBPRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAEEUDx3VxK1w7pLt2xtjEeBg4+vWp6KKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACoIkuFubhpZleFivkoFwUGOcnvk81PRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAc5pcto3jfXIotTvJrlIoTLZyZ8qAEcFO2T3ro64Xw//AMla8W/9e9r/AOgmu5bJU7SAccEjNAC0VhfYvFH/AEHdM/8ABW//AMfo+xeKP+g7pn/grf8A+P0AbtRXFzBZwNPczxwQrjdJK4VRk4GSeOprH+xeKP8AoO6Z/wCCt/8A4/Ve+i1+1spZrzXdLFuo+fOkO3B46CY5oA6OORJY1kjdXRhkMpyD+NOrymTRtVupDJodn5UjHP2i20uTTVJ9WzcIzf8AfDV0nhnSfHVpKra34gsLiAHmBbUu2PQSZQg+5DUAdlXB6/f6trvjiPwppWpSaZbwWv2u9uoFBlOThUUnp65rvK4CxIs/jfqiTHab7S4ngz/FsOGAoAm8LalqumeML/wlrF++oiO3W7sruRQJGjJwVbHUg967muAiIvfjlM8J3JY6QI5iOisz5APvjmu/oAKKKKACiiigAooooAKK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\"\n              }\n            },\n            {\n              \"id\": \"/page/99/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-99-1\\\"></span>Figure 8.2: State diagram.</p>\",\n              \"polygon\": [\n                [\n                  227.5576171875,\n                  145.01953125\n                ],\n                [\n                  341.859375,\n                  145.01953125\n                ],\n                [\n                  341.859375,\n                  155.55291748046875\n                ],\n                [\n                  227.5576171875,\n                  155.55291748046875\n                ]\n              ],\n              \"bbox\": [\n                227.5576171875,\n                145.01953125,\n                341.859375,\n                155.55291748046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/92/SectionHeader/1\",\n                \"2\": \"/page/97/SectionHeader/8\",\n                \"4\": \"/page/98/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/99/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>File \\\"reverse.py\\\", line 15, in is_reverse\\n    if word1[i] != word2[j]:\\nIndexError: string index out of range</pre>\",\n          \"polygon\": [\n            [\n              86.39998626708984,\n              178.27734375\n            ],\n            [\n              311.3128356933594,\n              178.27734375\n            ],\n            [\n              311.3128356933594,\n              214.048828125\n            ],\n            [\n              86.39998626708984,\n              214.048828125\n            ]\n          ],\n          \"bbox\": [\n            86.39998626708984,\n            178.27734375,\n            311.3128356933594,\n            214.048828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For debugging this kind of error, my first move is to print the values of the indices immediately before the line where the error appears.</p>\",\n          \"polygon\": [\n            [\n              84.7177734375,\n              218.689453125\n            ],\n            [\n              482.40338134765625,\n              218.689453125\n            ],\n            [\n              482.40338134765625,\n              241.505859375\n            ],\n            [\n              84.7177734375,\n              241.505859375\n            ]\n          ],\n          \"bbox\": [\n            84.7177734375,\n            218.689453125,\n            482.40338134765625,\n            241.505859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>while j &gt; 0:\\n   print i, j # print here\\n   if word1[i] != word2[j]:\\n       return False\\n   i = i+1\\n   j = j-1</pre>\",\n          \"polygon\": [\n            [\n              105.56103515625,\n              247.82684326171875\n            ],\n            [\n              285.1339416503906,\n              247.82684326171875\n            ],\n            [\n              285.1339416503906,\n              334.51171875\n            ],\n            [\n              105.56103515625,\n              334.51171875\n            ]\n          ],\n          \"bbox\": [\n            105.56103515625,\n            247.82684326171875,\n            285.1339416503906,\n            334.51171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now when I run the program again, I get more information:</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              337.21875\n            ],\n            [\n              350.6977233886719,\n              337.21875\n            ],\n            [\n              350.6977233886719,\n              347.5429992675781\n            ],\n            [\n              85.166015625,\n              347.5429992675781\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            337.21875,\n            350.6977233886719,\n            347.5429992675781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; is_reverse('pots', 'stop')\\n0 4\\n...\\nIndexError: string index out of range</pre>\",\n          \"polygon\": [\n            [\n              84.7177734375,\n              353.86785888671875\n            ],\n            [\n              279.9334411621094,\n              353.86785888671875\n            ],\n            [\n              279.9334411621094,\n              400.4134521484375\n            ],\n            [\n              84.7177734375,\n              400.4134521484375\n            ]\n          ],\n          \"bbox\": [\n            84.7177734375,\n            353.86785888671875,\n            279.9334411621094,\n            400.4134521484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first time through the loop, the value of j is 4, which is out of range for the string 'pots'. The index of the last character is 3, so the initial value for j should be len(word2)-1.</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              406.0546875\n            ],\n            [\n              482.40484619140625,\n              406.0546875\n            ],\n            [\n              482.40484619140625,\n              441.6328125\n            ],\n            [\n              85.0166015625,\n              441.6328125\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            406.0546875,\n            482.40484619140625,\n            441.6328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If I fix that error and run the program again, I get:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              451.30078125\n            ],\n            [\n              304.9893493652344,\n              451.30078125\n            ],\n            [\n              304.9893493652344,\n              461.79803466796875\n            ],\n            [\n              85.3154296875,\n              461.79803466796875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            451.30078125,\n            304.9893493652344,\n            461.79803466796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; is_reverse('pots', 'stop')\\n0 3\\n1 2\\n2 1\\nTrue</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              468.1228942871094\n            ],\n            [\n              250.2685546875,\n              468.1228942871094\n            ],\n            [\n              250.2685546875,\n              526.8624877929688\n            ],\n            [\n              85.9130859375,\n              526.8624877929688\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            468.1228942871094,\n            250.2685546875,\n            526.8624877929688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This time we get the right answer, but it looks like the loop only ran three times, which is suspicious. To get a better idea of what is happening, it is useful to draw a state diagram. During the first iteration, the frame for is_reverse is shows in Figure <a href=\\\"#page-99-1\\\">8.2.</a></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              532.8984375\n            ],\n            [\n              482.607421875,\n              532.8984375\n            ],\n            [\n              482.607421875,\n              567.8380584716797\n            ],\n            [\n              85.46484375,\n              567.8380584716797\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            532.8984375,\n            482.607421875,\n            567.8380584716797\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I took a little license by arranging the variables in the frame and adding dotted lines to show that the values of i and j indicate characters in word1 and word2.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              577.7578125\n            ],\n            [\n              482.4034423828125,\n              577.7578125\n            ],\n            [\n              482.4034423828125,\n              601.734375\n            ],\n            [\n              85.3154296875,\n              601.734375\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            577.7578125,\n            482.4034423828125,\n            601.734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-99-2\\\"></span><b>Exercise 8.9.</b> <i>Starting with this diagram, execute the program on paper, changing the values of</i> i <i>and</i> j <i>during each iteration. Find and fix the second error in this function.</i></p>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              602.5007629394531\n            ],\n            [\n              482.4013977050781,\n              602.5007629394531\n            ],\n            [\n              482.4013977050781,\n              624.6805114746094\n            ],\n            [\n              84.8671875,\n              624.6805114746094\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            602.5007629394531,\n            482.4013977050781,\n            624.6805114746094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/98/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/SectionHeader/14\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-99-0\\\"></span><b>8.12 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              654.71484375\n            ],\n            [\n              184.02589416503906,\n              654.71484375\n            ],\n            [\n              184.02589416503906,\n              669.3321151733398\n            ],\n            [\n              85.68896484375,\n              669.3321151733398\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            654.71484375,\n            184.02589416503906,\n            669.3321151733398\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/99/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>object:</b> Something a variable can refer to. For now, you can use \\\"object\\\" and \\\"value\\\" interchangeably.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              677.53125\n            ],\n            [\n              482.4032287597656,\n              677.53125\n            ],\n            [\n              482.4032287597656,\n              700.835075378418\n            ],\n            [\n              86.2119140625,\n              700.835075378418\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            677.53125,\n            482.4032287597656,\n            700.835075378418\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/92/SectionHeader/1\",\n        \"2\": \"/page/97/SectionHeader/8\",\n        \"4\": \"/page/99/SectionHeader/14\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/100/Page/177\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/100/PageHeader/0'></content-ref><content-ref src='/page/100/PageHeader/19'></content-ref><content-ref src='/page/100/ListItem/1'></content-ref><content-ref src='/page/100/Text/2'></content-ref><content-ref src='/page/100/Text/3'></content-ref><content-ref src='/page/100/Text/4'></content-ref><content-ref src='/page/100/ListItem/5'></content-ref><content-ref src='/page/100/Text/6'></content-ref><content-ref src='/page/100/ListItem/7'></content-ref><content-ref src='/page/100/Text/8'></content-ref><content-ref src='/page/100/ListItem/9'></content-ref><content-ref src='/page/100/Text/10'></content-ref><content-ref src='/page/100/Text/11'></content-ref><content-ref src='/page/100/SectionHeader/12'></content-ref><content-ref src='/page/100/Text/13'></content-ref><content-ref src='/page/100/Code/14'></content-ref><content-ref src='/page/100/Text/15'></content-ref><content-ref src='/page/100/Text/16'></content-ref><content-ref src='/page/100/Text/17'></content-ref><content-ref src='/page/100/Code/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/100/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.01904296875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              515.77734375,\n              60.71484375\n            ],\n            [\n              525.33984375,\n              60.71484375\n            ],\n            [\n              525.33984375,\n              69.609375\n            ],\n            [\n              515.77734375,\n              69.609375\n            ]\n          ],\n          \"bbox\": [\n            515.77734375,\n            60.71484375,\n            525.33984375,\n            69.609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/ListItem/1\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>sequence:</b> An ordered set; that is, a set of values where each value is identified by an integer index.</li>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              88.7381591796875\n            ],\n            [\n              525.9375,\n              88.7381591796875\n            ],\n            [\n              525.9375,\n              110.99188232421875\n            ],\n            [\n              129.60000610351562,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            88.7381591796875,\n            525.9375,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>item:</b> One of the values in a sequence.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              120.953125\n            ],\n            [\n              298.49591064453125,\n              120.953125\n            ],\n            [\n              298.49591064453125,\n              131.01287841796875\n            ],\n            [\n              128.197265625,\n              131.01287841796875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            120.953125,\n            298.49591064453125,\n            131.01287841796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>index:</b> An integer value used to select an item in a sequence, such as a character in a string.</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              140.97412109375\n            ],\n            [\n              525.6030883789062,\n              140.97412109375\n            ],\n            [\n              525.6030883789062,\n              151.03387451171875\n            ],\n            [\n              127.7490234375,\n              151.03387451171875\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            140.97412109375,\n            525.6030883789062,\n            151.03387451171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>slice:</b> A part of a string specified by a range of indices.</p>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              173.18914794921875\n            ],\n            [\n              370.3261413574219,\n              173.18914794921875\n            ],\n            [\n              370.3261413574219,\n              183.2489013671875\n            ],\n            [\n              127.97314453125,\n              183.2489013671875\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            173.18914794921875,\n            370.3261413574219,\n            183.2489013671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/ListItem/5\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>empty string:</b> A string with no characters and length 0, represented by two quotation marks.</li>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              193.21014404296875\n            ],\n            [\n              525.6033935546875,\n              193.21014404296875\n            ],\n            [\n              525.6033935546875,\n              215.46392822265625\n            ],\n            [\n              128.0478515625,\n              215.46392822265625\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            193.21014404296875,\n            525.6033935546875,\n            215.46392822265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>immutable:</b> The property of a sequence whose items cannot be assigned.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              225.4251708984375\n            ],\n            [\n              452.1889343261719,\n              225.4251708984375\n            ],\n            [\n              452.1889343261719,\n              235.48492431640625\n            ],\n            [\n              128.0478515625,\n              235.48492431640625\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            225.4251708984375,\n            452.1889343261719,\n            235.48492431640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/ListItem/7\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>traverse:</b> To iterate through the items in a sequence, performing a similar operation on each.</li>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              245.4461669921875\n            ],\n            [\n              525.6033935546875,\n              245.4461669921875\n            ],\n            [\n              525.6033935546875,\n              267.69989013671875\n            ],\n            [\n              127.8984375,\n              267.69989013671875\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            245.4461669921875,\n            525.6033935546875,\n            267.69989013671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>search:</b> A pattern of traversal that stops when it finds what it is looking for.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              277.6611328125\n            ],\n            [\n              462.2711486816406,\n              277.6611328125\n            ],\n            [\n              462.2711486816406,\n              287.7208557128906\n            ],\n            [\n              128.6455078125,\n              287.7208557128906\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            277.6611328125,\n            462.2711486816406,\n            287.7208557128906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/ListItem/9\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>counter:</b> A variable used to count something, usually initialized to zero and then incremented.</li>\",\n          \"polygon\": [\n            [\n              129.09375,\n              297.68212890625\n            ],\n            [\n              525.6032104492188,\n              297.68212890625\n            ],\n            [\n              525.6032104492188,\n              319.93585205078125\n            ],\n            [\n              129.09375,\n              319.93585205078125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            297.68212890625,\n            525.6032104492188,\n            319.93585205078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>method:</b> A function that is associated with an object and called using dot notation.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              329.8971252441406\n            ],\n            [\n              494.46026611328125,\n              329.8971252441406\n            ],\n            [\n              494.46026611328125,\n              339.95684814453125\n            ],\n            [\n              129.2431640625,\n              339.95684814453125\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            329.8971252441406,\n            494.46026611328125,\n            339.95684814453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>invocation:</b> A statement that calls a method.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              349.9181213378906\n            ],\n            [\n              326.82940673828125,\n              349.9181213378906\n            ],\n            [\n              326.82940673828125,\n              359.97784423828125\n            ],\n            [\n              129.392578125,\n              359.97784423828125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            349.9181213378906,\n            326.82940673828125,\n            359.97784423828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/99/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-100-0\\\"></span><b>8.13 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              389.08367919921875\n            ],\n            [\n              228.80398559570312,\n              389.08367919921875\n            ],\n            [\n              228.80398559570312,\n              403.4299011230469\n            ],\n            [\n              128.9443359375,\n              403.4299011230469\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            389.08367919921875,\n            228.80398559570312,\n            403.4299011230469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 8.10.</b> <i>A string slice can take a third index that specifies the \\\"step size;\\\" that is, the number</i> <i>of spaces between successive characters. A step size of 2 means every other character; 3 means every</i> <i>third, etc.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              415.4345397949219\n            ],\n            [\n              525.6035766601562,\n              415.4345397949219\n            ],\n            [\n              525.6035766601562,\n              449.7861328125\n            ],\n            [\n              128.6455078125,\n              449.7861328125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            415.4345397949219,\n            525.6035766601562,\n            449.7861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; fruit = 'banana'\\n&gt;&gt;&gt; fruit[0:5:2]\\n'bnn'</pre>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              455.84368896484375\n            ],\n            [\n              234.1833953857422,\n              455.84368896484375\n            ],\n            [\n              234.1833953857422,\n              490.74609375\n            ],\n            [\n              127.97314453125,\n              490.74609375\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            455.84368896484375,\n            234.1833953857422,\n            490.74609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>A step size of -1 goes through the word backwards, so the slice</i> [::-1] <i>generates a reversed string.</i></p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              496.2065734863281\n            ],\n            [\n              522.5155029296875,\n              496.2065734863281\n            ],\n            [\n              522.5155029296875,\n              506.1922912597656\n            ],\n            [\n              129.5419921875,\n              506.1922912597656\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            496.2065734863281,\n            522.5155029296875,\n            506.1922912597656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Use this idiom to write a one-line version of</i> is_palindrome <i>from Exercise </i><i><a href=\\\"#page-82-0\\\">6.6.</a></i> <b>Exercise 8.11.</b> <i>The following functions are all</i> intended <i>to check whether a string contains any</i></p>\",\n          \"polygon\": [\n            [\n              126.8525390625,\n              516.1765747070312\n            ],\n            [\n              525.5995483398438,\n              516.1765747070312\n            ],\n            [\n              525.5995483398438,\n              545.66015625\n            ],\n            [\n              126.8525390625,\n              545.66015625\n            ]\n          ],\n          \"bbox\": [\n            126.8525390625,\n            516.1765747070312,\n            525.5995483398438,\n            545.66015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>lowercase letters, but at least some of them are wrong. For each function, describe what the function</i> <i>actually does (assuming that the parameter is a string).</i></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              540.5645599365234\n            ],\n            [\n              525.6033935546875,\n              540.5645599365234\n            ],\n            [\n              525.6033935546875,\n              566.9296875\n            ],\n            [\n              129.392578125,\n              566.9296875\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            540.5645599365234,\n            525.6033935546875,\n            566.9296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/100/Code/18\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def any_lowercase1(s):\\n    for c in s:\\n        if c.islower():\\n            return True\\n        else:\\n            return False\\ndef any_lowercase2(s):\\n    for c in s:\\n        if 'c'.islower():\\n            return 'True'</pre>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              568.7797088623047\n            ],\n            [\n              262.669921875,\n              568.7797088623047\n            ],\n            [\n              262.669921875,\n              700.6853179931641\n            ],\n            [\n              128.27197265625,\n              700.6853179931641\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            568.7797088623047,\n            262.669921875,\n            700.6853179931641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/92/SectionHeader/1\",\n        \"2\": \"/page/97/SectionHeader/8\",\n        \"4\": \"/page/100/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/101/Page/119\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/101/PageHeader/0'></content-ref><content-ref src='/page/101/PageHeader/7'></content-ref><content-ref src='/page/101/Code/1'></content-ref><content-ref src='/page/101/Text/2'></content-ref><content-ref src='/page/101/Text/3'></content-ref><content-ref src='/page/101/Text/4'></content-ref><content-ref src='/page/101/Text/5'></content-ref><content-ref src='/page/101/Text/6'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/101/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.6181640625\n            ],\n            [\n              482.4034118652344,\n              60.6181640625\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.6181640625,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/101/PageHeader/7\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              61.1982421875\n            ],\n            [\n              96.89501953125,\n              61.1982421875\n            ],\n            [\n              96.89501953125,\n              70.2861328125\n            ],\n            [\n              85.53955078125,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            61.1982421875,\n            96.89501953125,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/101/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>else:\\n            return 'False'\\ndef any_lowercase3(s):\\n    for c in s:\\n        flag = c.islower()\\n    return flag\\ndef any_lowercase4(s):\\n    flag = False\\n    for c in s:\\n        flag = flag or c.islower()\\n    return flag\\ndef any_lowercase5(s):\\n    for c in s:\\n        if not c.islower():\\n            return False\\n    return True</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              86.431640625\n            ],\n            [\n              271.1865234375,\n              86.431640625\n            ],\n            [\n              271.1865234375,\n              318.1463623046875\n            ],\n            [\n              85.9130859375,\n              318.1463623046875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            86.431640625,\n            271.1865234375,\n            318.1463623046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/101/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-101-0\\\"></span><b>Exercise 8.12.</b> <i>ROT13 is a weak form of encryption that involves \\\"rotating\\\" each letter in a word</i> <i>by 13 places. To rotate a letter means to shift it through the alphabet, wrapping around to the</i> <i>beginning if necessary, so 'A' shifted by 3 is 'D' and 'Z' shifted by 1 is 'A'.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              319.81640625\n            ],\n            [\n              482.40338134765625,\n              319.81640625\n            ],\n            [\n              482.40338134765625,\n              354.70623779296875\n            ],\n            [\n              85.6142578125,\n              354.70623779296875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            319.81640625,\n            482.40338134765625,\n            354.70623779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/101/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a function called</i> rotate_word <i>that takes a string and an integer as parameters, and that</i> <i>returns a new string that contains the letters from the original string \\\"rotated\\\" by the given amount.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              364.482421875\n            ],\n            [\n              482.4034423828125,\n              364.482421875\n            ],\n            [\n              482.4034423828125,\n              387.0372314453125\n            ],\n            [\n              85.6142578125,\n              387.0372314453125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            364.482421875,\n            482.4034423828125,\n            387.0372314453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/101/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>For example, \\\"cheer\\\" rotated by 7 is \\\"jolly\\\" and \\\"melon\\\" rotated by -10 is \\\"cubed\\\".</i></p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              396.0\n            ],\n            [\n              420.75,\n              396.0\n            ],\n            [\n              420.75,\n              407.17523193359375\n            ],\n            [\n              85.9130859375,\n              407.17523193359375\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            396.0,\n            420.75,\n            407.17523193359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/101/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>You might want to use the built-in functions</i> ord<i>, which converts a character to a numeric code,</i> <i>and</i> chr<i>, which converts numeric codes to characters.</i></p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              416.49609375\n            ],\n            [\n              482.4031677246094,\n              416.49609375\n            ],\n            [\n              482.4031677246094,\n              439.5303649902344\n            ],\n            [\n              85.166015625,\n              439.5303649902344\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            416.49609375,\n            482.4031677246094,\n            439.5303649902344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/101/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Potentially offensive jokes on the Internet are sometimes encoded in ROT13. If you are not easily</i> <i>offended, find and decode some of them. Solution:</i> <a href=\\\"http://thinkpython.com/code/rotate.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/rotate.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/rotate.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/rotate.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/rotate.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/rotate.py\\\">rotate.</a> <a href=\\\"http://thinkpython.com/code/rotate.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              448.59375\n            ],\n            [\n              482.4035339355469,\n              448.59375\n            ],\n            [\n              482.4035339355469,\n              484.171875\n            ],\n            [\n              85.3154296875,\n              484.171875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            448.59375,\n            482.4035339355469,\n            484.171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/97/SectionHeader/8\",\n            \"4\": \"/page/100/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/92/SectionHeader/1\",\n        \"2\": \"/page/97/SectionHeader/8\",\n        \"4\": \"/page/100/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/102/Page/154\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/102/SectionHeader/0'></content-ref><content-ref src='/page/102/SectionHeader/1'></content-ref><content-ref src='/page/102/SectionHeader/2'></content-ref><content-ref src='/page/102/Text/3'></content-ref><content-ref src='/page/102/Text/4'></content-ref><content-ref src='/page/102/Code/5'></content-ref><content-ref src='/page/102/Text/6'></content-ref><content-ref src='/page/102/Text/7'></content-ref><content-ref src='/page/102/Code/8'></content-ref><content-ref src='/page/102/Text/9'></content-ref><content-ref src='/page/102/Text/10'></content-ref><content-ref src='/page/102/Code/11'></content-ref><content-ref src='/page/102/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/102/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-102-0\\\"></span><b>Chapter 9</b></h2>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              162.73150634765625\n            ],\n            [\n              220.84561157226562,\n              162.73150634765625\n            ],\n            [\n              220.84561157226562,\n              183.39398193359375\n            ],\n            [\n              129.2431640625,\n              183.39398193359375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            162.73150634765625,\n            220.84561157226562,\n            183.39398193359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/92/SectionHeader/1\",\n            \"2\": \"/page/102/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Case study: word play</b></h1>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              216.69732666015625\n            ],\n            [\n              381.684814453125,\n              216.69732666015625\n            ],\n            [\n              381.684814453125,\n              241.484375\n            ],\n            [\n              128.42138671875,\n              241.484375\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            216.69732666015625,\n            381.684814453125,\n            241.484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-102-1\\\"></span><b>9.1 Reading word lists</b></h4>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              288.9817810058594\n            ],\n            [\n              285.3853759765625,\n              288.9817810058594\n            ],\n            [\n              285.3853759765625,\n              303.3280029296875\n            ],\n            [\n              128.27197265625,\n              303.3280029296875\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            288.9817810058594,\n            285.3853759765625,\n            303.3280029296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For the exercises in this chapter we need a list of English words. There are lots of word lists available on the Web, but the one most suitable for our purpose is one of the word lists collected and contributed to the public domain by Grady Ward as part of the Moby lexicon project (see <a href=\\\"http://wikipedia.org/wiki/Moby_Project\\\">http://wikipedia.org/wiki/Moby_Project</a>). It is a list of 113,809 official crosswords; that is, words that are considered valid in crossword puzzles and other word games. In the Moby collection, the filename is 113809of.fic; you can download a copy, with the simpler name words.txt, from <a href=\\\"http://thinkpython.com/code/words.txt\\\">http://thinkpython.com/code/words.txt</a>.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              314.2833557128906\n            ],\n            [\n              525.9375,\n              314.2833557128906\n            ],\n            [\n              525.9375,\n              397.4119567871094\n            ],\n            [\n              127.8984375,\n              397.4119567871094\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            314.2833557128906,\n            525.9375,\n            397.4119567871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This file is in plain text, so you can open it with a text editor, but you can also read it from Python. The built-in function open takes the name of the file as a parameter and returns a <b>file object</b> you can use to read the file.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              405.28125\n            ],\n            [\n              525.9375,\n              405.28125\n            ],\n            [\n              525.9375,\n              440.5479431152344\n            ],\n            [\n              127.8984375,\n              440.5479431152344\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            405.28125,\n            525.9375,\n            440.5479431152344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; fin = open('words.txt')\\n&gt;&gt;&gt; print fin\\n&lt;open file 'words.txt', mode 'r' at 0xb7f4b380&gt;</pre>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              443.56640625\n            ],\n            [\n              375.3861999511719,\n              443.56640625\n            ],\n            [\n              375.3861999511719,\n              482.23828125\n            ],\n            [\n              128.86962890625,\n              482.23828125\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            443.56640625,\n            375.3861999511719,\n            482.23828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">fin is a common name for a file object used for input. Mode 'r' indicates that this file is open for reading (as opposed to 'w' for writing).</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              484.37579345703125\n            ],\n            [\n              525.9375,\n              484.37579345703125\n            ],\n            [\n              525.9375,\n              506.98828125\n            ],\n            [\n              129.5419921875,\n              506.98828125\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            484.37579345703125,\n            525.9375,\n            506.98828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The file object provides several methods for reading, including readline, which reads characters from the file until it gets to a newline and returns the result as a string:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              514.72265625\n            ],\n            [\n              525.9375,\n              514.72265625\n            ],\n            [\n              525.9375,\n              537.6239624023438\n            ],\n            [\n              128.6455078125,\n              537.6239624023438\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            514.72265625,\n            525.9375,\n            537.6239624023438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; fin.readline()\\n'aa\\\\r\\\\n'</pre>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              542.1796875\n            ],\n            [\n              223.75668334960938,\n              542.1796875\n            ],\n            [\n              223.75668334960938,\n              564.4454193115234\n            ],\n            [\n              128.72021484375,\n              564.4454193115234\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            542.1796875,\n            223.75668334960938,\n            564.4454193115234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first word in this particular list is \\\"aa,\\\" which is a kind of lava. The sequence \\\\r\\\\n represents two whitespace characters, a carriage return and a newline, that separate this word from the next.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              568.86328125\n            ],\n            [\n              525.9375,\n              568.86328125\n            ],\n            [\n              525.9375,\n              603.7589721679688\n            ],\n            [\n              128.49609375,\n              603.7589721679688\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            568.86328125,\n            525.9375,\n            603.7589721679688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The file object keeps track of where it is in the file, so if you call readline again, you get the next word:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              612.17578125\n            ],\n            [\n              525.9375,\n              612.17578125\n            ],\n            [\n              525.9375,\n              634.7009887695312\n            ],\n            [\n              128.49609375,\n              634.7009887695312\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            612.17578125,\n            525.9375,\n            634.7009887695312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; fin.readline()\\n'aah\\\\r\\\\n'</pre>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              638.47265625\n            ],\n            [\n              225.31640625,\n              638.47265625\n            ],\n            [\n              225.31640625,\n              661.5214385986328\n            ],\n            [\n              128.27197265625,\n              661.5214385986328\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            638.47265625,\n            225.31640625,\n            661.5214385986328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/102/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The next word is \\\"aah,\\\" which is a perfectly legitimate word, so stop looking at me like that. Or, if it's the whitespace that's bothering you, we can get rid of it with the string method strip:</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              665.54296875\n            ],\n            [\n              526.236328125,\n              665.54296875\n            ],\n            [\n              526.236328125,\n              700.8349990844727\n            ],\n            [\n              129.392578125,\n              700.8349990844727\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            665.54296875,\n            526.236328125,\n            700.8349990844727\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/102/SectionHeader/1\",\n        \"4\": \"/page/102/SectionHeader/2\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/103/Page/226\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/103/PageHeader/0'></content-ref><content-ref src='/page/103/Code/1'></content-ref><content-ref src='/page/103/Text/2'></content-ref><content-ref src='/page/103/Text/3'></content-ref><content-ref src='/page/103/Code/4'></content-ref><content-ref src='/page/103/Text/5'></content-ref><content-ref src='/page/103/SectionHeader/6'></content-ref><content-ref src='/page/103/Text/7'></content-ref><content-ref src='/page/103/Text/8'></content-ref><content-ref src='/page/103/Text/9'></content-ref><content-ref src='/page/103/Text/10'></content-ref><content-ref src='/page/103/Text/11'></content-ref><content-ref src='/page/103/Text/12'></content-ref><content-ref src='/page/103/Text/13'></content-ref><content-ref src='/page/103/Text/14'></content-ref><content-ref src='/page/103/Text/15'></content-ref><content-ref src='/page/103/Text/16'></content-ref><content-ref src='/page/103/Text/17'></content-ref><content-ref src='/page/103/SectionHeader/18'></content-ref><content-ref src='/page/103/Text/19'></content-ref><content-ref src='/page/103/Text/224'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/103/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.69970703125\n            ],\n            [\n              482.40350341796875,\n              59.69970703125\n            ],\n            [\n              482.40350341796875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.69970703125,\n            482.40350341796875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; line = fin.readline()\\n&gt;&gt;&gt; word = line.strip()\\n&gt;&gt;&gt; print word</pre>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              87.35009765625\n            ],\n            [\n              217.16905212402344,\n              87.35009765625\n            ],\n            [\n              217.16905212402344,\n              126.650390625\n            ],\n            [\n              85.83837890625,\n              126.650390625\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            87.35009765625,\n            217.16905212402344,\n            126.650390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">aahed</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              125.26873779296875\n            ],\n            [\n              113.03173828125,\n              125.26873779296875\n            ],\n            [\n              113.03173828125,\n              136.2216796875\n            ],\n            [\n              85.83837890625,\n              136.2216796875\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            125.26873779296875,\n            113.03173828125,\n            136.2216796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can also use a file object as part of a for loop. This program reads words.txt and prints each word, one per line:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              138.1552734375\n            ],\n            [\n              482.607421875,\n              138.1552734375\n            ],\n            [\n              482.607421875,\n              162.33392333984375\n            ],\n            [\n              85.46484375,\n              162.33392333984375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            138.1552734375,\n            482.607421875,\n            162.33392333984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>fin = open('words.txt')\\nfor line in fin:\\n    word = line.strip()\\n    print word</pre>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              166.095703125\n            ],\n            [\n              211.1220703125,\n              166.095703125\n            ],\n            [\n              211.1220703125,\n              216.17578125\n            ],\n            [\n              85.166015625,\n              216.17578125\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            166.095703125,\n            211.1220703125,\n            216.17578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 9.1.</b> <i>Write a program that reads</i> words.txt <i>and prints only the words with more than 20</i> <i>characters (not counting whitespace).</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              215.733642578125\n            ],\n            [\n              482.4020690917969,\n              215.733642578125\n            ],\n            [\n              482.4020690917969,\n              237.8912353515625\n            ],\n            [\n              85.6142578125,\n              237.8912353515625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            215.733642578125,\n            482.4020690917969,\n            237.8912353515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"4\": \"/page/102/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-103-0\\\"></span><b>9.2 Exercises</b></h2>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              264.12890625\n            ],\n            [\n              178.430908203125,\n              264.12890625\n            ],\n            [\n              178.430908203125,\n              279.781005859375\n            ],\n            [\n              85.6142578125,\n              279.781005859375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            264.12890625,\n            178.430908203125,\n            279.781005859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are solutions to these exercises in the next section. You should at least attempt each one before you read the solutions.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              290.0390625\n            ],\n            [\n              482.90625,\n              290.0390625\n            ],\n            [\n              482.90625,\n              312.8759460449219\n            ],\n            [\n              85.9130859375,\n              312.8759460449219\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            290.0390625,\n            482.90625,\n            312.8759460449219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 9.2.</b> <i>In 1939 Ernest Vincent Wright published a 50,000 word novel called</i> Gadsby <i>that</i> <i>does not contain the letter \\\"e.\\\" Since \\\"e\\\" is the most common letter in English, that's not easy to</i> <i>do.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              314.40234375\n            ],\n            [\n              482.90625,\n              314.40234375\n            ],\n            [\n              482.90625,\n              349.2862548828125\n            ],\n            [\n              85.763671875,\n              349.2862548828125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            314.40234375,\n            482.90625,\n            349.2862548828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>In fact, it is difficult to construct a solitary thought without using that most common symbol. It is</i> <i>slow going at first, but with caution and hours of training you can gradually gain facility.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              357.134765625\n            ],\n            [\n              482.90625,\n              357.134765625\n            ],\n            [\n              482.90625,\n              380.21026611328125\n            ],\n            [\n              85.6142578125,\n              380.21026611328125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            357.134765625,\n            482.90625,\n            380.21026611328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>All right, I'll stop now.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              387.4921875\n            ],\n            [\n              178.8330535888672,\n              387.4921875\n            ],\n            [\n              178.8330535888672,\n              398.9402770996094\n            ],\n            [\n              85.763671875,\n              398.9402770996094\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            387.4921875,\n            178.8330535888672,\n            398.9402770996094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a function called</i> has_no_e <i>that returns</i> True <i>if the given word doesn't have the letter \\\"e\\\" in</i> <i>it.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              406.44140625\n            ],\n            [\n              482.3984069824219,\n              406.44140625\n            ],\n            [\n              482.3984069824219,\n              429.8642883300781\n            ],\n            [\n              85.6142578125,\n              429.8642883300781\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            406.44140625,\n            482.3984069824219,\n            429.8642883300781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Modify your program from the previous section to print only the words that have no \\\"e\\\" and com</i><i>pute the percentage of the words in the list have no \\\"e.\\\"</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              437.765625\n            ],\n            [\n              482.4034729003906,\n              437.765625\n            ],\n            [\n              482.4034729003906,\n              460.7882995605469\n            ],\n            [\n              85.46484375,\n              460.7882995605469\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            437.765625,\n            482.4034729003906,\n            460.7882995605469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 9.3.</b> <i>Write a function named</i> avoids <i>that takes a word and a string of forbidden letters,</i> <i>and that returns</i> True <i>if the word doesn't use any of the forbidden letters.</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              462.515625\n            ],\n            [\n              482.4031066894531,\n              462.515625\n            ],\n            [\n              482.4031066894531,\n              485.200439453125\n            ],\n            [\n              85.3154296875,\n              485.200439453125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            462.515625,\n            482.4031066894531,\n            485.200439453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Modify your program to prompt the user to enter a string of forbidden letters and then print the</i> <i>number of words that don't contain any of them. Can you find a combination of 5 forbidden letters</i> <i>that excludes the smallest number of words?</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              493.06640625\n            ],\n            [\n              482.607421875,\n              493.06640625\n            ],\n            [\n              482.607421875,\n              528.2953186035156\n            ],\n            [\n              85.46484375,\n              528.2953186035156\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            493.06640625,\n            482.607421875,\n            528.2953186035156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 9.4.</b> <i>Write a function named</i> uses_only <i>that takes a word and a string of letters, and</i> <i>that returns</i> True <i>if the word contains only letters in the list. Can you make a sentence using only</i> <i>the letters</i> acefhlo<i>? Other than \\\"Hoe alfalfa?\\\"</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              529.8046875\n            ],\n            [\n              482.607421875,\n              529.8046875\n            ],\n            [\n              482.607421875,\n              564.9014739990234\n            ],\n            [\n              85.46484375,\n              564.9014739990234\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            529.8046875,\n            482.607421875,\n            564.9014739990234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 9.5.</b> <i>Write a function named</i> uses_all <i>that takes a word and a string of required letters,</i> <i>and that returns</i> True <i>if the word uses all the required letters at least once. How many words are</i> <i>there that use all the vowels</i> aeiou<i>? How about</i> aeiouy<i>?</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              566.15625\n            ],\n            [\n              482.90625,\n              566.15625\n            ],\n            [\n              482.90625,\n              601.4844818115234\n            ],\n            [\n              85.3154296875,\n              601.4844818115234\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            566.15625,\n            482.90625,\n            601.4844818115234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 9.6.</b> <i>Write a function called</i> is_abecedarian <i>that returns</i> True <i>if the letters in a word</i> <i>appear in alphabetical order (double letters are ok). How many abecedarian words are there?</i></p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              602.89453125\n            ],\n            [\n              482.607421875,\n              602.89453125\n            ],\n            [\n              482.607421875,\n              625.850341796875\n            ],\n            [\n              85.166015625,\n              625.850341796875\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            602.89453125,\n            482.607421875,\n            625.850341796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/SectionHeader/18\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-103-1\\\"></span><b>9.3 Search</b></h3>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              652.78125\n            ],\n            [\n              162.50668334960938,\n              652.78125\n            ],\n            [\n              162.50668334960938,\n              667.7410888671875\n            ],\n            [\n              86.13720703125,\n              667.7410888671875\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            652.78125,\n            162.50668334960938,\n            667.7410888671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">All of the exercises in the previous section have something in common; they can be solved with the search pattern we saw in Section <a href=\\\"#page-95-1\\\">8.6.</a> The simplest example is:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              677.53125\n            ],\n            [\n              482.4034118652344,\n              677.53125\n            ],\n            [\n              482.4034118652344,\n              700.8350448608398\n            ],\n            [\n              86.2119140625,\n              700.8350448608398\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            677.53125,\n            482.4034118652344,\n            700.8350448608398\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/103/Text/224\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p>82</p>\\n\",\n          \"polygon\": [\n            [\n              84.94189453125,\n              60.134765625\n            ],\n            [\n              96.89501953125,\n              60.134765625\n            ],\n            [\n              96.89501953125,\n              69.8994140625\n            ],\n            [\n              84.94189453125,\n              69.8994140625\n            ]\n          ],\n          \"bbox\": [\n            84.94189453125,\n            60.134765625,\n            96.89501953125,\n            69.8994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/102/SectionHeader/1\",\n        \"2\": \"/page/103/SectionHeader/6\",\n        \"3\": \"/page/103/SectionHeader/18\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/104/Page/201\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/104/PageHeader/0'></content-ref><content-ref src='/page/104/PageHeader/17'></content-ref><content-ref src='/page/104/Code/1'></content-ref><content-ref src='/page/104/Text/2'></content-ref><content-ref src='/page/104/Text/3'></content-ref><content-ref src='/page/104/Code/200'></content-ref><content-ref src='/page/104/Text/5'></content-ref><content-ref src='/page/104/Text/6'></content-ref><content-ref src='/page/104/Code/7'></content-ref><content-ref src='/page/104/Text/8'></content-ref><content-ref src='/page/104/Text/9'></content-ref><content-ref src='/page/104/Code/10'></content-ref><content-ref src='/page/104/Text/11'></content-ref><content-ref src='/page/104/Text/12'></content-ref><content-ref src='/page/104/Code/13'></content-ref><content-ref src='/page/104/Text/14'></content-ref><content-ref src='/page/104/SectionHeader/15'></content-ref><content-ref src='/page/104/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/104/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              127.599609375,\n              60.76318359375\n            ],\n            [\n              525.6033935546875,\n              60.76318359375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              127.599609375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            60.76318359375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              60.908203125\n            ],\n            [\n              526.236328125,\n              60.908203125\n            ],\n            [\n              526.236328125,\n              70.0927734375\n            ],\n            [\n              514.880859375,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            60.908203125,\n            526.236328125,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def has_no_e(word):\\n    for letter in word:\\n        if letter == 'e':\\n            return False\\n    return True</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              87.8818359375\n            ],\n            [\n              260.578125,\n              87.8818359375\n            ],\n            [\n              260.578125,\n              147.42529296875\n            ],\n            [\n              129.60000610351562,\n              147.42529296875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            87.8818359375,\n            260.578125,\n            147.42529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The for loop traverses the characters in word. If we find the letter \\\"e\\\", we can immediately return False; otherwise we have to go to the next letter. If we exit the loop normally, that means we didn't find an \\\"e\\\", so we return True.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              152.3671875\n            ],\n            [\n              525.9375,\n              152.3671875\n            ],\n            [\n              525.9375,\n              187.671875\n            ],\n            [\n              128.3466796875,\n              187.671875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            152.3671875,\n            525.9375,\n            187.671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">avoids is a more general version of has_no_e but it has the same structure:</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              197.033203125\n            ],\n            [\n              458.746337890625,\n              197.033203125\n            ],\n            [\n              458.746337890625,\n              207.35089111328125\n            ],\n            [\n              128.0478515625,\n              207.35089111328125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            197.033203125,\n            458.746337890625,\n            207.35089111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Code/200\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def avoids(word, forbidden):\\n    for letter in word:\\n        if letter in forbidden:\\n            return False\\n    return True</pre>\",\n          \"polygon\": [\n            [\n              129.60006713867188,\n              212.94671630859375\n            ],\n            [\n              292.25390625,\n              212.94671630859375\n            ],\n            [\n              292.25390625,\n              271.686279296875\n            ],\n            [\n              129.60006713867188,\n              271.686279296875\n            ]\n          ],\n          \"bbox\": [\n            129.60006713867188,\n            212.94671630859375,\n            292.25390625,\n            271.686279296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We can return False as soon as we find a forbidden letter; if we get to the end of the loop, we return True.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              277.27734375\n            ],\n            [\n              526.236328125,\n              277.27734375\n            ],\n            [\n              526.236328125,\n              299.73785400390625\n            ],\n            [\n              128.794921875,\n              299.73785400390625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            277.27734375,\n            526.236328125,\n            299.73785400390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">uses_only is similar except that the sense of the condition is reversed:</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              308.794921875\n            ],\n            [\n              438.08203125,\n              308.794921875\n            ],\n            [\n              438.08203125,\n              319.4178466796875\n            ],\n            [\n              127.8984375,\n              319.4178466796875\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            308.794921875,\n            438.08203125,\n            319.4178466796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def uses_only(word, available):\\n    for letter in word:\\n        if letter not in available:\\n            return False\\n    return True</pre>\",\n          \"polygon\": [\n            [\n              129.60008239746094,\n              324.45703125\n            ],\n            [\n              312.6628723144531,\n              324.45703125\n            ],\n            [\n              312.6628723144531,\n              383.7532958984375\n            ],\n            [\n              129.60008239746094,\n              383.7532958984375\n            ]\n          ],\n          \"bbox\": [\n            129.60008239746094,\n            324.45703125,\n            312.6628723144531,\n            383.7532958984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Instead of a list of forbidden letters, we have a list of available letters. If we find a letter in word that is not in available, we can return False.</p>\",\n          \"polygon\": [\n            [\n              129.60008239746094,\n              388.458984375\n            ],\n            [\n              525.9375,\n              388.458984375\n            ],\n            [\n              525.9375,\n              411.80487060546875\n            ],\n            [\n              129.60008239746094,\n              411.80487060546875\n            ]\n          ],\n          \"bbox\": [\n            129.60008239746094,\n            388.458984375,\n            525.9375,\n            411.80487060546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">uses_all is similar except that we reverse the role of the word and the string of letters:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              421.13671875\n            ],\n            [\n              511.12823486328125,\n              421.13671875\n            ],\n            [\n              511.12823486328125,\n              431.48486328125\n            ],\n            [\n              128.3466796875,\n              431.48486328125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            421.13671875,\n            511.12823486328125,\n            431.48486328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def uses_all(word, required):\\n    for letter in required:\\n        if letter not in word:\\n            return False\\n    return True</pre>\",\n          \"polygon\": [\n            [\n              129.60008239746094,\n              437.0797119140625\n            ],\n            [\n              291.955078125,\n              437.0797119140625\n            ],\n            [\n              291.955078125,\n              499.25390625\n            ],\n            [\n              129.60008239746094,\n              499.25390625\n            ]\n          ],\n          \"bbox\": [\n            129.60008239746094,\n            437.0797119140625,\n            291.955078125,\n            499.25390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Instead of traversing the letters in word, the loop traverses the required letters. If any of the required letters do not appear in the word, we can return False.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              501.1875\n            ],\n            [\n              525.9375,\n              501.1875\n            ],\n            [\n              525.9375,\n              523.8718872070312\n            ],\n            [\n              128.6455078125,\n              523.8718872070312\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            501.1875,\n            525.9375,\n            523.8718872070312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you were really thinking like a computer scientist, you would have recognized that uses_all was an instance of a previously-solved problem, and you would have written:</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              532.8984375\n            ],\n            [\n              525.9375,\n              532.8984375\n            ],\n            [\n              525.9375,\n              555.7458953857422\n            ],\n            [\n              127.8984375,\n              555.7458953857422\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            532.8984375,\n            525.9375,\n            555.7458953857422\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def uses_all(word, required):\\n    return uses_only(required, word)</pre>\",\n          \"polygon\": [\n            [\n              129.60015869140625,\n              561.3407440185547\n            ],\n            [\n              317.89776611328125,\n              561.3407440185547\n            ],\n            [\n              317.89776611328125,\n              583.4983520507812\n            ],\n            [\n              129.60015869140625,\n              583.4983520507812\n            ]\n          ],\n          \"bbox\": [\n            129.60015869140625,\n            561.3407440185547,\n            317.89776611328125,\n            583.4983520507812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This is an example of a program development method called <b>problem recognition</b>, which means that you recognize the problem you are working on as an instance of a previouslysolved problem, and apply a previously-developed solution.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              588.5859375\n            ],\n            [\n              525.9375,\n              588.5859375\n            ],\n            [\n              525.9375,\n              623.743896484375\n            ],\n            [\n              128.3466796875,\n              623.743896484375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            588.5859375,\n            525.9375,\n            623.743896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/SectionHeader/15\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-104-0\\\"></span><b>9.4 Looping with indices</b></h4>\",\n          \"polygon\": [\n            [\n              127.37548828125,\n              652.4447631835938\n            ],\n            [\n              301.3241271972656,\n              652.4447631835938\n            ],\n            [\n              301.3241271972656,\n              666.7909545898438\n            ],\n            [\n              127.37548828125,\n              666.7909545898438\n            ]\n          ],\n          \"bbox\": [\n            127.37548828125,\n            652.4447631835938,\n            301.3241271972656,\n            666.7909545898438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/104/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I wrote the functions in the previous section with for loops because I only needed the characters in the strings; I didn't have to do anything with the indices.</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              677.91796875\n            ],\n            [\n              525.638671875,\n              677.91796875\n            ],\n            [\n              525.638671875,\n              700.8349075317383\n            ],\n            [\n              127.599609375,\n              700.8349075317383\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            677.91796875,\n            525.638671875,\n            700.8349075317383\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/102/SectionHeader/1\",\n        \"2\": \"/page/103/SectionHeader/6\",\n        \"3\": \"/page/103/SectionHeader/18\",\n        \"4\": \"/page/104/SectionHeader/15\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/105/Page/189\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/105/PageHeader/0'></content-ref><content-ref src='/page/105/PageHeader/12'></content-ref><content-ref src='/page/105/Text/1'></content-ref><content-ref src='/page/105/Code/2'></content-ref><content-ref src='/page/105/Text/3'></content-ref><content-ref src='/page/105/Code/4'></content-ref><content-ref src='/page/105/Text/5'></content-ref><content-ref src='/page/105/Code/6'></content-ref><content-ref src='/page/105/Text/7'></content-ref><content-ref src='/page/105/Text/8'></content-ref><content-ref src='/page/105/Text/9'></content-ref><content-ref src='/page/105/Text/10'></content-ref><content-ref src='/page/105/Code/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/105/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.908203125\n            ],\n            [\n              482.40350341796875,\n              60.908203125\n            ],\n            [\n              482.40350341796875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.908203125,\n            482.40350341796875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/PageHeader/12\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.166015625,\n              60.85986328125\n            ],\n            [\n              96.3720703125,\n              60.85986328125\n            ],\n            [\n              96.3720703125,\n              70.33447265625\n            ],\n            [\n              85.166015625,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            60.85986328125,\n            96.3720703125,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For is_abecedarian we have to compare adjacent letters, which is a little tricky with a for loop:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              88.68572998046875\n            ],\n            [\n              482.40411376953125,\n              88.68572998046875\n            ],\n            [\n              482.40411376953125,\n              110.99188232421875\n            ],\n            [\n              85.763671875,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            88.68572998046875,\n            482.40411376953125,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def is_abecedarian(word):\\n    previous = word[0]\\n    for c in word:\\n        if c &lt; previous:\\n            return False\\n        previous = c\\n    return True</pre>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              115.99267578125\n            ],\n            [\n              218.7421875,\n              115.99267578125\n            ],\n            [\n              218.7421875,\n              199.121337890625\n            ],\n            [\n              85.68896484375,\n              199.121337890625\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            115.99267578125,\n            218.7421875,\n            199.121337890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An alternative is to use recursion:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              203.220703125\n            ],\n            [\n              235.9248046875,\n              203.220703125\n            ],\n            [\n              235.9248046875,\n              214.3839111328125\n            ],\n            [\n              86.2119140625,\n              214.3839111328125\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            203.220703125,\n            235.9248046875,\n            214.3839111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def is_abecedarian(word):\\n    if len(word) &lt;= 1:\\n        return True\\n    if word[0] &gt; word[1]:\\n        return False\\n    return is_abecedarian(word[1:])</pre>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              217.142578125\n            ],\n            [\n              269.46728515625,\n              217.142578125\n            ],\n            [\n              269.46728515625,\n              293.712890625\n            ],\n            [\n              86.2119140625,\n              293.712890625\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            217.142578125,\n            269.46728515625,\n            293.712890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Another option is to use a while loop:</p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              295.46875\n            ],\n            [\n              253.58544921875,\n              295.46875\n            ],\n            [\n              253.58544921875,\n              305.89453125\n            ],\n            [\n              85.39013671875,\n              305.89453125\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            295.46875,\n            253.58544921875,\n            305.89453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def is_abecedarian(word):\\n    i = 0\\n    while i &lt; len(word)-1:\\n        if word[i+1] &lt; word[i]:\\n            return False\\n        i = i+1\\n    return True</pre>\",\n          \"polygon\": [\n            [\n              86.40000915527344,\n              310.58074951171875\n            ],\n            [\n              248.5413360595703,\n              310.58074951171875\n            ],\n            [\n              248.5413360595703,\n              393.7093505859375\n            ],\n            [\n              86.40000915527344,\n              393.7093505859375\n            ]\n          ],\n          \"bbox\": [\n            86.40000915527344,\n            310.58074951171875,\n            248.5413360595703,\n            393.7093505859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The loop starts at i=0 and ends when i=len(word)-1. Each time through the loop, it compares the <i>i</i>th character (which you can think of as the current character) to the <i>i</i> + 1th character (which you can think of as the next).</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              398.3203125\n            ],\n            [\n              482.40032958984375,\n              398.3203125\n            ],\n            [\n              482.40032958984375,\n              433.3609313964844\n            ],\n            [\n              85.9130859375,\n              433.3609313964844\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            398.3203125,\n            482.40032958984375,\n            433.3609313964844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the next character is less than (alphabetically before) the current one, then we have discovered a break in the abecedarian trend, and we return False.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              441.6328125\n            ],\n            [\n              482.4034729003906,\n              441.6328125\n            ],\n            [\n              482.4034729003906,\n              464.638916015625\n            ],\n            [\n              85.9130859375,\n              464.638916015625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            441.6328125,\n            482.4034729003906,\n            464.638916015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If we get to the end of the loop without finding a fault, then the word passes the test. To convince yourself that the loop ends correctly, consider an example like 'flossy'. The length of the word is 6, so the last time the loop runs is when i is 4, which is the index of the second-to-last character. On the last iteration, it compares the second-to-last character to the last, which is what we want.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              472.95703125\n            ],\n            [\n              482.90625,\n              472.95703125\n            ],\n            [\n              482.90625,\n              532.5009155273438\n            ],\n            [\n              85.6142578125,\n              532.5009155273438\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            472.95703125,\n            482.90625,\n            532.5009155273438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is a version of is_palindrome (see Exercise <a href=\\\"#page-82-0\\\">6.6)</a> that uses two indices; one starts at the beginning and goes up; the other starts at the end and goes down.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              541.01953125\n            ],\n            [\n              482.40325927734375,\n              541.01953125\n            ],\n            [\n              482.40325927734375,\n              563.7789154052734\n            ],\n            [\n              85.6142578125,\n              563.7789154052734\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            541.01953125,\n            482.40325927734375,\n            563.7789154052734\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/105/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def is_palindrome(word):\\n    i = 0\\n    j = len(word)-1\\n    while i&lt;j:\\n        if word[i] != word[j]:\\n            return False\\n        i = i+1\\n        j = j-1\\n    return True</pre>\",\n          \"polygon\": [\n            [\n              86.39999389648438,\n              568.7797698974609\n            ],\n            [\n              243.544921875,\n              568.7797698974609\n            ],\n            [\n              243.544921875,\n              700.6853790283203\n            ],\n            [\n              86.39999389648438,\n              700.6853790283203\n            ]\n          ],\n          \"bbox\": [\n            86.39999389648438,\n            568.7797698974609,\n            243.544921875,\n            700.6853790283203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/102/SectionHeader/1\",\n        \"2\": \"/page/103/SectionHeader/6\",\n        \"3\": \"/page/103/SectionHeader/18\",\n        \"4\": \"/page/104/SectionHeader/15\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/106/Page/142\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/106/PageHeader/0'></content-ref><content-ref src='/page/106/PageHeader/17'></content-ref><content-ref src='/page/106/Text/1'></content-ref><content-ref src='/page/106/Code/2'></content-ref><content-ref src='/page/106/Text/3'></content-ref><content-ref src='/page/106/SectionHeader/4'></content-ref><content-ref src='/page/106/Text/5'></content-ref><content-ref src='/page/106/Text/6'></content-ref><content-ref src='/page/106/Text/7'></content-ref><content-ref src='/page/106/Text/8'></content-ref><content-ref src='/page/106/Text/9'></content-ref><content-ref src='/page/106/Text/10'></content-ref><content-ref src='/page/106/Text/11'></content-ref><content-ref src='/page/106/Text/12'></content-ref><content-ref src='/page/106/SectionHeader/13'></content-ref><content-ref src='/page/106/Text/14'></content-ref><content-ref src='/page/106/ListGroup/140'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/106/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.3466796875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.58203125,\n              60.71484375\n            ],\n            [\n              525.9375,\n              60.71484375\n            ],\n            [\n              525.9375,\n              70.2861328125\n            ],\n            [\n              514.58203125,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            514.58203125,\n            60.71484375,\n            525.9375,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Or, if you noticed that this is an instance of a previously-solved problem, you might have written:</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              88.55859375\n            ],\n            [\n              525.638671875,\n              88.55859375\n            ],\n            [\n              525.638671875,\n              110.99188232421875\n            ],\n            [\n              127.599609375,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            88.55859375,\n            525.638671875,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def is_palindrome(word):\\n    return is_reverse(word, word)</pre>\",\n          \"polygon\": [\n            [\n              129.31787109375,\n              119.08172607421875\n            ],\n            [\n              302.2065124511719,\n              119.08172607421875\n            ],\n            [\n              302.2065124511719,\n              142.3125\n            ],\n            [\n              129.31787109375,\n              142.3125\n            ]\n          ],\n          \"bbox\": [\n            129.31787109375,\n            119.08172607421875,\n            302.2065124511719,\n            142.3125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Assuming you did Exercise <a href=\\\"#page-99-2\\\">8.9.</a></p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              149.080078125\n            ],\n            [\n              268.1982421875,\n              149.080078125\n            ],\n            [\n              268.1982421875,\n              159.58990478515625\n            ],\n            [\n              129.2431640625,\n              159.58990478515625\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            149.080078125,\n            268.1982421875,\n            159.58990478515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/104/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-106-0\\\"></span><b>9.5 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              194.8095703125\n            ],\n            [\n              236.00576782226562,\n              194.8095703125\n            ],\n            [\n              236.00576782226562,\n              209.6015625\n            ],\n            [\n              128.0478515625,\n              209.6015625\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            194.8095703125,\n            236.00576782226562,\n            209.6015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Testing programs is hard. The functions in this chapter are relatively easy to test because you can check the results by hand. Even so, it is somewhere between difficult and impossible to choose a set of words that test for all possible errors.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              223.91015625\n            ],\n            [\n              525.9375,\n              223.91015625\n            ],\n            [\n              525.9375,\n              258.93182373046875\n            ],\n            [\n              128.9443359375,\n              258.93182373046875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            223.91015625,\n            525.9375,\n            258.93182373046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Taking has_no_e as an example, there are two obvious cases to check: words that have an 'e' should return False; words that don't should return True. You should have no trouble coming up with one of each.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              270.703125\n            ],\n            [\n              526.236328125,\n              270.703125\n            ],\n            [\n              526.236328125,\n              305.4937744140625\n            ],\n            [\n              128.197265625,\n              305.4937744140625\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            270.703125,\n            526.236328125,\n            305.4937744140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Within each case, there are some less obvious subcases. Among the words that have an \\\"e,\\\" you should test words with an \\\"e\\\" at the beginning, the end, and somewhere in the middle. You should test long words, short words, and very short words, like the empty string. The empty string is an example of a <b>special case</b>, which is one of the non-obvious cases where errors often lurk.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              316.916015625\n            ],\n            [\n              526.53515625,\n              316.916015625\n            ],\n            [\n              526.53515625,\n              376.4447937011719\n            ],\n            [\n              127.8984375,\n              376.4447937011719\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            316.916015625,\n            526.53515625,\n            376.4447937011719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In addition to the test cases you generate, you can also test your program with a word list like words.txt. By scanning the output, you might be able to catch errors, but be careful: you might catch one kind of error (words that should not be included, but are) and not another (words that should be included, but aren't).</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              388.458984375\n            ],\n            [\n              526.236328125,\n              388.458984375\n            ],\n            [\n              526.236328125,\n              435.2008056640625\n            ],\n            [\n              128.197265625,\n              435.2008056640625\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            388.458984375,\n            526.236328125,\n            435.2008056640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In general, testing can help you find bugs, but it is not easy to generate a good set of test cases, and even if you do, you can't be sure your program is correct.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              446.66015625\n            ],\n            [\n              525.9375,\n              446.66015625\n            ],\n            [\n              525.9375,\n              469.56781005859375\n            ],\n            [\n              128.3466796875,\n              469.56781005859375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            446.66015625,\n            525.9375,\n            469.56781005859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">According to a legendary computer scientist:</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              481.078125\n            ],\n            [\n              327.515625,\n              481.078125\n            ],\n            [\n              327.515625,\n              491.90625\n            ],\n            [\n              129.5419921875,\n              491.90625\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            481.078125,\n            327.515625,\n            491.90625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Program testing can be used to show the presence of bugs, but never to show their absence!</p>\",\n          \"polygon\": [\n            [\n              154.5070343017578,\n              508.53515625\n            ],\n            [\n              500.8359375,\n              508.53515625\n            ],\n            [\n              500.8359375,\n              531.8438110351562\n            ],\n            [\n              154.5070343017578,\n              531.8438110351562\n            ]\n          ],\n          \"bbox\": [\n            154.5070343017578,\n            508.53515625,\n            500.8359375,\n            531.8438110351562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">— Edsger W. Dijkstra</p>\",\n          \"polygon\": [\n            [\n              153.896484375,\n              539.0859375\n            ],\n            [\n              250.716796875,\n              539.0859375\n            ],\n            [\n              250.716796875,\n              549.7598114013672\n            ],\n            [\n              153.896484375,\n              549.7598114013672\n            ]\n          ],\n          \"bbox\": [\n            153.896484375,\n            539.0859375,\n            250.716796875,\n            549.7598114013672\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-106-1\\\"></span><b>9.6 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              590.9436798095703\n            ],\n            [\n              220.05284118652344,\n              590.9436798095703\n            ],\n            [\n              220.05284118652344,\n              605.2898712158203\n            ],\n            [\n              128.794921875,\n              605.2898712158203\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            590.9436798095703,\n            220.05284118652344,\n            605.2898712158203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>file object:</b> A value that represents an open file.</p>\",\n          \"polygon\": [\n            [\n              129.31787109375,\n              615.65625\n            ],\n            [\n              340.962890625,\n              615.65625\n            ],\n            [\n              340.962890625,\n              626.3628234863281\n            ],\n            [\n              129.31787109375,\n              626.3628234863281\n            ]\n          ],\n          \"bbox\": [\n            129.31787109375,\n            615.65625,\n            340.962890625,\n            626.3628234863281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/106/ListGroup/140\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/106/ListItem/15'></content-ref><content-ref src='/page/106/ListItem/16'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              639.6328125\n            ],\n            [\n              526.53515625,\n              639.6328125\n            ],\n            [\n              526.53515625,\n              698.02734375\n            ],\n            [\n              128.6455078125,\n              698.02734375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            639.6328125,\n            526.53515625,\n            698.02734375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/106/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>problem recognition:</b> A way of solving a problem by expressing it as an instance of a previously-solved problem.</li>\",\n              \"polygon\": [\n                [\n                  128.6455078125,\n                  639.6328125\n                ],\n                [\n                  526.53515625,\n                  639.6328125\n                ],\n                [\n                  526.53515625,\n                  662.19482421875\n                ],\n                [\n                  128.6455078125,\n                  662.19482421875\n                ]\n              ],\n              \"bbox\": [\n                128.6455078125,\n                639.6328125,\n                526.53515625,\n                662.19482421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/102/SectionHeader/1\",\n                \"2\": \"/page/103/SectionHeader/6\",\n                \"3\": \"/page/103/SectionHeader/18\",\n                \"4\": \"/page/106/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/106/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>special case:</b> A test case that is atypical or non-obvious (and less likely to be handled correctly).</li>\",\n              \"polygon\": [\n                [\n                  128.6455078125,\n                  675.59765625\n                ],\n                [\n                  525.9375,\n                  675.59765625\n                ],\n                [\n                  525.9375,\n                  698.02734375\n                ],\n                [\n                  128.6455078125,\n                  698.02734375\n                ]\n              ],\n              \"bbox\": [\n                128.6455078125,\n                675.59765625,\n                525.9375,\n                698.02734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/102/SectionHeader/1\",\n                \"2\": \"/page/103/SectionHeader/6\",\n                \"3\": \"/page/103/SectionHeader/18\",\n                \"4\": \"/page/106/SectionHeader/13\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/13\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/102/SectionHeader/1\",\n        \"2\": \"/page/103/SectionHeader/6\",\n        \"3\": \"/page/103/SectionHeader/18\",\n        \"4\": \"/page/106/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/107/Page/238\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/107/PageHeader/0'></content-ref><content-ref src='/page/107/PageHeader/14'></content-ref><content-ref src='/page/107/SectionHeader/1'></content-ref><content-ref src='/page/107/Text/2'></content-ref><content-ref src='/page/107/Text/3'></content-ref><content-ref src='/page/107/Text/4'></content-ref><content-ref src='/page/107/Text/5'></content-ref><content-ref src='/page/107/Text/6'></content-ref><content-ref src='/page/107/Text/7'></content-ref><content-ref src='/page/107/Text/8'></content-ref><content-ref src='/page/107/Text/9'></content-ref><content-ref src='/page/107/Text/10'></content-ref><content-ref src='/page/107/Text/11'></content-ref><content-ref src='/page/107/Text/12'></content-ref><content-ref src='/page/107/Text/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/107/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.37646484375\n            ],\n            [\n              482.40350341796875,\n              60.37646484375\n            ],\n            [\n              482.40350341796875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.37646484375,\n            482.40350341796875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.166015625,\n              60.85986328125\n            ],\n            [\n              96.8203125,\n              60.85986328125\n            ],\n            [\n              96.8203125,\n              70.33447265625\n            ],\n            [\n              85.166015625,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            60.85986328125,\n            96.8203125,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/106/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-107-0\\\"></span><b>9.7 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              85.271484375\n            ],\n            [\n              179.4462890625,\n              85.271484375\n            ],\n            [\n              179.4462890625,\n              99.97796630859375\n            ],\n            [\n              85.763671875,\n              99.97796630859375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            85.271484375,\n            179.4462890625,\n            99.97796630859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 9.7.</b> <i>This question is based on a Puzzler that was broadcast on the radio program</i> Car Talk <i>(</i><a href=\\\"http://www.cartalk.com/content/puzzlers\\\">http:</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">//</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">www.</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">cartalk.</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">com/</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">content/</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">puzzlers</a> <i>):</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              110.8916015625\n            ],\n            [\n              482.90625,\n              110.8916015625\n            ],\n            [\n              482.90625,\n              134.47991943359375\n            ],\n            [\n              85.6142578125,\n              134.47991943359375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            110.8916015625,\n            482.90625,\n            134.47991943359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>Give me a word with three consecutive double letters. I'll give you a couple of words</i> <i>that almost qualify, but don't. For example, the word committee, c-o-m-m-i-t-t-e-e. It</i> <i>would be great except for the 'i' that sneaks in there. Or Mississippi: M-i-s-s-i-s-s-i</i><i>p-p-i. If you could take out those i's it would work. But there is a word that has three</i> <i>consecutive pairs of letters and to the best of my knowledge this may be the only word.</i> <i>Of course there are probably 500 more but I can only think of one. What is the word?</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              109.5205078125,\n              148.11328125\n            ],\n            [\n              458.40234375,\n              148.11328125\n            ],\n            [\n              458.40234375,\n              219.4151611328125\n            ],\n            [\n              109.5205078125,\n              219.4151611328125\n            ]\n          ],\n          \"bbox\": [\n            109.5205078125,\n            148.11328125,\n            458.40234375,\n            219.4151611328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a program to find it. Solution:</i> <a href=\\\"http://thinkpython.com/code/cartalk1.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/cartalk1.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/cartalk1.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/cartalk1.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/cartalk1.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/cartalk1.py\\\">cartalk1.</a> <a href=\\\"http://thinkpython.com/code/cartalk1.py\\\">py</a> <i>.</i> <b>Exercise 9.8.</b> <i>Here's another</i> Car Talk <i>Puzzler (</i><a href=\\\"http://www.cartalk.com/content/puzzlers\\\">http:</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">//</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">www.</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">cartalk.</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">com/</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">content/</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">puzzlers</a> <i>):</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              233.19140625\n            ],\n            [\n              481.11328125,\n              233.19140625\n            ],\n            [\n              481.11328125,\n              267.93914794921875\n            ],\n            [\n              85.3154296875,\n              267.93914794921875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            233.19140625,\n            481.11328125,\n            267.93914794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>\\\"I was driving on the highway the other day and I happened to notice my odometer.</i> <i>Like most odometers, it shows six digits, in whole miles only. So, if my car had 300,000</i> <i>miles, for example, I'd see 3-0-0-0-0-0.</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              110.4169921875,\n              281.91796875\n            ],\n            [\n              457.8046875,\n              281.91796875\n            ],\n            [\n              457.8046875,\n              316.4641418457031\n            ],\n            [\n              110.4169921875,\n              316.4641418457031\n            ]\n          ],\n          \"bbox\": [\n            110.4169921875,\n            281.91796875,\n            457.8046875,\n            316.4641418457031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>\\\"Now, what I saw that day was very interesting. I noticed that the last 4 digits were</i> <i>palindromic; that is, they read the same forward as backward. For example, 5-4-4-5 is a</i> <i>palindrome, so my odometer could have read 3-1-5-4-4-5.</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              109.8193359375,\n              322.330078125\n            ],\n            [\n              458.40234375,\n              322.330078125\n            ],\n            [\n              458.40234375,\n              357.0321350097656\n            ],\n            [\n              109.8193359375,\n              357.0321350097656\n            ]\n          ],\n          \"bbox\": [\n            109.8193359375,\n            322.330078125,\n            458.40234375,\n            357.0321350097656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>\\\"One mile later, the last 5 numbers were palindromic. For example, it could have read</i> <i>3-6-5-4-5-6. One mile after that, the middle 4 out of 6 numbers were palindromic. And</i> <i>you ready for this? One mile later, all 6 were palindromic!</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              110.7158203125,\n              362.7421875\n            ],\n            [\n              457.8046875,\n              362.7421875\n            ],\n            [\n              457.8046875,\n              398.70703125\n            ],\n            [\n              110.7158203125,\n              398.70703125\n            ]\n          ],\n          \"bbox\": [\n            110.7158203125,\n            362.7421875,\n            457.8046875,\n            398.70703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>\\\"The question is, what was on the odometer when I first looked?\\\"</i></p>\",\n          \"polygon\": [\n            [\n              111.30699157714844,\n              402.9609375\n            ],\n            [\n              371.8788146972656,\n              402.9609375\n            ],\n            [\n              371.8788146972656,\n              413.77911376953125\n            ],\n            [\n              111.30699157714844,\n              413.77911376953125\n            ]\n          ],\n          \"bbox\": [\n            111.30699157714844,\n            402.9609375,\n            371.8788146972656,\n            413.77911376953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a Python program that tests all the six-digit numbers and prints any numbers that satisfy</i> <i>these requirements. Solution:</i> <a href=\\\"http://thinkpython.com/code/cartalk2.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/cartalk2.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/cartalk2.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/cartalk2.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/cartalk2.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/cartalk2.py\\\">cartalk2.</a> <a href=\\\"http://thinkpython.com/code/cartalk2.py\\\">py</a> <i>.</i> <b>Exercise 9.9.</b> <i>Here's another</i> Car Talk <i>Puzzler you can solve with a search (</i><a href=\\\"http://www.cartalk.com/content/puzzlers\\\">http:</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">//</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">www.</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">cartalk.</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">com/</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">content/</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">puzzlers</a> <i>):</i></p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              426.9375\n            ],\n            [\n              482.4034118652344,\n              426.9375\n            ],\n            [\n              482.4034118652344,\n              474.49810791015625\n            ],\n            [\n              85.166015625,\n              474.49810791015625\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            426.9375,\n            482.4034118652344,\n            474.49810791015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>\\\"Recently I had a visit with my mom and we realized that the two digits that make</i> <i>up my age when reversed resulted in her age. For example, if she's 73, I'm 37. We</i> <i>wondered how often this has happened over the years but we got sidetracked with other</i> <i>topics and we never came up with an answer.</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              111.0146484375,\n              488.0390625\n            ],\n            [\n              459.59765625,\n              488.0390625\n            ],\n            [\n              459.59765625,\n              535.21875\n            ],\n            [\n              111.0146484375,\n              535.21875\n            ]\n          ],\n          \"bbox\": [\n            111.0146484375,\n            488.0390625,\n            459.59765625,\n            535.21875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>\\\"When I got home I figured out that the digits of our ages have been reversible six times</i> <i>so far. I also figured out that if we're lucky it would happen again in a few years, and</i> <i>if we're really lucky it would happen one more time after that. In other words, it would</i> <i>have happened 8 times over all. So the question is, how old am I now?\\\"</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              110.865234375,\n              541.01953125\n            ],\n            [\n              458.103515625,\n              541.01953125\n            ],\n            [\n              458.103515625,\n              587.9801025390625\n            ],\n            [\n              110.865234375,\n              587.9801025390625\n            ]\n          ],\n          \"bbox\": [\n            110.865234375,\n            541.01953125,\n            458.103515625,\n            587.9801025390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a Python program that searches for solutions to this Puzzler. Hint: you might find the string</i> <i>method</i> zfill <i>useful.</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              601.734375\n            ],\n            [\n              482.4034729003906,\n              601.734375\n            ],\n            [\n              482.4034729003906,\n              624.333251953125\n            ],\n            [\n              85.3154296875,\n              624.333251953125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            601.734375,\n            482.4034729003906,\n            624.333251953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/107/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/cartalk3.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/cartalk3.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/cartalk3.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/cartalk3.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/cartalk3.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/cartalk3.py\\\">cartalk3.</a> <a href=\\\"http://thinkpython.com/code/cartalk3.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              634.4038238525391\n            ],\n            [\n              344.82965087890625,\n              634.4038238525391\n            ],\n            [\n              344.82965087890625,\n              644.66015625\n            ],\n            [\n              85.83837890625,\n              644.66015625\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            634.4038238525391,\n            344.82965087890625,\n            644.66015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/103/SectionHeader/6\",\n            \"3\": \"/page/103/SectionHeader/18\",\n            \"4\": \"/page/107/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/102/SectionHeader/1\",\n        \"2\": \"/page/103/SectionHeader/6\",\n        \"3\": \"/page/103/SectionHeader/18\",\n        \"4\": \"/page/107/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/108/Page/136\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/108/SectionHeader/0'></content-ref><content-ref src='/page/108/SectionHeader/1'></content-ref><content-ref src='/page/108/SectionHeader/2'></content-ref><content-ref src='/page/108/Text/3'></content-ref><content-ref src='/page/108/Text/4'></content-ref><content-ref src='/page/108/Text/5'></content-ref><content-ref src='/page/108/Text/6'></content-ref><content-ref src='/page/108/Text/7'></content-ref><content-ref src='/page/108/Text/8'></content-ref><content-ref src='/page/108/Text/9'></content-ref><content-ref src='/page/108/Text/10'></content-ref><content-ref src='/page/108/Text/11'></content-ref><content-ref src='/page/108/Code/12'></content-ref><content-ref src='/page/108/SectionHeader/13'></content-ref><content-ref src='/page/108/Text/14'></content-ref><content-ref src='/page/108/Code/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/108/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-108-0\\\"></span><b>Chapter 10</b></h2>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              163.1953125\n            ],\n            [\n              232.787109375,\n              163.1953125\n            ],\n            [\n              232.787109375,\n              184.333984375\n            ],\n            [\n              128.42138671875,\n              184.333984375\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            163.1953125,\n            232.787109375,\n            184.333984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/102/SectionHeader/1\",\n            \"2\": \"/page/108/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Lists</b></h1>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              218.57733154296875\n            ],\n            [\n              184.2275390625,\n              218.57733154296875\n            ],\n            [\n              184.2275390625,\n              243.3643798828125\n            ],\n            [\n              127.7490234375,\n              243.3643798828125\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            218.57733154296875,\n            184.2275390625,\n            243.3643798828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-108-1\\\"></span><b>10.1 A list is a sequence</b></h4>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              291.8017883300781\n            ],\n            [\n              294.1365661621094,\n              291.8017883300781\n            ],\n            [\n              294.1365661621094,\n              306.14801025390625\n            ],\n            [\n              128.57080078125,\n              306.14801025390625\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            291.8017883300781,\n            294.1365661621094,\n            306.14801025390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Like a string, a <b>list</b> is a sequence of values. In a string, the values are characters; in a list, they can be any type. The values in a list are called <b>elements</b> or sometimes <b>items</b>.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              317.94720458984375\n            ],\n            [\n              525.9375,\n              317.94720458984375\n            ],\n            [\n              525.9375,\n              340.200927734375\n            ],\n            [\n              128.9443359375,\n              340.200927734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            317.94720458984375,\n            525.9375,\n            340.200927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are several ways to create a new list; the simplest is to enclose the elements in square brackets ([ and ]):</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              349.787109375\n            ],\n            [\n              525.9375,\n              349.787109375\n            ],\n            [\n              525.9375,\n              372.08294677734375\n            ],\n            [\n              129.2431640625,\n              372.08294677734375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            349.787109375,\n            525.9375,\n            372.08294677734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">[10, 20, 30, 40]</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              377.244140625\n            ],\n            [\n              213.28587341308594,\n              377.244140625\n            ],\n            [\n              213.28587341308594,\n              387.6493835449219\n            ],\n            [\n              128.57080078125,\n              387.6493835449219\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            377.244140625,\n            213.28587341308594,\n            387.6493835449219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">['crunchy frog', 'ram bladder', 'lark vomit']</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              389.88079833984375\n            ],\n            [\n              364.9114685058594,\n              389.88079833984375\n            ],\n            [\n              364.9114685058594,\n              399.8671875\n            ],\n            [\n              128.794921875,\n              399.8671875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            389.88079833984375,\n            364.9114685058594,\n            399.8671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first example is a list of four integers. The second is a list of three strings. The elements of a list don't have to be the same type. The following list contains a string, a float, an integer, and (lo!) another list:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              405.28125\n            ],\n            [\n              525.603515625,\n              405.28125\n            ],\n            [\n              525.603515625,\n              440.0969543457031\n            ],\n            [\n              129.09375,\n              440.0969543457031\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            405.28125,\n            525.603515625,\n            440.0969543457031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">['spam', 2.0, 5, [10, 20]]</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              445.7008056640625\n            ],\n            [\n              265.5810241699219,\n              445.7008056640625\n            ],\n            [\n              265.5810241699219,\n              455.66339111328125\n            ],\n            [\n              128.9443359375,\n              455.66339111328125\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            445.7008056640625,\n            265.5810241699219,\n            455.66339111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A list within another list is <b>nested</b>.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              461.35546875\n            ],\n            [\n              282.2431640625,\n              461.35546875\n            ],\n            [\n              282.2431640625,\n              471.5289611816406\n            ],\n            [\n              128.6455078125,\n              471.5289611816406\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            461.35546875,\n            282.2431640625,\n            471.5289611816406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A list that contains no elements is called an empty list; you can create one with empty brackets, [].</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              481.078125\n            ],\n            [\n              526.236328125,\n              481.078125\n            ],\n            [\n              526.236328125,\n              503.41094970703125\n            ],\n            [\n              129.392578125,\n              503.41094970703125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            481.078125,\n            526.236328125,\n            503.41094970703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As you might expect, you can assign list values to variables:</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              513.1353759765625\n            ],\n            [\n              393.85546875,\n              513.1353759765625\n            ],\n            [\n              393.85546875,\n              523.0979614257812\n            ],\n            [\n              128.57080078125,\n              523.0979614257812\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            513.1353759765625,\n            393.85546875,\n            523.0979614257812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; cheeses = ['Cheddar', 'Edam', 'Gouda']\\n&gt;&gt;&gt; numbers = [17, 123]\\n&gt;&gt;&gt; empty = []\\n&gt;&gt;&gt; print cheeses, numbers, empty\\n['Cheddar', 'Edam', 'Gouda'] [17, 123] []</pre>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              528.7018127441406\n            ],\n            [\n              349.62890625,\n              528.7018127441406\n            ],\n            [\n              349.62890625,\n              587.4424285888672\n            ],\n            [\n              128.794921875,\n              587.4424285888672\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            528.7018127441406,\n            349.62890625,\n            587.4424285888672\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-108-2\\\"></span><b>10.2 Lists are mutable</b></h4>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              612.3318481445312\n            ],\n            [\n              281.39727783203125,\n              612.3318481445312\n            ],\n            [\n              281.39727783203125,\n              626.6780395507812\n            ],\n            [\n              127.4501953125,\n              626.6780395507812\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            612.3318481445312,\n            281.39727783203125,\n            626.6780395507812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The syntax for accessing the elements of a list is the same as for accessing the characters of a string—the bracket operator. The expression inside the brackets specifies the index. Remember that the indices start at 0:</p>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              638.5733795166016\n            ],\n            [\n              525.603515625,\n              638.5733795166016\n            ],\n            [\n              525.603515625,\n              672.9249954223633\n            ],\n            [\n              127.4501953125,\n              672.9249954223633\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            638.5733795166016,\n            525.603515625,\n            672.9249954223633\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/108/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print cheeses[0]\\nCheddar</pre>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              678.5288391113281\n            ],\n            [\n              234.21737670898438,\n              678.5288391113281\n            ],\n            [\n              234.21737670898438,\n              700.685432434082\n            ],\n            [\n              128.197265625,\n              700.685432434082\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            678.5288391113281,\n            234.21737670898438,\n            700.685432434082\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/108/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/109/Page/191\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/109/PageHeader/0'></content-ref><content-ref src='/page/109/PageHeader/14'></content-ref><content-ref src='/page/109/FigureGroup/189'></content-ref><content-ref src='/page/109/Text/3'></content-ref><content-ref src='/page/109/Code/4'></content-ref><content-ref src='/page/109/Text/5'></content-ref><content-ref src='/page/109/Text/6'></content-ref><content-ref src='/page/109/Text/7'></content-ref><content-ref src='/page/109/Text/8'></content-ref><content-ref src='/page/109/ListGroup/190'></content-ref><content-ref src='/page/109/Text/12'></content-ref><content-ref src='/page/109/Code/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/109/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.66650390625\n            ],\n            [\n              482.607421875,\n              60.66650390625\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.66650390625,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/109/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              60.908203125\n            ],\n            [\n              96.22265625,\n              60.908203125\n            ],\n            [\n              96.22265625,\n              69.802734375\n            ],\n            [\n              85.3154296875,\n              69.802734375\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            60.908203125,\n            96.22265625,\n            69.802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/109/FigureGroup/189\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/109/Figure/1'></content-ref><content-ref src='/page/109/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              202.60546875,\n              89.47705078125\n            ],\n            [\n              366.36328125,\n              89.47705078125\n            ],\n            [\n              366.36328125,\n              273.95294189453125\n            ],\n            [\n              202.60546875,\n              273.95294189453125\n            ]\n          ],\n          \"bbox\": [\n            202.60546875,\n            89.47705078125,\n            366.36328125,\n            273.95294189453125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/109/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  202.60546875,\n                  89.47705078125\n                ],\n                [\n                  366.36328125,\n                  89.47705078125\n                ],\n                [\n                  366.36328125,\n                  244.599609375\n                ],\n                [\n                  202.60546875,\n                  244.599609375\n                ]\n              ],\n              \"bbox\": [\n                202.60546875,\n                89.47705078125,\n                366.36328125,\n                244.599609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/108/SectionHeader/13\"\n              },\n              \"images\": {\n                \"/page/109/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/109/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-109-0\\\"></span>Figure 10.1: State diagram.</p>\",\n              \"polygon\": [\n                [\n                  225.55101013183594,\n                  263.548828125\n                ],\n                [\n                  343.353515625,\n                  263.548828125\n                ],\n                [\n                  343.353515625,\n                  273.95294189453125\n                ],\n                [\n                  225.55101013183594,\n                  273.95294189453125\n                ]\n              ],\n              \"bbox\": [\n                225.55101013183594,\n                263.548828125,\n                343.353515625,\n                273.95294189453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/108/SectionHeader/13\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/109/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Unlike strings, lists are mutable. When the bracket operator appears on the left side of an assignment, it identifies the element of the list that will be assigned.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              298.16015625\n            ],\n            [\n              482.607421875,\n              298.16015625\n            ],\n            [\n              482.607421875,\n              321.1739196777344\n            ],\n            [\n              85.46484375,\n              321.1739196777344\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            298.16015625,\n            482.607421875,\n            321.1739196777344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/109/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; numbers = [17, 123]\\n&gt;&gt;&gt; numbers[1] = 5\\n&gt;&gt;&gt; print numbers\\n[17, 5]</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              329.957763671875\n            ],\n            [\n              206.6983642578125,\n              329.957763671875\n            ],\n            [\n              206.6983642578125,\n              376.50335693359375\n            ],\n            [\n              85.46484375,\n              376.50335693359375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            329.957763671875,\n            206.6983642578125,\n            376.50335693359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/109/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The one-eth element of numbers, which used to be 123, is now 5.</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              385.4377746582031\n            ],\n            [\n              367.88360595703125,\n              385.4377746582031\n            ],\n            [\n              367.88360595703125,\n              395.5499267578125\n            ],\n            [\n              85.83837890625,\n              395.5499267578125\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            385.4377746582031,\n            367.88360595703125,\n            395.5499267578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/109/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can think of a list as a relationship between indices and elements. This relationship is called a <b>mapping</b>; each index \\\"maps to\\\" one of the elements. Figure <a href=\\\"#page-109-0\\\">10.1</a> shows the state diagram for cheeses, numbers and empty:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              407.21484375\n            ],\n            [\n              482.4034729003906,\n              407.21484375\n            ],\n            [\n              482.4034729003906,\n              442.80694580078125\n            ],\n            [\n              85.46484375,\n              442.80694580078125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            407.21484375,\n            482.4034729003906,\n            442.80694580078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/109/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Lists are represented by boxes with the word \\\"list\\\" outside and the elements of the list inside. cheeses refers to a list with three elements indexed 0, 1 and 2. numbers contains two elements; the diagram shows that the value of the second element has been reassigned from 123 to 5. empty refers to a list with no elements.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              454.78125\n            ],\n            [\n              482.90625,\n              454.78125\n            ],\n            [\n              482.90625,\n              502.2579650878906\n            ],\n            [\n              85.46484375,\n              502.2579650878906\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            454.78125,\n            482.90625,\n            502.2579650878906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/109/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">List indices work the same way as string indices:</p>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              514.3359375\n            ],\n            [\n              300.97442626953125,\n              514.3359375\n            ],\n            [\n              300.97442626953125,\n              525.1259765625\n            ],\n            [\n              85.53955078125,\n              525.1259765625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            514.3359375,\n            300.97442626953125,\n            525.1259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/109/ListGroup/190\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/109/ListItem/9'></content-ref><content-ref src='/page/109/ListItem/10'></content-ref><content-ref src='/page/109/ListItem/11'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              100.28799438476562,\n              543.33984375\n            ],\n            [\n              465.3626708984375,\n              543.33984375\n            ],\n            [\n              465.3626708984375,\n              603.9659881591797\n            ],\n            [\n              100.28799438476562,\n              603.9659881591797\n            ]\n          ],\n          \"bbox\": [\n            100.28799438476562,\n            543.33984375,\n            465.3626708984375,\n            603.9659881591797\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/109/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Any integer expression can be used as an index.</li>\",\n              \"polygon\": [\n                [\n                  100.28799438476562,\n                  543.33984375\n                ],\n                [\n                  322.0454406738281,\n                  543.33984375\n                ],\n                [\n                  322.0454406738281,\n                  554.3209838867188\n                ],\n                [\n                  100.28799438476562,\n                  554.3209838867188\n                ]\n              ],\n              \"bbox\": [\n                100.28799438476562,\n                543.33984375,\n                322.0454406738281,\n                554.3209838867188\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/108/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/109/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> If you try to read or write an element that does not exist, you get an IndexError.</li>\",\n              \"polygon\": [\n                [\n                  100.28799438476562,\n                  568.08984375\n                ],\n                [\n                  465.3626708984375,\n                  568.08984375\n                ],\n                [\n                  465.3626708984375,\n                  579.1439819335938\n                ],\n                [\n                  100.28799438476562,\n                  579.1439819335938\n                ]\n              ],\n              \"bbox\": [\n                100.28799438476562,\n                568.08984375,\n                465.3626708984375,\n                579.1439819335938\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/108/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/109/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> If an index has a negative value, it counts backward from the end of the list.</li>\",\n              \"polygon\": [\n                [\n                  100.28802490234375,\n                  593.61328125\n                ],\n                [\n                  444.2169494628906,\n                  593.61328125\n                ],\n                [\n                  444.2169494628906,\n                  603.9659881591797\n                ],\n                [\n                  100.28802490234375,\n                  603.9659881591797\n                ]\n              ],\n              \"bbox\": [\n                100.28802490234375,\n                593.61328125,\n                444.2169494628906,\n                603.9659881591797\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/108/SectionHeader/13\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/109/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The in operator also works on lists.</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              622.6171875\n            ],\n            [\n              243.84375,\n              622.6171875\n            ],\n            [\n              243.84375,\n              633.1619873046875\n            ],\n            [\n              85.83837890625,\n              633.1619873046875\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            622.6171875,\n            243.84375,\n            633.1619873046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/109/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; cheeses = ['Cheddar', 'Edam', 'Gouda']\\n&gt;&gt;&gt; 'Edam' in cheeses\\nTrue\\n&gt;&gt;&gt; 'Brie' in cheeses\\nFalse</pre>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              641.9458312988281\n            ],\n            [\n              306.0244445800781,\n              641.9458312988281\n            ],\n            [\n              306.0244445800781,\n              700.6854248046875\n            ],\n            [\n              86.2119140625,\n              700.6854248046875\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            641.9458312988281,\n            306.0244445800781,\n            700.6854248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/108/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/110/Page/198\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/110/PageHeader/0'></content-ref><content-ref src='/page/110/PageHeader/19'></content-ref><content-ref src='/page/110/SectionHeader/1'></content-ref><content-ref src='/page/110/Text/2'></content-ref><content-ref src='/page/110/Text/3'></content-ref><content-ref src='/page/110/Text/4'></content-ref><content-ref src='/page/110/Code/5'></content-ref><content-ref src='/page/110/Text/6'></content-ref><content-ref src='/page/110/Text/7'></content-ref><content-ref src='/page/110/Code/8'></content-ref><content-ref src='/page/110/Text/9'></content-ref><content-ref src='/page/110/Code/10'></content-ref><content-ref src='/page/110/SectionHeader/11'></content-ref><content-ref src='/page/110/Text/12'></content-ref><content-ref src='/page/110/Code/191'></content-ref><content-ref src='/page/110/Text/14'></content-ref><content-ref src='/page/110/TextInlineMath/15'></content-ref><content-ref src='/page/110/Text/16'></content-ref><content-ref src='/page/110/SectionHeader/17'></content-ref><content-ref src='/page/110/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/110/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.72021484375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.58203125,\n              60.71484375\n            ],\n            [\n              525.9375,\n              60.71484375\n            ],\n            [\n              525.9375,\n              69.609375\n            ],\n            [\n              514.58203125,\n              69.609375\n            ]\n          ],\n          \"bbox\": [\n            514.58203125,\n            60.71484375,\n            525.9375,\n            69.609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/108/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-110-0\\\"></span><b>10.3 Traversing a list</b></h4>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              85.95379638671875\n            ],\n            [\n              275.6689453125,\n              85.95379638671875\n            ],\n            [\n              275.6689453125,\n              100.29998779296875\n            ],\n            [\n              128.6455078125,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            85.95379638671875,\n            275.6689453125,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The most common way to traverse the elements of a list is with a for loop. The syntax is the same as for strings:</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              113.9853515625\n            ],\n            [\n              525.600341796875,\n              113.9853515625\n            ],\n            [\n              525.600341796875,\n              136.61700439453125\n            ],\n            [\n              128.0478515625,\n              136.61700439453125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            113.9853515625,\n            525.600341796875,\n            136.61700439453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">for cheese in cheeses: print cheese</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              143.966796875\n            ],\n            [\n              244.677978515625,\n              143.966796875\n            ],\n            [\n              244.677978515625,\n              166.1243896484375\n            ],\n            [\n              128.49609375,\n              166.1243896484375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            143.966796875,\n            244.677978515625,\n            166.1243896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This works well if you only need to read the elements of the list. But if you want to write or update the elements, you need the indices. A common way to do that is to combine the functions range and len:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              173.443359375\n            ],\n            [\n              525.6033935546875,\n              173.443359375\n            ],\n            [\n              525.6033935546875,\n              208.12396240234375\n            ],\n            [\n              129.2431640625,\n              208.12396240234375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            173.443359375,\n            525.6033935546875,\n            208.12396240234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>for i in range(len(numbers)):\\n    numbers[i] = numbers[i] * 2</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              215.40234375\n            ],\n            [\n              291.7458190917969,\n              215.40234375\n            ],\n            [\n              291.7458190917969,\n              237.63134765625\n            ],\n            [\n              129.60000610351562,\n              237.63134765625\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            215.40234375,\n            291.7458190917969,\n            237.63134765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This loop traverses the list and updates each element. len returns the number of elements in the list. range returns a list of indices from 0 to <i>n</i> − 1, where <i>n</i> is the length of the list. Each time through the loop i gets the index of the next element. The assignment statement in the body uses i to read the old value of the element and to assign the new value.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              245.1307373046875\n            ],\n            [\n              525.9375,\n              245.1307373046875\n            ],\n            [\n              525.9375,\n              291.8258972167969\n            ],\n            [\n              129.2431640625,\n              291.8258972167969\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            245.1307373046875,\n            525.9375,\n            291.8258972167969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A for loop over an empty list never executes the body:</p>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              302.607421875\n            ],\n            [\n              371.443359375,\n              302.607421875\n            ],\n            [\n              371.443359375,\n              313.2589111328125\n            ],\n            [\n              129.16845703125,\n              313.2589111328125\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            302.607421875,\n            371.443359375,\n            313.2589111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>for x in []:\\n    print 'This never happens.'</pre>\",\n          \"polygon\": [\n            [\n              129.59999084472656,\n              320.396484375\n            ],\n            [\n              291.703369140625,\n              320.396484375\n            ],\n            [\n              291.703369140625,\n              342.766357421875\n            ],\n            [\n              129.59999084472656,\n              342.766357421875\n            ]\n          ],\n          \"bbox\": [\n            129.59999084472656,\n            320.396484375,\n            291.703369140625,\n            342.766357421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Although a list can contain another list, the nested list still counts as a single element. The length of this list is four:</p>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              349.98046875\n            ],\n            [\n              525.6033325195312,\n              349.98046875\n            ],\n            [\n              525.6033325195312,\n              372.5719299316406\n            ],\n            [\n              129.5999755859375,\n              372.5719299316406\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            349.98046875,\n            525.6033325195312,\n            372.5719299316406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>['spam', 1, ['Brie', 'Roquefort', 'Pol le Veq'], [1, 2, 3]]</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              379.9217834472656\n            ],\n            [\n              438.978515625,\n              379.9217834472656\n            ],\n            [\n              438.978515625,\n              389.8843688964844\n            ],\n            [\n              129.5999755859375,\n              389.8843688964844\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            379.9217834472656,\n            438.978515625,\n            389.8843688964844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-110-1\\\"></span><b>10.4 List operations</b></h4>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              423.0703125\n            ],\n            [\n              266.66363525390625,\n              423.0703125\n            ],\n            [\n              266.66363525390625,\n              437.6109924316406\n            ],\n            [\n              128.86962890625,\n              437.6109924316406\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            423.0703125,\n            266.66363525390625,\n            437.6109924316406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The + operator concatenates lists:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              451.62078857421875\n            ],\n            [\n              275.3020324707031,\n              451.62078857421875\n            ],\n            [\n              275.3020324707031,\n              461.7329406738281\n            ],\n            [\n              128.49609375,\n              461.7329406738281\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            451.62078857421875,\n            275.3020324707031,\n            461.7329406738281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Code/191\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; a = [1, 2, 3]\\n&gt;&gt;&gt; b = [4, 5, 6]\\n&gt;&gt;&gt; c = a + b\\n&gt;&gt;&gt; print c\\n[1, 2, 3, 4, 5, 6]</pre>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              469.0827941894531\n            ],\n            [\n              226.6611328125,\n              469.0827941894531\n            ],\n            [\n              226.6611328125,\n              527.87109375\n            ],\n            [\n              129.2431640625,\n              527.87109375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            469.0827941894531,\n            226.6611328125,\n            527.87109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Similarly, the * operator repeats a list a given number of times:</p>\",\n          \"polygon\": [\n            [\n              127.82373046875,\n              534.83203125\n            ],\n            [\n              404.8648681640625,\n              534.83203125\n            ],\n            [\n              404.8648681640625,\n              545.4349670410156\n            ],\n            [\n              127.82373046875,\n              545.4349670410156\n            ]\n          ],\n          \"bbox\": [\n            127.82373046875,\n            534.83203125,\n            404.8648681640625,\n            545.4349670410156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/TextInlineMath/15\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; [0] * 4 [0, 0, 0, 0] &gt;&gt;&gt; [1, 2, 3] * 3 [1, 2, 3, 1, 2, 3, 1, 2, 3]</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              552.7848205566406\n            ],\n            [\n              270.8198547363281,\n              552.7848205566406\n            ],\n            [\n              270.8198547363281,\n              600.9609375\n            ],\n            [\n              128.3466796875,\n              600.9609375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            552.7848205566406,\n            270.8198547363281,\n            600.9609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first example repeats [0] four times. The second example repeats the list [1, 2, 3] three times.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              606.76171875\n            ],\n            [\n              525.611328125,\n              606.76171875\n            ],\n            [\n              525.611328125,\n              629.19140625\n            ],\n            [\n              128.794921875,\n              629.19140625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            606.76171875,\n            525.611328125,\n            629.19140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/SectionHeader/17\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-110-2\\\"></span><b>10.5 List slices</b></h4>\",\n          \"polygon\": [\n            [\n              127.1513671875,\n              662.3668518066406\n            ],\n            [\n              233.2353515625,\n              662.3668518066406\n            ],\n            [\n              233.2353515625,\n              676.7130432128906\n            ],\n            [\n              127.1513671875,\n              676.7130432128906\n            ]\n          ],\n          \"bbox\": [\n            127.1513671875,\n            662.3668518066406,\n            233.2353515625,\n            676.7130432128906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/110/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The slice operator also works on lists:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              690.8723983764648\n            ],\n            [\n              294.39141845703125,\n              690.8723983764648\n            ],\n            [\n              294.39141845703125,\n              700.8349990844727\n            ],\n            [\n              128.3466796875,\n              700.8349990844727\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            690.8723983764648,\n            294.39141845703125,\n            700.8349990844727\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/17\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/110/SectionHeader/17\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/111/Page/248\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/111/PageHeader/0'></content-ref><content-ref src='/page/111/PageHeader/16'></content-ref><content-ref src='/page/111/Code/1'></content-ref><content-ref src='/page/111/Text/2'></content-ref><content-ref src='/page/111/Code/3'></content-ref><content-ref src='/page/111/Text/4'></content-ref><content-ref src='/page/111/Text/5'></content-ref><content-ref src='/page/111/Code/6'></content-ref><content-ref src='/page/111/SectionHeader/7'></content-ref><content-ref src='/page/111/Text/8'></content-ref><content-ref src='/page/111/Code/9'></content-ref><content-ref src='/page/111/Text/10'></content-ref><content-ref src='/page/111/Code/11'></content-ref><content-ref src='/page/111/Text/12'></content-ref><content-ref src='/page/111/Text/13'></content-ref><content-ref src='/page/111/Code/14'></content-ref><content-ref src='/page/111/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/111/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.521484375\n            ],\n            [\n              482.4033508300781,\n              60.521484375\n            ],\n            [\n              482.4033508300781,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.521484375,\n            482.4033508300781,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              60.4248046875\n            ],\n            [\n              96.89501953125,\n              60.4248046875\n            ],\n            [\n              96.89501953125,\n              70.0927734375\n            ],\n            [\n              85.24072265625,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            60.4248046875,\n            96.89501953125,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ['a', 'b', 'c', 'd', 'e', 'f']\\n&gt;&gt;&gt; t[1:3]\\n['b', 'c']\\n&gt;&gt;&gt; t[:4]\\n['a', 'b', 'c', 'd']\\n&gt;&gt;&gt; t[3:]\\n['d', 'e', 'f']</pre>\",\n          \"polygon\": [\n            [\n              86.0625,\n              85.60986328125\n            ],\n            [\n              285.107421875,\n              85.60986328125\n            ],\n            [\n              285.107421875,\n              171.8143310546875\n            ],\n            [\n              86.0625,\n              171.8143310546875\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            85.60986328125,\n            285.107421875,\n            171.8143310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you omit the first index, the slice starts at the beginning. If you omit the second, the slice goes to the end. So if you omit both, the slice is a copy of the whole list.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              179.244140625\n            ],\n            [\n              482.4033508300781,\n              179.244140625\n            ],\n            [\n              482.4033508300781,\n              202.85089111328125\n            ],\n            [\n              85.166015625,\n              202.85089111328125\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            179.244140625,\n            482.4033508300781,\n            202.85089111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t[:]\\n['a', 'b', 'c', 'd', 'e', 'f']</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              210.375\n            ],\n            [\n              243.6943359375,\n              210.375\n            ],\n            [\n              243.6943359375,\n              233.5882568359375\n            ],\n            [\n              85.3154296875,\n              233.5882568359375\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            210.375,\n            243.6943359375,\n            233.5882568359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since lists are mutable, it is often useful to make a copy before performing operations that fold, spindle or mutilate lists.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              241.505859375\n            ],\n            [\n              482.90625,\n              241.505859375\n            ],\n            [\n              482.90625,\n              264.6258544921875\n            ],\n            [\n              85.3154296875,\n              264.6258544921875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            241.505859375,\n            482.90625,\n            264.6258544921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A slice operator on the left side of an assignment can update multiple elements:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              276.310546875\n            ],\n            [\n              436.14703369140625,\n              276.310546875\n            ],\n            [\n              436.14703369140625,\n              287.2898254394531\n            ],\n            [\n              85.46484375,\n              287.2898254394531\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            276.310546875,\n            436.14703369140625,\n            287.2898254394531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ['a', 'b', 'c', 'd', 'e', 'f']\\n&gt;&gt;&gt; t[1:3] = ['x', 'y']\\n&gt;&gt;&gt; print t\\n['a', 'x', 'y', 'd', 'e', 'f']</pre>\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              295.87066650390625\n            ],\n            [\n              285.1074523925781,\n              295.87066650390625\n            ],\n            [\n              285.1074523925781,\n              342.416259765625\n            ],\n            [\n              85.24072265625,\n              342.416259765625\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            295.87066650390625,\n            285.1074523925781,\n            342.416259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/110/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-111-0\\\"></span><b>10.6 List methods</b></h4>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              379.4886779785156\n            ],\n            [\n              210.70993041992188,\n              379.4886779785156\n            ],\n            [\n              210.70993041992188,\n              393.83489990234375\n            ],\n            [\n              85.46484375,\n              393.83489990234375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            379.4886779785156,\n            210.70993041992188,\n            393.83489990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/111/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python provides methods that operate on lists. For example, append adds a new element to the end of a list:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              409.1484375\n            ],\n            [\n              483.50390625,\n              409.1484375\n            ],\n            [\n              483.50390625,\n              431.8758544921875\n            ],\n            [\n              85.46484375,\n              431.8758544921875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            409.1484375,\n            483.50390625,\n            431.8758544921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/111/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ['a', 'b', 'c']\\n&gt;&gt;&gt; t.append('d')\\n&gt;&gt;&gt; print t\\n['a', 'b', 'c', 'd']</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              440.4566955566406\n            ],\n            [\n              206.67153930664062,\n              440.4566955566406\n            ],\n            [\n              206.67153930664062,\n              487.265625\n            ],\n            [\n              85.3154296875,\n              487.265625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            440.4566955566406,\n            206.67153930664062,\n            487.265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/111/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">extend takes a list as an argument and appends all of the elements:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              495.38671875\n            ],\n            [\n              381.39581298828125,\n              495.38671875\n            ],\n            [\n              381.39581298828125,\n              505.8438415527344\n            ],\n            [\n              85.763671875,\n              505.8438415527344\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            495.38671875,\n            381.39581298828125,\n            505.8438415527344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/111/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t1 = ['a', 'b', 'c']\\n&gt;&gt;&gt; t2 = ['d', 'e']\\n&gt;&gt;&gt; t1.extend(t2)\\n&gt;&gt;&gt; print t1\\n['a', 'b', 'c', 'd', 'e']</pre>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              514.4246826171875\n            ],\n            [\n              217.12962341308594,\n              514.4246826171875\n            ],\n            [\n              217.12962341308594,\n              573.1652984619141\n            ],\n            [\n              85.39013671875,\n              573.1652984619141\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            514.4246826171875,\n            217.12962341308594,\n            573.1652984619141\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/111/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This example leaves t2 unmodified.</p>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              581.8956909179688\n            ],\n            [\n              244.88302612304688,\n              581.8956909179688\n            ],\n            [\n              244.88302612304688,\n              592.06640625\n            ],\n            [\n              85.83837890625,\n              592.06640625\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            581.8956909179688,\n            244.88302612304688,\n            592.06640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/111/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">sort arranges the elements of the list from low to high:</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              604.0546875\n            ],\n            [\n              328.5072326660156,\n              604.0546875\n            ],\n            [\n              328.5072326660156,\n              614.6718444824219\n            ],\n            [\n              85.68896484375,\n              614.6718444824219\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            604.0546875,\n            328.5072326660156,\n            614.6718444824219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/111/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ['d', 'c', 'e', 'b', 'a']\\n&gt;&gt;&gt; t.sort()\\n&gt;&gt;&gt; print t\\n['a', 'b', 'c', 'd', 'e']</pre>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              623.00390625\n            ],\n            [\n              258.9626770019531,\n              623.00390625\n            ],\n            [\n              258.9626770019531,\n              669.7982864379883\n            ],\n            [\n              85.39013671875,\n              669.7982864379883\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            623.00390625,\n            258.9626770019531,\n            669.7982864379883\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/111/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/111/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">List methods are all void; they modify the list and return None. If you accidentally write t = t.sort(), you will be disappointed with the result.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              677.14453125\n            ],\n            [\n              482.4026794433594,\n              677.14453125\n            ],\n            [\n              482.4026794433594,\n              700.8348541259766\n            ],\n            [\n              85.3154296875,\n              700.8348541259766\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            677.14453125,\n            482.4026794433594,\n            700.8348541259766\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/111/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/111/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/112/Page/211\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/112/PageHeader/0'></content-ref><content-ref src='/page/112/PageHeader/20'></content-ref><content-ref src='/page/112/SectionHeader/1'></content-ref><content-ref src='/page/112/Text/2'></content-ref><content-ref src='/page/112/Code/3'></content-ref><content-ref src='/page/112/Text/4'></content-ref><content-ref src='/page/112/TextInlineMath/5'></content-ref><content-ref src='/page/112/Text/6'></content-ref><content-ref src='/page/112/TextInlineMath/7'></content-ref><content-ref src='/page/112/Text/8'></content-ref><content-ref src='/page/112/Text/9'></content-ref><content-ref src='/page/112/Code/10'></content-ref><content-ref src='/page/112/Text/11'></content-ref><content-ref src='/page/112/Text/12'></content-ref><content-ref src='/page/112/Text/13'></content-ref><content-ref src='/page/112/Code/14'></content-ref><content-ref src='/page/112/Text/15'></content-ref><content-ref src='/page/112/Text/16'></content-ref><content-ref src='/page/112/Text/17'></content-ref><content-ref src='/page/112/Text/18'></content-ref><content-ref src='/page/112/Code/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/112/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.794921875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.794921875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/111/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              515.1796875,\n              61.43994140625\n            ],\n            [\n              525.9375,\n              61.43994140625\n            ],\n            [\n              525.9375,\n              70.72119140625\n            ],\n            [\n              515.1796875,\n              70.72119140625\n            ]\n          ],\n          \"bbox\": [\n            515.1796875,\n            61.43994140625,\n            525.9375,\n            70.72119140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/111/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-112-0\\\"></span><b>10.7 Map, filter and reduce</b></h4>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              85.95379638671875\n            ],\n            [\n              313.76953125,\n              85.95379638671875\n            ],\n            [\n              313.76953125,\n              100.29998779296875\n            ],\n            [\n              128.12255859375,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            85.95379638671875,\n            313.76953125,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To add up all the numbers in a list, you can use a loop like this:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              112.6318359375\n            ],\n            [\n              406.5302734375,\n              112.6318359375\n            ],\n            [\n              406.5302734375,\n              122.846923828125\n            ],\n            [\n              128.3466796875,\n              122.846923828125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            112.6318359375,\n            406.5302734375,\n            122.846923828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def add_all(t):\\n    total = 0\\n    for x in t:\\n        total += x\\n    return total</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              129.07171630859375\n            ],\n            [\n              223.73666381835938,\n              129.07171630859375\n            ],\n            [\n              223.73666381835938,\n              187.811279296875\n            ],\n            [\n              129.60000610351562,\n              187.811279296875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            129.07171630859375,\n            223.73666381835938,\n            187.811279296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">total is initialized to 0. Each time through the loop, x gets one element from the list. The += operator provides a short way to update a variable. This <b>augmented assignment</b> <b>statement</b>:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              193.8427734375\n            ],\n            [\n              525.9375,\n              193.8427734375\n            ],\n            [\n              525.9375,\n              228.6868896484375\n            ],\n            [\n              128.6455078125,\n              228.6868896484375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            193.8427734375,\n            525.9375,\n            228.6868896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/TextInlineMath/5\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">total += x</p>\",\n          \"polygon\": [\n            [\n              147.99462890625,\n              234.544921875\n            ],\n            [\n              203.203125,\n              234.544921875\n            ],\n            [\n              203.203125,\n              244.873291015625\n            ],\n            [\n              147.99462890625,\n              244.873291015625\n            ]\n          ],\n          \"bbox\": [\n            147.99462890625,\n            234.544921875,\n            203.203125,\n            244.873291015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">is equivalent to:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              251.397216796875\n            ],\n            [\n              199.6171875,\n              251.397216796875\n            ],\n            [\n              199.6171875,\n              261.35986328125\n            ],\n            [\n              128.49609375,\n              261.35986328125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            251.397216796875,\n            199.6171875,\n            261.35986328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/TextInlineMath/7\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">total = total + x</p>\",\n          \"polygon\": [\n            [\n              144.333984375,\n              267.58465576171875\n            ],\n            [\n              239.4322509765625,\n              267.58465576171875\n            ],\n            [\n              239.4322509765625,\n              277.5472412109375\n            ],\n            [\n              144.333984375,\n              277.5472412109375\n            ]\n          ],\n          \"bbox\": [\n            144.333984375,\n            267.58465576171875,\n            239.4322509765625,\n            277.5472412109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As the loop executes, total accumulates the sum of the elements; a variable used this way is sometimes called an <b>accumulator</b>.</p>\",\n          \"polygon\": [\n            [\n              129.6000518798828,\n              283.920654296875\n            ],\n            [\n              525.6009521484375,\n              283.920654296875\n            ],\n            [\n              525.6009521484375,\n              306.226806640625\n            ],\n            [\n              129.6000518798828,\n              306.226806640625\n            ]\n          ],\n          \"bbox\": [\n            129.6000518798828,\n            283.920654296875,\n            525.6009521484375,\n            306.226806640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Adding up the elements of a list is such a common operation that Python provides it as a built-in function, sum:</p>\",\n          \"polygon\": [\n            [\n              129.60009765625,\n              316.5732116699219\n            ],\n            [\n              525.6033935546875,\n              316.5732116699219\n            ],\n            [\n              525.6033935546875,\n              338.72979736328125\n            ],\n            [\n              129.60009765625,\n              338.72979736328125\n            ]\n          ],\n          \"bbox\": [\n            129.60009765625,\n            316.5732116699219,\n            525.6033935546875,\n            338.72979736328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = [1, 2, 3]\\n&gt;&gt;&gt; sum(t)\\n6</pre>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              344.95465087890625\n            ],\n            [\n              218.51629638671875,\n              344.95465087890625\n            ],\n            [\n              218.51629638671875,\n              379.30523681640625\n            ],\n            [\n              128.12255859375,\n              379.30523681640625\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            344.95465087890625,\n            218.51629638671875,\n            379.30523681640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An operation like this that combines a sequence of elements into a single value is sometimes called <b>reduce</b>.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              385.8292236328125\n            ],\n            [\n              525.6034545898438,\n              385.8292236328125\n            ],\n            [\n              525.6034545898438,\n              407.9858093261719\n            ],\n            [\n              128.3466796875,\n              407.9858093261719\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            385.8292236328125,\n            525.6034545898438,\n            407.9858093261719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 10.1.</b> <i>Write a function called</i> nested_sum <i>that takes a nested list of integers and add up</i> <i>the elements from all of the nested lists.</i></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              409.921875\n            ],\n            [\n              525.604736328125,\n              409.921875\n            ],\n            [\n              525.604736328125,\n              432.2021179199219\n            ],\n            [\n              128.9443359375,\n              432.2021179199219\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            409.921875,\n            525.604736328125,\n            432.2021179199219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Sometimes you want to traverse one list while building another. For example, the following function takes a list of strings and returns a new list that contains capitalized strings:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              442.40625\n            ],\n            [\n              525.6034545898438,\n              442.40625\n            ],\n            [\n              525.6034545898438,\n              464.8768310546875\n            ],\n            [\n              128.3466796875,\n              464.8768310546875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            442.40625,\n            525.6034545898438,\n            464.8768310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def capitalize_all(t):\\n    res = []\\n    for s in t:\\n        res.append(s.capitalize())\\n    return res</pre>\",\n          \"polygon\": [\n            [\n              129.60011291503906,\n              471.1016845703125\n            ],\n            [\n              307.4325256347656,\n              471.1016845703125\n            ],\n            [\n              307.4325256347656,\n              529.8412780761719\n            ],\n            [\n              129.60011291503906,\n              529.8412780761719\n            ]\n          ],\n          \"bbox\": [\n            129.60011291503906,\n            471.1016845703125,\n            307.4325256347656,\n            529.8412780761719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">res is initialized with an empty list; each time through the loop, we append the next element. So res is another kind of accumulator.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              536.2156982421875\n            ],\n            [\n              525.9375,\n              536.2156982421875\n            ],\n            [\n              525.9375,\n              558.5218505859375\n            ],\n            [\n              127.8984375,\n              558.5218505859375\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            536.2156982421875,\n            525.9375,\n            558.5218505859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An operation like capitalize_all is sometimes called a <b>map</b> because it \\\"maps\\\" a function (in this case the method capitalize) onto each of the elements in a sequence.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              568.7176971435547\n            ],\n            [\n              525.9375,\n              568.7176971435547\n            ],\n            [\n              525.9375,\n              591.0248565673828\n            ],\n            [\n              127.8984375,\n              591.0248565673828\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            568.7176971435547,\n            525.9375,\n            591.0248565673828\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 10.2.</b> <i>Use</i> capitalize_all <i>to write a function named</i> capitalize_nested <i>that takes</i> <i>a nested list of strings and returns a new nested list with all strings capitalized.</i></p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              593.0835571289062\n            ],\n            [\n              525.5971069335938,\n              593.0835571289062\n            ],\n            [\n              525.5971069335938,\n              615.26953125\n            ],\n            [\n              128.3466796875,\n              615.26953125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            593.0835571289062,\n            525.5971069335938,\n            615.26953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Another common operation is to select some of the elements from a list and return a sublist. For example, the following function takes a list of strings and returns a list that contains only the uppercase strings:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              625.7109375\n            ],\n            [\n              525.9375,\n              625.7109375\n            ],\n            [\n              525.9375,\n              660.10986328125\n            ],\n            [\n              128.6455078125,\n              660.10986328125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            625.7109375,\n            525.9375,\n            660.10986328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/112/Code/19\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def only_upper(t):\\n    res = []\\n    for s in t:</pre>\",\n          \"polygon\": [\n            [\n              129.60012817382812,\n              666.3347015380859\n            ],\n            [\n              223.75665283203125,\n              666.3347015380859\n            ],\n            [\n              223.75665283203125,\n              700.685302734375\n            ],\n            [\n              129.60012817382812,\n              700.685302734375\n            ]\n          ],\n          \"bbox\": [\n            129.60012817382812,\n            666.3347015380859,\n            223.75665283203125,\n            700.685302734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/112/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/113/Page/268\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/113/PageHeader/0'></content-ref><content-ref src='/page/113/PageHeader/19'></content-ref><content-ref src='/page/113/Code/1'></content-ref><content-ref src='/page/113/Text/2'></content-ref><content-ref src='/page/113/Text/3'></content-ref><content-ref src='/page/113/Text/4'></content-ref><content-ref src='/page/113/Text/5'></content-ref><content-ref src='/page/113/SectionHeader/6'></content-ref><content-ref src='/page/113/Text/7'></content-ref><content-ref src='/page/113/Code/8'></content-ref><content-ref src='/page/113/Text/9'></content-ref><content-ref src='/page/113/Text/10'></content-ref><content-ref src='/page/113/TextInlineMath/11'></content-ref><content-ref src='/page/113/Text/12'></content-ref><content-ref src='/page/113/Code/262'></content-ref><content-ref src='/page/113/Text/14'></content-ref><content-ref src='/page/113/Text/15'></content-ref><content-ref src='/page/113/Code/16'></content-ref><content-ref src='/page/113/Text/17'></content-ref><content-ref src='/page/113/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/113/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.27978515625\n            ],\n            [\n              482.4033508300781,\n              60.27978515625\n            ],\n            [\n              482.4033508300781,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.27978515625,\n            482.4033508300781,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.46484375,\n              60.8115234375\n            ],\n            [\n              96.521484375,\n              60.8115234375\n            ],\n            [\n              96.521484375,\n              70.3828125\n            ],\n            [\n              85.46484375,\n              70.3828125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            60.8115234375,\n            96.521484375,\n            70.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if s.isupper():\\n        res.append(s)\\nreturn res</pre>\",\n          \"polygon\": [\n            [\n              107.1298828125,\n              88.41357421875\n            ],\n            [\n              217.15371704101562,\n              88.41357421875\n            ],\n            [\n              217.15371704101562,\n              123.03729248046875\n            ],\n            [\n              107.1298828125,\n              123.03729248046875\n            ]\n          ],\n          \"bbox\": [\n            107.1298828125,\n            88.41357421875,\n            217.15371704101562,\n            123.03729248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">isupper is a string method that returns True if the string contains only upper case letters.</p>\",\n          \"polygon\": [\n            [\n              86.40000915527344,\n              126.45703125\n            ],\n            [\n              479.3203125,\n              126.45703125\n            ],\n            [\n              479.3203125,\n              137.2169189453125\n            ],\n            [\n              86.40000915527344,\n              137.2169189453125\n            ]\n          ],\n          \"bbox\": [\n            86.40000915527344,\n            126.45703125,\n            479.3203125,\n            137.2169189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An operation like only_upper is called a <b>filter</b> because it selects some of the elements and filters out the others.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              143.859375\n            ],\n            [\n              482.40386962890625,\n              143.859375\n            ],\n            [\n              482.40386962890625,\n              167.4139404296875\n            ],\n            [\n              85.46484375,\n              167.4139404296875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            143.859375,\n            482.40386962890625,\n            167.4139404296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Most common list operations can be expressed as a combination of map, filter and reduce. Because these operations are so common, Python provides language features to support them, including the built-in function map and an operator called a \\\"list comprehension.\\\" <b>Exercise 10.3.</b> <i>Write a function that takes a list of numbers and returns the cumulative sum; that</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              174.5068359375\n            ],\n            [\n              482.4034423828125,\n              174.5068359375\n            ],\n            [\n              482.4034423828125,\n              221.90179443359375\n            ],\n            [\n              85.46484375,\n              221.90179443359375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            174.5068359375,\n            482.4034423828125,\n            221.90179443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-113-1\\\"></span><i>is, a new list where the ith element is the sum of the first i</i> + 1 <i>elements from the original list. For</i> <i>example, the cumulative sum of</i> [1, 2, 3] <i>is</i> [1, 3, 6]<i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              219.65625\n            ],\n            [\n              482.3965759277344,\n              219.65625\n            ],\n            [\n              482.3965759277344,\n              246.7265625\n            ],\n            [\n              85.6142578125,\n              246.7265625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            219.65625,\n            482.3965759277344,\n            246.7265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/112/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-113-0\\\"></span><b>10.8 Deleting elements</b></h4>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              272.443359375\n            ],\n            [\n              245.77203369140625,\n              272.443359375\n            ],\n            [\n              245.77203369140625,\n              287.138671875\n            ],\n            [\n              85.6142578125,\n              287.138671875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            272.443359375,\n            245.77203369140625,\n            287.138671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are several ways to delete elements from a list. If you know the index of the element you want, you can use pop:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              296.806640625\n            ],\n            [\n              482.40350341796875,\n              296.806640625\n            ],\n            [\n              482.40350341796875,\n              319.45391845703125\n            ],\n            [\n              85.46484375,\n              319.45391845703125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            296.806640625,\n            482.40350341796875,\n            319.45391845703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ['a', 'b', 'c']\\n&gt;&gt;&gt; x = t.pop(1)\\n&gt;&gt;&gt; print t\\n['a', 'c']\\n&gt;&gt;&gt; print x\\nb</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              323.37176513671875\n            ],\n            [\n              206.6704864501953,\n              323.37176513671875\n            ],\n            [\n              206.6704864501953,\n              394.3063659667969\n            ],\n            [\n              85.6142578125,\n              394.3063659667969\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            323.37176513671875,\n            206.6704864501953,\n            394.3063659667969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">pop modifies the list and returns the element that was removed. If you don't provide an index, it deletes and returns the last element.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              397.93359375\n            ],\n            [\n              482.3990478515625,\n              397.93359375\n            ],\n            [\n              482.3990478515625,\n              420.6809387207031\n            ],\n            [\n              85.46484375,\n              420.6809387207031\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            397.93359375,\n            482.3990478515625,\n            420.6809387207031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you don't need the removed value, you can use the del operator:</p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              428.09765625\n            ],\n            [\n              381.49713134765625,\n              428.09765625\n            ],\n            [\n              381.49713134765625,\n              438.6829528808594\n            ],\n            [\n              85.39013671875,\n              438.6829528808594\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            428.09765625,\n            381.49713134765625,\n            438.6829528808594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/TextInlineMath/11\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; t = ['a', 'b', 'c'] &gt;&gt;&gt; del t[1] &gt;&gt;&gt; print t ['a', 'c']</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              442.40625\n            ],\n            [\n              206.67051696777344,\n              442.40625\n            ],\n            [\n              206.67051696777344,\n              496.546875\n            ],\n            [\n              85.3154296875,\n              496.546875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            442.40625,\n            206.67051696777344,\n            496.546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you know the element you want to remove (but not the index), you can use remove:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              493.06640625\n            ],\n            [\n              462.9958190917969,\n              493.06640625\n            ],\n            [\n              462.9958190917969,\n              503.3279724121094\n            ],\n            [\n              85.763671875,\n              503.3279724121094\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            493.06640625,\n            462.9958190917969,\n            503.3279724121094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Code/262\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ['a', 'b', 'c']\\n&gt;&gt;&gt; t.remove('b')\\n&gt;&gt;&gt; print t\\n['a', 'c']</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              506.98828125\n            ],\n            [\n              206.67054748535156,\n              506.98828125\n            ],\n            [\n              206.67054748535156,\n              561.12890625\n            ],\n            [\n              85.6142578125,\n              561.12890625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            506.98828125,\n            206.67054748535156,\n            561.12890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The return value from remove is None.</p>\",\n          \"polygon\": [\n            [\n              86.40019226074219,\n              557.8598327636719\n            ],\n            [\n              254.302734375,\n              557.8598327636719\n            ],\n            [\n              254.302734375,\n              568.86328125\n            ],\n            [\n              86.40019226074219,\n              568.86328125\n            ]\n          ],\n          \"bbox\": [\n            86.40019226074219,\n            557.8598327636719,\n            254.302734375,\n            568.86328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To remove more than one element, you can use del with a slice index:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              575.8618316650391\n            ],\n            [\n              393.24322509765625,\n              575.8618316650391\n            ],\n            [\n              393.24322509765625,\n              586.265625\n            ],\n            [\n              86.2119140625,\n              586.265625\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            575.8618316650391,\n            393.24322509765625,\n            586.265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ['a', 'b', 'c', 'd', 'e', 'f']\\n&gt;&gt;&gt; del t[1:5]\\n&gt;&gt;&gt; print t\\n['a', 'f']</pre>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              589.74609375\n            ],\n            [\n              286.27734375,\n              589.74609375\n            ],\n            [\n              286.27734375,\n              638.47265625\n            ],\n            [\n              85.68896484375,\n              638.47265625\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            589.74609375,\n            286.27734375,\n            638.47265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As usual, the slice selects all the elements up to, but not including, the second index. <b>Exercise 10.4.</b> <i>Write a function called</i> middle <i>that takes a list and returns a new list that contains</i> <i>all but the first and last elements. So</i> middle([1,2,3,4]) <i>should return</i> [2,3]<i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              639.6328125\n            ],\n            [\n              482.40374755859375,\n              639.6328125\n            ],\n            [\n              482.40374755859375,\n              674.8574447631836\n            ],\n            [\n              85.763671875,\n              674.8574447631836\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            639.6328125,\n            482.40374755859375,\n            674.8574447631836\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/113/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 10.5.</b> <i>Write a function called</i> chop <i>that takes a list, modifies it by removing the first and</i> <i>last elements, and returns</i> None<i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              674.4375\n            ],\n            [\n              482.396240234375,\n              674.4375\n            ],\n            [\n              482.396240234375,\n              699.2464447021484\n            ],\n            [\n              85.6142578125,\n              699.2464447021484\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            674.4375,\n            482.396240234375,\n            699.2464447021484\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/113/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/114/Page/239\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/114/PageHeader/0'></content-ref><content-ref src='/page/114/PageHeader/18'></content-ref><content-ref src='/page/114/SectionHeader/1'></content-ref><content-ref src='/page/114/Text/2'></content-ref><content-ref src='/page/114/Code/3'></content-ref><content-ref src='/page/114/Text/4'></content-ref><content-ref src='/page/114/Text/5'></content-ref><content-ref src='/page/114/Code/6'></content-ref><content-ref src='/page/114/Text/7'></content-ref><content-ref src='/page/114/Code/8'></content-ref><content-ref src='/page/114/Text/9'></content-ref><content-ref src='/page/114/Code/10'></content-ref><content-ref src='/page/114/Text/11'></content-ref><content-ref src='/page/114/SectionHeader/12'></content-ref><content-ref src='/page/114/Text/13'></content-ref><content-ref src='/page/114/Code/14'></content-ref><content-ref src='/page/114/Text/15'></content-ref><content-ref src='/page/114/Text/16'></content-ref><content-ref src='/page/114/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/114/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.16845703125,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            60.95654296875,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.283203125,\n              60.908203125\n            ],\n            [\n              525.638671875,\n              60.908203125\n            ],\n            [\n              525.638671875,\n              70.0927734375\n            ],\n            [\n              514.283203125,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            514.283203125,\n            60.908203125,\n            525.638671875,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/113/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-114-0\\\"></span><b>10.9 Lists and strings</b></h4>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              85.95379638671875\n            ],\n            [\n              277.4619140625,\n              85.95379638671875\n            ],\n            [\n              277.4619140625,\n              100.29998779296875\n            ],\n            [\n              128.6455078125,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            85.95379638671875,\n            277.4619140625,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A string is a sequence of characters and a list is a sequence of values, but a list of characters is not the same as a string. To convert from a string to a list of characters, you can use list:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              112.8251953125\n            ],\n            [\n              525.638671875,\n              112.8251953125\n            ],\n            [\n              525.638671875,\n              135.52398681640625\n            ],\n            [\n              128.794921875,\n              135.52398681640625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            112.8251953125,\n            525.638671875,\n            135.52398681640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; s = 'spam'\\n&gt;&gt;&gt; t = list(s)\\n&gt;&gt;&gt; print t\\n['s', 'p', 'a', 'm']</pre>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              153.6240234375\n            ],\n            [\n              234.1833953857422,\n              153.6240234375\n            ],\n            [\n              234.1833953857422,\n              200.8333740234375\n            ],\n            [\n              128.49609375,\n              200.8333740234375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            153.6240234375,\n            234.1833953857422,\n            200.8333740234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Because list is the name of a built-in function, you should avoid using it as a variable name. I also avoid l because it looks too much like 1. So that's why I use t.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              206.89453125\n            ],\n            [\n              525.638671875,\n              206.89453125\n            ],\n            [\n              525.638671875,\n              229.8590087890625\n            ],\n            [\n              129.392578125,\n              229.8590087890625\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            206.89453125,\n            525.638671875,\n            229.8590087890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The list function breaks a string into individual letters. If you want to break a string into words, you can use the split method:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              239.765625\n            ],\n            [\n              525.6027221679688,\n              239.765625\n            ],\n            [\n              525.6027221679688,\n              262.70599365234375\n            ],\n            [\n              129.2431640625,\n              262.70599365234375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            239.765625,\n            525.6027221679688,\n            262.70599365234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; s = 'pining for the fjords'\\n&gt;&gt;&gt; t = s.split()\\n&gt;&gt;&gt; print t\\n['pining', 'for', 'the', 'fjords']</pre>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              269.27484130859375\n            ],\n            [\n              307.3914489746094,\n              269.27484130859375\n            ],\n            [\n              307.3914489746094,\n              315.8204345703125\n            ],\n            [\n              129.46728515625,\n              315.8204345703125\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            269.27484130859375,\n            307.3914489746094,\n            315.8204345703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An optional argument called a <b>delimiter</b> specifies which characters to use as word boundaries. The following example uses a hyphen as a delimiter:</p>\",\n          \"polygon\": [\n            [\n              129.60006713867188,\n              321.943359375\n            ],\n            [\n              525.6026611328125,\n              321.943359375\n            ],\n            [\n              525.6026611328125,\n              344.84600830078125\n            ],\n            [\n              129.60006713867188,\n              344.84600830078125\n            ]\n          ],\n          \"bbox\": [\n            129.60006713867188,\n            321.943359375,\n            525.6026611328125,\n            344.84600830078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; s = 'spam-spam-spam'\\n&gt;&gt;&gt; delimiter = '-'\\n&gt;&gt;&gt; s.split(delimiter)\\n['spam', 'spam', 'spam']</pre>\",\n          \"polygon\": [\n            [\n              127.52490234375,\n              351.41485595703125\n            ],\n            [\n              259.98046875,\n              351.41485595703125\n            ],\n            [\n              259.98046875,\n              397.96044921875\n            ],\n            [\n              127.52490234375,\n              397.96044921875\n            ]\n          ],\n          \"bbox\": [\n            127.52490234375,\n            351.41485595703125,\n            259.98046875,\n            397.96044921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">join is the inverse of split. It takes a list of strings and concatenates the elements. join is a string method, so you have to invoke it on the delimiter and pass the list as a parameter:</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              404.12109375\n            ],\n            [\n              525.6035766601562,\n              404.12109375\n            ],\n            [\n              525.6035766601562,\n              426.98602294921875\n            ],\n            [\n              129.5419921875,\n              426.98602294921875\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            404.12109375,\n            525.6035766601562,\n            426.98602294921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ['pining', 'for', 'the', 'fjords']\\n&gt;&gt;&gt; delimiter = ' '\\n&gt;&gt;&gt; delimiter.join(t)\\n'pining for the fjords'</pre>\",\n          \"polygon\": [\n            [\n              127.37548828125,\n              444.33984375\n            ],\n            [\n              349.22454833984375,\n              444.33984375\n            ],\n            [\n              349.22454833984375,\n              493.83984375\n            ],\n            [\n              127.37548828125,\n              493.83984375\n            ]\n          ],\n          \"bbox\": [\n            127.37548828125,\n            444.33984375,\n            349.22454833984375,\n            493.83984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this case the delimiter is a space character, so join puts a space between words. To concatenate strings without spaces, you can use the empty string, '', as a delimiter.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              499.0138854980469\n            ],\n            [\n              525.602783203125,\n              499.0138854980469\n            ],\n            [\n              525.602783203125,\n              521.3200378417969\n            ],\n            [\n              128.794921875,\n              521.3200378417969\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            499.0138854980469,\n            525.602783203125,\n            521.3200378417969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-114-1\\\"></span><b>10.10 Objects and values</b></h4>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              551.84765625\n            ],\n            [\n              300.5208435058594,\n              551.84765625\n            ],\n            [\n              300.5208435058594,\n              566.5540924072266\n            ],\n            [\n              127.8984375,\n              566.5540924072266\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            551.84765625,\n            300.5208435058594,\n            566.5540924072266\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If we execute these assignment statements:</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              578.91796875\n            ],\n            [\n              317.843505859375,\n              578.91796875\n            ],\n            [\n              317.843505859375,\n              589.5840454101562\n            ],\n            [\n              127.8984375,\n              589.5840454101562\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            578.91796875,\n            317.843505859375,\n            589.5840454101562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>a = 'banana'\\nb = 'banana'</pre>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              596.1528930664062\n            ],\n            [\n              192.35057067871094,\n              596.1528930664062\n            ],\n            [\n              192.35057067871094,\n              618.3105010986328\n            ],\n            [\n              127.4501953125,\n              618.3105010986328\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            596.1528930664062,\n            192.35057067871094,\n            618.3105010986328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We know that a and b both refer to a string, but we don't know whether they refer to the <i>same</i> string. There are two possible states, shown in Figure <a href=\\\"#page-115-1\\\">10.2.</a></p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              624.55078125\n            ],\n            [\n              525.5989379882812,\n              624.55078125\n            ],\n            [\n              525.5989379882812,\n              647.3350524902344\n            ],\n            [\n              129.5419921875,\n              647.3350524902344\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            624.55078125,\n            525.5989379882812,\n            647.3350524902344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In one case, a and b refer to two different objects that have the same value. In the second case, they refer to the same object.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              657.421875\n            ],\n            [\n              525.638671875,\n              657.421875\n            ],\n            [\n              525.638671875,\n              680.1820602416992\n            ],\n            [\n              128.794921875,\n              680.1820602416992\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            657.421875,\n            525.638671875,\n            680.1820602416992\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/114/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To check whether two variables refer to the same object, you can use the is operator.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              690.6796875\n            ],\n            [\n              501.010986328125,\n              690.6796875\n            ],\n            [\n              501.010986328125,\n              700.8350601196289\n            ],\n            [\n              128.0478515625,\n              700.8350601196289\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            690.6796875,\n            501.010986328125,\n            700.8350601196289\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/114/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/115/Page/201\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/115/PageHeader/0'></content-ref><content-ref src='/page/115/PageHeader/19'></content-ref><content-ref src='/page/115/Figure/1'></content-ref><content-ref src='/page/115/Text/2'></content-ref><content-ref src='/page/115/TableGroup/186'></content-ref><content-ref src='/page/115/Code/5'></content-ref><content-ref src='/page/115/Text/6'></content-ref><content-ref src='/page/115/Text/7'></content-ref><content-ref src='/page/115/TextInlineMath/8'></content-ref><content-ref src='/page/115/Text/9'></content-ref><content-ref src='/page/115/Text/10'></content-ref><content-ref src='/page/115/Text/11'></content-ref><content-ref src='/page/115/SectionHeader/12'></content-ref><content-ref src='/page/115/Text/13'></content-ref><content-ref src='/page/115/Code/14'></content-ref><content-ref src='/page/115/Text/15'></content-ref><content-ref src='/page/115/Text/16'></content-ref><content-ref src='/page/115/Text/17'></content-ref><content-ref src='/page/115/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/115/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.0380859375\n            ],\n            [\n              482.4033508300781,\n              60.0380859375\n            ],\n            [\n              482.4033508300781,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.0380859375,\n            482.4033508300781,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.64306640625,\n              60.85986328125\n            ],\n            [\n              95.84912109375,\n              60.85986328125\n            ],\n            [\n              95.84912109375,\n              70.33447265625\n            ],\n            [\n              84.64306640625,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            84.64306640625,\n            60.85986328125,\n            95.84912109375,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Figure/1\",\n          \"block_type\": \"Figure\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              191.6982421875,\n              84.884765625\n            ],\n            [\n              374.1328125,\n              84.884765625\n            ],\n            [\n              374.1328125,\n              117.755859375\n            ],\n            [\n              191.6982421875,\n              117.755859375\n            ]\n          ],\n          \"bbox\": [\n            191.6982421875,\n            84.884765625,\n            374.1328125,\n            117.755859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {\n            \"/page/115/Figure/1\": \"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5irlU/Bn/Hrq3/YUuP5igDpaKKKACiiigAooooA5KX/koep/9gqz/wDRt1WpWXL/AMlD1P8A7BVn/wCjbqtSgDzb4l6imkeKPB2oSxPJDb3MzyiNSxVNg3Ngegyfwqv4n8Q6Z441Xw9ovh65W/kS/jvLiWFSVgiTkknHBOeleo1DBaW1ru+z28UO85by0C5PvigCasu48OaPeX7Xt5YRXU5IINxmUIQMfKrZC9OwFalFACIixoERQqgYAAwBS0UUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVk3n/I3eHP8ArrP/AOiWrWrJvP8AkbvDn/XWf/0S1AHX0UUUAFR3H/HtL/uH+VFFAHI+Ef8AkS9C/wCwdb/+i1rZoooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAqn4M/49dW/wCwpcfzFFFAHS0UUUAFFFFABRRRQByUv/JQ9T/7BVn/AOjbqtSiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACsm8/5G7w5/11n/APRLUUUAdfRRRQB//9k=\"\n          }\n        },\n        {\n          \"id\": \"/page/115/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure 10.2: State diagram.</p>\",\n          \"polygon\": [\n            [\n              224.2705078125,\n              132.837890625\n            ],\n            [\n              343.2491760253906,\n              132.837890625\n            ],\n            [\n              343.2491760253906,\n              144.3529052734375\n            ],\n            [\n              224.2705078125,\n              144.3529052734375\n            ]\n          ],\n          \"bbox\": [\n            224.2705078125,\n            132.837890625,\n            343.2491760253906,\n            144.3529052734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/TableGroup/186\",\n          \"block_type\": \"TableGroup\",\n          \"html\": \"<content-ref src='/page/115/Table/3'></content-ref><content-ref src='/page/115/Caption/4'></content-ref>\",\n          \"polygon\": [\n            [\n              225.017578125,\n              155.5576171875\n            ],\n            [\n              343.353515625,\n              155.5576171875\n            ],\n            [\n              343.353515625,\n              214.14093017578125\n            ],\n            [\n              225.017578125,\n              214.14093017578125\n            ]\n          ],\n          \"bbox\": [\n            225.017578125,\n            155.5576171875,\n            343.353515625,\n            214.14093017578125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/115/Table/3\",\n              \"block_type\": \"Table\",\n              \"html\": \"<content-ref src='/page/115/Reference/200'></content-ref><table><tbody><tr><td>a</td><td>[1, 2, 3]</td></tr><tr><td>b</td><td>[1, 2, 3]</td></tr></tbody></table>\",\n              \"polygon\": [\n                [\n                  245.63671875,\n                  155.5576171875\n                ],\n                [\n                  321.240234375,\n                  155.5576171875\n                ],\n                [\n                  321.240234375,\n                  187.6552734375\n                ],\n                [\n                  245.63671875,\n                  187.6552734375\n                ]\n              ],\n              \"bbox\": [\n                245.63671875,\n                155.5576171875,\n                321.240234375,\n                187.6552734375\n              ],\n              \"children\": [\n                {\n                  \"id\": \"/page/115/Reference/200\",\n                  \"block_type\": \"Reference\",\n                  \"html\": \"<span id=\\\"page-115-1\\\"></span>\",\n                  \"polygon\": [\n                    [\n                      245.63671875,\n                      155.5576171875\n                    ],\n                    [\n                      321.240234375,\n                      155.5576171875\n                    ],\n                    [\n                      321.240234375,\n                      187.6552734375\n                    ],\n                    [\n                      245.63671875,\n                      187.6552734375\n                    ]\n                  ],\n                  \"bbox\": [\n                    245.63671875,\n                    155.5576171875,\n                    321.240234375,\n                    187.6552734375\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/108/SectionHeader/1\",\n                    \"4\": \"/page/114/SectionHeader/12\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/115/TableCell/191\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>a</td>\",\n                  \"polygon\": [\n                    [\n                      245.63671875,\n                      155.5576171875\n                    ],\n                    [\n                      246.63671875,\n                      155.5576171875\n                    ],\n                    [\n                      246.63671875,\n                      156.5576171875\n                    ],\n                    [\n                      245.63671875,\n                      156.5576171875\n                    ]\n                  ],\n                  \"bbox\": [\n                    245.63671875,\n                    155.5576171875,\n                    246.63671875,\n                    156.5576171875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/108/SectionHeader/1\",\n                    \"4\": \"/page/114/SectionHeader/12\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/115/TableCell/192\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[1, 2, 3]</td>\",\n                  \"polygon\": [\n                    [\n                      246.63671875,\n                      155.5576171875\n                    ],\n                    [\n                      247.63671875,\n                      155.5576171875\n                    ],\n                    [\n                      247.63671875,\n                      156.5576171875\n                    ],\n                    [\n                      246.63671875,\n                      156.5576171875\n                    ]\n                  ],\n                  \"bbox\": [\n                    246.63671875,\n                    155.5576171875,\n                    247.63671875,\n                    156.5576171875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/108/SectionHeader/1\",\n                    \"4\": \"/page/114/SectionHeader/12\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/115/TableCell/193\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>b</td>\",\n                  \"polygon\": [\n                    [\n                      245.63671875,\n                      156.5576171875\n                    ],\n                    [\n                      246.63671875,\n                      156.5576171875\n                    ],\n                    [\n                      246.63671875,\n                      157.5576171875\n                    ],\n                    [\n                      245.63671875,\n                      157.5576171875\n                    ]\n                  ],\n                  \"bbox\": [\n                    245.63671875,\n                    156.5576171875,\n                    246.63671875,\n                    157.5576171875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/108/SectionHeader/1\",\n                    \"4\": \"/page/114/SectionHeader/12\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/115/TableCell/194\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>[1, 2, 3]</td>\",\n                  \"polygon\": [\n                    [\n                      246.63671875,\n                      156.5576171875\n                    ],\n                    [\n                      247.63671875,\n                      156.5576171875\n                    ],\n                    [\n                      247.63671875,\n                      157.5576171875\n                    ],\n                    [\n                      246.63671875,\n                      157.5576171875\n                    ]\n                  ],\n                  \"bbox\": [\n                    246.63671875,\n                    156.5576171875,\n                    247.63671875,\n                    157.5576171875\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/108/SectionHeader/1\",\n                    \"4\": \"/page/114/SectionHeader/12\"\n                  },\n                  \"images\": {}\n                }\n              ],\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/114/SectionHeader/12\"\n              },\n              \"images\": null\n            },\n            {\n              \"id\": \"/page/115/Caption/4\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-115-2\\\"></span>Figure 10.3: State diagram.</p>\",\n              \"polygon\": [\n                [\n                  225.017578125,\n                  203.607421875\n                ],\n                [\n                  343.353515625,\n                  203.607421875\n                ],\n                [\n                  343.353515625,\n                  214.14093017578125\n                ],\n                [\n                  225.017578125,\n                  214.14093017578125\n                ]\n              ],\n              \"bbox\": [\n                225.017578125,\n                203.607421875,\n                343.353515625,\n                214.14093017578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/114/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/115/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; a = 'banana'\\n&gt;&gt;&gt; b = 'banana'\\n&gt;&gt;&gt; a is b\\nTrue</pre>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              235.73675537109375\n            ],\n            [\n              170.06735229492188,\n              235.73675537109375\n            ],\n            [\n              170.06735229492188,\n              282.28228759765625\n            ],\n            [\n              85.166015625,\n              282.28228759765625\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            235.73675537109375,\n            170.06735229492188,\n            282.28228759765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this example, Python only created one string object, and both a and b refer to it.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              287.525390625\n            ],\n            [\n              446.902099609375,\n              287.525390625\n            ],\n            [\n              446.902099609375,\n              298.0178527832031\n            ],\n            [\n              85.3154296875,\n              298.0178527832031\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            287.525390625,\n            446.902099609375,\n            298.0178527832031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But when you create two lists, you get two objects:</p>\",\n          \"polygon\": [\n            [\n              85.09130859375,\n              307.248046875\n            ],\n            [\n              308.73529052734375,\n              307.248046875\n            ],\n            [\n              308.73529052734375,\n              317.5748596191406\n            ],\n            [\n              85.09130859375,\n              317.5748596191406\n            ]\n          ],\n          \"bbox\": [\n            85.09130859375,\n            307.248046875,\n            308.73529052734375,\n            317.5748596191406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/TextInlineMath/8\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; a = [1, 2, 3] &gt;&gt;&gt; b = [1, 2, 3] &gt;&gt;&gt; a is b False</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              323.0487060546875\n            ],\n            [\n              175.7109375,\n              323.0487060546875\n            ],\n            [\n              175.7109375,\n              373.5703125\n            ],\n            [\n              85.3154296875,\n              373.5703125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            323.0487060546875,\n            175.7109375,\n            373.5703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So the state diagram looks like Figure <a href=\\\"#page-115-2\\\">10.3.</a></p>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              375.1171875\n            ],\n            [\n              274.32421875,\n              375.1171875\n            ],\n            [\n              274.32421875,\n              385.3298645019531\n            ],\n            [\n              85.53955078125,\n              385.3298645019531\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            375.1171875,\n            274.32421875,\n            385.3298645019531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this case we would say that the two lists are <b>equivalent</b>, because they have the same elements, but not <b>identical</b>, because they are not the same object. If two objects are identical, they are also equivalent, but if they are equivalent, they are not necessarily identical.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              394.06640625\n            ],\n            [\n              482.4001159667969,\n              394.06640625\n            ],\n            [\n              482.4001159667969,\n              429.27587890625\n            ],\n            [\n              85.46484375,\n              429.27587890625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            394.06640625,\n            482.4001159667969,\n            429.27587890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Until now, we have been using \\\"object\\\" and \\\"value\\\" interchangeably, but it is more precise to say that an object has a value. If you execute [1,2,3], you get a list object whose value is a sequence of integers. If another list has the same elements, we say it has the same value, but it is not the same object.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              438.15234375\n            ],\n            [\n              482.90625,\n              438.15234375\n            ],\n            [\n              482.90625,\n              485.4158935546875\n            ],\n            [\n              85.6142578125,\n              485.4158935546875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            438.15234375,\n            482.90625,\n            485.4158935546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/114/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-115-0\\\"></span><b>10.11 Aliasing</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              513.5625\n            ],\n            [\n              189.158203125,\n              513.5625\n            ],\n            [\n              189.158203125,\n              528.2919616699219\n            ],\n            [\n              85.763671875,\n              528.2919616699219\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            513.5625,\n            189.158203125,\n            528.2919616699219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If a refers to an object and you assign b = a, then both variables refer to the same object:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              539.47265625\n            ],\n            [\n              474.5390625,\n              539.47265625\n            ],\n            [\n              474.5390625,\n              550.0198974609375\n            ],\n            [\n              85.6142578125,\n              550.0198974609375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            539.47265625,\n            474.5390625,\n            550.0198974609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; a = [1, 2, 3]\\n&gt;&gt;&gt; b = a\\n&gt;&gt;&gt; b is a\\nTrue</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              555.4937438964844\n            ],\n            [\n              175.31614685058594,\n              555.4937438964844\n            ],\n            [\n              175.31614685058594,\n              605.98828125\n            ],\n            [\n              85.46484375,\n              605.98828125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            555.4937438964844,\n            175.31614685058594,\n            605.98828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The state diagram looks like Figure <a href=\\\"#page-116-1\\\">10.4.</a></p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              607.8123016357422\n            ],\n            [\n              263.803955078125,\n              607.8123016357422\n            ],\n            [\n              263.803955078125,\n              617.77490234375\n            ],\n            [\n              86.361328125,\n              617.77490234375\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            607.8123016357422,\n            263.803955078125,\n            617.77490234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The association of a variable with an object is called a <b>reference</b>. In this example, there are two references to the same object.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              627.2578125\n            ],\n            [\n              482.40069580078125,\n              627.2578125\n            ],\n            [\n              482.40069580078125,\n              649.5259094238281\n            ],\n            [\n              86.0625,\n              649.5259094238281\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            627.2578125,\n            482.40069580078125,\n            649.5259094238281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An object with more than one reference has more than one name, so we say that the object is <b>aliased</b>.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              658.58203125\n            ],\n            [\n              482.40325927734375,\n              658.58203125\n            ],\n            [\n              482.40325927734375,\n              681.2779159545898\n            ],\n            [\n              85.9130859375,\n              681.2779159545898\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            658.58203125,\n            482.40325927734375,\n            681.2779159545898\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/115/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the aliased object is mutable, changes made with one alias affect the other:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              690.6796875\n            ],\n            [\n              421.4720458984375,\n              690.6796875\n            ],\n            [\n              421.4720458984375,\n              700.8349151611328\n            ],\n            [\n              85.9130859375,\n              700.8349151611328\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            690.6796875,\n            421.4720458984375,\n            700.8349151611328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/115/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/116/Page/202\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/116/PageHeader/0'></content-ref><content-ref src='/page/116/PageHeader/19'></content-ref><content-ref src='/page/116/Equation/1'></content-ref><content-ref src='/page/116/FigureGroup/192'></content-ref><content-ref src='/page/116/TextInlineMath/5'></content-ref><content-ref src='/page/116/Text/6'></content-ref><content-ref src='/page/116/Text/7'></content-ref><content-ref src='/page/116/TextInlineMath/8'></content-ref><content-ref src='/page/116/Text/9'></content-ref><content-ref src='/page/116/SectionHeader/10'></content-ref><content-ref src='/page/116/Text/11'></content-ref><content-ref src='/page/116/Code/12'></content-ref><content-ref src='/page/116/Text/13'></content-ref><content-ref src='/page/116/Code/14'></content-ref><content-ref src='/page/116/Text/15'></content-ref><content-ref src='/page/116/Text/16'></content-ref><content-ref src='/page/116/Text/17'></content-ref><content-ref src='/page/116/TextInlineMath/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/116/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.3466796875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              515.478515625,\n              61.1015625\n            ],\n            [\n              526.236328125,\n              61.1015625\n            ],\n            [\n              526.236328125,\n              70.0927734375\n            ],\n            [\n              515.478515625,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            515.478515625,\n            61.1015625,\n            526.236328125,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/Equation/1\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<span id=\\\"page-116-1\\\"></span><p block-type=\\\"Equation\\\">\\\\(\\\\begin{array}{c} a \\\\\\\\ b \\\\end{array}\\\\) \\\\rightarrow [1, 2, 3]</p>\",\n          \"polygon\": [\n            [\n              287.47265625,\n              89.18701171875\n            ],\n            [\n              363.375,\n              89.18701171875\n            ],\n            [\n              363.375,\n              117.17578125\n            ],\n            [\n              287.47265625,\n              117.17578125\n            ]\n          ],\n          \"bbox\": [\n            287.47265625,\n            89.18701171875,\n            363.375,\n            117.17578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/FigureGroup/192\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/116/Caption/2'></content-ref><content-ref src='/page/116/Figure/3'></content-ref><content-ref src='/page/116/Caption/4'></content-ref>\",\n          \"polygon\": [\n            [\n              229.9482421875,\n              134.384765625\n            ],\n            [\n              424.93359375,\n              134.384765625\n            ],\n            [\n              424.93359375,\n              240.30792236328125\n            ],\n            [\n              229.9482421875,\n              240.30792236328125\n            ]\n          ],\n          \"bbox\": [\n            229.9482421875,\n            134.384765625,\n            424.93359375,\n            240.30792236328125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/116/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p>Figure 10.4: State diagram.</p>\",\n              \"polygon\": [\n                [\n                  267.8994140625,\n                  134.384765625\n                ],\n                [\n                  387.28125,\n                  134.384765625\n                ],\n                [\n                  387.28125,\n                  144.3529052734375\n                ],\n                [\n                  267.8994140625,\n                  144.3529052734375\n                ]\n              ],\n              \"bbox\": [\n                267.8994140625,\n                134.384765625,\n                387.28125,\n                144.3529052734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/115/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/116/Figure/3\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  229.9482421875,\n                  154.3974609375\n                ],\n                [\n                  424.93359375,\n                  154.3974609375\n                ],\n                [\n                  424.93359375,\n                  213.85546875\n                ],\n                [\n                  229.9482421875,\n                  213.85546875\n                ]\n              ],\n              \"bbox\": [\n                229.9482421875,\n                154.3974609375,\n                424.93359375,\n                213.85546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/115/SectionHeader/12\"\n              },\n              \"images\": {\n                \"/page/116/Figure/3\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/116/Caption/4\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-116-2\\\"></span>Figure 10.5: Stack diagram.</p>\",\n              \"polygon\": [\n                [\n                  267.451171875,\n                  229.904296875\n                ],\n                [\n                  387.580078125,\n                  229.904296875\n                ],\n                [\n                  387.580078125,\n                  240.30792236328125\n                ],\n                [\n                  267.451171875,\n                  240.30792236328125\n                ]\n              ],\n              \"bbox\": [\n                267.451171875,\n                229.904296875,\n                387.580078125,\n                240.30792236328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/115/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/116/TextInlineMath/5\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; b[0] = 17 &gt;&gt;&gt; print a [17, 2, 3]</p>\",\n          \"polygon\": [\n            [\n              129.59999084472656,\n              262.58203125\n            ],\n            [\n              198.5712890625,\n              262.58203125\n            ],\n            [\n              198.5712890625,\n              297.7734375\n            ],\n            [\n              129.59999084472656,\n              297.7734375\n            ]\n          ],\n          \"bbox\": [\n            129.59999084472656,\n            262.58203125,\n            198.5712890625,\n            297.7734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Although this behavior can be useful, it is error-prone. In general, it is safer to avoid aliasing when you are working with mutable objects.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              303.57421875\n            ],\n            [\n              525.6033935546875,\n              303.57421875\n            ],\n            [\n              525.6033935546875,\n              325.910888671875\n            ],\n            [\n              129.09375,\n              325.910888671875\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            303.57421875,\n            525.6033935546875,\n            325.910888671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For immutable objects like strings, aliasing is not as much of a problem. In this example:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              336.05859375\n            ],\n            [\n              517.5703125,\n              336.05859375\n            ],\n            [\n              517.5703125,\n              346.1329040527344\n            ],\n            [\n              128.6455078125,\n              346.1329040527344\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            336.05859375,\n            517.5703125,\n            346.1329040527344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/TextInlineMath/8\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">a = 'banana' b = 'banana'</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              352.270751953125\n            ],\n            [\n              192.350341796875,\n              352.270751953125\n            ],\n            [\n              192.350341796875,\n              374.4273376464844\n            ],\n            [\n              129.2431640625,\n              374.4273376464844\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            352.270751953125,\n            192.350341796875,\n            374.4273376464844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It almost never makes a difference whether a and b refer to the same string or not.</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              380.337890625\n            ],\n            [\n              489.36553955078125,\n              380.337890625\n            ],\n            [\n              489.36553955078125,\n              390.8279113769531\n            ],\n            [\n              129.5419921875,\n              390.8279113769531\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            380.337890625,\n            489.36553955078125,\n            390.8279113769531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/115/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-116-0\\\"></span><b>10.12 List arguments</b></h4>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              420.4227600097656\n            ],\n            [\n              273.836669921875,\n              420.4227600097656\n            ],\n            [\n              273.836669921875,\n              434.76898193359375\n            ],\n            [\n              128.197265625,\n              434.76898193359375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            420.4227600097656,\n            273.836669921875,\n            434.76898193359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you pass a list to a function, the function gets a reference to the list. If the function modifies a list parameter, the caller sees the change. For example, delete_head removes the first element from a list:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              447.23333740234375\n            ],\n            [\n              525.638671875,\n              447.23333740234375\n            ],\n            [\n              525.638671875,\n              481.5849304199219\n            ],\n            [\n              128.197265625,\n              481.5849304199219\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            447.23333740234375,\n            525.638671875,\n            481.5849304199219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def delete_head(t):\\n    del t[0]</pre>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              487.7227783203125\n            ],\n            [\n              228.98683166503906,\n              487.7227783203125\n            ],\n            [\n              228.98683166503906,\n              509.8793640136719\n            ],\n            [\n              127.8984375,\n              509.8793640136719\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            487.7227783203125,\n            228.98683166503906,\n            509.8793640136719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's how it is used:</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              515.8828125\n            ],\n            [\n              224.54351806640625,\n              515.8828125\n            ],\n            [\n              224.54351806640625,\n              526.2799377441406\n            ],\n            [\n              127.8984375,\n              526.2799377441406\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            515.8828125,\n            224.54351806640625,\n            526.2799377441406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; letters = ['a', 'b', 'c']\\n&gt;&gt;&gt; delete_head(letters)\\n&gt;&gt;&gt; print letters\\n['b', 'c']</pre>\",\n          \"polygon\": [\n            [\n              127.82373046875,\n              532.4177856445312\n            ],\n            [\n              281.245361328125,\n              532.4177856445312\n            ],\n            [\n              281.245361328125,\n              578.9633941650391\n            ],\n            [\n              127.82373046875,\n              578.9633941650391\n            ]\n          ],\n          \"bbox\": [\n            127.82373046875,\n            532.4177856445312,\n            281.245361328125,\n            578.9633941650391\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The parameter t and the variable letters are aliases for the same object. The stack diagram looks like Figure <a href=\\\"#page-116-2\\\">10.5.</a></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              584.33203125\n            ],\n            [\n              525.6002807617188,\n              584.33203125\n            ],\n            [\n              525.6002807617188,\n              607.5579528808594\n            ],\n            [\n              128.6455078125,\n              607.5579528808594\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            584.33203125,\n            525.6002807617188,\n            607.5579528808594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since the list is shared by two frames, I drew it between them.</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              617.58984375\n            ],\n            [\n              401.7183837890625,\n              617.58984375\n            ],\n            [\n              401.7183837890625,\n              627.7799530029297\n            ],\n            [\n              127.7490234375,\n              627.7799530029297\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            617.58984375,\n            401.7183837890625,\n            627.7799530029297\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is important to distinguish between operations that modify lists and operations that create new lists. For example, the append method modifies a list, but the + operator creates a new list:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              637.3125\n            ],\n            [\n              525.6033325195312,\n              637.3125\n            ],\n            [\n              525.6033325195312,\n              672.3909606933594\n            ],\n            [\n              128.197265625,\n              672.3909606933594\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            637.3125,\n            525.6033325195312,\n            672.3909606933594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/116/TextInlineMath/18\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; t1 = [1, 2] &gt;&gt;&gt; t2 = t1.append(3)</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              678.5287933349609\n            ],\n            [\n              239.4376220703125,\n              678.5287933349609\n            ],\n            [\n              239.4376220703125,\n              700.6853942871094\n            ],\n            [\n              128.3466796875,\n              700.6853942871094\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            678.5287933349609,\n            239.4376220703125,\n            700.6853942871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/116/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/117/Page/176\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/117/PageHeader/0'></content-ref><content-ref src='/page/117/PageHeader/18'></content-ref><content-ref src='/page/117/Code/1'></content-ref><content-ref src='/page/117/Text/2'></content-ref><content-ref src='/page/117/TextInlineMath/3'></content-ref><content-ref src='/page/117/Text/4'></content-ref><content-ref src='/page/117/Text/5'></content-ref><content-ref src='/page/117/Code/6'></content-ref><content-ref src='/page/117/Text/7'></content-ref><content-ref src='/page/117/Code/8'></content-ref><content-ref src='/page/117/SectionHeader/9'></content-ref><content-ref src='/page/117/Text/10'></content-ref><content-ref src='/page/117/ListItem/11'></content-ref><content-ref src='/page/117/Text/12'></content-ref><content-ref src='/page/117/TextInlineMath/13'></content-ref><content-ref src='/page/117/Text/14'></content-ref><content-ref src='/page/117/TextInlineMath/15'></content-ref><content-ref src='/page/117/Text/16'></content-ref><content-ref src='/page/117/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/117/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.4248046875\n            ],\n            [\n              482.4033508300781,\n              60.4248046875\n            ],\n            [\n              482.4033508300781,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.4248046875,\n            482.4033508300781,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              61.05322265625\n            ],\n            [\n              96.74560546875,\n              61.05322265625\n            ],\n            [\n              96.74560546875,\n              70.14111328125\n            ],\n            [\n              85.83837890625,\n              70.14111328125\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            61.05322265625,\n            96.74560546875,\n            70.14111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print t1\\n[1, 2, 3]\\n&gt;&gt;&gt; print t2\\nNone\\n&gt;&gt;&gt; t3 = t1 + [4]\\n&gt;&gt;&gt; print t3\\n[1, 2, 3, 4]</pre>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              87.8818359375\n            ],\n            [\n              175.3162078857422,\n              87.8818359375\n            ],\n            [\n              175.3162078857422,\n              184.00830078125\n            ],\n            [\n              86.2119140625,\n              184.00830078125\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            87.8818359375,\n            175.3162078857422,\n            184.00830078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This difference is important when you write functions that are supposed to modify lists. For example, this function <i>does not</i> delete the head of a list:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              190.3623046875\n            ],\n            [\n              482.4034118652344,\n              190.3623046875\n            ],\n            [\n              482.4034118652344,\n              212.57489013671875\n            ],\n            [\n              86.2119140625,\n              212.57489013671875\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            190.3623046875,\n            482.4034118652344,\n            212.57489013671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/TextInlineMath/3\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">def bad_delete_head(t): t = t[1:]  # WRONG!</p>\",\n          \"polygon\": [\n            [\n              86.40000915527344,\n              217.529296875\n            ],\n            [\n              269.4473571777344,\n              217.529296875\n            ],\n            [\n              269.4473571777344,\n              240.84228515625\n            ],\n            [\n              86.40000915527344,\n              240.84228515625\n            ]\n          ],\n          \"bbox\": [\n            86.40000915527344,\n            217.529296875,\n            269.4473571777344,\n            240.84228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The slice operator creates a new list and the assignment makes t refer to it, but none of that has any effect on the list that was passed as an argument.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              246.33984375\n            ],\n            [\n              482.3985595703125,\n              246.33984375\n            ],\n            [\n              482.3985595703125,\n              269.40887451171875\n            ],\n            [\n              85.763671875,\n              269.40887451171875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            246.33984375,\n            482.3985595703125,\n            269.40887451171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An alternative is to write a function that creates and returns a new list. For example, tail returns all but the first element of a list:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              279.404296875\n            ],\n            [\n              482.4054870605469,\n              279.404296875\n            ],\n            [\n              482.4054870605469,\n              301.7968444824219\n            ],\n            [\n              85.6142578125,\n              301.7968444824219\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            279.404296875,\n            482.4054870605469,\n            301.7968444824219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def tail(t):\\n    return t[1:]</pre>\",\n          \"polygon\": [\n            [\n              86.4000244140625,\n              306.28125\n            ],\n            [\n              170.0803985595703,\n              306.28125\n            ],\n            [\n              170.0803985595703,\n              330.2578125\n            ],\n            [\n              86.4000244140625,\n              330.2578125\n            ]\n          ],\n          \"bbox\": [\n            86.4000244140625,\n            306.28125,\n            170.0803985595703,\n            330.2578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This function leaves the original list unmodified. Here's how it is used:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              335.865234375\n            ],\n            [\n              398.4983825683594,\n              335.865234375\n            ],\n            [\n              398.4983825683594,\n              346.4358825683594\n            ],\n            [\n              85.763671875,\n              346.4358825683594\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            335.865234375,\n            398.4983825683594,\n            346.4358825683594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; letters = ['a', 'b', 'c']\\n&gt;&gt;&gt; rest = tail(letters)\\n&gt;&gt;&gt; print rest\\n['b', 'c']</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              352.5467224121094\n            ],\n            [\n              238.04542541503906,\n              352.5467224121094\n            ],\n            [\n              238.04542541503906,\n              399.48046875\n            ],\n            [\n              85.763671875,\n              399.48046875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            352.5467224121094,\n            238.04542541503906,\n            399.48046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/116/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-117-0\\\"></span><b>10.13 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              428.7527160644531\n            ],\n            [\n              207.15200805664062,\n              428.7527160644531\n            ],\n            [\n              207.15200805664062,\n              443.56640625\n            ],\n            [\n              85.53955078125,\n              443.56640625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            428.7527160644531,\n            207.15200805664062,\n            443.56640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Careless use of lists (and other mutable objects) can lead to long hours of debugging. Here are some common pitfalls and ways to avoid them:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              455.5242919921875\n            ],\n            [\n              482.40350341796875,\n              455.5242919921875\n            ],\n            [\n              482.40350341796875,\n              477.6808776855469\n            ],\n            [\n              86.0625,\n              477.6808776855469\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            455.5242919921875,\n            482.40350341796875,\n            477.6808776855469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/ListItem/11\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">1. Don't forget that most list methods modify the argument and return None. This is the opposite of the string methods, which return a new string and leave the original alone.</li>\",\n          \"polygon\": [\n            [\n              98.314453125,\n              491.1328125\n            ],\n            [\n              482.607421875,\n              491.1328125\n            ],\n            [\n              482.607421875,\n              526.3108825683594\n            ],\n            [\n              98.314453125,\n              526.3108825683594\n            ]\n          ],\n          \"bbox\": [\n            98.314453125,\n            491.1328125,\n            482.607421875,\n            526.3108825683594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are used to writing string code like this:</p>\",\n          \"polygon\": [\n            [\n              109.74462890625,\n              532.125\n            ],\n            [\n              315.263671875,\n              532.125\n            ],\n            [\n              315.263671875,\n              542.5378875732422\n            ],\n            [\n              109.74462890625,\n              542.5378875732422\n            ]\n          ],\n          \"bbox\": [\n            109.74462890625,\n            532.125,\n            315.263671875,\n            542.5378875732422\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/TextInlineMath/13\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">word = word.strip()</p>\",\n          \"polygon\": [\n            [\n              110.19287109375,\n              552.62109375\n            ],\n            [\n              210.6938934326172,\n              552.62109375\n            ],\n            [\n              210.6938934326172,\n              562.663330078125\n            ],\n            [\n              110.19287109375,\n              562.663330078125\n            ]\n          ],\n          \"bbox\": [\n            110.19287109375,\n            552.62109375,\n            210.6938934326172,\n            562.663330078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is tempting to write list code like this:</p>\",\n          \"polygon\": [\n            [\n              109.44580078125,\n              572.73046875\n            ],\n            [\n              286.27734375,\n              572.73046875\n            ],\n            [\n              286.27734375,\n              583.0868835449219\n            ],\n            [\n              109.44580078125,\n              583.0868835449219\n            ]\n          ],\n          \"bbox\": [\n            109.44580078125,\n            572.73046875,\n            286.27734375,\n            583.0868835449219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/TextInlineMath/15\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">t = t.sort()  # WRONG!</p>\",\n          \"polygon\": [\n            [\n              111.3070068359375,\n              593.2497253417969\n            ],\n            [\n              273.4383544921875,\n              593.2497253417969\n            ],\n            [\n              273.4383544921875,\n              603.28125\n            ],\n            [\n              111.3070068359375,\n              603.28125\n            ]\n          ],\n          \"bbox\": [\n            111.3070068359375,\n            593.2497253417969,\n            273.4383544921875,\n            603.28125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Because sort returns None, the next operation you perform with t is likely to fail.</p>\",\n          \"polygon\": [\n            [\n              110.267578125,\n              613.3359375\n            ],\n            [\n              468.3831787109375,\n              613.3359375\n            ],\n            [\n              468.3831787109375,\n              623.6358795166016\n            ],\n            [\n              110.267578125,\n              623.6358795166016\n            ]\n          ],\n          \"bbox\": [\n            110.267578125,\n            613.3359375,\n            468.3831787109375,\n            623.6358795166016\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/117/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Before using list methods and operators, you should read the documentation carefully and then test them in interactive mode. The methods and operators that lists share with other sequences (like strings) are documented at <a href=\\\"http://docs.python.org/2/library/stdtypes.html#typesseq\\\">http://docs.python.</a> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#typesseq\\\">org/2/library/stdtypes.html#typesseq</a>. The methods and operators that only apply to mutable sequences are documented at <a href=\\\"http://docs.python.org/2/library/stdtypes.html#typesseq-mutable\\\">http://docs.python.org/2/library/</a> <a href=\\\"http://docs.python.org/2/library/stdtypes.html#typesseq-mutable\\\">stdtypes.html#typesseq-mutable</a>.</p>\",\n          \"polygon\": [\n            [\n              110.56640625,\n              629.19140625\n            ],\n            [\n              482.4609069824219,\n              629.19140625\n            ],\n            [\n              482.4609069824219,\n              700.8348846435547\n            ],\n            [\n              110.56640625,\n              700.8348846435547\n            ]\n          ],\n          \"bbox\": [\n            110.56640625,\n            629.19140625,\n            482.4609069824219,\n            700.8348846435547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/117/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/118/Page/215\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/118/PageHeader/0'></content-ref><content-ref src='/page/118/PageHeader/22'></content-ref><content-ref src='/page/118/ListItem/1'></content-ref><content-ref src='/page/118/Text/2'></content-ref><content-ref src='/page/118/Text/3'></content-ref><content-ref src='/page/118/Code/187'></content-ref><content-ref src='/page/118/Text/5'></content-ref><content-ref src='/page/118/Table/6'></content-ref><content-ref src='/page/118/Text/7'></content-ref><content-ref src='/page/118/ListItem/8'></content-ref><content-ref src='/page/118/Text/9'></content-ref><content-ref src='/page/118/TextInlineMath/10'></content-ref><content-ref src='/page/118/Text/11'></content-ref><content-ref src='/page/118/SectionHeader/12'></content-ref><content-ref src='/page/118/Text/13'></content-ref><content-ref src='/page/118/Text/14'></content-ref><content-ref src='/page/118/Text/15'></content-ref><content-ref src='/page/118/Text/16'></content-ref><content-ref src='/page/118/Text/17'></content-ref><content-ref src='/page/118/ListGroup/188'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/118/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.60000610351562,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/PageHeader/22\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.58203125,\n              61.1982421875\n            ],\n            [\n              525.33984375,\n              61.1982421875\n            ],\n            [\n              525.33984375,\n              70.4794921875\n            ],\n            [\n              514.58203125,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            514.58203125,\n            61.1982421875,\n            525.33984375,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/ListItem/1\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">2. Pick an idiom and stick with it.</li>\",\n          \"polygon\": [\n            [\n              141.943359375,\n              88.4619140625\n            ],\n            [\n              292.25390625,\n              88.4619140625\n            ],\n            [\n              292.25390625,\n              98.79791259765625\n            ],\n            [\n              141.943359375,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            141.943359375,\n            88.4619140625,\n            292.25390625,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Part of the problem with lists is that there are too many ways to do things. For example, to remove an element from a list, you can use pop, remove, del, or even a slice assignment.</p>\",\n          \"polygon\": [\n            [\n              154.1953125,\n              104.3173828125\n            ],\n            [\n              525.6039428710938,\n              104.3173828125\n            ],\n            [\n              525.6039428710938,\n              139.24383544921875\n            ],\n            [\n              154.1953125,\n              139.24383544921875\n            ]\n          ],\n          \"bbox\": [\n            154.1953125,\n            104.3173828125,\n            525.6039428710938,\n            139.24383544921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To add an element, you can use the append method or the + operator. Assuming that t is a list and x is a list element, these are right:</p>\",\n          \"polygon\": [\n            [\n              153.59765625,\n              144.7294921875\n            ],\n            [\n              525.6051025390625,\n              144.7294921875\n            ],\n            [\n              525.6051025390625,\n              167.496826171875\n            ],\n            [\n              153.59765625,\n              167.496826171875\n            ]\n          ],\n          \"bbox\": [\n            153.59765625,\n            144.7294921875,\n            525.6051025390625,\n            167.496826171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Code/187\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>t.append(x)\\nt = t + [x]</pre>\",\n          \"polygon\": [\n            [\n              154.1953125,\n              176.95465087890625\n            ],\n            [\n              212.16796875,\n              176.95465087890625\n            ],\n            [\n              212.16796875,\n              199.1112060546875\n            ],\n            [\n              154.1953125,\n              199.1112060546875\n            ]\n          ],\n          \"bbox\": [\n            154.1953125,\n            176.95465087890625,\n            212.16796875,\n            199.1112060546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And these are wrong:</p>\",\n          \"polygon\": [\n            [\n              153.298828125,\n              208.8681640625\n            ],\n            [\n              249.2713165283203,\n              208.8681640625\n            ],\n            [\n              249.2713165283203,\n              218.8828125\n            ],\n            [\n              153.298828125,\n              218.8828125\n            ]\n          ],\n          \"bbox\": [\n            153.298828125,\n            208.8681640625,\n            249.2713165283203,\n            218.8828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Table/6\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><td>t.append([x])</td><td></td><td># WRONG!</td></tr><tr><td>t = t.append(x)</td><td></td><td># WRONG!</td></tr><tr><td>t + [x]</td><td></td><td># WRONG!</td></tr><tr><td>t = t + x</td><td></td><td># WRONG!</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              151.58056640625,\n              227.197265625\n            ],\n            [\n              318.849609375,\n              227.197265625\n            ],\n            [\n              318.849609375,\n              274.834228515625\n            ],\n            [\n              151.58056640625,\n              274.834228515625\n            ]\n          ],\n          \"bbox\": [\n            151.58056640625,\n            227.197265625,\n            318.849609375,\n            274.834228515625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/118/TableCell/201\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>t.append([x])</td>\",\n              \"polygon\": [\n                [\n                  151.58056640625,\n                  227.197265625\n                ],\n                [\n                  152.58056640625,\n                  227.197265625\n                ],\n                [\n                  152.58056640625,\n                  228.197265625\n                ],\n                [\n                  151.58056640625,\n                  228.197265625\n                ]\n              ],\n              \"bbox\": [\n                151.58056640625,\n                227.197265625,\n                152.58056640625,\n                228.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/TableCell/202\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  152.58056640625,\n                  227.197265625\n                ],\n                [\n                  153.58056640625,\n                  227.197265625\n                ],\n                [\n                  153.58056640625,\n                  228.197265625\n                ],\n                [\n                  152.58056640625,\n                  228.197265625\n                ]\n              ],\n              \"bbox\": [\n                152.58056640625,\n                227.197265625,\n                153.58056640625,\n                228.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/TableCell/203\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td># WRONG!</td>\",\n              \"polygon\": [\n                [\n                  153.58056640625,\n                  227.197265625\n                ],\n                [\n                  154.58056640625,\n                  227.197265625\n                ],\n                [\n                  154.58056640625,\n                  228.197265625\n                ],\n                [\n                  153.58056640625,\n                  228.197265625\n                ]\n              ],\n              \"bbox\": [\n                153.58056640625,\n                227.197265625,\n                154.58056640625,\n                228.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/TableCell/204\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>t = t.append(x)</td>\",\n              \"polygon\": [\n                [\n                  151.58056640625,\n                  228.197265625\n                ],\n                [\n                  152.58056640625,\n                  228.197265625\n                ],\n                [\n                  152.58056640625,\n                  229.197265625\n                ],\n                [\n                  151.58056640625,\n                  229.197265625\n                ]\n              ],\n              \"bbox\": [\n                151.58056640625,\n                228.197265625,\n                152.58056640625,\n                229.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/TableCell/205\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  152.58056640625,\n                  228.197265625\n                ],\n                [\n                  153.58056640625,\n                  228.197265625\n                ],\n                [\n                  153.58056640625,\n                  229.197265625\n                ],\n                [\n                  152.58056640625,\n                  229.197265625\n                ]\n              ],\n              \"bbox\": [\n                152.58056640625,\n                228.197265625,\n                153.58056640625,\n                229.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/TableCell/206\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td># WRONG!</td>\",\n              \"polygon\": [\n                [\n                  153.58056640625,\n                  228.197265625\n                ],\n                [\n                  154.58056640625,\n                  228.197265625\n                ],\n                [\n                  154.58056640625,\n                  229.197265625\n                ],\n                [\n                  153.58056640625,\n                  229.197265625\n                ]\n              ],\n              \"bbox\": [\n                153.58056640625,\n                228.197265625,\n                154.58056640625,\n                229.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/TableCell/207\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>t + [x]</td>\",\n              \"polygon\": [\n                [\n                  151.58056640625,\n                  229.197265625\n                ],\n                [\n                  152.58056640625,\n                  229.197265625\n                ],\n                [\n                  152.58056640625,\n                  230.197265625\n                ],\n                [\n                  151.58056640625,\n                  230.197265625\n                ]\n              ],\n              \"bbox\": [\n                151.58056640625,\n                229.197265625,\n                152.58056640625,\n                230.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/TableCell/208\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  152.58056640625,\n                  229.197265625\n                ],\n                [\n                  153.58056640625,\n                  229.197265625\n                ],\n                [\n                  153.58056640625,\n                  230.197265625\n                ],\n                [\n                  152.58056640625,\n                  230.197265625\n                ]\n              ],\n              \"bbox\": [\n                152.58056640625,\n                229.197265625,\n                153.58056640625,\n                230.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/TableCell/209\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td># WRONG!</td>\",\n              \"polygon\": [\n                [\n                  153.58056640625,\n                  229.197265625\n                ],\n                [\n                  154.58056640625,\n                  229.197265625\n                ],\n                [\n                  154.58056640625,\n                  230.197265625\n                ],\n                [\n                  153.58056640625,\n                  230.197265625\n                ]\n              ],\n              \"bbox\": [\n                153.58056640625,\n                229.197265625,\n                154.58056640625,\n                230.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/TableCell/210\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>t = t + x</td>\",\n              \"polygon\": [\n                [\n                  151.58056640625,\n                  230.197265625\n                ],\n                [\n                  152.58056640625,\n                  230.197265625\n                ],\n                [\n                  152.58056640625,\n                  231.197265625\n                ],\n                [\n                  151.58056640625,\n                  231.197265625\n                ]\n              ],\n              \"bbox\": [\n                151.58056640625,\n                230.197265625,\n                152.58056640625,\n                231.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/TableCell/211\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td></td>\",\n              \"polygon\": [\n                [\n                  152.58056640625,\n                  230.197265625\n                ],\n                [\n                  153.58056640625,\n                  230.197265625\n                ],\n                [\n                  153.58056640625,\n                  231.197265625\n                ],\n                [\n                  152.58056640625,\n                  231.197265625\n                ]\n              ],\n              \"bbox\": [\n                152.58056640625,\n                230.197265625,\n                153.58056640625,\n                231.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/TableCell/212\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td># WRONG!</td>\",\n              \"polygon\": [\n                [\n                  153.58056640625,\n                  230.197265625\n                ],\n                [\n                  154.58056640625,\n                  230.197265625\n                ],\n                [\n                  154.58056640625,\n                  231.197265625\n                ],\n                [\n                  153.58056640625,\n                  231.197265625\n                ]\n              ],\n              \"bbox\": [\n                153.58056640625,\n                230.197265625,\n                154.58056640625,\n                231.197265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/117/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/118/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Try out each of these examples in interactive mode to make sure you understand what they do. Notice that only the last one causes a runtime error; the other three are legal, but they do the wrong thing.</p>\",\n          \"polygon\": [\n            [\n              153.7470703125,\n              284.23828125\n            ],\n            [\n              525.9375,\n              284.23828125\n            ],\n            [\n              525.9375,\n              318.9427795410156\n            ],\n            [\n              153.7470703125,\n              318.9427795410156\n            ]\n          ],\n          \"bbox\": [\n            153.7470703125,\n            284.23828125,\n            525.9375,\n            318.9427795410156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/ListItem/8\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">3. Make copies to avoid aliasing.</li>\",\n          \"polygon\": [\n            [\n              140.748046875,\n              328.9021911621094\n            ],\n            [\n              287.3675537109375,\n              328.9021911621094\n            ],\n            [\n              287.3675537109375,\n              338.8647766113281\n            ],\n            [\n              140.748046875,\n              338.8647766113281\n            ]\n          ],\n          \"bbox\": [\n            140.748046875,\n            328.9021911621094,\n            287.3675537109375,\n            338.8647766113281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you want to use a method like sort that modifies the argument, but you need to keep the original list as well, you can make a copy.</p>\",\n          \"polygon\": [\n            [\n              154.494140625,\n              344.56640625\n            ],\n            [\n              525.5958862304688,\n              344.56640625\n            ],\n            [\n              525.5958862304688,\n              367.1167907714844\n            ],\n            [\n              154.494140625,\n              367.1167907714844\n            ]\n          ],\n          \"bbox\": [\n            154.494140625,\n            344.56640625,\n            525.5958862304688,\n            367.1167907714844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/TextInlineMath/10\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">orig = t[:] t.sort()</p>\",\n          \"polygon\": [\n            [\n              153.1494140625,\n              376.57464599609375\n            ],\n            [\n              212.04107666015625,\n              376.57464599609375\n            ],\n            [\n              212.04107666015625,\n              398.7312316894531\n            ],\n            [\n              153.1494140625,\n              398.7312316894531\n            ]\n          ],\n          \"bbox\": [\n            153.1494140625,\n            376.57464599609375,\n            212.04107666015625,\n            398.7312316894531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this example you could also use the built-in function sorted, which returns a new, sorted list and leaves the original alone. But in that case you should avoid using sorted as a variable name!</p>\",\n          \"polygon\": [\n            [\n              154.50706481933594,\n              407.98828125\n            ],\n            [\n              525.6039428710938,\n              407.98828125\n            ],\n            [\n              525.6039428710938,\n              442.8398132324219\n            ],\n            [\n              154.50706481933594,\n              442.8398132324219\n            ]\n          ],\n          \"bbox\": [\n            154.50706481933594,\n            407.98828125,\n            525.6039428710938,\n            442.8398132324219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/117/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-118-0\\\"></span><b>10.14 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              471.78265380859375\n            ],\n            [\n              234.4306640625,\n              471.78265380859375\n            ],\n            [\n              234.4306640625,\n              486.1288757324219\n            ],\n            [\n              129.2431640625,\n              486.1288757324219\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            471.78265380859375,\n            234.4306640625,\n            486.1288757324219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>list:</b> A sequence of values.</p>\",\n          \"polygon\": [\n            [\n              129.60008239746094,\n              494.61328125\n            ],\n            [\n              246.7801971435547,\n              494.61328125\n            ],\n            [\n              246.7801971435547,\n              504.8818054199219\n            ],\n            [\n              129.60008239746094,\n              504.8818054199219\n            ]\n          ],\n          \"bbox\": [\n            129.60008239746094,\n            494.61328125,\n            246.7801971435547,\n            504.8818054199219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>element:</b> One of the values in a list (or other sequence), also called items.</p>\",\n          \"polygon\": [\n            [\n              129.60009765625,\n              513.94921875\n            ],\n            [\n              453.0234375,\n              513.94921875\n            ],\n            [\n              453.0234375,\n              524.8027954101562\n            ],\n            [\n              129.60009765625,\n              524.8027954101562\n            ]\n          ],\n          \"bbox\": [\n            129.60009765625,\n            513.94921875,\n            453.0234375,\n            524.8027954101562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>index:</b> An integer value that indicates an element in a list.</p>\",\n          \"polygon\": [\n            [\n              129.31787109375,\n              534.6640930175781\n            ],\n            [\n              385.6285400390625,\n              534.6640930175781\n            ],\n            [\n              385.6285400390625,\n              544.7238006591797\n            ],\n            [\n              129.31787109375,\n              544.7238006591797\n            ]\n          ],\n          \"bbox\": [\n            129.31787109375,\n            534.6640930175781,\n            385.6285400390625,\n            544.7238006591797\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>nested list:</b> A list that is an element of another list.</p>\",\n          \"polygon\": [\n            [\n              129.31787109375,\n              554.5860900878906\n            ],\n            [\n              353.48907470703125,\n              554.5860900878906\n            ],\n            [\n              353.48907470703125,\n              564.6457977294922\n            ],\n            [\n              129.31787109375,\n              564.6457977294922\n            ]\n          ],\n          \"bbox\": [\n            129.31787109375,\n            554.5860900878906,\n            353.48907470703125,\n            564.6457977294922\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>list traversal:</b> The sequential accessing of each element in a list.</p>\",\n          \"polygon\": [\n            [\n              129.60009765625,\n              574.5070953369141\n            ],\n            [\n              409.5290832519531,\n              574.5070953369141\n            ],\n            [\n              409.5290832519531,\n              584.5668029785156\n            ],\n            [\n              129.60009765625,\n              584.5668029785156\n            ]\n          ],\n          \"bbox\": [\n            129.60009765625,\n            574.5070953369141,\n            409.5290832519531,\n            584.5668029785156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/118/ListGroup/188\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/118/ListItem/18'></content-ref><content-ref src='/page/118/ListItem/19'></content-ref><content-ref src='/page/118/ListItem/20'></content-ref><content-ref src='/page/118/ListItem/21'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              594.38671875\n            ],\n            [\n              526.236328125,\n              594.38671875\n            ],\n            [\n              526.236328125,\n              700.834831237793\n            ],\n            [\n              129.392578125,\n              700.834831237793\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            594.38671875,\n            526.236328125,\n            700.834831237793\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/118/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>mapping:</b> A relationship in which each element of one set corresponds to an element of another set. For example, a list is a mapping from indices to elements.</li>\",\n              \"polygon\": [\n                [\n                  129.392578125,\n                  594.38671875\n                ],\n                [\n                  526.236328125,\n                  594.38671875\n                ],\n                [\n                  526.236328125,\n                  616.6828155517578\n                ],\n                [\n                  129.392578125,\n                  616.6828155517578\n                ]\n              ],\n              \"bbox\": [\n                129.392578125,\n                594.38671875,\n                526.236328125,\n                616.6828155517578\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/118/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/ListItem/19\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>accumulator:</b> A variable used in a loop to add up or accumulate a result.</li>\",\n              \"polygon\": [\n                [\n                  129.60011291503906,\n                  626.484375\n                ],\n                [\n                  450.87384033203125,\n                  626.484375\n                ],\n                [\n                  450.87384033203125,\n                  636.6038208007812\n                ],\n                [\n                  129.60011291503906,\n                  636.6038208007812\n                ]\n              ],\n              \"bbox\": [\n                129.60011291503906,\n                626.484375,\n                450.87384033203125,\n                636.6038208007812\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/118/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>augmented assignment:</b> A statement that updates the value of a variable using an operator like +=.</li>\",\n              \"polygon\": [\n                [\n                  129.60011291503906,\n                  646.4651184082031\n                ],\n                [\n                  525.603271484375,\n                  646.4651184082031\n                ],\n                [\n                  525.603271484375,\n                  668.7198333740234\n                ],\n                [\n                  129.60011291503906,\n                  668.7198333740234\n                ]\n              ],\n              \"bbox\": [\n                129.60011291503906,\n                646.4651184082031,\n                525.603271484375,\n                668.7198333740234\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/118/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/118/ListItem/21\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>reduce:</b> A processing pattern that traverses a sequence and accumulates the elements into a single result.</li>\",\n              \"polygon\": [\n                [\n                  129.60009765625,\n                  678.5811157226562\n                ],\n                [\n                  525.6038208007812,\n                  678.5811157226562\n                ],\n                [\n                  525.6038208007812,\n                  700.834831237793\n                ],\n                [\n                  129.60009765625,\n                  700.834831237793\n                ]\n              ],\n              \"bbox\": [\n                129.60009765625,\n                678.5811157226562,\n                525.6038208007812,\n                700.834831237793\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/118/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/118/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/119/Page/293\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/119/PageHeader/0'></content-ref><content-ref src='/page/119/PageHeader/19'></content-ref><content-ref src='/page/119/ListGroup/289'></content-ref><content-ref src='/page/119/Text/5'></content-ref><content-ref src='/page/119/Text/6'></content-ref><content-ref src='/page/119/Text/7'></content-ref><content-ref src='/page/119/Text/8'></content-ref><content-ref src='/page/119/SectionHeader/9'></content-ref><content-ref src='/page/119/Text/10'></content-ref><content-ref src='/page/119/Text/11'></content-ref><content-ref src='/page/119/Text/12'></content-ref><content-ref src='/page/119/ListGroup/290'></content-ref><content-ref src='/page/119/Text/15'></content-ref><content-ref src='/page/119/Text/16'></content-ref><content-ref src='/page/119/Text/17'></content-ref><content-ref src='/page/119/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/119/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.76318359375\n            ],\n            [\n              482.607421875,\n              60.76318359375\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.76318359375,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.763671875,\n              61.294921875\n            ],\n            [\n              97.2685546875,\n              61.294921875\n            ],\n            [\n              97.2685546875,\n              69.8994140625\n            ],\n            [\n              85.763671875,\n              69.8994140625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            61.294921875,\n            97.2685546875,\n            69.8994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/ListGroup/289\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/119/ListItem/1'></content-ref><content-ref src='/page/119/ListItem/2'></content-ref><content-ref src='/page/119/ListItem/3'></content-ref><content-ref src='/page/119/ListItem/4'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              88.7381591796875\n            ],\n            [\n              482.90625,\n              88.7381591796875\n            ],\n            [\n              482.90625,\n              183.35589599609375\n            ],\n            [\n              85.166015625,\n              183.35589599609375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            88.7381591796875,\n            482.90625,\n            183.35589599609375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/119/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>map:</b> A processing pattern that traverses a sequence and performs an operation on each element.</li>\",\n              \"polygon\": [\n                [\n                  85.3154296875,\n                  88.7381591796875\n                ],\n                [\n                  482.90625,\n                  88.7381591796875\n                ],\n                [\n                  482.90625,\n                  110.99188232421875\n                ],\n                [\n                  85.3154296875,\n                  110.99188232421875\n                ]\n              ],\n              \"bbox\": [\n                85.3154296875,\n                88.7381591796875,\n                482.90625,\n                110.99188232421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/118/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/119/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>filter:</b> A processing pattern that traverses a list and selects the elements that satisfy some criterion.</li>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  120.849609375\n                ],\n                [\n                  482.40338134765625,\n                  120.849609375\n                ],\n                [\n                  482.40338134765625,\n                  143.24285888671875\n                ],\n                [\n                  85.166015625,\n                  143.24285888671875\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                120.849609375,\n                482.40338134765625,\n                143.24285888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/118/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/119/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>object:</b> Something a variable can refer to. An object has a type and a value.</li>\",\n              \"polygon\": [\n                [\n                  85.3154296875,\n                  152.8505859375\n                ],\n                [\n                  418.359375,\n                  152.8505859375\n                ],\n                [\n                  418.359375,\n                  163.29888916015625\n                ],\n                [\n                  85.3154296875,\n                  163.29888916015625\n                ]\n              ],\n              \"bbox\": [\n                85.3154296875,\n                152.8505859375,\n                418.359375,\n                163.29888916015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/118/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/119/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>equivalent:</b> Having the same value.</li>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  172.5732421875\n                ],\n                [\n                  246.54864501953125,\n                  172.5732421875\n                ],\n                [\n                  246.54864501953125,\n                  183.35589599609375\n                ],\n                [\n                  85.166015625,\n                  183.35589599609375\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                172.5732421875,\n                246.54864501953125,\n                183.35589599609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/118/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/119/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>identical:</b> Being the same object (which implies equivalence).</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              192.779296875\n            ],\n            [\n              357.99609375,\n              192.779296875\n            ],\n            [\n              357.99609375,\n              203.41192626953125\n            ],\n            [\n              85.0166015625,\n              203.41192626953125\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            192.779296875,\n            357.99609375,\n            203.41192626953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>reference:</b> The association between a variable and its value.</p>\",\n          \"polygon\": [\n            [\n              84.94189453125,\n              213.08203125\n            ],\n            [\n              350.38885498046875,\n              213.08203125\n            ],\n            [\n              350.38885498046875,\n              223.46893310546875\n            ],\n            [\n              84.94189453125,\n              223.46893310546875\n            ]\n          ],\n          \"bbox\": [\n            84.94189453125,\n            213.08203125,\n            350.38885498046875,\n            223.46893310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>aliasing:</b> A circumstance where two or more variables refer to the same object.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              233.384765625\n            ],\n            [\n              433.15826416015625,\n              233.384765625\n            ],\n            [\n              433.15826416015625,\n              243.52496337890625\n            ],\n            [\n              85.166015625,\n              243.52496337890625\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            233.384765625,\n            433.15826416015625,\n            243.52496337890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>delimiter:</b> A character or string used to indicate where a string should be split.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              253.494140625\n            ],\n            [\n              434.483154296875,\n              253.494140625\n            ],\n            [\n              434.483154296875,\n              263.58099365234375\n            ],\n            [\n              85.166015625,\n              263.58099365234375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            253.494140625,\n            434.483154296875,\n            263.58099365234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/118/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-119-0\\\"></span><b>10.15 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              292.7458190917969\n            ],\n            [\n              192.77706909179688,\n              292.7458190917969\n            ],\n            [\n              192.77706909179688,\n              307.092041015625\n            ],\n            [\n              85.6142578125,\n              307.092041015625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            292.7458190917969,\n            192.77706909179688,\n            307.092041015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 10.6.</b> <i>Write a function called</i> is_sorted <i>that takes a list as a parameter and returns</i> True <i>if the list is sorted in ascending order and</i> False <i>otherwise. You can assume (as a precondition) that</i> <i>the elements of the list can be compared with the relational operators</i> &lt;<i>,</i> &gt;<i>, etc.</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              319.1387023925781\n            ],\n            [\n              482.4054870605469,\n              319.1387023925781\n            ],\n            [\n              482.4054870605469,\n              353.5124206542969\n            ],\n            [\n              85.46484375,\n              353.5124206542969\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            319.1387023925781,\n            482.4054870605469,\n            353.5124206542969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>For example,</i> is_sorted([1,2,2]) <i>should return</i> True <i>and</i> is_sorted(['b','a']) <i>should re</i><i>turn</i> False<i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              363.322265625\n            ],\n            [\n              482.90625,\n              363.322265625\n            ],\n            [\n              482.90625,\n              385.7174072265625\n            ],\n            [\n              85.6142578125,\n              385.7174072265625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            363.322265625,\n            482.90625,\n            385.7174072265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-119-2\\\"></span><b>Exercise 10.7.</b> <i>Two words are anagrams if you can rearrange the letters from one to spell the other.</i> <i>Write a function called</i> is_anagram <i>that takes two strings and returns</i> True <i>if they are anagrams.</i> <b>Exercise 10.8.</b> <i>The (so-called) Birthday Paradox:</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              387.4921875\n            ],\n            [\n              482.3988037109375,\n              387.4921875\n            ],\n            [\n              482.3988037109375,\n              422.3528747558594\n            ],\n            [\n              85.763671875,\n              422.3528747558594\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            387.4921875,\n            482.3988037109375,\n            422.3528747558594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/ListGroup/290\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/119/ListItem/13'></content-ref><content-ref src='/page/119/ListItem/14'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              96.6708984375,\n              435.4453125\n            ],\n            [\n              482.90625,\n              435.4453125\n            ],\n            [\n              482.90625,\n              514.9274291992188\n            ],\n            [\n              96.6708984375,\n              514.9274291992188\n            ]\n          ],\n          \"bbox\": [\n            96.6708984375,\n            435.4453125,\n            482.90625,\n            514.9274291992188\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/119/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Write a function called</i> has_duplicates <i>that takes a list and returns</i> True <i>if there is any</i> <i>element that appears more than once. It should not modify the original list.</i></li>\",\n              \"polygon\": [\n                [\n                  98.015625,\n                  435.4453125\n                ],\n                [\n                  482.90625,\n                  435.4453125\n                ],\n                [\n                  482.90625,\n                  458.2652893066406\n                ],\n                [\n                  98.015625,\n                  458.2652893066406\n                ]\n              ],\n              \"bbox\": [\n                98.015625,\n                435.4453125,\n                482.90625,\n                458.2652893066406\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/119/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/119/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. If there are 23 students in your class, what are the chances that two of you have the same</i> <i>birthday? You can estimate this probability by generating random samples of 23 birthdays and</i> <i>checking for matches. Hint: you can generate random birthdays with the</i> randint <i>function</i> <i>in the</i> random <i>module.</i></li>\",\n              \"polygon\": [\n                [\n                  96.6708984375,\n                  468.31640625\n                ],\n                [\n                  482.90625,\n                  468.31640625\n                ],\n                [\n                  482.90625,\n                  514.9274291992188\n                ],\n                [\n                  96.6708984375,\n                  514.9274291992188\n                ]\n              ],\n              \"bbox\": [\n                96.6708984375,\n                468.31640625,\n                482.90625,\n                514.9274291992188\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/119/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/119/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>You can read about this problem at</i> <a href=\\\"http://en.wikipedia.org/wiki/Birthday_paradox\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/Birthday_paradox\\\">//</a> <a href=\\\"http://en.wikipedia.org/wiki/Birthday_paradox\\\">en.</a> <a href=\\\"http://en.wikipedia.org/wiki/Birthday_paradox\\\">wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Birthday_paradox\\\">org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Birthday_paradox\\\">wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Birthday_paradox\\\">Birthday_</a> <a href=\\\"http://en.wikipedia.org/wiki/Birthday_paradox\\\">paradox</a> <i>,</i> <i>and you can download my solution from</i> <a href=\\\"http://thinkpython.com/code/birthday.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/birthday.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/birthday.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/birthday.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/birthday.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/birthday.py\\\">birthday.</a> <a href=\\\"http://thinkpython.com/code/birthday.py\\\">py</a> <i>.</i> <b>Exercise 10.9.</b> <i>Write a function called</i> remove_duplicates <i>that takes a list and returns a new</i> <i>list with only the unique elements from the original. Hint: they don't have to be in the same order.</i> <b>Exercise 10.10.</b> <i>Write a function that reads the file</i> words.txt <i>and builds a list with one element</i> <i>per word. Write two versions of this function, one using the</i> append <i>method and the other using</i> <i>the idiom</i> t = t + [x]<i>. Which one takes longer to run? Why?</i></p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              528.6549987792969\n            ],\n            [\n              483.802734375,\n              528.6549987792969\n            ],\n            [\n              483.802734375,\n              611.8874664306641\n            ],\n            [\n              85.166015625,\n              611.8874664306641\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            528.6549987792969,\n            483.802734375,\n            611.8874664306641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Hint: use the</i> time <i>module to measure elapsed time. Solution:</i> <a href=\\\"http://thinkpython.com/code/wordlist.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/wordlist.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/wordlist.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/wordlist.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/wordlist.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/wordlist.py\\\">wordlist.</a> <a href=\\\"http://thinkpython.com/code/wordlist.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              621.8310241699219\n            ],\n            [\n              481.11328125,\n              621.8310241699219\n            ],\n            [\n              481.11328125,\n              644.0693206787109\n            ],\n            [\n              85.6142578125,\n              644.0693206787109\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            621.8310241699219,\n            481.11328125,\n            644.0693206787109\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-119-1\\\"></span><b>Exercise 10.11.</b> <i>To check whether a word is in the word list, you could use the</i> in <i>operator, but it</i> <i>would be slow because it searches through the words in order.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              646.3007202148438\n            ],\n            [\n              483.50390625,\n              646.3007202148438\n            ],\n            [\n              483.50390625,\n              668.4573287963867\n            ],\n            [\n              85.6142578125,\n              668.4573287963867\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            646.3007202148438,\n            483.50390625,\n            668.4573287963867\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/119/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\"><i>Because the words are in alphabetical order, we can speed things up with a bisection search (also</i> <i>known as binary search), which is similar to what you do when you look a word up in the dictionary.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              678.505729675293\n            ],\n            [\n              483.205078125,\n              678.505729675293\n            ],\n            [\n              483.205078125,\n              700.6623306274414\n            ],\n            [\n              85.763671875,\n              700.6623306274414\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            678.505729675293,\n            483.205078125,\n            700.6623306274414\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/119/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/120/Page/137\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/120/PageHeader/0'></content-ref><content-ref src='/page/120/PageHeader/9'></content-ref><content-ref src='/page/120/Text/1'></content-ref><content-ref src='/page/120/Text/2'></content-ref><content-ref src='/page/120/Text/3'></content-ref><content-ref src='/page/120/Text/4'></content-ref><content-ref src='/page/120/Text/5'></content-ref><content-ref src='/page/120/Text/6'></content-ref><content-ref src='/page/120/ListGroup/137'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/120/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.6455078125,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/120/PageHeader/9\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              514.880859375,\n              60.95654296875\n            ],\n            [\n              525.638671875,\n              60.95654296875\n            ],\n            [\n              525.638671875,\n              70.04443359375\n            ],\n            [\n              514.880859375,\n              70.04443359375\n            ]\n          ],\n          \"bbox\": [\n            514.880859375,\n            60.95654296875,\n            525.638671875,\n            70.04443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/120/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>You start in the middle and check to see whether the word you are looking for comes before the word</i> <i>in the middle of the list. If so, then you search the first half of the list the same way. Otherwise you</i> <i>search the second half.</i></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              88.66259765625\n            ],\n            [\n              525.9375,\n              88.66259765625\n            ],\n            [\n              525.9375,\n              123.01416015625\n            ],\n            [\n              128.49609375,\n              123.01416015625\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            88.66259765625,\n            525.9375,\n            123.01416015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/120/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Either way, you cut the remaining search space in half. If the word list has 113,809 words, it will</i> <i>take about 17 steps to find the word or conclude that it's not there.</i></p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              132.64453125\n            ],\n            [\n              525.9375,\n              132.64453125\n            ],\n            [\n              525.9375,\n              155.34515380859375\n            ],\n            [\n              128.0478515625,\n              155.34515380859375\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            132.64453125,\n            525.9375,\n            155.34515380859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/120/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a function called</i> bisect <i>that takes a sorted list and a target value and returns the index of</i> <i>the value in the list, if it's there, or</i> None <i>if it's not.</i></p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              165.0322265625\n            ],\n            [\n              525.9375,\n              165.0322265625\n            ],\n            [\n              525.9375,\n              187.7003173828125\n            ],\n            [\n              128.0478515625,\n              187.7003173828125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            165.0322265625,\n            525.9375,\n            187.7003173828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/120/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Or you could read the documentation of the</i> bisect <i>module and use that! Solution:</i> <a href=\\\"http://thinkpython.com/code/inlist.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/inlist.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/inlist.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/inlist.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/inlist.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/inlist.py\\\">inlist.</a> <a href=\\\"http://thinkpython.com/code/inlist.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              197.7099609375\n            ],\n            [\n              524.7421875,\n              197.7099609375\n            ],\n            [\n              524.7421875,\n              220.00921630859375\n            ],\n            [\n              128.9443359375,\n              220.00921630859375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            197.7099609375,\n            524.7421875,\n            220.00921630859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/120/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 10.12.</b> <i>Two words are a \\\"reverse pair\\\" if each is the reverse of the other. Write a program</i> <i>that finds all the reverse pairs in the word list. Solution:</i> <a href=\\\"http://thinkpython.com/code/reverse_pair.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/reverse_pair.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/reverse_pair.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/reverse_pair.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/reverse_pair.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/reverse_pair.py\\\">reverse_</a> <a href=\\\"http://thinkpython.com/code/reverse_pair.py\\\">pair.</a> <a href=\\\"http://thinkpython.com/code/reverse_pair.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              221.58984375\n            ],\n            [\n              525.6035766601562,\n              221.58984375\n            ],\n            [\n              525.6035766601562,\n              256.5921630859375\n            ],\n            [\n              128.6455078125,\n              256.5921630859375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            221.58984375,\n            525.6035766601562,\n            256.5921630859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/120/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 10.13.</b> <i>Two words \\\"interlock\\\" if taking alternating letters from each forms a new</i> <i>word. For example, \\\"shoe\\\" and \\\"cold\\\" interlock to form \\\"schooled.\\\" Solution:</i> <a href=\\\"http://thinkpython.com/code/interlock.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/interlock.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/interlock.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/interlock.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/interlock.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/interlock.py\\\">interlock.</a> <a href=\\\"http://thinkpython.com/code/interlock.py\\\">py</a> <i>. Credit: This exercise is inspired by an example at</i> <a href=\\\"http://puzzlers.org\\\">http:</a> <a href=\\\"http://puzzlers.org\\\">//</a> <a href=\\\"http://puzzlers.org\\\">puzzlers.</a> <a href=\\\"http://puzzlers.org\\\">org</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              258.8236083984375\n            ],\n            [\n              525.638671875,\n              258.8236083984375\n            ],\n            [\n              525.638671875,\n              305.3691711425781\n            ],\n            [\n              129.392578125,\n              305.3691711425781\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            258.8236083984375,\n            525.638671875,\n            305.3691711425781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/120/ListGroup/137\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/120/ListItem/7'></content-ref><content-ref src='/page/120/ListItem/8'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.150390625,\n              318.849609375\n            ],\n            [\n              525.638671875,\n              318.849609375\n            ],\n            [\n              525.638671875,\n              361.86419677734375\n            ],\n            [\n              140.150390625,\n              361.86419677734375\n            ]\n          ],\n          \"bbox\": [\n            140.150390625,\n            318.849609375,\n            525.638671875,\n            361.86419677734375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/120/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Write a program that finds all pairs of words that interlock. Hint: don't enumerate all pairs!</i></li>\",\n              \"polygon\": [\n                [\n                  140.8974609375,\n                  318.849609375\n                ],\n                [\n                  523.546875,\n                  318.849609375\n                ],\n                [\n                  523.546875,\n                  329.50518798828125\n                ],\n                [\n                  140.8974609375,\n                  329.50518798828125\n                ]\n              ],\n              \"bbox\": [\n                140.8974609375,\n                318.849609375,\n                523.546875,\n                329.50518798828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/119/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/120/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Can you find any words that are three-way interlocked; that is, every third letter forms a</i> <i>word, starting from the first, second or third?</i></li>\",\n              \"polygon\": [\n                [\n                  140.150390625,\n                  339.70660400390625\n                ],\n                [\n                  525.638671875,\n                  339.70660400390625\n                ],\n                [\n                  525.638671875,\n                  361.86419677734375\n                ],\n                [\n                  140.150390625,\n                  361.86419677734375\n                ]\n              ],\n              \"bbox\": [\n                140.150390625,\n                339.70660400390625,\n                525.638671875,\n                361.86419677734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/108/SectionHeader/1\",\n                \"4\": \"/page/119/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/119/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/121/Page/3\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/121/PageHeader/0'></content-ref><content-ref src='/page/121/PageHeader/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/121/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.69970703125\n            ],\n            [\n              482.4033508300781,\n              59.69970703125\n            ],\n            [\n              482.4033508300781,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.69970703125,\n            482.4033508300781,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/121/PageHeader/1\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              60.37646484375\n            ],\n            [\n              100.92919921875,\n              60.37646484375\n            ],\n            [\n              100.92919921875,\n              70.33447265625\n            ],\n            [\n              85.53955078125,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            60.37646484375,\n            100.92919921875,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"4\": \"/page/119/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/108/SectionHeader/1\",\n        \"4\": \"/page/119/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/122/Page/170\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/122/SectionHeader/0'></content-ref><content-ref src='/page/122/SectionHeader/1'></content-ref><content-ref src='/page/122/Text/2'></content-ref><content-ref src='/page/122/Text/3'></content-ref><content-ref src='/page/122/Text/4'></content-ref><content-ref src='/page/122/Text/5'></content-ref><content-ref src='/page/122/Code/6'></content-ref><content-ref src='/page/122/Text/7'></content-ref><content-ref src='/page/122/Code/8'></content-ref><content-ref src='/page/122/Text/9'></content-ref><content-ref src='/page/122/Code/10'></content-ref><content-ref src='/page/122/Text/11'></content-ref><content-ref src='/page/122/Code/12'></content-ref><content-ref src='/page/122/Text/13'></content-ref><content-ref src='/page/122/Code/14'></content-ref><content-ref src='/page/122/Text/15'></content-ref><content-ref src='/page/122/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/122/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-122-0\\\"></span><b>Chapter 11</b></h2>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              162.1318359375\n            ],\n            [\n              232.189453125,\n              162.1318359375\n            ],\n            [\n              232.189453125,\n              183.33795166015625\n            ],\n            [\n              128.794921875,\n              183.33795166015625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            162.1318359375,\n            232.189453125,\n            183.33795166015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/108/SectionHeader/1\",\n            \"2\": \"/page/122/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Dictionaries</b></h1>\",\n          \"polygon\": [\n            [\n              129.31787109375,\n              216.5625\n            ],\n            [\n              268.646484375,\n              216.5625\n            ],\n            [\n              268.646484375,\n              241.371337890625\n            ],\n            [\n              129.31787109375,\n              241.371337890625\n            ]\n          ],\n          \"bbox\": [\n            129.31787109375,\n            216.5625,\n            268.646484375,\n            241.371337890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>dictionary</b> is like a list, but more general. In a list, the indices have to be integers; in a dictionary they can be (almost) any type.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              285.591796875\n            ],\n            [\n              525.9375,\n              285.591796875\n            ],\n            [\n              525.9375,\n              308.1558837890625\n            ],\n            [\n              128.9443359375,\n              308.1558837890625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            285.591796875,\n            525.9375,\n            308.1558837890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can think of a dictionary as a mapping between a set of indices (which are called <b>keys</b>) and a set of values. Each key maps to a value. The association of a key and a value is called a <b>key-value pair</b> or sometimes an <b>item</b>.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              316.72265625\n            ],\n            [\n              525.9375,\n              316.72265625\n            ],\n            [\n              525.9375,\n              351.23590087890625\n            ],\n            [\n              128.9443359375,\n              351.23590087890625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            316.72265625,\n            525.9375,\n            351.23590087890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As an example, we'll build a dictionary that maps from English to Spanish words, so the keys and the values are all strings.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              359.455078125\n            ],\n            [\n              525.9375,\n              359.455078125\n            ],\n            [\n              525.9375,\n              382.12091064453125\n            ],\n            [\n              129.09375,\n              382.12091064453125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            359.455078125,\n            525.9375,\n            382.12091064453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The function dict creates a new dictionary with no items. Because dict is the name of a built-in function, you should avoid using it as a variable name.</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              390.69976806640625\n            ],\n            [\n              525.9375,\n              390.69976806640625\n            ],\n            [\n              525.9375,\n              413.0069274902344\n            ],\n            [\n              129.5419921875,\n              413.0069274902344\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            390.69976806640625,\n            525.9375,\n            413.0069274902344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; eng2sp = dict()\\n&gt;&gt;&gt; print eng2sp\\n{}</pre>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              417.61376953125\n            ],\n            [\n              228.97686767578125,\n              417.61376953125\n            ],\n            [\n              228.97686767578125,\n              451.9653625488281\n            ],\n            [\n              129.5419921875,\n              451.9653625488281\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            417.61376953125,\n            228.97686767578125,\n            451.9653625488281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The squiggly-brackets, {}, represent an empty dictionary. To add items to the dictionary, you can use square brackets:</p>\",\n          \"polygon\": [\n            [\n              129.59994506835938,\n              456.7217712402344\n            ],\n            [\n              525.60009765625,\n              456.7217712402344\n            ],\n            [\n              525.60009765625,\n              479.0279235839844\n            ],\n            [\n              129.59994506835938,\n              479.0279235839844\n            ]\n          ],\n          \"bbox\": [\n            129.59994506835938,\n            456.7217712402344,\n            525.60009765625,\n            479.0279235839844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; eng2sp['one'] = 'uno'</pre>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              483.6357727050781\n            ],\n            [\n              260.329345703125,\n              483.6357727050781\n            ],\n            [\n              260.329345703125,\n              493.5983581542969\n            ],\n            [\n              129.2431640625,\n              493.5983581542969\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            483.6357727050781,\n            260.329345703125,\n            493.5983581542969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This line creates an item that maps from the key 'one' to the value 'uno'. If we print the dictionary again, we see a key-value pair with a colon between the key and value:</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              498.09375\n            ],\n            [\n              525.638671875,\n              498.09375\n            ],\n            [\n              525.638671875,\n              520.6619262695312\n            ],\n            [\n              129.392578125,\n              520.6619262695312\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            498.09375,\n            525.638671875,\n            520.6619262695312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print eng2sp\\n{'one': 'uno'}</pre>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              525.2687683105469\n            ],\n            [\n              213.2858428955078,\n              525.2687683105469\n            ],\n            [\n              213.2858428955078,\n              547.4253692626953\n            ],\n            [\n              128.9443359375,\n              547.4253692626953\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            525.2687683105469,\n            213.2858428955078,\n            547.4253692626953\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This output format is also an input format. For example, you can create a new dictionary with three items:</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              552.3323211669922\n            ],\n            [\n              525.6033325195312,\n              552.3323211669922\n            ],\n            [\n              525.6033325195312,\n              574.4889221191406\n            ],\n            [\n              128.0478515625,\n              574.4889221191406\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            552.3323211669922,\n            525.6033325195312,\n            574.4889221191406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; eng2sp = {'one': 'uno', 'two': 'dos', 'three': 'tres'}</pre>\",\n          \"polygon\": [\n            [\n              129.09375,\n              579.0967712402344\n            ],\n            [\n              434.49609375,\n              579.0967712402344\n            ],\n            [\n              434.49609375,\n              595.93359375\n            ],\n            [\n              129.09375,\n              595.93359375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            579.0967712402344,\n            434.49609375,\n            595.93359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But if you print eng2sp, you might be surprised:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              593.8157653808594\n            ],\n            [\n              341.9150390625,\n              593.8157653808594\n            ],\n            [\n              341.9150390625,\n              605.21484375\n            ],\n            [\n              129.2431640625,\n              605.21484375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            593.8157653808594,\n            341.9150390625,\n            605.21484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print eng2sp\\n{'one': 'uno', 'three': 'tres', 'two': 'dos'}</pre>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              608.5357666015625\n            ],\n            [\n              364.9114685058594,\n              608.5357666015625\n            ],\n            [\n              364.9114685058594,\n              630.6923675537109\n            ],\n            [\n              129.16845703125,\n              630.6923675537109\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            608.5357666015625,\n            364.9114685058594,\n            630.6923675537109\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The order of the key-value pairs is not the same. In fact, if you type the same example on your computer, you might get a different result. In general, the order of items in a dictionary is unpredictable.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              634.21875\n            ],\n            [\n              525.9375,\n              634.21875\n            ],\n            [\n              525.9375,\n              669.9499282836914\n            ],\n            [\n              129.2431640625,\n              669.9499282836914\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            634.21875,\n            525.9375,\n            669.9499282836914\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/122/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But that's not a problem because the elements of a dictionary are never indexed with integer indices. Instead, you use the keys to look up the corresponding values:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              677.91796875\n            ],\n            [\n              525.603515625,\n              677.91796875\n            ],\n            [\n              525.603515625,\n              700.8349304199219\n            ],\n            [\n              128.6455078125,\n              700.8349304199219\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            677.91796875,\n            525.603515625,\n            700.8349304199219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/123/Page/215\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/123/PageHeader/0'></content-ref><content-ref src='/page/123/PageHeader/18'></content-ref><content-ref src='/page/123/Code/1'></content-ref><content-ref src='/page/123/Text/2'></content-ref><content-ref src='/page/123/Text/3'></content-ref><content-ref src='/page/123/Code/4'></content-ref><content-ref src='/page/123/Text/5'></content-ref><content-ref src='/page/123/Code/6'></content-ref><content-ref src='/page/123/Text/7'></content-ref><content-ref src='/page/123/Code/8'></content-ref><content-ref src='/page/123/Text/9'></content-ref><content-ref src='/page/123/Code/10'></content-ref><content-ref src='/page/123/Text/11'></content-ref><content-ref src='/page/123/Text/12'></content-ref><content-ref src='/page/123/Text/13'></content-ref><content-ref src='/page/123/SectionHeader/14'></content-ref><content-ref src='/page/123/Text/15'></content-ref><content-ref src='/page/123/ListGroup/213'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/123/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.76318359375\n            ],\n            [\n              482.40338134765625,\n              60.76318359375\n            ],\n            [\n              482.40338134765625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.76318359375,\n            482.40338134765625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              61.0048828125\n            ],\n            [\n              101.900390625,\n              61.0048828125\n            ],\n            [\n              101.900390625,\n              70.4794921875\n            ],\n            [\n              85.9130859375,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            61.0048828125,\n            101.900390625,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print eng2sp['two']\\n'dos'</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              88.41357421875\n            ],\n            [\n              206.6703643798828,\n              88.41357421875\n            ],\n            [\n              206.6703643798828,\n              110.84228515625\n            ],\n            [\n              85.763671875,\n              110.84228515625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            88.41357421875,\n            206.6703643798828,\n            110.84228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The key 'two' always maps to the value 'dos' so the order of the items doesn't matter.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              117.7476806640625\n            ],\n            [\n              469.84698486328125,\n              117.7476806640625\n            ],\n            [\n              469.84698486328125,\n              127.85986328125\n            ],\n            [\n              85.3154296875,\n              127.85986328125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            117.7476806640625,\n            469.84698486328125,\n            127.85986328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the key isn't in the dictionary, you get an exception:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              138.638671875\n            ],\n            [\n              322.03533935546875,\n              138.638671875\n            ],\n            [\n              322.03533935546875,\n              148.69989013671875\n            ],\n            [\n              85.46484375,\n              148.69989013671875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            138.638671875,\n            322.03533935546875,\n            148.69989013671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print eng2sp['four']\\nKeyError: 'four'</pre>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              155.4547119140625\n            ],\n            [\n              211.90037536621094,\n              155.4547119140625\n            ],\n            [\n              211.90037536621094,\n              177.6123046875\n            ],\n            [\n              85.166015625,\n              177.6123046875\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            155.4547119140625,\n            211.90037536621094,\n            177.6123046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The len function works on dictionaries; it returns the number of key-value pairs:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              184.5177001953125\n            ],\n            [\n              441.6226501464844,\n              184.5177001953125\n            ],\n            [\n              441.6226501464844,\n              194.6298828125\n            ],\n            [\n              85.9130859375,\n              194.6298828125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            184.5177001953125,\n            441.6226501464844,\n            194.6298828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; len(eng2sp)\\n3</pre>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              200.513671875\n            ],\n            [\n              166.1484375,\n              200.513671875\n            ],\n            [\n              166.1484375,\n              223.542236328125\n            ],\n            [\n              84.8671875,\n              223.542236328125\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            200.513671875,\n            166.1484375,\n            223.542236328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The in operator works on dictionaries; it tells you whether something appears as a <i>key</i> in the dictionary (appearing as a value is not good enough).</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              230.42449951171875\n            ],\n            [\n              482.40032958984375,\n              230.42449951171875\n            ],\n            [\n              482.40032958984375,\n              252.75384521484375\n            ],\n            [\n              85.763671875,\n              252.75384521484375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            230.42449951171875,\n            482.40032958984375,\n            252.75384521484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; 'one' in eng2sp\\nTrue\\n&gt;&gt;&gt; 'uno' in eng2sp\\nFalse</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              259.5096435546875\n            ],\n            [\n              188.4111328125,\n              259.5096435546875\n            ],\n            [\n              188.4111328125,\n              306.0552673339844\n            ],\n            [\n              85.46484375,\n              306.0552673339844\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            259.5096435546875,\n            188.4111328125,\n            306.0552673339844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To see whether something appears as a value in a dictionary, you can use the method values, which returns the values as a list, and then use the in operator:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              313.048828125\n            ],\n            [\n              482.4034423828125,\n              313.048828125\n            ],\n            [\n              482.4034423828125,\n              335.266845703125\n            ],\n            [\n              85.9130859375,\n              335.266845703125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            313.048828125,\n            482.4034423828125,\n            335.266845703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; vals = eng2sp.values()\\n&gt;&gt;&gt; 'uno' in vals\\nTrue</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              342.022705078125\n            ],\n            [\n              222.3994140625,\n              342.022705078125\n            ],\n            [\n              222.3994140625,\n              376.3742980957031\n            ],\n            [\n              85.3154296875,\n              376.3742980957031\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            342.022705078125,\n            222.3994140625,\n            376.3742980957031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The in operator uses different algorithms for lists and dictionaries. For lists, it uses a search algorithm, as in Section <a href=\\\"#page-95-1\\\">8.6.</a> As the list gets longer, the search time gets longer in direct proportion. For dictionaries, Python uses an algorithm called a <b>hashtable</b> that has a remarkable property: the in operator takes about the same amount of time no matter how many items there are in a dictionary. I won't explain how that's possible, but you can read more about it at <a href=\\\"http://en.wikipedia.org/wiki/Hash_table\\\">http://en.wikipedia.org/wiki/Hash_table</a>.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              383.27972412109375\n            ],\n            [\n              482.607421875,\n              383.27972412109375\n            ],\n            [\n              482.607421875,\n              454.39453125\n            ],\n            [\n              85.46484375,\n              454.39453125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            383.27972412109375,\n            482.607421875,\n            454.39453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-123-1\\\"></span><b>Exercise 11.1.</b> <i>Write a function that reads the words in</i> words.txt <i>and stores them as keys in a</i> <i>dictionary. It doesn't matter what the values are. Then you can use the</i> in <i>operator as a fast way to</i> <i>check whether a string is in the dictionary.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              456.422607421875\n            ],\n            [\n              482.40447998046875,\n              456.422607421875\n            ],\n            [\n              482.40447998046875,\n              490.773193359375\n            ],\n            [\n              85.6142578125,\n              490.773193359375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            456.422607421875,\n            482.40447998046875,\n            490.773193359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>If you did Exercise </i><i><a href=\\\"#page-119-1\\\">10.11,</a></i><i> you can compare the speed of this implementation with the list</i> in <i>operator</i> <i>and the bisection search.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              501.6506042480469\n            ],\n            [\n              482.400390625,\n              501.6506042480469\n            ],\n            [\n              482.400390625,\n              523.8071899414062\n            ],\n            [\n              85.763671875,\n              523.8071899414062\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            501.6506042480469,\n            482.400390625,\n            523.8071899414062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/SectionHeader/14\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-123-0\\\"></span><b>11.1 Dictionary as a set of counters</b></h4>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              555.328125\n            ],\n            [\n              322.28021240234375,\n              555.328125\n            ],\n            [\n              322.28021240234375,\n              569.7739410400391\n            ],\n            [\n              85.46484375,\n              569.7739410400391\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            555.328125,\n            322.28021240234375,\n            569.7739410400391\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Suppose you are given a string and you want to count how many times each letter appears. There are several ways you could do it:</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              583.1022796630859\n            ],\n            [\n              482.40338134765625,\n              583.1022796630859\n            ],\n            [\n              482.40338134765625,\n              605.2588806152344\n            ],\n            [\n              85.166015625,\n              605.2588806152344\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            583.1022796630859,\n            482.40338134765625,\n            605.2588806152344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/123/ListGroup/213\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/123/ListItem/16'></content-ref><content-ref src='/page/123/ListItem/17'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              98.314453125,\n              620.296875\n            ],\n            [\n              482.40386962890625,\n              620.296875\n            ],\n            [\n              482.40386962890625,\n              700.8348922729492\n            ],\n            [\n              98.314453125,\n              700.8348922729492\n            ]\n          ],\n          \"bbox\": [\n            98.314453125,\n            620.296875,\n            482.40386962890625,\n            700.8348922729492\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/123/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">1. You could create 26 variables, one for each letter of the alphabet. Then you could traverse the string and, for each character, increment the corresponding counter, probably using a chained conditional.</li>\",\n              \"polygon\": [\n                [\n                  98.61328125,\n                  620.296875\n                ],\n                [\n                  482.40386962890625,\n                  620.296875\n                ],\n                [\n                  482.40386962890625,\n                  655.0848846435547\n                ],\n                [\n                  98.61328125,\n                  655.0848846435547\n                ]\n              ],\n              \"bbox\": [\n                98.61328125,\n                620.296875,\n                482.40386962890625,\n                655.0848846435547\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/122/SectionHeader/1\",\n                \"4\": \"/page/123/SectionHeader/14\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/123/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">2. You could create a list with 26 elements. Then you could convert each character to a number (using the built-in function ord), use the number as an index into the list, and increment the appropriate counter.</li>\",\n              \"polygon\": [\n                [\n                  98.314453125,\n                  666.31640625\n                ],\n                [\n                  482.4033203125,\n                  666.31640625\n                ],\n                [\n                  482.4033203125,\n                  700.8348922729492\n                ],\n                [\n                  98.314453125,\n                  700.8348922729492\n                ]\n              ],\n              \"bbox\": [\n                98.314453125,\n                666.31640625,\n                482.4033203125,\n                700.8348922729492\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/122/SectionHeader/1\",\n                \"4\": \"/page/123/SectionHeader/14\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\",\n        \"4\": \"/page/123/SectionHeader/14\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/124/Page/231\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/124/PageHeader/0'></content-ref><content-ref src='/page/124/PageHeader/16'></content-ref><content-ref src='/page/124/ListItem/1'></content-ref><content-ref src='/page/124/Text/2'></content-ref><content-ref src='/page/124/Text/3'></content-ref><content-ref src='/page/124/Text/4'></content-ref><content-ref src='/page/124/Code/5'></content-ref><content-ref src='/page/124/Text/6'></content-ref><content-ref src='/page/124/Text/7'></content-ref><content-ref src='/page/124/Text/8'></content-ref><content-ref src='/page/124/Code/9'></content-ref><content-ref src='/page/124/Text/10'></content-ref><content-ref src='/page/124/Text/11'></content-ref><content-ref src='/page/124/Code/12'></content-ref><content-ref src='/page/124/Text/13'></content-ref><content-ref src='/page/124/SectionHeader/14'></content-ref><content-ref src='/page/124/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/124/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.197265625,\n              60.71484375\n            ],\n            [\n              525.6033935546875,\n              60.71484375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.197265625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            60.71484375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.80078125,\n              60.85986328125\n            ],\n            [\n              525.9375,\n              60.85986328125\n            ],\n            [\n              525.9375,\n              70.33447265625\n            ],\n            [\n              509.80078125,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            509.80078125,\n            60.85986328125,\n            525.9375,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/ListItem/1\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">3. You could create a dictionary with characters as keys and counters as the corresponding values. The first time you see a character, you would add an item to the dictionary. After that you would increment the value of an existing item.</li>\",\n          \"polygon\": [\n            [\n              141.1962890625,\n              87.93017578125\n            ],\n            [\n              525.6039428710938,\n              87.93017578125\n            ],\n            [\n              525.6039428710938,\n              123.1868896484375\n            ],\n            [\n              141.1962890625,\n              123.1868896484375\n            ]\n          ],\n          \"bbox\": [\n            141.1962890625,\n            87.93017578125,\n            525.6039428710938,\n            123.1868896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Each of these options performs the same computation, but each of them implements that computation in a different way.</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              130.6142578125\n            ],\n            [\n              525.638671875,\n              130.6142578125\n            ],\n            [\n              525.638671875,\n              153.87994384765625\n            ],\n            [\n              127.599609375,\n              153.87994384765625\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            130.6142578125,\n            525.638671875,\n            153.87994384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An <b>implementation</b> is a way of performing a computation; some implementations are better than others. For example, an advantage of the dictionary implementation is that we don't have to know ahead of time which letters appear in the string and we only have to make room for the letters that do appear.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              161.1650390625\n            ],\n            [\n              525.9375,\n              161.1650390625\n            ],\n            [\n              525.9375,\n              208.51702880859375\n            ],\n            [\n              127.8984375,\n              208.51702880859375\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            161.1650390625,\n            525.9375,\n            208.51702880859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is what the code might look like:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              215.7890625\n            ],\n            [\n              296.82220458984375,\n              215.7890625\n            ],\n            [\n              296.82220458984375,\n              226.571044921875\n            ],\n            [\n              128.197265625,\n              226.571044921875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            215.7890625,\n            296.82220458984375,\n            226.571044921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def histogram(s):\\n    d = dict()\\n    for c in s:\\n        if c not in d:\\n             d[c] = 1\\n        else:\\n             d[c] += 1\\n    return d</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              230.5418701171875\n            ],\n            [\n              249.8203125,\n              230.5418701171875\n            ],\n            [\n              249.8203125,\n              325.8645324707031\n            ],\n            [\n              129.60000610351562,\n              325.8645324707031\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            230.5418701171875,\n            249.8203125,\n            325.8645324707031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The name of the function is <b>histogram</b>, which is a statistical term for a set of counters (or frequencies).</p>\",\n          \"polygon\": [\n            [\n              129.6000213623047,\n              330.0373840332031\n            ],\n            [\n              525.9375,\n              330.0373840332031\n            ],\n            [\n              525.9375,\n              352.2911071777344\n            ],\n            [\n              129.6000213623047,\n              352.2911071777344\n            ]\n          ],\n          \"bbox\": [\n            129.6000213623047,\n            330.0373840332031,\n            525.9375,\n            352.2911071777344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first line of the function creates an empty dictionary. The for loop traverses the string. Each time through the loop, if the character c is not in the dictionary, we create a new item with key c and the initial value 1 (since we have seen this letter once). If c is already in the dictionary we increment d[c].</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              359.841796875\n            ],\n            [\n              525.6044921875,\n              359.841796875\n            ],\n            [\n              525.6044921875,\n              406.9281005859375\n            ],\n            [\n              128.3466796875,\n              406.9281005859375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            359.841796875,\n            525.6044921875,\n            406.9281005859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's how it works:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              414.94921875\n            ],\n            [\n              223.3740234375,\n              414.94921875\n            ],\n            [\n              223.3740234375,\n              424.9820861816406\n            ],\n            [\n              128.6455078125,\n              424.9820861816406\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            414.94921875,\n            223.3740234375,\n            424.9820861816406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; h = histogram('brontosaurus')\\n&gt;&gt;&gt; print h\\n{'a': 1, 'b': 1, 'o': 2, 'n': 1, 's': 2, 'r': 2, 'u': 2, 't': 1}</pre>\",\n          \"polygon\": [\n            [\n              129.59996032714844,\n              427.7109375\n            ],\n            [\n              476.9296875,\n              427.7109375\n            ],\n            [\n              476.9296875,\n              468.703125\n            ],\n            [\n              129.59996032714844,\n              468.703125\n            ]\n          ],\n          \"bbox\": [\n            129.59996032714844,\n            427.7109375,\n            476.9296875,\n            468.703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The histogram indicates that the letters 'a' and 'b' appear once; 'o' appears twice, and so on.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              467.4239501953125\n            ],\n            [\n              525.6051635742188,\n              467.4239501953125\n            ],\n            [\n              525.6051635742188,\n              489.97265625\n            ],\n            [\n              128.794921875,\n              489.97265625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            467.4239501953125,\n            525.6051635742188,\n            489.97265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 11.2.</b> <i>Dictionaries have a method called</i> get <i>that takes a key and a default value. If the</i> <i>key appears in the dictionary,</i> get <i>returns the corresponding value; otherwise it returns the default</i> <i>value. For example:</i></p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              491.51953125\n            ],\n            [\n              525.6024169921875,\n              491.51953125\n            ],\n            [\n              525.6024169921875,\n              526.1414184570312\n            ],\n            [\n              129.2431640625,\n              526.1414184570312\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            491.51953125,\n            525.6024169921875,\n            526.1414184570312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; h = histogram('a')\\n&gt;&gt;&gt; print h\\n{'a': 1}\\n&gt;&gt;&gt; h.get('a', 0)\\n1\\n&gt;&gt;&gt; h.get('b', 0)\\n0</pre>\",\n          \"polygon\": [\n            [\n              129.60009765625,\n              530.2839660644531\n            ],\n            [\n              244.64146423339844,\n              530.2839660644531\n            ],\n            [\n              244.64146423339844,\n              613.4125823974609\n            ],\n            [\n              129.60009765625,\n              613.4125823974609\n            ]\n          ],\n          \"bbox\": [\n            129.60009765625,\n            530.2839660644531,\n            244.64146423339844,\n            613.4125823974609\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Use</i> get <i>to write</i> histogram <i>more concisely. You should be able to eliminate the</i> if <i>statement.</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              616.4296875\n            ],\n            [\n              508.27825927734375,\n              616.4296875\n            ],\n            [\n              508.27825927734375,\n              627.4955902099609\n            ],\n            [\n              128.794921875,\n              627.4955902099609\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            616.4296875,\n            508.27825927734375,\n            627.4955902099609\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/123/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/SectionHeader/14\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-124-0\\\"></span><b>11.2 Looping and dictionaries</b></h4>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              653.94140625\n            ],\n            [\n              333.2156982421875,\n              653.94140625\n            ],\n            [\n              333.2156982421875,\n              668.4161911010742\n            ],\n            [\n              127.4501953125,\n              668.4161911010742\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            653.94140625,\n            333.2156982421875,\n            668.4161911010742\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/124/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/124/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you use a dictionary in a for statement, it traverses the keys of the dictionary. For example, print_hist prints each key and the corresponding value:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              678.3046875\n            ],\n            [\n              525.5980834960938,\n              678.3046875\n            ],\n            [\n              525.5980834960938,\n              700.8351440429688\n            ],\n            [\n              128.197265625,\n              700.8351440429688\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            678.3046875,\n            525.5980834960938,\n            700.8351440429688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/124/SectionHeader/14\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\",\n        \"4\": \"/page/124/SectionHeader/14\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/125/Page/192\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/125/PageHeader/0'></content-ref><content-ref src='/page/125/TextInlineMath/1'></content-ref><content-ref src='/page/125/Text/2'></content-ref><content-ref src='/page/125/Code/3'></content-ref><content-ref src='/page/125/Text/4'></content-ref><content-ref src='/page/125/Text/5'></content-ref><content-ref src='/page/125/Text/6'></content-ref><content-ref src='/page/125/SectionHeader/7'></content-ref><content-ref src='/page/125/Text/8'></content-ref><content-ref src='/page/125/Text/9'></content-ref><content-ref src='/page/125/Text/10'></content-ref><content-ref src='/page/125/Code/11'></content-ref><content-ref src='/page/125/Text/12'></content-ref><content-ref src='/page/125/Text/13'></content-ref><content-ref src='/page/125/Text/14'></content-ref><content-ref src='/page/125/Code/15'></content-ref><content-ref src='/page/125/Text/16'></content-ref><content-ref src='/page/125/Text/188'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/125/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.521484375\n            ],\n            [\n              482.40338134765625,\n              60.521484375\n            ],\n            [\n              482.40338134765625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.521484375,\n            482.40338134765625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/124/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/TextInlineMath/1\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">def print_hist(h): for c in h: print c, h[c]</p>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              88.68572998046875\n            ],\n            [\n              196.22775268554688,\n              88.68572998046875\n            ],\n            [\n              196.22775268554688,\n              123.03729248046875\n            ],\n            [\n              86.4000015258789,\n              123.03729248046875\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            88.68572998046875,\n            196.22775268554688,\n            123.03729248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/124/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's what the output looks like:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              129.744140625\n            ],\n            [\n              237.1201171875,\n              129.744140625\n            ],\n            [\n              237.1201171875,\n              140.40887451171875\n            ],\n            [\n              85.9130859375,\n              140.40887451171875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            129.744140625,\n            237.1201171875,\n            140.40887451171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/124/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; h = histogram('parrot')\\n&gt;&gt;&gt; print_hist(h)\\na 1\\np 1\\nr 2\\nt 1\\no 1</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              147.51971435546875\n            ],\n            [\n              227.58737182617188,\n              147.51971435546875\n            ],\n            [\n              227.58737182617188,\n              231.064453125\n            ],\n            [\n              85.763671875,\n              231.064453125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            147.51971435546875,\n            227.58737182617188,\n            231.064453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/124/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Again, the keys are in no particular order.</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              237.05859375\n            ],\n            [\n              269.6719970703125,\n              237.05859375\n            ],\n            [\n              269.6719970703125,\n              248.02093505859375\n            ],\n            [\n              85.68896484375,\n              248.02093505859375\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            237.05859375,\n            269.6719970703125,\n            248.02093505859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/124/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 11.3.</b> <i>Dictionaries have a method called</i> keys <i>that returns the keys of the dictionary, in</i> <i>no particular order, as a list.</i></p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              249.046875\n            ],\n            [\n              482.39501953125,\n              249.046875\n            ],\n            [\n              482.39501953125,\n              272.2371826171875\n            ],\n            [\n              85.9130859375,\n              272.2371826171875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            249.046875,\n            482.39501953125,\n            272.2371826171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/124/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Modify</i> print_hist <i>to print the keys and their values in alphabetical order.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              283.078125\n            ],\n            [\n              390.69482421875,\n              283.078125\n            ],\n            [\n              390.69482421875,\n              293.4543151855469\n            ],\n            [\n              85.6142578125,\n              293.4543151855469\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            283.078125,\n            390.69482421875,\n            293.4543151855469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/124/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-125-0\\\"></span><b>11.3 Reverse lookup</b></h4>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              326.1167297363281\n            ],\n            [\n              228.26959228515625,\n              326.1167297363281\n            ],\n            [\n              228.26959228515625,\n              340.46295166015625\n            ],\n            [\n              85.39013671875,\n              340.46295166015625\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            326.1167297363281,\n            228.26959228515625,\n            340.46295166015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Given a dictionary d and a key k, it is easy to find the corresponding value v = d[k]. This operation is called a <b>lookup</b>.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              354.041015625\n            ],\n            [\n              482.90625,\n              354.041015625\n            ],\n            [\n              482.90625,\n              376.4458923339844\n            ],\n            [\n              85.6142578125,\n              376.4458923339844\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            354.041015625,\n            482.90625,\n            376.4458923339844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But what if you have v and you want to find k? You have two problems: first, there might be more than one key that maps to the value v. Depending on the application, you might be able to pick one, or you might have to make a list that contains all of them. Second, there is no simple syntax to do a <b>reverse lookup</b>; you have to search.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              387.10546875\n            ],\n            [\n              482.607421875,\n              387.10546875\n            ],\n            [\n              482.607421875,\n              434.222900390625\n            ],\n            [\n              85.46484375,\n              434.222900390625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            387.10546875,\n            482.607421875,\n            434.222900390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is a function that takes a value and returns the first key that maps to that value:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              444.7265625\n            ],\n            [\n              458.3935852050781,\n              444.7265625\n            ],\n            [\n              458.3935852050781,\n              455.4169006347656\n            ],\n            [\n              85.3154296875,\n              455.4169006347656\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            444.7265625,\n            458.3935852050781,\n            455.4169006347656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def reverse_lookup(d, v):\\n    for k in d:\\n        if d[k] == v:\\n            return k\\n    raise ValueError</pre>\",\n          \"polygon\": [\n            [\n              84.4189453125,\n              462.5277404785156\n            ],\n            [\n              218.7421875,\n              462.5277404785156\n            ],\n            [\n              218.7421875,\n              521.2683410644531\n            ],\n            [\n              84.4189453125,\n              521.2683410644531\n            ]\n          ],\n          \"bbox\": [\n            84.4189453125,\n            462.5277404785156,\n            218.7421875,\n            521.2683410644531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This function is yet another example of the search pattern, but it uses a feature we haven't seen before, raise. The raise statement causes an exception; in this case it causes a ValueError, which generally indicates that there is something wrong with the value of a parameter.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              528.2578125\n            ],\n            [\n              483.205078125,\n              528.2578125\n            ],\n            [\n              483.205078125,\n              575.2229309082031\n            ],\n            [\n              85.46484375,\n              575.2229309082031\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            528.2578125,\n            483.205078125,\n            575.2229309082031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If we get to the end of the loop, that means v doesn't appear in the dictionary as a value, so we raise an exception.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              586.265625\n            ],\n            [\n              482.90625,\n              586.265625\n            ],\n            [\n              482.90625,\n              608.6119384765625\n            ],\n            [\n              85.3154296875,\n              608.6119384765625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            586.265625,\n            482.90625,\n            608.6119384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is an example of a successful reverse lookup:</p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              618.75\n            ],\n            [\n              307.494140625,\n              618.75\n            ],\n            [\n              307.494140625,\n              629.8069458007812\n            ],\n            [\n              85.39013671875,\n              629.8069458007812\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            618.75,\n            307.494140625,\n            629.8069458007812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; h = histogram('parrot')\\n&gt;&gt;&gt; k = reverse_lookup(h, 2)\\n&gt;&gt;&gt; print k\\nr</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              636.9167938232422\n            ],\n            [\n              232.86021423339844,\n              636.9167938232422\n            ],\n            [\n              232.86021423339844,\n              683.4623947143555\n            ],\n            [\n              85.6142578125,\n              683.4623947143555\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            636.9167938232422,\n            232.86021423339844,\n            683.4623947143555\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And an unsuccessful one:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              690.6796875\n            ],\n            [\n              199.318359375,\n              690.6796875\n            ],\n            [\n              199.318359375,\n              700.8349609375\n            ],\n            [\n              85.9130859375,\n              700.8349609375\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            690.6796875,\n            199.318359375,\n            700.8349609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/125/Text/188\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p>104</p>\\n\",\n          \"polygon\": [\n            [\n              84.8671875,\n              60.134765625\n            ],\n            [\n              100.5556640625,\n              60.134765625\n            ],\n            [\n              100.5556640625,\n              69.029296875\n            ],\n            [\n              84.8671875,\n              69.029296875\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            60.134765625,\n            100.5556640625,\n            69.029296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\",\n        \"4\": \"/page/125/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/126/Page/195\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/126/PageHeader/0'></content-ref><content-ref src='/page/126/PageHeader/14'></content-ref><content-ref src='/page/126/Code/1'></content-ref><content-ref src='/page/126/Text/2'></content-ref><content-ref src='/page/126/Text/3'></content-ref><content-ref src='/page/126/Text/4'></content-ref><content-ref src='/page/126/Text/5'></content-ref><content-ref src='/page/126/Text/6'></content-ref><content-ref src='/page/126/SectionHeader/7'></content-ref><content-ref src='/page/126/Text/8'></content-ref><content-ref src='/page/126/Text/9'></content-ref><content-ref src='/page/126/Code/10'></content-ref><content-ref src='/page/126/Text/11'></content-ref><content-ref src='/page/126/Text/12'></content-ref><content-ref src='/page/126/Code/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/126/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.197265625,\n              60.908203125\n            ],\n            [\n              525.6033935546875,\n              60.908203125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.197265625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            60.908203125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.697265625,\n              60.66650390625\n            ],\n            [\n              526.236328125,\n              60.66650390625\n            ],\n            [\n              526.236328125,\n              69.65771484375\n            ],\n            [\n              510.697265625,\n              69.65771484375\n            ]\n          ],\n          \"bbox\": [\n            510.697265625,\n            60.66650390625,\n            526.236328125,\n            69.65771484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; k = reverse_lookup(h, 3)\\nTraceback (most recent call last):\\n  File \\\"&lt;stdin&gt;\\\", line 1, in ?\\n  File \\\"&lt;stdin&gt;\\\", line 5, in reverse_lookup\\nValueError</pre>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              88.0751953125\n            ],\n            [\n              354.5129089355469,\n              88.0751953125\n            ],\n            [\n              354.5129089355469,\n              147.42529296875\n            ],\n            [\n              128.57080078125,\n              147.42529296875\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            88.0751953125,\n            354.5129089355469,\n            147.42529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The result when you raise an exception is the same as when Python raises one: it prints a traceback and an error message.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              154.30078125\n            ],\n            [\n              525.6033935546875,\n              154.30078125\n            ],\n            [\n              525.6033935546875,\n              176.89093017578125\n            ],\n            [\n              129.2431640625,\n              176.89093017578125\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            154.30078125,\n            525.6033935546875,\n            176.89093017578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The raise statement takes a detailed error message as an optional argument. For example:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              187.6552734375\n            ],\n            [\n              525.595458984375,\n              187.6552734375\n            ],\n            [\n              525.595458984375,\n              197.98394775390625\n            ],\n            [\n              129.09375,\n              197.98394775390625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            187.6552734375,\n            525.595458984375,\n            197.98394775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; raise ValueError('value does not appear in the dictionary') Traceback (most recent call last): File \\\"&lt;stdin&gt;\\\", line 1, in ? ValueError: value does not appear in the dictionary</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              204.99273681640625\n            ],\n            [\n              460.1953125,\n              204.99273681640625\n            ],\n            [\n              460.1953125,\n              251.538330078125\n            ],\n            [\n              128.0478515625,\n              251.538330078125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            204.99273681640625,\n            460.1953125,\n            251.538330078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A reverse lookup is much slower than a forward lookup; if you have to do it often, or if the dictionary gets big, the performance of your program will suffer.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              258.328125\n            ],\n            [\n              525.9375,\n              258.328125\n            ],\n            [\n              525.9375,\n              281.0039367675781\n            ],\n            [\n              129.09375,\n              281.0039367675781\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            258.328125,\n            525.9375,\n            281.0039367675781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 11.4.</b> <i>Modify</i> reverse_lookup <i>so that it builds and returns a list of</i> all <i>keys that map to</i> v<i>, or an empty list if there are none.</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              283.0626525878906\n            ],\n            [\n              525.638671875,\n              283.0626525878906\n            ],\n            [\n              525.638671875,\n              305.2433776855469\n            ],\n            [\n              128.794921875,\n              305.2433776855469\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            283.0626525878906,\n            525.638671875,\n            305.2433776855469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/125/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-126-0\\\"></span><b>11.4 Dictionaries and lists</b></h4>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              337.6007995605469\n            ],\n            [\n              308.4684143066406,\n              337.6007995605469\n            ],\n            [\n              308.4684143066406,\n              351.947021484375\n            ],\n            [\n              127.4501953125,\n              351.947021484375\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            337.6007995605469,\n            308.4684143066406,\n            351.947021484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Lists can appear as values in a dictionary. For example, if you were given a dictionary that maps from letters to frequencies, you might want to invert it; that is, create a dictionary that maps from frequencies to letters. Since there might be several letters with the same frequency, each value in the inverted dictionary should be a list of letters.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              365.255859375\n            ],\n            [\n              525.6033935546875,\n              365.255859375\n            ],\n            [\n              525.6033935546875,\n              412.17596435546875\n            ],\n            [\n              128.197265625,\n              412.17596435546875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            365.255859375,\n            525.6033935546875,\n            412.17596435546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is a function that inverts a dictionary:</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              423.0703125\n            ],\n            [\n              318.16204833984375,\n              423.0703125\n            ],\n            [\n              318.16204833984375,\n              433.2689514160156\n            ],\n            [\n              128.0478515625,\n              433.2689514160156\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            423.0703125,\n            318.16204833984375,\n            433.2689514160156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def invert_dict(d):\\n    inverse = dict()\\n    for key in d:\\n        val = d[key]\\n        if val not in inverse:\\n            inverse[val] = [key]\\n        else:\\n            inverse[val].append(key)\\n    return inverse</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              440.2778015136719\n            ],\n            [\n              317.8876953125,\n              440.2778015136719\n            ],\n            [\n              317.8876953125,\n              547.7954254150391\n            ],\n            [\n              129.5999755859375,\n              547.7954254150391\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            440.2778015136719,\n            317.8876953125,\n            547.7954254150391\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Each time through the loop, key gets a key from d and val gets the corresponding value. If val is not in inverse, that means we haven't seen it before, so we create a new item and initialize it with a <b>singleton</b> (a list that contains a single element). Otherwise we have seen this value before, so we append the corresponding key to the list.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              554.94140625\n            ],\n            [\n              525.9375,\n              554.94140625\n            ],\n            [\n              525.9375,\n              601.6489868164062\n            ],\n            [\n              128.0478515625,\n              601.6489868164062\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            554.94140625,\n            525.9375,\n            601.6489868164062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is an example:</p>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              612.7793884277344\n            ],\n            [\n              216.40408325195312,\n              612.7793884277344\n            ],\n            [\n              216.40408325195312,\n              622.7419891357422\n            ],\n            [\n              128.72021484375,\n              622.7419891357422\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            612.7793884277344,\n            216.40408325195312,\n            622.7419891357422\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/126/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; hist = histogram('parrot')\\n&gt;&gt;&gt; print hist\\n{'a': 1, 'p': 1, 'r': 2, 't': 1, 'o': 1}\\n&gt;&gt;&gt; inverse = invert_dict(hist)\\n&gt;&gt;&gt; print inverse\\n{1: ['a', 'p', 't', 'o'], 2: ['r']}</pre>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              629.578125\n            ],\n            [\n              340.06640625,\n              629.578125\n            ],\n            [\n              340.06640625,\n              700.6854248046875\n            ],\n            [\n              128.3466796875,\n              700.6854248046875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            629.578125,\n            340.06640625,\n            700.6854248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\",\n        \"4\": \"/page/126/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/127/Page/244\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/127/PageHeader/0'></content-ref><content-ref src='/page/127/PageHeader/14'></content-ref><content-ref src='/page/127/FigureGroup/242'></content-ref><content-ref src='/page/127/Text/3'></content-ref><content-ref src='/page/127/Text/4'></content-ref><content-ref src='/page/127/Code/241'></content-ref><content-ref src='/page/127/Text/6'></content-ref><content-ref src='/page/127/Text/7'></content-ref><content-ref src='/page/127/Text/8'></content-ref><content-ref src='/page/127/Text/9'></content-ref><content-ref src='/page/127/Text/10'></content-ref><content-ref src='/page/127/Text/11'></content-ref><content-ref src='/page/127/SectionHeader/12'></content-ref><content-ref src='/page/127/Text/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/127/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.66650390625\n            ],\n            [\n              482.90625,\n              60.66650390625\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.66650390625,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              60.85986328125\n            ],\n            [\n              101.37744140625,\n              60.85986328125\n            ],\n            [\n              101.37744140625,\n              70.33447265625\n            ],\n            [\n              85.24072265625,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            60.85986328125,\n            101.37744140625,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/FigureGroup/242\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/127/Figure/1'></content-ref><content-ref src='/page/127/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              156.7353515625,\n              83.48291015625\n            ],\n            [\n              412.3828125,\n              83.48291015625\n            ],\n            [\n              412.3828125,\n              219.55291748046875\n            ],\n            [\n              156.7353515625,\n              219.55291748046875\n            ]\n          ],\n          \"bbox\": [\n            156.7353515625,\n            83.48291015625,\n            412.3828125,\n            219.55291748046875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/127/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  156.7353515625,\n                  83.48291015625\n                ],\n                [\n                  412.3828125,\n                  83.48291015625\n                ],\n                [\n                  412.3828125,\n                  195.099609375\n                ],\n                [\n                  156.7353515625,\n                  195.099609375\n                ]\n              ],\n              \"bbox\": [\n                156.7353515625,\n                83.48291015625,\n                412.3828125,\n                195.099609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/122/SectionHeader/1\",\n                \"4\": \"/page/126/SectionHeader/7\"\n              },\n              \"images\": {\n                \"/page/127/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/127/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-127-1\\\"></span>Figure 11.1: State diagram.</p>\",\n              \"polygon\": [\n                [\n                  225.55101013183594,\n                  208.828125\n                ],\n                [\n                  343.353515625,\n                  208.828125\n                ],\n                [\n                  343.353515625,\n                  219.55291748046875\n                ],\n                [\n                  225.55101013183594,\n                  219.55291748046875\n                ]\n              ],\n              \"bbox\": [\n                225.55101013183594,\n                208.828125,\n                343.353515625,\n                219.55291748046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/122/SectionHeader/1\",\n                \"4\": \"/page/126/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/127/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-127-1\\\">11.1</a> is a state diagram showing hist and inverse. A dictionary is represented as a box with the type dict above it and the key-value pairs inside. If the values are integers, floats or strings, I usually draw them inside the box, but I usually draw lists outside the box, just to keep the diagram simple.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              238.9921875\n            ],\n            [\n              483.205078125,\n              238.9921875\n            ],\n            [\n              483.205078125,\n              286.171875\n            ],\n            [\n              85.166015625,\n              286.171875\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            238.9921875,\n            483.205078125,\n            286.171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Lists can be values in a dictionary, as this example shows, but they cannot be keys. Here's what happens if you try:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              293.326171875\n            ],\n            [\n              482.90625,\n              293.326171875\n            ],\n            [\n              482.90625,\n              316.60791015625\n            ],\n            [\n              85.6142578125,\n              316.60791015625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            293.326171875,\n            482.90625,\n            316.60791015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/Code/241\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = [1, 2, 3]\\n&gt;&gt;&gt; d = dict()\\n&gt;&gt;&gt; d[t] = 'oops'\\nTraceback (most recent call last):\\n  File \\\"&lt;stdin&gt;\\\", line 1, in ?\\nTypeError: list objects are unhashable</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              319.81640625\n            ],\n            [\n              285.163818359375,\n              319.81640625\n            ],\n            [\n              285.163818359375,\n              391.9113464355469\n            ],\n            [\n              85.763671875,\n              391.9113464355469\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            319.81640625,\n            285.163818359375,\n            391.9113464355469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I mentioned earlier that a dictionary is implemented using a hashtable and that means that the keys have to be <b>hashable</b>.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              394.646484375\n            ],\n            [\n              482.4032897949219,\n              394.646484375\n            ],\n            [\n              482.4032897949219,\n              418.7369079589844\n            ],\n            [\n              85.46484375,\n              418.7369079589844\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            394.646484375,\n            482.4032897949219,\n            418.7369079589844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>hash</b> is a function that takes a value (of any kind) and returns an integer. Dictionaries use these integers, called hash values, to store and look up key-value pairs.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              425.77734375\n            ],\n            [\n              482.4045715332031,\n              425.77734375\n            ],\n            [\n              482.4045715332031,\n              449.3849182128906\n            ],\n            [\n              85.763671875,\n              449.3849182128906\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            425.77734375,\n            482.4045715332031,\n            449.3849182128906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This system works fine if the keys are immutable. But if the keys are mutable, like lists, bad things happen. For example, when you create a key-value pair, Python hashes the key and stores it in the corresponding location. If you modify the key and then hash it again, it would go to a different location. In that case you might have two entries for the same key, or you might not be able to find a key. Either way, the dictionary wouldn't work correctly.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              456.71484375\n            ],\n            [\n              482.90625,\n              456.71484375\n            ],\n            [\n              482.90625,\n              516.6149291992188\n            ],\n            [\n              85.6142578125,\n              516.6149291992188\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            456.71484375,\n            482.90625,\n            516.6149291992188\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">That's why the keys have to be hashable, and why mutable types like lists aren't. The simplest way to get around this limitation is to use tuples, which we will see in the next chapter.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              524.77734375\n            ],\n            [\n              482.4034423828125,\n              524.77734375\n            ],\n            [\n              482.4034423828125,\n              559.4569396972656\n            ],\n            [\n              85.9130859375,\n              559.4569396972656\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            524.77734375,\n            482.4034423828125,\n            559.4569396972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since lists and dictionaries are mutable, they can't be used as keys, but they <i>can</i> be used as values.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              566.9296875\n            ],\n            [\n              482.607421875,\n              566.9296875\n            ],\n            [\n              482.607421875,\n              590.1039428710938\n            ],\n            [\n              86.0625,\n              590.1039428710938\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            566.9296875,\n            482.607421875,\n            590.1039428710938\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 11.5.</b> <i>Read the documentation of the dictionary method</i> setdefault <i>and use it to write a</i> <i>more concise version of</i> invert_dict<i>. Solution:</i> <a href=\\\"http://thinkpython.com/code/invert_dict.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/invert_dict.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/invert_dict.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/invert_dict.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/invert_dict.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/invert_dict.py\\\">invert_</a> <a href=\\\"http://thinkpython.com/code/invert_dict.py\\\">dict.</a> <a href=\\\"http://thinkpython.com/code/invert_dict.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              591.29296875\n            ],\n            [\n              482.40380859375,\n              591.29296875\n            ],\n            [\n              482.40380859375,\n              626.87109375\n            ],\n            [\n              86.2119140625,\n              626.87109375\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            591.29296875,\n            482.40380859375,\n            626.87109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/126/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-127-0\\\"></span><b>11.5 Memos</b></h4>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              653.16796875\n            ],\n            [\n              174.4713134765625,\n              653.16796875\n            ],\n            [\n              174.4713134765625,\n              668.0169982910156\n            ],\n            [\n              85.9130859375,\n              668.0169982910156\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            653.16796875,\n            174.4713134765625,\n            668.0169982910156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/127/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you played with the fibonacci function from Section <a href=\\\"#page-78-1\\\">6.7,</a> you might have noticed that the bigger the argument you provide, the longer the function takes to run. Furthermore,</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              677.91796875\n            ],\n            [\n              482.90625,\n              677.91796875\n            ],\n            [\n              482.90625,\n              700.8349533081055\n            ],\n            [\n              86.2119140625,\n              700.8349533081055\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            677.91796875,\n            482.90625,\n            700.8349533081055\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\",\n        \"4\": \"/page/127/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/128/Page/254\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/128/PageHeader/0'></content-ref><content-ref src='/page/128/PageHeader/13'></content-ref><content-ref src='/page/128/FigureGroup/253'></content-ref><content-ref src='/page/128/Text/3'></content-ref><content-ref src='/page/128/Text/4'></content-ref><content-ref src='/page/128/Text/5'></content-ref><content-ref src='/page/128/Text/6'></content-ref><content-ref src='/page/128/Text/7'></content-ref><content-ref src='/page/128/Code/8'></content-ref><content-ref src='/page/128/Text/9'></content-ref><content-ref src='/page/128/Text/10'></content-ref><content-ref src='/page/128/Text/11'></content-ref><content-ref src='/page/128/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/128/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.3466796875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/128/PageHeader/13\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.697265625,\n              60.8115234375\n            ],\n            [\n              525.638671875,\n              60.8115234375\n            ],\n            [\n              525.638671875,\n              70.189453125\n            ],\n            [\n              510.697265625,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            510.697265625,\n            60.8115234375,\n            525.638671875,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/128/FigureGroup/253\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/128/Figure/1'></content-ref><content-ref src='/page/128/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              214.1103515625,\n              83.0478515625\n            ],\n            [\n              438.08203125,\n              83.0478515625\n            ],\n            [\n              438.08203125,\n              263.3519287109375\n            ],\n            [\n              214.1103515625,\n              263.3519287109375\n            ]\n          ],\n          \"bbox\": [\n            214.1103515625,\n            83.0478515625,\n            438.08203125,\n            263.3519287109375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/128/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  214.1103515625,\n                  83.0478515625\n                ],\n                [\n                  438.08203125,\n                  83.0478515625\n                ],\n                [\n                  438.08203125,\n                  240.5390625\n                ],\n                [\n                  214.1103515625,\n                  240.5390625\n                ]\n              ],\n              \"bbox\": [\n                214.1103515625,\n                83.0478515625,\n                438.08203125,\n                240.5390625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/122/SectionHeader/1\",\n                \"4\": \"/page/127/SectionHeader/12\"\n              },\n              \"images\": {\n                \"/page/128/Figure/1\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAGkAlUDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD3+iiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKK5vxVd6jFd6LZ6ffGyN3cuksixI52rE74AYEdVFAHSUVyH2LxB/0NVz/wCAcH/xFH2LxB/0NVz/AOAcH/xFAHX0VyH2LxB/0NVz/wCAcH/xFH2LxB/0NVz/AOAcH/xFAHX0VyH2LxB/0NVz/wCAcH/xFH2LxB/0NVz/AOAcH/xFAHX0VyH2LxB/0NVz/wCAcH/xFH2LxB/0NVz/AOAcH/xFAHX0VyH2LxB/0NVz/wCAcH/xFH2LxB/0NVz/AOAcH/xFAHX0VyH2LxB/0NVz/wCAcH/xFH2LxB/0NVz/AOAcH/xFAHX0Vz/hG8vruxvk1C7+1TW19LAspjVCyjGMhQB3roKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACuY8Uf8AId8M/wDX3N/6TyV09cx4o/5Dvhn/AK+5v/SeSgC9RRXmUhur/wCM0/2zR/OhsrFTAzXQxCpLfvQvq3THUUAem0V43/bFvaP4BvdH0i4aNlvEtrBZtzFicYLt2zkknoK7nSPGFxNrcmja9o7aPfCA3EQ+0LNHLGPvEOAOR3GKAOrorgf+FiahJp8mt2/ha4m8PRkk3v2pBI0YODIIsZK/jWjqfjf7Pq9hpml6XJqc+oWf2q2KShFIz/ESPlGOc/higDraK5PTPGrzxa0mqaRNY32kKHntopBPvVlJUoQBnOOmKqR+ONXt59Nk1jwtJYafqEyQRTi8WR0Z/u74woIz9TigDt6K5LUPF+oHWbzTfD+gPqz2IH2uQ3SwIjEZCKSDubHbioW+IMM+kaZPp2mXF3qWpO8cGnswjZWT7+9jwoXHWgDs6K4DUvFi3vh/xFp/iLQJrW4s7Pzp7RbkMs8R7pKoH06cV2umtG+l2jRIUjMKFEJztG0YGe9ADfBv+p1n/sKTfyWulrmvBv8AqdZ/7Ck38lrpaACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACuY8Uf8h3wz/19zf8ApPJXT1zHij/kO+Gf+vub/wBJ5KAL1cfFZXQ+J2q3ZtphbPpMcaTeWdjMHbKhuhPtXYUUAeNWUGraJYeBL59D1GdbAXZu4o7di8SsxGSMdcHIHU9q3S0njvxfFe2Vnd2+mWNhcQfarmBovNllXbhQ2CQByTXpFFAHlFpr9zp3gE+EZdD1NtejtmsUgS1YxyZBUSCTG3bg5zmtfRtCvdK8ZeHYpIJXis9BNtJcBCYxIGX5d3TP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\"\n              }\n            },\n            {\n              \"id\": \"/page/128/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-128-0\\\"></span>Figure 11.2: Call graph.</p>\",\n              \"polygon\": [\n                [\n                  275.51953125,\n                  252.52734375\n                ],\n                [\n                  379.14202880859375,\n                  252.52734375\n                ],\n                [\n                  379.14202880859375,\n                  263.3519287109375\n                ],\n                [\n                  275.51953125,\n                  263.3519287109375\n                ]\n              ],\n              \"bbox\": [\n                275.51953125,\n                252.52734375,\n                379.14202880859375,\n                263.3519287109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/122/SectionHeader/1\",\n                \"4\": \"/page/127/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/128/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">the run time increases very quickly.</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              285.591796875\n            ],\n            [\n              285.2457275390625,\n              285.591796875\n            ],\n            [\n              285.2457275390625,\n              296.1878967285156\n            ],\n            [\n              128.57080078125,\n              296.1878967285156\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            285.591796875,\n            285.2457275390625,\n            296.1878967285156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/128/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To understand why, consider Figure <a href=\\\"#page-128-0\\\">11.2,</a> which shows the <b>call graph</b> for fibonacci with n=4:</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              306.087890625\n            ],\n            [\n              525.5999145507812,\n              306.087890625\n            ],\n            [\n              525.5999145507812,\n              328.6828918457031\n            ],\n            [\n              127.7490234375,\n              328.6828918457031\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            306.087890625,\n            525.5999145507812,\n            328.6828918457031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/128/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A call graph shows a set of function frames, with lines connecting each frame to the frames of the functions it calls. At the top of the graph, fibonacci with n=4 calls fibonacci with n=3 and n=2. In turn, fibonacci with n=3 calls fibonacci with n=2 and n=1. And so on.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              338.958984375\n            ],\n            [\n              525.9375,\n              338.958984375\n            ],\n            [\n              525.9375,\n              373.37188720703125\n            ],\n            [\n              128.6455078125,\n              373.37188720703125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            338.958984375,\n            525.9375,\n            373.37188720703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/128/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Count how many times fibonacci(0) and fibonacci(1) are called. This is an inefficient solution to the problem, and it gets worse as the argument gets bigger.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              383.5597229003906\n            ],\n            [\n              526.236328125,\n              383.5597229003906\n            ],\n            [\n              526.236328125,\n              405.8658752441406\n            ],\n            [\n              128.197265625,\n              405.8658752441406\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            383.5597229003906,\n            526.236328125,\n            405.8658752441406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/128/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One solution is to keep track of values that have already been computed by storing them in a dictionary. A previously computed value that is stored for later use is called a <b>memo</b>. Here is a \\\"memoized\\\" version of fibonacci:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              415.72265625\n            ],\n            [\n              525.9375,\n              415.72265625\n            ],\n            [\n              525.9375,\n              450.55487060546875\n            ],\n            [\n              128.49609375,\n              450.55487060546875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            415.72265625,\n            525.9375,\n            450.55487060546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/128/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>known = {0:0, 1:1}\\ndef fibonacci(n):\\n    if n in known:\\n        return known[n]\\n    res = fibonacci(n-1) + fibonacci(n-2)\\n    known[n] = res\\n    return res</pre>\",\n          \"polygon\": [\n            [\n              127.52490234375,\n              456.771728515625\n            ],\n            [\n              344.548828125,\n              456.771728515625\n            ],\n            [\n              344.548828125,\n              564.2883453369141\n            ],\n            [\n              127.52490234375,\n              564.2883453369141\n            ]\n          ],\n          \"bbox\": [\n            127.52490234375,\n            456.771728515625,\n            344.548828125,\n            564.2883453369141\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/128/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">known is a dictionary that keeps track of the Fibonacci numbers we already know. It starts with two items: 0 maps to 0 and 1 maps to 1.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              570.6547393798828\n            ],\n            [\n              525.9375,\n              570.6547393798828\n            ],\n            [\n              525.9375,\n              592.9608917236328\n            ],\n            [\n              128.0478515625,\n              592.9608917236328\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            570.6547393798828,\n            525.9375,\n            592.9608917236328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/128/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Whenever fibonacci is called, it checks known. If the result is already there, it can return immediately. Otherwise it has to compute the new value, add it to the dictionary, and return it.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              603.1497344970703\n            ],\n            [\n              525.6033935546875,\n              603.1497344970703\n            ],\n            [\n              525.6033935546875,\n              637.6498870849609\n            ],\n            [\n              128.3466796875,\n              637.6498870849609\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            603.1497344970703,\n            525.6033935546875,\n            637.6498870849609\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/128/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 11.6.</b> <i>Run this version of</i> fibonacci <i>and the original with a range of parameters and</i> <i>compare their run times.</i></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              639.6328125\n            ],\n            [\n              525.6038208007812,\n              639.6328125\n            ],\n            [\n              525.6038208007812,\n              661.8661956787109\n            ],\n            [\n              128.49609375,\n              661.8661956787109\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            639.6328125,\n            525.6038208007812,\n            661.8661956787109\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/128/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 11.7.</b> <i>Memoize the Ackermann function from Exercise </i><i><a href=\\\"#page-82-1\\\">6.5</a></i><i> and see if memoization</i> <i>makes it possible to evaluate the function with bigger arguments. Hint: no. Solution:</i> <a href=\\\"http://thinkpython.com/code/ackermann_memo.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/ackermann_memo.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/ackermann_memo.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/ackermann_memo.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/ackermann_memo.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/ackermann_memo.py\\\">ackermann_</a> <a href=\\\"http://thinkpython.com/code/ackermann_memo.py\\\">memo.</a> <a href=\\\"http://thinkpython.com/code/ackermann_memo.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              663.99609375\n            ],\n            [\n              525.6021728515625,\n              663.99609375\n            ],\n            [\n              525.6021728515625,\n              698.4492034912109\n            ],\n            [\n              128.794921875,\n              698.4492034912109\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            663.99609375,\n            525.6021728515625,\n            698.4492034912109\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\",\n        \"4\": \"/page/127/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/129/Page/197\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/129/PageHeader/0'></content-ref><content-ref src='/page/129/PageHeader/18'></content-ref><content-ref src='/page/129/SectionHeader/1'></content-ref><content-ref src='/page/129/Text/2'></content-ref><content-ref src='/page/129/Text/3'></content-ref><content-ref src='/page/129/Code/4'></content-ref><content-ref src='/page/129/Text/5'></content-ref><content-ref src='/page/129/Code/6'></content-ref><content-ref src='/page/129/Text/7'></content-ref><content-ref src='/page/129/Text/8'></content-ref><content-ref src='/page/129/Code/9'></content-ref><content-ref src='/page/129/Text/10'></content-ref><content-ref src='/page/129/Text/11'></content-ref><content-ref src='/page/129/Code/12'></content-ref><content-ref src='/page/129/Code/13'></content-ref><content-ref src='/page/129/Text/14'></content-ref><content-ref src='/page/129/Text/15'></content-ref><content-ref src='/page/129/Code/16'></content-ref><content-ref src='/page/129/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/129/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.134765625\n            ],\n            [\n              482.90625,\n              60.134765625\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.134765625,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.763671875,\n              60.0380859375\n            ],\n            [\n              101.900390625,\n              60.0380859375\n            ],\n            [\n              101.900390625,\n              69.99609375\n            ],\n            [\n              85.763671875,\n              69.99609375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            60.0380859375,\n            101.900390625,\n            69.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/127/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-129-0\\\"></span><b>11.6 Global variables</b></h4>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              85.60986328125\n            ],\n            [\n              234.62493896484375,\n              85.60986328125\n            ],\n            [\n              234.62493896484375,\n              100.29998779296875\n            ],\n            [\n              85.46484375,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            85.60986328125,\n            234.62493896484375,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In the previous example, known is created outside the function, so it belongs to the special frame called __main__. Variables in __main__ are sometimes called <b>global</b> because they can be accessed from any function. Unlike local variables, which disappear when their function ends, global variables persist from one function call to the next.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              111.375\n            ],\n            [\n              483.50390625,\n              111.375\n            ],\n            [\n              483.50390625,\n              158.8529052734375\n            ],\n            [\n              85.166015625,\n              158.8529052734375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            111.375,\n            483.50390625,\n            158.8529052734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is common to use global variables for <b>flags</b>; that is, boolean variables that indicate (\\\"flag\\\") whether a condition is true. For example, some programs use a flag named verbose to control the level of detail in the output:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              166.7724609375\n            ],\n            [\n              483.802734375,\n              166.7724609375\n            ],\n            [\n              483.802734375,\n              203.0399169921875\n            ],\n            [\n              85.46484375,\n              203.0399169921875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            166.7724609375,\n            483.802734375,\n            203.0399169921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>verbose = True\\ndef example1():\\n    if verbose:\\n        print 'Running example1'</pre>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              208.7547607421875\n            ],\n            [\n              254.302734375,\n              208.7547607421875\n            ],\n            [\n              254.302734375,\n              267.494384765625\n            ],\n            [\n              85.83837890625,\n              267.494384765625\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            208.7547607421875,\n            254.302734375,\n            267.494384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you try to reassign a global variable, you might be surprised. The following example is supposed to keep track of whether the function has been called:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              271.86328125\n            ],\n            [\n              482.90625,\n              271.86328125\n            ],\n            [\n              482.90625,\n              295.6649475097656\n            ],\n            [\n              85.763671875,\n              295.6649475097656\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            271.86328125,\n            482.90625,\n            295.6649475097656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>been_called = False\\ndef example2():\\n   been_called = True # WRONG</pre>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              301.3797912597656\n            ],\n            [\n              285.1484680175781,\n              301.3797912597656\n            ],\n            [\n              285.1484680175781,\n              347.9253845214844\n            ],\n            [\n              85.53955078125,\n              347.9253845214844\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            301.3797912597656,\n            285.1484680175781,\n            347.9253845214844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But if you run it you will see that the value of been_called doesn't change. The problem is that example2 creates a new local variable named been_called. The local variable goes away when the function ends, and has no effect on the global variable.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              352.107421875\n            ],\n            [\n              483.50390625,\n              352.107421875\n            ],\n            [\n              483.50390625,\n              388.29095458984375\n            ],\n            [\n              85.763671875,\n              388.29095458984375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            352.107421875,\n            483.50390625,\n            388.29095458984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To reassign a global variable inside a function you have to <b>declare</b> the global variable before you use it:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              396.38671875\n            ],\n            [\n              482.607421875,\n              396.38671875\n            ],\n            [\n              482.607421875,\n              420.2839660644531\n            ],\n            [\n              86.0625,\n              420.2839660644531\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            396.38671875,\n            482.607421875,\n            420.2839660644531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>been_called = False\\ndef example2():\\n    global been_called\\n    been_called = True</pre>\",\n          \"polygon\": [\n            [\n              86.40008544921875,\n              425.9988098144531\n            ],\n            [\n              223.822265625,\n              425.9988098144531\n            ],\n            [\n              223.822265625,\n              484.7384033203125\n            ],\n            [\n              86.40008544921875,\n              484.7384033203125\n            ]\n          ],\n          \"bbox\": [\n            86.40008544921875,\n            425.9988098144531,\n            223.822265625,\n            484.7384033203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The global statement tells the interpreter something like, \\\"In this function, when I say been_called, I mean the global variable; don't create a local one.\\\"</p>\",\n          \"polygon\": [\n            [\n              86.40008544921875,\n              489.5859375\n            ],\n            [\n              483.205078125,\n              489.5859375\n            ],\n            [\n              483.205078125,\n              512.9089660644531\n            ],\n            [\n              86.40008544921875,\n              512.9089660644531\n            ]\n          ],\n          \"bbox\": [\n            86.40008544921875,\n            489.5859375,\n            483.205078125,\n            512.9089660644531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's an example that tries to update a global variable:</p>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              521.68359375\n            ],\n            [\n              332.296875,\n              521.68359375\n            ],\n            [\n              332.296875,\n              532.7079772949219\n            ],\n            [\n              86.13720703125,\n              532.7079772949219\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            521.68359375,\n            332.296875,\n            532.7079772949219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>count = 0\\ndef example3():\\n   count = count + 1 # WRONG</pre>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              536.765625\n            ],\n            [\n              290.162109375,\n              536.765625\n            ],\n            [\n              290.162109375,\n              587.8125\n            ],\n            [\n              86.361328125,\n              587.8125\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            536.765625,\n            290.162109375,\n            587.8125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>If you run it you get:</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              590.9823760986328\n            ],\n            [\n              177.35862731933594,\n              590.9823760986328\n            ],\n            [\n              177.35862731933594,\n              601.734375\n            ],\n            [\n              85.763671875,\n              601.734375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            590.9823760986328,\n            177.35862731933594,\n            601.734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">UnboundLocalError: local variable 'count' referenced before assignment</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              606.375\n            ],\n            [\n              452.4832458496094,\n              606.375\n            ],\n            [\n              452.4832458496094,\n              617.203125\n            ],\n            [\n              85.166015625,\n              617.203125\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            606.375,\n            452.4832458496094,\n            617.203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python assumes that count is local, which means that you are reading it before writing it. The solution, again, is to declare count global.</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              621.0703125\n            ],\n            [\n              482.90625,\n              621.0703125\n            ],\n            [\n              482.90625,\n              644.79296875\n            ],\n            [\n              85.0166015625,\n              644.79296875\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            621.0703125,\n            482.90625,\n            644.79296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def example3():\\n    global count\\n    count += 1</pre>\",\n          \"polygon\": [\n            [\n              86.40007019042969,\n              650.5078125\n            ],\n            [\n              173.1708984375,\n              650.5078125\n            ],\n            [\n              173.1708984375,\n              685.65234375\n            ],\n            [\n              86.40007019042969,\n              685.65234375\n            ]\n          ],\n          \"bbox\": [\n            86.40007019042969,\n            650.5078125,\n            173.1708984375,\n            685.65234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/129/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the global value is mutable, you can modify it without declaring it:</p>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              689.90625\n            ],\n            [\n              389.671875,\n              689.90625\n            ],\n            [\n              389.671875,\n              700.8349761962891\n            ],\n            [\n              86.13720703125,\n              700.8349761962891\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            689.90625,\n            389.671875,\n            700.8349761962891\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\",\n        \"4\": \"/page/129/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/130/Page/195\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/130/PageHeader/0'></content-ref><content-ref src='/page/130/PageHeader/18'></content-ref><content-ref src='/page/130/Code/1'></content-ref><content-ref src='/page/130/Text/2'></content-ref><content-ref src='/page/130/Code/3'></content-ref><content-ref src='/page/130/SectionHeader/4'></content-ref><content-ref src='/page/130/Text/5'></content-ref><content-ref src='/page/130/Code/6'></content-ref><content-ref src='/page/130/Text/7'></content-ref><content-ref src='/page/130/Text/8'></content-ref><content-ref src='/page/130/Text/9'></content-ref><content-ref src='/page/130/Text/10'></content-ref><content-ref src='/page/130/Code/11'></content-ref><content-ref src='/page/130/Text/12'></content-ref><content-ref src='/page/130/Text/13'></content-ref><content-ref src='/page/130/SectionHeader/14'></content-ref><content-ref src='/page/130/Text/15'></content-ref><content-ref src='/page/130/ListItem/16'></content-ref><content-ref src='/page/130/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/130/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              60.8115234375\n            ],\n            [\n              525.6033935546875,\n              60.8115234375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.27197265625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            60.8115234375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.99609375,\n              60.8115234375\n            ],\n            [\n              525.9375,\n              60.8115234375\n            ],\n            [\n              525.9375,\n              70.189453125\n            ],\n            [\n              510.99609375,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            510.99609375,\n            60.8115234375,\n            525.9375,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>known = {0:0, 1:1}\\ndef example4():\\n    known[2] = 1</pre>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              88.68572998046875\n            ],\n            [\n              223.74656677246094,\n              88.68572998046875\n            ],\n            [\n              223.74656677246094,\n              135.2313232421875\n            ],\n            [\n              127.8984375,\n              135.2313232421875\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            88.68572998046875,\n            223.74656677246094,\n            135.2313232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So you can add, remove and replace elements of a global list or dictionary, but if you want to reassign the variable, you have to declare it:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              140.958984375\n            ],\n            [\n              525.638671875,\n              140.958984375\n            ],\n            [\n              525.638671875,\n              163.93792724609375\n            ],\n            [\n              128.794921875,\n              163.93792724609375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            140.958984375,\n            525.638671875,\n            163.93792724609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def example5():\\n    global known\\n    known = dict()</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              170.18975830078125\n            ],\n            [\n              223.74111938476562,\n              170.18975830078125\n            ],\n            [\n              223.74111938476562,\n              204.540283203125\n            ],\n            [\n              129.60000610351562,\n              204.540283203125\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            170.18975830078125,\n            223.74111938476562,\n            204.540283203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/129/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-130-0\\\"></span><b>11.7 Long integers</b></h4>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              234.62371826171875\n            ],\n            [\n              259.2333984375,\n              234.62371826171875\n            ],\n            [\n              259.2333984375,\n              249.43359375\n            ],\n            [\n              127.7490234375,\n              249.43359375\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            234.62371826171875,\n            259.2333984375,\n            249.43359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you compute fibonacci(50), you get:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              261.228515625\n            ],\n            [\n              307.8939514160156,\n              261.228515625\n            ],\n            [\n              307.8939514160156,\n              271.55487060546875\n            ],\n            [\n              128.3466796875,\n              271.55487060546875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            261.228515625,\n            307.8939514160156,\n            271.55487060546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; fibonacci(50)\\n12586269025L</pre>\",\n          \"polygon\": [\n            [\n              129.09375,\n              277.8056640625\n            ],\n            [\n              218.52618408203125,\n              277.8056640625\n            ],\n            [\n              218.52618408203125,\n              299.9622802734375\n            ],\n            [\n              129.09375,\n              299.9622802734375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            277.8056640625,\n            218.52618408203125,\n            299.9622802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The L at the end indicates that the result is a long integer, or type long. In Python 3, long is gone; all integers, even really big ones, are type int.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              306.36370849609375\n            ],\n            [\n              525.9375,\n              306.36370849609375\n            ],\n            [\n              525.9375,\n              328.66986083984375\n            ],\n            [\n              128.6455078125,\n              328.66986083984375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            306.36370849609375,\n            525.9375,\n            328.66986083984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Values with type int have a limited range; long integers can be arbitrarily big, but as they get bigger they consume more space and time.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              338.8927001953125\n            ],\n            [\n              525.6017456054688,\n              338.8927001953125\n            ],\n            [\n              525.6017456054688,\n              361.1988525390625\n            ],\n            [\n              128.6455078125,\n              361.1988525390625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            338.8927001953125,\n            525.6017456054688,\n            361.1988525390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The mathematical operators work on long integers, and the functions in the math module, too, so in general any code that works with int will also work with long.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              370.86328125\n            ],\n            [\n              525.638671875,\n              370.86328125\n            ],\n            [\n              525.638671875,\n              393.72784423828125\n            ],\n            [\n              128.794921875,\n              393.72784423828125\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            370.86328125,\n            525.638671875,\n            393.72784423828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Any time the result of a computation is too big to be represented with an integer, Python converts the result as a long integer:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              403.34765625\n            ],\n            [\n              525.6033935546875,\n              403.34765625\n            ],\n            [\n              525.6033935546875,\n              426.2568359375\n            ],\n            [\n              129.09375,\n              426.2568359375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            403.34765625,\n            525.6033935546875,\n            426.2568359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; 1000 * 1000\\n1000000\\n&gt;&gt;&gt; 100000 * 100000\\n10000000000L</pre>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              432.5086669921875\n            ],\n            [\n              228.97698974609375,\n              432.5086669921875\n            ],\n            [\n              228.97698974609375,\n              479.05426025390625\n            ],\n            [\n              127.8984375,\n              479.05426025390625\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            432.5086669921875,\n            228.97698974609375,\n            479.05426025390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In the first case the result has type int; in the second case it is long.</p>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              484.55859375\n            ],\n            [\n              425.5577392578125,\n              484.55859375\n            ],\n            [\n              425.5577392578125,\n              495.56683349609375\n            ],\n            [\n              128.27197265625,\n              495.56683349609375\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            484.55859375,\n            425.5577392578125,\n            495.56683349609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 11.8.</b> <i>Exponentiation of large integers is the basis of common algorithms for public-key en</i><i>cryption. Read the Wikipedia page on the RSA algorithm (</i><a href=\\\"http://en.wikipedia.org/wiki/RSA_(algorithm)\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/RSA_(algorithm)\\\">//</a> <a href=\\\"http://en.wikipedia.org/wiki/RSA_(algorithm)\\\">en.</a> <a href=\\\"http://en.wikipedia.org/wiki/RSA_(algorithm)\\\">wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/RSA_(algorithm)\\\">org/</a> <a href=\\\"http://en.wikipedia.org/wiki/RSA_(algorithm)\\\">wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/RSA_(algorithm)\\\">RSA_</a> <a href=\\\"http://en.wikipedia.org/wiki/RSA_(algorithm)\\\">(</a> <a href=\\\"http://en.wikipedia.org/wiki/RSA_(algorithm)\\\">algorithm)</a> <i>) and write functions to encode and decode messages.</i></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              496.16015625\n            ],\n            [\n              525.6006469726562,\n              496.16015625\n            ],\n            [\n              525.6006469726562,\n              532.51171875\n            ],\n            [\n              129.392578125,\n              532.51171875\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            496.16015625,\n            525.6006469726562,\n            532.51171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/SectionHeader/14\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-130-1\\\"></span><b>11.8 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              127.52490234375,\n              561.90234375\n            ],\n            [\n              243.17897033691406,\n              561.90234375\n            ],\n            [\n              243.17897033691406,\n              576.4298858642578\n            ],\n            [\n              127.52490234375,\n              576.4298858642578\n            ]\n          ],\n          \"bbox\": [\n            127.52490234375,\n            561.90234375,\n            243.17897033691406,\n            576.4298858642578\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As you work with bigger datasets it can become unwieldy to debug by printing and checking data by hand. Here are some suggestions for debugging large datasets:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              588.5859375\n            ],\n            [\n              525.6035766601562,\n              588.5859375\n            ],\n            [\n              525.6035766601562,\n              611.2088470458984\n            ],\n            [\n              128.6455078125,\n              611.2088470458984\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            588.5859375,\n            525.6035766601562,\n            611.2088470458984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/ListItem/16\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>Scale down the input:</b> If possible, reduce the size of the dataset. For example if the program reads a text file, start with just the first 10 lines, or with the smallest example you can find. You can either edit the files themselves, or (better) modify the program so it reads only the first n lines.</li>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              624.9375\n            ],\n            [\n              525.9375,\n              624.9375\n            ],\n            [\n              525.9375,\n              672.292854309082\n            ],\n            [\n              129.2431640625,\n              672.292854309082\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            624.9375,\n            525.9375,\n            672.292854309082\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/130/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If there is an error, you can reduce n to the smallest value that manifests the error, and then increase it gradually as you find and correct errors.</p>\",\n          \"polygon\": [\n            [\n              153.1494140625,\n              678.3046875\n            ],\n            [\n              525.5960693359375,\n              678.3046875\n            ],\n            [\n              525.5960693359375,\n              700.8348541259766\n            ],\n            [\n              153.1494140625,\n              700.8348541259766\n            ]\n          ],\n          \"bbox\": [\n            153.1494140625,\n            678.3046875,\n            525.5960693359375,\n            700.8348541259766\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\",\n        \"4\": \"/page/130/SectionHeader/14\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/131/Page/178\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/131/PageHeader/0'></content-ref><content-ref src='/page/131/PageHeader/23'></content-ref><content-ref src='/page/131/ListItem/1'></content-ref><content-ref src='/page/131/Text/2'></content-ref><content-ref src='/page/131/ListItem/3'></content-ref><content-ref src='/page/131/Text/4'></content-ref><content-ref src='/page/131/ListItem/5'></content-ref><content-ref src='/page/131/Text/6'></content-ref><content-ref src='/page/131/SectionHeader/7'></content-ref><content-ref src='/page/131/Text/8'></content-ref><content-ref src='/page/131/Text/9'></content-ref><content-ref src='/page/131/Text/10'></content-ref><content-ref src='/page/131/Text/11'></content-ref><content-ref src='/page/131/ListItem/12'></content-ref><content-ref src='/page/131/Text/13'></content-ref><content-ref src='/page/131/Text/14'></content-ref><content-ref src='/page/131/Text/15'></content-ref><content-ref src='/page/131/Text/177'></content-ref><content-ref src='/page/131/Text/17'></content-ref><content-ref src='/page/131/ListItem/18'></content-ref><content-ref src='/page/131/Text/19'></content-ref><content-ref src='/page/131/ListItem/20'></content-ref><content-ref src='/page/131/Text/21'></content-ref><content-ref src='/page/131/Text/22'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/131/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.85986328125\n            ],\n            [\n              482.40338134765625,\n              60.85986328125\n            ],\n            [\n              482.40338134765625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.85986328125,\n            482.40338134765625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/PageHeader/23\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              61.5849609375\n            ],\n            [\n              101.97509765625,\n              61.5849609375\n            ],\n            [\n              101.97509765625,\n              70.576171875\n            ],\n            [\n              85.98779296875,\n              70.576171875\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            61.5849609375,\n            101.97509765625,\n            70.576171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/ListItem/1\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>Check summaries and types:</b> Instead of printing and checking the entire dataset, consider printing summaries of the data: for example, the number of items in a dictionary or the total of a list of numbers.</li>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              88.7381591796875\n            ],\n            [\n              482.607421875,\n              88.7381591796875\n            ],\n            [\n              482.607421875,\n              123.1868896484375\n            ],\n            [\n              85.763671875,\n              123.1868896484375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            88.7381591796875,\n            482.607421875,\n            123.1868896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A common cause of runtime errors is a value that is not the right type. For debugging this kind of error, it is often enough to print the type of a value.</p>\",\n          \"polygon\": [\n            [\n              109.669921875,\n              129.357421875\n            ],\n            [\n              482.4039611816406,\n              129.357421875\n            ],\n            [\n              482.4039611816406,\n              151.60089111328125\n            ],\n            [\n              109.669921875,\n              151.60089111328125\n            ]\n          ],\n          \"bbox\": [\n            109.669921875,\n            129.357421875,\n            482.4039611816406,\n            151.60089111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/ListItem/3\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>Write self-checks:</b> Sometimes you can write code to check for errors automatically. For example, if you are computing the average of a list of numbers, you could check that the result is not greater than the largest element in the list or less than the smallest. This is called a \\\"sanity check\\\" because it detects results that are \\\"insane.\\\"</li>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              161.455078125\n            ],\n            [\n              482.4039001464844,\n              161.455078125\n            ],\n            [\n              482.4039001464844,\n              208.4298095703125\n            ],\n            [\n              85.3154296875,\n              208.4298095703125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            161.455078125,\n            482.4039001464844,\n            208.4298095703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Another kind of check compares the results of two different computations to see if they are consistent. This is called a \\\"consistency check.\\\"</p>\",\n          \"polygon\": [\n            [\n              110.865234375,\n              214.435546875\n            ],\n            [\n              482.4038391113281,\n              214.435546875\n            ],\n            [\n              482.4038391113281,\n              236.84381103515625\n            ],\n            [\n              110.865234375,\n              236.84381103515625\n            ]\n          ],\n          \"bbox\": [\n            110.865234375,\n            214.435546875,\n            482.4038391113281,\n            236.84381103515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/ListItem/5\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>Pretty print the output:</b> Formatting debugging output can make it easier to spot an error. We saw an example in Section <a href=\\\"#page-80-0\\\">6.9.</a> The pprint module provides a pprint function that displays built-in types in a more human-readable format.</li>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              247.030029296875\n            ],\n            [\n              482.4027099609375,\n              247.030029296875\n            ],\n            [\n              482.4027099609375,\n              281.53125\n            ],\n            [\n              85.763671875,\n              281.53125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            247.030029296875,\n            482.4027099609375,\n            281.53125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Again, time you spend building scaffolding can reduce the time you spend debugging.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              295.7401123046875\n            ],\n            [\n              468.29638671875,\n              295.7401123046875\n            ],\n            [\n              468.29638671875,\n              305.89453125\n            ],\n            [\n              85.9130859375,\n              305.89453125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            295.7401123046875,\n            468.29638671875,\n            305.89453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/130/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-131-0\\\"></span><b>11.9 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              335.1865539550781\n            ],\n            [\n              184.02589416503906,\n              335.1865539550781\n            ],\n            [\n              184.02589416503906,\n              349.53277587890625\n            ],\n            [\n              85.763671875,\n              349.53277587890625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            335.1865539550781,\n            184.02589416503906,\n            349.53277587890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>dictionary:</b> A mapping from a set of keys to their corresponding values.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              358.5589904785156\n            ],\n            [\n              404.814208984375,\n              358.5589904785156\n            ],\n            [\n              404.814208984375,\n              368.61871337890625\n            ],\n            [\n              85.763671875,\n              368.61871337890625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            358.5589904785156,\n            404.814208984375,\n            368.61871337890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>key-value pair:</b> The representation of the mapping from a key to a value.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              378.791015625\n            ],\n            [\n              409.693359375,\n              378.791015625\n            ],\n            [\n              409.693359375,\n              388.86370849609375\n            ],\n            [\n              86.0625,\n              388.86370849609375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            378.791015625,\n            409.693359375,\n            388.86370849609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>item:</b> Another name for a key-value pair.</p>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              399.04998779296875\n            ],\n            [\n              268.57598876953125,\n              399.04998779296875\n            ],\n            [\n              268.57598876953125,\n              409.1097106933594\n            ],\n            [\n              85.53955078125,\n              409.1097106933594\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            399.04998779296875,\n            268.57598876953125,\n            409.1097106933594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>key:</b> An object that appears in a dictionary as the first part of a key-value pair.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              419.2959899902344\n            ],\n            [\n              431.5078125,\n              419.2959899902344\n            ],\n            [\n              431.5078125,\n              429.355712890625\n            ],\n            [\n              85.3154296875,\n              429.355712890625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            419.2959899902344,\n            431.5078125,\n            429.355712890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/ListItem/12\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>value:</b> An object that appears in a dictionary as the second part of a key-value pair. This is more specific than our previous use of the word \\\"value.\\\"</li>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              439.3125\n            ],\n            [\n              483.50390625,\n              439.3125\n            ],\n            [\n              483.50390625,\n              461.79571533203125\n            ],\n            [\n              85.46484375,\n              461.79571533203125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            439.3125,\n            483.50390625,\n            461.79571533203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>implementation:</b> A way of performing a computation.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              471.9809875488281\n            ],\n            [\n              328.8700256347656,\n              471.9809875488281\n            ],\n            [\n              328.8700256347656,\n              482.04071044921875\n            ],\n            [\n              85.6142578125,\n              482.04071044921875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            471.9809875488281,\n            328.8700256347656,\n            482.04071044921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>hashtable:</b> The algorithm used to implement Python dictionaries.</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              491.90625\n            ],\n            [\n              376.9793395996094,\n              491.90625\n            ],\n            [\n              376.9793395996094,\n              502.2867126464844\n            ],\n            [\n              85.68896484375,\n              502.2867126464844\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            491.90625,\n            376.9793395996094,\n            502.2867126464844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>hash function:</b> A function used by a hashtable to compute the location for a key.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              512.40234375\n            ],\n            [\n              441.795654296875,\n              512.40234375\n            ],\n            [\n              441.795654296875,\n              522.53271484375\n            ],\n            [\n              85.763671875,\n              522.53271484375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            512.40234375,\n            441.795654296875,\n            522.53271484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/177\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>hashable:</b> A type that has a hash function. Immutable types like integers, floats and strings are hashable; mutable types like lists and dictionaries are not.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              532.51171875\n            ],\n            [\n              483.205078125,\n              532.51171875\n            ],\n            [\n              483.205078125,\n              554.9727172851562\n            ],\n            [\n              85.46484375,\n              554.9727172851562\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            532.51171875,\n            483.205078125,\n            554.9727172851562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>lookup:</b> A dictionary operation that takes a key and finds the corresponding value.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              564.609375\n            ],\n            [\n              453.9996337890625,\n              564.609375\n            ],\n            [\n              453.9996337890625,\n              575.2177124023438\n            ],\n            [\n              85.6142578125,\n              575.2177124023438\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            564.609375,\n            453.9996337890625,\n            575.2177124023438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/ListItem/18\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>reverse lookup:</b> A dictionary operation that takes a value and finds one or more keys that map to it.</li>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              585.10546875\n            ],\n            [\n              483.205078125,\n              585.10546875\n            ],\n            [\n              483.205078125,\n              607.65771484375\n            ],\n            [\n              85.763671875,\n              607.65771484375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            585.10546875,\n            483.205078125,\n            607.65771484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>singleton:</b> A list (or other sequence) with a single element.</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              617.58984375\n            ],\n            [\n              347.537109375,\n              617.58984375\n            ],\n            [\n              347.537109375,\n              627.9037170410156\n            ],\n            [\n              85.68896484375,\n              627.9037170410156\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            617.58984375,\n            347.537109375,\n            627.9037170410156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/ListItem/20\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>call graph:</b> A diagram that shows every frame created during the execution of a program, with an arrow from each caller to each callee.</li>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              637.3125\n            ],\n            [\n              482.90625,\n              637.3125\n            ],\n            [\n              482.90625,\n              660.3437194824219\n            ],\n            [\n              85.9130859375,\n              660.3437194824219\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            637.3125,\n            482.90625,\n            660.3437194824219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/21\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>histogram:</b> A set of counters.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              670.5300140380859\n            ],\n            [\n              216.37161254882812,\n              670.5300140380859\n            ],\n            [\n              216.37161254882812,\n              680.589729309082\n            ],\n            [\n              85.763671875,\n              680.589729309082\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            670.5300140380859,\n            216.37161254882812,\n            680.589729309082\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/131/Text/22\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>memo:</b> A computed value stored to avoid unnecessary future computation.</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              690.775016784668\n            ],\n            [\n              421.048828125,\n              690.775016784668\n            ],\n            [\n              421.048828125,\n              700.8347320556641\n            ],\n            [\n              86.361328125,\n              700.8347320556641\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            690.775016784668,\n            421.048828125,\n            700.8347320556641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\",\n        \"4\": \"/page/131/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/132/Page/289\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/132/PageHeader/0'></content-ref><content-ref src='/page/132/PageHeader/16'></content-ref><content-ref src='/page/132/ListGroup/287'></content-ref><content-ref src='/page/132/Text/3'></content-ref><content-ref src='/page/132/SectionHeader/4'></content-ref><content-ref src='/page/132/Text/5'></content-ref><content-ref src='/page/132/Text/6'></content-ref><content-ref src='/page/132/Text/7'></content-ref><content-ref src='/page/132/Text/8'></content-ref><content-ref src='/page/132/Text/9'></content-ref><content-ref src='/page/132/Text/10'></content-ref><content-ref src='/page/132/Text/11'></content-ref><content-ref src='/page/132/Text/12'></content-ref><content-ref src='/page/132/Text/13'></content-ref><content-ref src='/page/132/Text/14'></content-ref><content-ref src='/page/132/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/132/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.9443359375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.80078125,\n              61.1982421875\n            ],\n            [\n              525.9375,\n              61.1982421875\n            ],\n            [\n              525.9375,\n              70.4794921875\n            ],\n            [\n              509.80078125,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            509.80078125,\n            61.1982421875,\n            525.9375,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/ListGroup/287\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/132/ListItem/1'></content-ref><content-ref src='/page/132/ListItem/2'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              88.7381591796875\n            ],\n            [\n              525.6030883789062,\n              88.7381591796875\n            ],\n            [\n              525.6030883789062,\n              131.1568603515625\n            ],\n            [\n              128.6455078125,\n              131.1568603515625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            88.7381591796875,\n            525.6030883789062,\n            131.1568603515625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/132/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>global variable:</b> A variable defined outside a function. Global variables can be accessed from any function.</li>\",\n              \"polygon\": [\n                [\n                  128.6455078125,\n                  88.7381591796875\n                ],\n                [\n                  525.6030883789062,\n                  88.7381591796875\n                ],\n                [\n                  525.6030883789062,\n                  110.99188232421875\n                ],\n                [\n                  128.6455078125,\n                  110.99188232421875\n                ]\n              ],\n              \"bbox\": [\n                128.6455078125,\n                88.7381591796875,\n                525.6030883789062,\n                110.99188232421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/122/SectionHeader/1\",\n                \"4\": \"/page/131/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/132/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>flag:</b> A boolean variable used to indicate whether a condition is true.</li>\",\n              \"polygon\": [\n                [\n                  129.01904296875,\n                  120.7529296875\n                ],\n                [\n                  433.599609375,\n                  120.7529296875\n                ],\n                [\n                  433.599609375,\n                  131.1568603515625\n                ],\n                [\n                  129.01904296875,\n                  131.1568603515625\n                ]\n              ],\n              \"bbox\": [\n                129.01904296875,\n                120.7529296875,\n                433.599609375,\n                131.1568603515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/122/SectionHeader/1\",\n                \"4\": \"/page/131/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/132/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>declaration:</b> A statement like global that tells the interpreter something about a variable.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              140.958984375\n            ],\n            [\n              522.5784301757812,\n              140.958984375\n            ],\n            [\n              522.5784301757812,\n              151.32086181640625\n            ],\n            [\n              128.9443359375,\n              151.32086181640625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            140.958984375,\n            522.5784301757812,\n            151.32086181640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/131/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-132-1\\\"></span><b>11.10 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              180.6627197265625\n            ],\n            [\n              236.373046875,\n              180.6627197265625\n            ],\n            [\n              236.373046875,\n              195.0089111328125\n            ],\n            [\n              128.42138671875,\n              195.0089111328125\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            180.6627197265625,\n            236.373046875,\n            195.0089111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 11.9.</b> <i>If you did Exercise </i><i><a href=\\\"#page-119-2\\\">10.8,</a></i><i> you already have a function named</i> has_duplicates <i>that</i> <i>takes a list as a parameter and returns</i> True <i>if there is any object that appears more than once in the</i> <i>list.</i></p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              207.18157958984375\n            ],\n            [\n              525.5997924804688,\n              207.18157958984375\n            ],\n            [\n              525.5997924804688,\n              241.53314208984375\n            ],\n            [\n              128.197265625,\n              241.53314208984375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            207.18157958984375,\n            525.5997924804688,\n            241.53314208984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Use a dictionary to write a faster, simpler version of</i> has_duplicates<i>. Solution:</i> <a href=\\\"http://thinkpython.com/code/has_duplicates.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/has_duplicates.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/has_duplicates.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/has_duplicates.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/has_duplicates.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/has_duplicates.py\\\">has_</a> <a href=\\\"http://thinkpython.com/code/has_duplicates.py\\\">duplicates.</a> <a href=\\\"http://thinkpython.com/code/has_duplicates.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              251.3671875\n            ],\n            [\n              525.638671875,\n              251.3671875\n            ],\n            [\n              525.638671875,\n              273.86517333984375\n            ],\n            [\n              128.794921875,\n              273.86517333984375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            251.3671875,\n            525.638671875,\n            273.86517333984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-132-0\\\"></span><b>Exercise 11.10.</b> <i>Two words are \\\"rotate pairs\\\" if you can rotate one of them and get the other (see</i> rotate_word <i>in Exercise </i><i><a href=\\\"#page-101-0\\\">8.12)</a></i><i>.</i></p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              276.0965576171875\n            ],\n            [\n              525.6047973632812,\n              276.0965576171875\n            ],\n            [\n              525.6047973632812,\n              298.27630615234375\n            ],\n            [\n              129.09375,\n              298.27630615234375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            276.0965576171875,\n            525.6047973632812,\n            298.27630615234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a program that reads a wordlist and finds all the rotate pairs. Solution:</i> <a href=\\\"http://thinkpython.com/code/rotate_pairs.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/rotate_pairs.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/rotate_pairs.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/rotate_pairs.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/rotate_pairs.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/rotate_pairs.py\\\">rotate_</a> <a href=\\\"http://thinkpython.com/code/rotate_pairs.py\\\">pairs.</a> <a href=\\\"http://thinkpython.com/code/rotate_pairs.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              308.3478698730469\n            ],\n            [\n              524.443359375,\n              308.3478698730469\n            ],\n            [\n              524.443359375,\n              330.5851745605469\n            ],\n            [\n              128.794921875,\n              330.5851745605469\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            308.3478698730469,\n            524.443359375,\n            330.5851745605469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 11.11.</b> <i>Here's another Puzzler from</i> Car Talk <i>(</i><a href=\\\"http://www.cartalk.com/content/puzzlers\\\">http:</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">//</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">www.</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">cartalk.</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">com/</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">content/</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">puzzlers</a> <i>):</i></p>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              332.7358703613281\n            ],\n            [\n              524.7421875,\n              332.7358703613281\n            ],\n            [\n              524.7421875,\n              354.97418212890625\n            ],\n            [\n              129.60003662109375,\n              354.97418212890625\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            332.7358703613281,\n            524.7421875,\n            354.97418212890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>This was sent in by a fellow named Dan O'Leary. He came upon a common one-syllable,</i> <i>five-letter word recently that has the following unique property. When you remove the</i> <i>first letter, the remaining letters form a homophone of the original word, that is a word</i> <i>that sounds exactly the same. Replace the first letter, that is, put it back and remove</i> <i>the second letter and the result is yet another homophone of the original word. And the</i> <i>question is, what's the word?</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              153.4482421875,\n              369.1475830078125\n            ],\n            [\n              501.43359375,\n              369.1475830078125\n            ],\n            [\n              501.43359375,\n              440.0811767578125\n            ],\n            [\n              153.4482421875,\n              440.0811767578125\n            ]\n          ],\n          \"bbox\": [\n            153.4482421875,\n            369.1475830078125,\n            501.43359375,\n            440.0811767578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>Now I'm going to give you an example that doesn't work. Let's look at the five-letter</i> <i>word, 'wrack.' W-R-A-C-K, you know like to 'wrack with pain.' If I remove the first</i> <i>letter, I am left with a four-letter word, 'R-A-C-K.' As in, 'Holy cow, did you see the</i> <i>rack on that buck! It must have been a nine-pointer!' It's a perfect homophone. If you</i> <i>put the 'w' back, and remove the 'r,' instead, you're left with the word, 'wack,' which is</i> <i>a real word, it's just not a homophone of the other two words.</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              152.701171875,\n              446.298583984375\n            ],\n            [\n              500.6975402832031,\n              446.298583984375\n            ],\n            [\n              500.6975402832031,\n              517.232177734375\n            ],\n            [\n              152.701171875,\n              517.232177734375\n            ]\n          ],\n          \"bbox\": [\n            152.701171875,\n            446.298583984375,\n            500.6975402832031,\n            517.232177734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>But there is, however, at least one word that Dan and we know of, which will yield two</i> <i>homophones if you remove either of the first two letters to make two, new four-letter</i> <i>words. The question is, what's the word?</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              154.1953125,\n              523.4495849609375\n            ],\n            [\n              500.8359375,\n              523.4495849609375\n            ],\n            [\n              500.8359375,\n              557.8001708984375\n            ],\n            [\n              154.1953125,\n              557.8001708984375\n            ]\n          ],\n          \"bbox\": [\n            154.1953125,\n            523.4495849609375,\n            500.8359375,\n            557.8001708984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>You can use the dictionary from Exercise </i><i><a href=\\\"#page-123-1\\\">11.1</a></i><i> to check whether a string is in the word list.</i></p>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              571.5703125\n            ],\n            [\n              490.1864013671875,\n              571.5703125\n            ],\n            [\n              490.1864013671875,\n              581.9361724853516\n            ],\n            [\n              129.60003662109375,\n              581.9361724853516\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            571.5703125,\n            490.1864013671875,\n            581.9361724853516\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>To check whether two words are homophones, you can use the CMU Pronouncing Dictionary.</i> <i>You can download it from</i> <a href=\\\"http://www.speech.cs.cmu.edu/cgi-bin/cmudict\\\">http:</a> <a href=\\\"http://www.speech.cs.cmu.edu/cgi-bin/cmudict\\\">//</a> <a href=\\\"http://www.speech.cs.cmu.edu/cgi-bin/cmudict\\\">www.</a> <a href=\\\"http://www.speech.cs.cmu.edu/cgi-bin/cmudict\\\">speech.</a> <a href=\\\"http://www.speech.cs.cmu.edu/cgi-bin/cmudict\\\">cs.</a> <a href=\\\"http://www.speech.cs.cmu.edu/cgi-bin/cmudict\\\">cmu.</a> <a href=\\\"http://www.speech.cs.cmu.edu/cgi-bin/cmudict\\\">edu/</a> <a href=\\\"http://www.speech.cs.cmu.edu/cgi-bin/cmudict\\\">cgi-bin/</a> <a href=\\\"http://www.speech.cs.cmu.edu/cgi-bin/cmudict\\\">cmudict</a> <i>or from</i> <a href=\\\"http://thinkpython.com/code/c06d\\\">http:</a> <a href=\\\"http://thinkpython.com/code/c06d\\\">//</a> <a href=\\\"http://thinkpython.com/code/c06d\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/c06d\\\">com/</a> <a href=\\\"http://thinkpython.com/code/c06d\\\">code/</a> <a href=\\\"http://thinkpython.com/code/c06d\\\">c06d</a> <i>and you can also download</i> <a href=\\\"http://thinkpython.com/code/pronounce.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/pronounce.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/pronounce.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/pronounce.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/pronounce.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/pronounce.py\\\">pronounce.</a> <a href=\\\"http://thinkpython.com/code/pronounce.py\\\">py</a> <i>, which provides a function named</i> read_dictionary <i>that reads the</i> <i>pronouncing dictionary and returns a Python dictionary that maps from each word to a string that</i> <i>describes its primary pronunciation.</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              592.111572265625\n            ],\n            [\n              525.638671875,\n              592.111572265625\n            ],\n            [\n              525.638671875,\n              663.0451812744141\n            ],\n            [\n              128.794921875,\n              663.0451812744141\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            592.111572265625,\n            525.638671875,\n            663.0451812744141\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/132/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a program that lists all the words that solve the Puzzler. Solution:</i> <a href=\\\"http://thinkpython.com/code/homophone.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/homophone.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/homophone.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/homophone.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/homophone.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/homophone.py\\\">homophone.</a> <a href=\\\"http://thinkpython.com/code/homophone.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              673.139892578125\n            ],\n            [\n              523.9028930664062,\n              673.139892578125\n            ],\n            [\n              523.9028930664062,\n              695.3771896362305\n            ],\n            [\n              128.49609375,\n              695.3771896362305\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            673.139892578125,\n            523.9028930664062,\n            695.3771896362305\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\",\n        \"4\": \"/page/132/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/133/Page/3\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/133/PageHeader/0'></content-ref><content-ref src='/page/133/PageHeader/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/133/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.08642578125\n            ],\n            [\n              482.40338134765625,\n              60.08642578125\n            ],\n            [\n              482.40338134765625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.08642578125,\n            482.40338134765625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/133/PageHeader/1\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.8671875,\n              60.521484375\n            ],\n            [\n              101.00390625,\n              60.521484375\n            ],\n            [\n              101.00390625,\n              70.6728515625\n            ],\n            [\n              84.8671875,\n              70.6728515625\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            60.521484375,\n            101.00390625,\n            70.6728515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"4\": \"/page/132/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/122/SectionHeader/1\",\n        \"4\": \"/page/132/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/134/Page/151\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/134/SectionHeader/0'></content-ref><content-ref src='/page/134/SectionHeader/1'></content-ref><content-ref src='/page/134/SectionHeader/2'></content-ref><content-ref src='/page/134/Text/3'></content-ref><content-ref src='/page/134/Text/4'></content-ref><content-ref src='/page/134/Text/5'></content-ref><content-ref src='/page/134/Text/6'></content-ref><content-ref src='/page/134/Code/7'></content-ref><content-ref src='/page/134/Text/8'></content-ref><content-ref src='/page/134/Code/9'></content-ref><content-ref src='/page/134/Code/10'></content-ref><content-ref src='/page/134/Text/11'></content-ref><content-ref src='/page/134/Code/12'></content-ref><content-ref src='/page/134/Text/13'></content-ref><content-ref src='/page/134/Code/14'></content-ref><content-ref src='/page/134/Text/15'></content-ref><content-ref src='/page/134/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/134/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-134-0\\\"></span><b>Chapter 12</b></h2>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              162.615234375\n            ],\n            [\n              232.6376953125,\n              162.615234375\n            ],\n            [\n              232.6376953125,\n              183.574951171875\n            ],\n            [\n              128.9443359375,\n              183.574951171875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            162.615234375,\n            232.6376953125,\n            183.574951171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/122/SectionHeader/1\",\n            \"2\": \"/page/134/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Tuples</b></h1>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              217.059326171875\n            ],\n            [\n              204.87843322753906,\n              217.059326171875\n            ],\n            [\n              204.87843322753906,\n              241.84637451171875\n            ],\n            [\n              128.6455078125,\n              241.84637451171875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            217.059326171875,\n            204.87843322753906,\n            241.84637451171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-134-1\\\"></span><b>12.1 Tuples are immutable</b></h4>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              289.458984375\n            ],\n            [\n              311.4381103515625,\n              289.458984375\n            ],\n            [\n              311.4381103515625,\n              303.8710021972656\n            ],\n            [\n              128.27197265625,\n              303.8710021972656\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            289.458984375,\n            311.4381103515625,\n            303.8710021972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A tuple is a sequence of values. The values can be any type, and they are indexed by integers, so in that respect tuples are a lot like lists. The important difference is that tuples are immutable.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              315.0073547363281\n            ],\n            [\n              527.1328125,\n              315.0073547363281\n            ],\n            [\n              527.1328125,\n              349.35894775390625\n            ],\n            [\n              128.6455078125,\n              349.35894775390625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            315.0073547363281,\n            527.1328125,\n            349.35894775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Syntactically, a tuple is a comma-separated list of values:</p>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              357.71484375\n            ],\n            [\n              380.109375,\n              357.71484375\n            ],\n            [\n              380.109375,\n              368.2869567871094\n            ],\n            [\n              128.42138671875,\n              368.2869567871094\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            357.71484375,\n            380.109375,\n            368.2869567871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; t = 'a', 'b', 'c', 'd', 'e'</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              373.1318054199219\n            ],\n            [\n              291.7033996582031,\n              373.1318054199219\n            ],\n            [\n              291.7033996582031,\n              383.0943908691406\n            ],\n            [\n              129.60000610351562,\n              383.0943908691406\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            373.1318054199219,\n            291.7033996582031,\n            383.0943908691406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Although it is not necessary, it is common to enclose tuples in parentheses:</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              387.4921875\n            ],\n            [\n              458.103515625,\n              387.4921875\n            ],\n            [\n              458.103515625,\n              398.2009582519531\n            ],\n            [\n              129.60000610351562,\n              398.2009582519531\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            387.4921875,\n            458.103515625,\n            398.2009582519531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ('a', 'b', 'c', 'd', 'e')</pre>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              402.9609375\n            ],\n            [\n              302.1624450683594,\n              402.9609375\n            ],\n            [\n              302.1624450683594,\n              413.0083923339844\n            ],\n            [\n              128.86962890625,\n              413.0083923339844\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            402.9609375,\n            302.1624450683594,\n            413.0083923339844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To create a tuple with a single element, you have to include a final comma:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              417.26953125\n            ],\n            [\n              457.2200622558594,\n              417.26953125\n            ],\n            [\n              457.2200622558594,\n              428.1149597167969\n            ],\n            [\n              128.49609375,\n              428.1149597167969\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            417.26953125,\n            457.2200622558594,\n            428.1149597167969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t1 = 'a',\\n&gt;&gt;&gt; type(t1)\\n&lt;type 'tuple'&gt;\\nA value in parentheses is not a tuple:\\n&gt;&gt;&gt; t2 = ('a')</pre>\",\n          \"polygon\": [\n            [\n              129.60006713867188,\n              432.9598083496094\n            ],\n            [\n              292.10003662109375,\n              432.9598083496094\n            ],\n            [\n              292.10003662109375,\n              497.2243957519531\n            ],\n            [\n              129.60006713867188,\n              497.2243957519531\n            ]\n          ],\n          \"bbox\": [\n            129.60006713867188,\n            432.9598083496094,\n            292.10003662109375,\n            497.2243957519531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; type(t2)\\n&lt;type 'str'&gt;</pre>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              496.546875\n            ],\n            [\n              193.640625,\n              496.546875\n            ],\n            [\n              193.640625,\n              521.6123962402344\n            ],\n            [\n              127.599609375,\n              521.6123962402344\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            496.546875,\n            193.640625,\n            521.6123962402344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Another way to create a tuple is the built-in function tuple. With no argument, it creates an empty tuple:</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              526.6068115234375\n            ],\n            [\n              525.9375,\n              526.6068115234375\n            ],\n            [\n              525.9375,\n              549.140625\n            ],\n            [\n              128.9443359375,\n              549.140625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            526.6068115234375,\n            525.9375,\n            549.140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = tuple()\\n&gt;&gt;&gt; print t\\n()</pre>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              553.7578125\n            ],\n            [\n              208.05557250976562,\n              553.7578125\n            ],\n            [\n              208.05557250976562,\n              588.1094207763672\n            ],\n            [\n              128.49609375,\n              588.1094207763672\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            553.7578125,\n            208.05557250976562,\n            588.1094207763672\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the argument is a sequence (string, list or tuple), the result is a tuple with the elements of the sequence:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              592.453125\n            ],\n            [\n              526.236328125,\n              592.453125\n            ],\n            [\n              526.236328125,\n              615.65625\n            ],\n            [\n              128.197265625,\n              615.65625\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            592.453125,\n            526.236328125,\n            615.65625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = tuple('lupins')\\n&gt;&gt;&gt; print t\\n('l', 'u', 'p', 'i', 'n', 's')</pre>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              620.2548217773438\n            ],\n            [\n              286.4745178222656,\n              620.2548217773438\n            ],\n            [\n              286.4745178222656,\n              654.6064300537109\n            ],\n            [\n              128.3466796875,\n              654.6064300537109\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            620.2548217773438,\n            286.4745178222656,\n            654.6064300537109\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Because tuple is the name of a built-in function, you should avoid using it as a variable name.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              658.1953125\n            ],\n            [\n              526.53515625,\n              658.1953125\n            ],\n            [\n              526.53515625,\n              681.9069900512695\n            ],\n            [\n              128.9443359375,\n              681.9069900512695\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            658.1953125,\n            526.53515625,\n            681.9069900512695\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/134/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Most list operators also work on tuples. The bracket operator indexes an element:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              690.29296875\n            ],\n            [\n              488.583984375,\n              690.29296875\n            ],\n            [\n              488.583984375,\n              700.8349914550781\n            ],\n            [\n              128.197265625,\n              700.8349914550781\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            690.29296875,\n            488.583984375,\n            700.8349914550781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/134/SectionHeader/1\",\n        \"4\": \"/page/134/SectionHeader/2\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/135/Page/181\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/135/PageHeader/0'></content-ref><content-ref src='/page/135/PageHeader/20'></content-ref><content-ref src='/page/135/Code/1'></content-ref><content-ref src='/page/135/Text/2'></content-ref><content-ref src='/page/135/TextInlineMath/3'></content-ref><content-ref src='/page/135/Text/4'></content-ref><content-ref src='/page/135/Text/5'></content-ref><content-ref src='/page/135/Text/6'></content-ref><content-ref src='/page/135/Code/7'></content-ref><content-ref src='/page/135/SectionHeader/8'></content-ref><content-ref src='/page/135/Text/9'></content-ref><content-ref src='/page/135/Code/177'></content-ref><content-ref src='/page/135/Text/11'></content-ref><content-ref src='/page/135/TextInlineMath/12'></content-ref><content-ref src='/page/135/Text/13'></content-ref><content-ref src='/page/135/Text/14'></content-ref><content-ref src='/page/135/Code/15'></content-ref><content-ref src='/page/135/Text/16'></content-ref><content-ref src='/page/135/Code/17'></content-ref><content-ref src='/page/135/Text/18'></content-ref><content-ref src='/page/135/Code/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/135/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.1015625\n            ],\n            [\n              482.4034118652344,\n              61.1015625\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.1015625,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              60.76318359375\n            ],\n            [\n              101.6015625,\n              60.76318359375\n            ],\n            [\n              101.6015625,\n              70.23779296875\n            ],\n            [\n              85.6142578125,\n              70.23779296875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            60.76318359375,\n            101.6015625,\n            70.23779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ('a', 'b', 'c', 'd', 'e')\\n&gt;&gt;&gt; print t[0]\\n'a'</pre>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              86.3349609375\n            ],\n            [\n              260.578125,\n              86.3349609375\n            ],\n            [\n              260.578125,\n              123.03729248046875\n            ],\n            [\n              85.98779296875,\n              123.03729248046875\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            86.3349609375,\n            260.578125,\n            123.03729248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And the slice operator selects a range of elements.</p>\",\n          \"polygon\": [\n            [\n              86.40003204345703,\n              130.4208984375\n            ],\n            [\n              306.0,\n              130.4208984375\n            ],\n            [\n              306.0,\n              141.28887939453125\n            ],\n            [\n              86.40003204345703,\n              141.28887939453125\n            ]\n          ],\n          \"bbox\": [\n            86.40003204345703,\n            130.4208984375,\n            306.0,\n            141.28887939453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/TextInlineMath/3\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; print t[1:3] ('b', 'c')</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              148.9833984375\n            ],\n            [\n              170.0858612060547,\n              148.9833984375\n            ],\n            [\n              170.0858612060547,\n              171.436279296875\n            ],\n            [\n              85.9130859375,\n              171.436279296875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            148.9833984375,\n            170.0858612060547,\n            171.436279296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But if you try to modify one of the elements of the tuple, you get an error:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              179.05078125\n            ],\n            [\n              409.7860107421875,\n              179.05078125\n            ],\n            [\n              409.7860107421875,\n              189.68890380859375\n            ],\n            [\n              85.3154296875,\n              189.68890380859375\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            179.05078125,\n            409.7860107421875,\n            189.68890380859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; t[0] = 'A' TypeError: object doesn't support item assignment</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              197.6787109375\n            ],\n            [\n              343.65234375,\n              197.6787109375\n            ],\n            [\n              343.65234375,\n              219.8363037109375\n            ],\n            [\n              85.166015625,\n              219.8363037109375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            197.6787109375,\n            343.65234375,\n            219.8363037109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can't modify the elements of a tuple, but you can replace one tuple with another:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              227.00390625\n            ],\n            [\n              460.66497802734375,\n              227.00390625\n            ],\n            [\n              460.66497802734375,\n              238.087890625\n            ],\n            [\n              85.3154296875,\n              238.087890625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            227.00390625,\n            460.66497802734375,\n            238.087890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ('A',) + t[1:]\\n&gt;&gt;&gt; print t\\n('A', 'b', 'c', 'd', 'e')</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              245.759765625\n            ],\n            [\n              217.12942504882812,\n              245.759765625\n            ],\n            [\n              217.12942504882812,\n              280.43035888671875\n            ],\n            [\n              85.46484375,\n              280.43035888671875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            245.759765625,\n            217.12942504882812,\n            280.43035888671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/134/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-135-0\\\"></span><b>12.2 Tuple assignment</b></h4>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              315.5625\n            ],\n            [\n              241.53985595703125,\n              315.5625\n            ],\n            [\n              241.53985595703125,\n              330.0780029296875\n            ],\n            [\n              85.46484375,\n              330.0780029296875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            315.5625,\n            241.53985595703125,\n            330.0780029296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is often useful to swap the values of two variables. With conventional assignments, you have to use a temporary variable. For example, to swap a and b:</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              345.1353454589844\n            ],\n            [\n              482.4034118652344,\n              345.1353454589844\n            ],\n            [\n              482.4034118652344,\n              367.29193115234375\n            ],\n            [\n              85.166015625,\n              367.29193115234375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            345.1353454589844,\n            482.4034118652344,\n            367.29193115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Code/177\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; temp = a\\n&gt;&gt;&gt; a = b\\n&gt;&gt;&gt; b = temp</pre>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              375.28277587890625\n            ],\n            [\n              153.4482421875,\n              375.28277587890625\n            ],\n            [\n              153.4482421875,\n              409.63336181640625\n            ],\n            [\n              85.68896484375,\n              409.63336181640625\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            375.28277587890625,\n            153.4482421875,\n            409.63336181640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This solution is cumbersome; <b>tuple assignment</b> is more elegant:</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              417.8262023925781\n            ],\n            [\n              367.7926940917969,\n              417.8262023925781\n            ],\n            [\n              367.7926940917969,\n              427.88592529296875\n            ],\n            [\n              85.68896484375,\n              427.88592529296875\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            417.8262023925781,\n            367.7926940917969,\n            427.88592529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/TextInlineMath/12\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; a, b = b, a</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              435.87677001953125\n            ],\n            [\n              164.85556030273438,\n              435.87677001953125\n            ],\n            [\n              164.85556030273438,\n              445.88671875\n            ],\n            [\n              85.166015625,\n              445.88671875\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            435.87677001953125,\n            164.85556030273438,\n            445.88671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The left side is a tuple of variables; the right side is a tuple of expressions. Each value is assigned to its respective variable. All the expressions on the right side are evaluated before any of the assignments.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              453.62109375\n            ],\n            [\n              482.4035339355469,\n              453.62109375\n            ],\n            [\n              482.4035339355469,\n              488.47991943359375\n            ],\n            [\n              85.46484375,\n              488.47991943359375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            453.62109375,\n            482.4035339355469,\n            488.47991943359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The number of variables on the left and the number of values on the right have to be the same:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              500.02734375\n            ],\n            [\n              482.607421875,\n              500.02734375\n            ],\n            [\n              482.607421875,\n              522.7479248046875\n            ],\n            [\n              85.46484375,\n              522.7479248046875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            500.02734375,\n            482.607421875,\n            522.7479248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; a, b = 1, 2, 3\\nValueError: too many values to unpack</pre>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              530.73876953125\n            ],\n            [\n              280.30078125,\n              530.73876953125\n            ],\n            [\n              280.30078125,\n              552.8953704833984\n            ],\n            [\n              85.39013671875,\n              552.8953704833984\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            530.73876953125,\n            280.30078125,\n            552.8953704833984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">More generally, the right side can be any kind of sequence (string, list or tuple). For example, to split an email address into a user name and a domain, you could write:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              561.12890625\n            ],\n            [\n              482.4034729003906,\n              561.12890625\n            ],\n            [\n              482.4034729003906,\n              583.3419189453125\n            ],\n            [\n              85.46484375,\n              583.3419189453125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            561.12890625,\n            482.4034729003906,\n            583.3419189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Code/17\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; addr = 'monty@python.org'\\n&gt;&gt;&gt; uname, domain = addr.split('@')</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              591.29296875\n            ],\n            [\n              269.42047119140625,\n              591.29296875\n            ],\n            [\n              269.42047119140625,\n              613.4893646240234\n            ],\n            [\n              85.46484375,\n              613.4893646240234\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            591.29296875,\n            269.42047119140625,\n            613.4893646240234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The return value from split is a list with two elements; the first element is assigned to uname, the second to domain.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              621.6297607421875\n            ],\n            [\n              482.40069580078125,\n              621.6297607421875\n            ],\n            [\n              482.40069580078125,\n              643.9359130859375\n            ],\n            [\n              85.46484375,\n              643.9359130859375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            621.6297607421875,\n            482.40069580078125,\n            643.9359130859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/135/Code/19\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print uname\\nmonty\\n&gt;&gt;&gt; print domain\\npython.org</pre>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              651.9267578125\n            ],\n            [\n              173.3203125,\n              651.9267578125\n            ],\n            [\n              173.3203125,\n              698.80078125\n            ],\n            [\n              85.53955078125,\n              698.80078125\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            651.9267578125,\n            173.3203125,\n            698.80078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/134/SectionHeader/1\",\n        \"4\": \"/page/135/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/136/Page/203\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/136/PageHeader/0'></content-ref><content-ref src='/page/136/PageHeader/20'></content-ref><content-ref src='/page/136/SectionHeader/1'></content-ref><content-ref src='/page/136/Text/2'></content-ref><content-ref src='/page/136/Text/3'></content-ref><content-ref src='/page/136/Code/4'></content-ref><content-ref src='/page/136/Text/5'></content-ref><content-ref src='/page/136/Code/6'></content-ref><content-ref src='/page/136/Text/7'></content-ref><content-ref src='/page/136/SectionHeader/8'></content-ref><content-ref src='/page/136/Text/9'></content-ref><content-ref src='/page/136/Code/10'></content-ref><content-ref src='/page/136/Text/11'></content-ref><content-ref src='/page/136/Code/12'></content-ref><content-ref src='/page/136/Text/13'></content-ref><content-ref src='/page/136/Code/14'></content-ref><content-ref src='/page/136/Text/15'></content-ref><content-ref src='/page/136/Text/16'></content-ref><content-ref src='/page/136/TextInlineMath/17'></content-ref><content-ref src='/page/136/Text/18'></content-ref><content-ref src='/page/136/Text/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/136/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              61.14990234375\n            ],\n            [\n              525.6033935546875,\n              61.14990234375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.3466796875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            61.14990234375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.501953125,\n              60.37646484375\n            ],\n            [\n              526.833984375,\n              60.37646484375\n            ],\n            [\n              526.833984375,\n              70.33447265625\n            ],\n            [\n              509.501953125,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            509.501953125,\n            60.37646484375,\n            526.833984375,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/135/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-136-0\\\"></span><b>12.3 Tuples as return values</b></h4>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              85.95379638671875\n            ],\n            [\n              319.80194091796875,\n              85.95379638671875\n            ],\n            [\n              319.80194091796875,\n              100.29998779296875\n            ],\n            [\n              128.86962890625,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            85.95379638671875,\n            319.80194091796875,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Strictly speaking, a function can only return one value, but if the value is a tuple, the effect is the same as returning multiple values. For example, if you want to divide two integers and compute the quotient and remainder, it is inefficient to compute x/y and then x%y. It is better to compute them both at the same time.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              110.98828125\n            ],\n            [\n              526.53515625,\n              110.98828125\n            ],\n            [\n              526.53515625,\n              158.57501220703125\n            ],\n            [\n              128.3466796875,\n              158.57501220703125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            110.98828125,\n            526.53515625,\n            158.57501220703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The built-in function divmod takes two arguments and returns a tuple of two values, the quotient and remainder. You can store the result as a tuple:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              167.255859375\n            ],\n            [\n              526.236328125,\n              167.255859375\n            ],\n            [\n              526.236328125,\n              190.28997802734375\n            ],\n            [\n              128.197265625,\n              190.28997802734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            167.255859375,\n            526.236328125,\n            190.28997802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = divmod(7, 3)\\n&gt;&gt;&gt; print t\\n(2, 1)\\nOr use tuple assignment to store the elements separately:\\n&gt;&gt;&gt; quot, rem = divmod(7, 3)\\n&gt;&gt;&gt; print quot\\n2\\n&gt;&gt;&gt; print rem\\n1</pre>\",\n          \"polygon\": [\n            [\n              126.703125,\n              195.0029296875\n            ],\n            [\n              380.54779052734375,\n              195.0029296875\n            ],\n            [\n              380.54779052734375,\n              309.954345703125\n            ],\n            [\n              126.703125,\n              309.954345703125\n            ]\n          ],\n          \"bbox\": [\n            126.703125,\n            195.0029296875,\n            380.54779052734375,\n            309.954345703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is an example of a function that returns a tuple:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              314.40234375\n            ],\n            [\n              361.880859375,\n              314.40234375\n            ],\n            [\n              361.880859375,\n              325.6539001464844\n            ],\n            [\n              128.794921875,\n              325.6539001464844\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            314.40234375,\n            361.880859375,\n            325.6539001464844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def min_max(t):\\n    return min(t), max(t)</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              330.451171875\n            ],\n            [\n              260.3636169433594,\n              330.451171875\n            ],\n            [\n              260.3636169433594,\n              353.2473449707031\n            ],\n            [\n              129.5999755859375,\n              353.2473449707031\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            330.451171875,\n            260.3636169433594,\n            353.2473449707031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">max and min are built-in functions that find the largest and smallest elements of a sequence. min_max computes both and returns a tuple of two values.</p>\",\n          \"polygon\": [\n            [\n              129.59996032714844,\n              357.71484375\n            ],\n            [\n              525.595458984375,\n              357.71484375\n            ],\n            [\n              525.595458984375,\n              381.1408996582031\n            ],\n            [\n              129.59996032714844,\n              381.1408996582031\n            ]\n          ],\n          \"bbox\": [\n            129.59996032714844,\n            357.71484375,\n            525.595458984375,\n            381.1408996582031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-136-1\\\"></span><b>12.4 Variable-length argument tuples</b></h4>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              409.53515625\n            ],\n            [\n              381.8205261230469,\n              409.53515625\n            ],\n            [\n              381.8205261230469,\n              423.9659729003906\n            ],\n            [\n              128.6455078125,\n              423.9659729003906\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            409.53515625,\n            381.8205261230469,\n            423.9659729003906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Functions can take a variable number of arguments. A parameter name that begins with * <b>gathers</b> arguments into a tuple. For example, printall takes any number of arguments and prints them:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              435.05859375\n            ],\n            [\n              525.603271484375,\n              435.05859375\n            ],\n            [\n              525.603271484375,\n              470.0458984375\n            ],\n            [\n              128.794921875,\n              470.0458984375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            435.05859375,\n            525.603271484375,\n            470.0458984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def printall(*args):\\n    print args</pre>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              475.4837341308594\n            ],\n            [\n              234.28125,\n              475.4837341308594\n            ],\n            [\n              234.28125,\n              497.64031982421875\n            ],\n            [\n              128.27197265625,\n              497.64031982421875\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            475.4837341308594,\n            234.28125,\n            497.64031982421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The gather parameter can have any name you like, but args is conventional. Here's how the function works:</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              503.12109375\n            ],\n            [\n              525.6024169921875,\n              503.12109375\n            ],\n            [\n              525.6024169921875,\n              525.5339050292969\n            ],\n            [\n              128.9443359375,\n              525.5339050292969\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            503.12109375,\n            525.6024169921875,\n            525.5339050292969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; printall(1, 2.0, '3')\\n(1, 2.0, '3')</pre>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              530.578125\n            ],\n            [\n              260.329345703125,\n              530.578125\n            ],\n            [\n              260.329345703125,\n              553.1283569335938\n            ],\n            [\n              127.7490234375,\n              553.1283569335938\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            530.578125,\n            260.329345703125,\n            553.1283569335938\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The complement of gather is <b>scatter</b>. If you have a sequence of values and you want to pass it to a function as multiple arguments, you can use the * operator. For example, divmod takes exactly two arguments; it doesn't work with a tuple:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              558.421875\n            ],\n            [\n              525.638671875,\n              558.421875\n            ],\n            [\n              525.638671875,\n              593.2159118652344\n            ],\n            [\n              128.794921875,\n              593.2159118652344\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            558.421875,\n            525.638671875,\n            593.2159118652344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = (7, 3)\\n&gt;&gt;&gt; divmod(t)\\nTypeError: divmod expected 2 arguments, got 1</pre>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              598.25390625\n            ],\n            [\n              364.9762878417969,\n              598.25390625\n            ],\n            [\n              364.9762878417969,\n              633.0043640136719\n            ],\n            [\n              129.46728515625,\n              633.0043640136719\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            598.25390625,\n            364.9762878417969,\n            633.0043640136719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p>TypeError: <strong>init</strong>() expected 2 arguments, got 3</p>\\n\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              628.03125\n            ],\n            [\n              343.353515625,\n              628.03125\n            ],\n            [\n              343.353515625,\n              638.0859375\n            ],\n            [\n              128.27197265625,\n              638.0859375\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            628.03125,\n            343.353515625,\n            638.0859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But if you scatter the tuple, it works:</p>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              638.7403106689453\n            ],\n            [\n              289.7188720703125,\n              638.7403106689453\n            ],\n            [\n              289.7188720703125,\n              649.6875\n            ],\n            [\n              128.12255859375,\n              649.6875\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            638.7403106689453,\n            289.7188720703125,\n            649.6875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/TextInlineMath/17\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; divmod(*t)</p>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              654.1397552490234\n            ],\n            [\n              202.82508850097656,\n              654.1397552490234\n            ],\n            [\n              202.82508850097656,\n              664.76953125\n            ],\n            [\n              129.01904296875,\n              664.76953125\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            654.1397552490234,\n            202.82508850097656,\n            664.76953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">(2, 1)</p>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              666.3347473144531\n            ],\n            [\n              160.98216247558594,\n              666.3347473144531\n            ],\n            [\n              160.98216247558594,\n              676.7578125\n            ],\n            [\n              129.5999755859375,\n              676.7578125\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            666.3347473144531,\n            160.98216247558594,\n            676.7578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/136/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 12.1.</b> <i>Many of the built-in functions use variable-length argument tuples. For example,</i> max <i>and</i> min <i>can take any number of arguments:</i></p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              678.3046875\n            ],\n            [\n              525.5968017578125,\n              678.3046875\n            ],\n            [\n              525.5968017578125,\n              700.734375\n            ],\n            [\n              128.3466796875,\n              700.734375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            678.3046875,\n            525.5968017578125,\n            700.734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/134/SectionHeader/1\",\n        \"4\": \"/page/136/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/137/Page/210\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/137/PageHeader/0'></content-ref><content-ref src='/page/137/PageHeader/17'></content-ref><content-ref src='/page/137/Code/1'></content-ref><content-ref src='/page/137/SectionHeader/2'></content-ref><content-ref src='/page/137/Text/3'></content-ref><content-ref src='/page/137/Text/4'></content-ref><content-ref src='/page/137/Code/5'></content-ref><content-ref src='/page/137/Text/6'></content-ref><content-ref src='/page/137/Text/7'></content-ref><content-ref src='/page/137/TextInlineMath/8'></content-ref><content-ref src='/page/137/Text/9'></content-ref><content-ref src='/page/137/Code/10'></content-ref><content-ref src='/page/137/Text/11'></content-ref><content-ref src='/page/137/ListItem/207'></content-ref><content-ref src='/page/137/Text/13'></content-ref><content-ref src='/page/137/Code/14'></content-ref><content-ref src='/page/137/Text/15'></content-ref><content-ref src='/page/137/Code/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/137/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.521484375\n            ],\n            [\n              482.4034118652344,\n              60.521484375\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.521484375,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.763671875,\n              60.2314453125\n            ],\n            [\n              102.6474609375,\n              60.2314453125\n            ],\n            [\n              102.6474609375,\n              70.4794921875\n            ],\n            [\n              85.763671875,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            60.2314453125,\n            102.6474609375,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; max(1,2,3)\\n3\\nBut sum does not.\\n&gt;&gt;&gt; sum(1,2,3)\\nTypeError: sum expected at most 2 arguments, got 3\\nWrite a function called sumall that takes any number of arguments and returns their sum.</pre>\",\n          \"polygon\": [\n            [\n              86.0625,\n              84.64306640625\n            ],\n            [\n              452.357177734375,\n              84.64306640625\n            ],\n            [\n              452.357177734375,\n              172.08984375\n            ],\n            [\n              86.0625,\n              172.08984375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            84.64306640625,\n            452.357177734375,\n            172.08984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"4\": \"/page/136/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-137-0\\\"></span><b>12.5 Lists and tuples</b></h2>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              199.16015625\n            ],\n            [\n              229.5,\n              199.16015625\n            ],\n            [\n              229.5,\n              215.7159423828125\n            ],\n            [\n              85.763671875,\n              215.7159423828125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            199.16015625,\n            229.5,\n            215.7159423828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">zip is a built-in function that takes two or more sequences and \\\"zips\\\" them into a list of tuples where each tuple contains one element from each sequence. In Python 3, zip returns an iterator of tuples, but for most purposes, an iterator behaves like a list.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              226.810546875\n            ],\n            [\n              483.50390625,\n              226.810546875\n            ],\n            [\n              483.50390625,\n              262.49285888671875\n            ],\n            [\n              85.763671875,\n              262.49285888671875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            226.810546875,\n            483.50390625,\n            262.49285888671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This example zips a string and a list:</p>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              270.896484375\n            ],\n            [\n              247.130859375,\n              270.896484375\n            ],\n            [\n              247.130859375,\n              282.6878356933594\n            ],\n            [\n              86.13720703125,\n              282.6878356933594\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            270.896484375,\n            247.130859375,\n            282.6878356933594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; s = 'abc'\\n&gt;&gt;&gt; t = [0, 1, 2]\\n&gt;&gt;&gt; zip(s, t)\\n[('a', 0), ('b', 1), ('c', 2)]</pre>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              288.7986755371094\n            ],\n            [\n              243.27981567382812,\n              288.7986755371094\n            ],\n            [\n              243.27981567382812,\n              336.638671875\n            ],\n            [\n              86.13720703125,\n              336.638671875\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            288.7986755371094,\n            243.27981567382812,\n            336.638671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The result is a list of tuples where each tuple contains a character from the string and the corresponding element from the list.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              340.119140625\n            ],\n            [\n              482.4034118652344,\n              340.119140625\n            ],\n            [\n              482.4034118652344,\n              363.91082763671875\n            ],\n            [\n              86.0625,\n              363.91082763671875\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            340.119140625,\n            482.4034118652344,\n            363.91082763671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the sequences are not the same length, the result has the length of the shorter one.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              372.0234375\n            ],\n            [\n              454.4782409667969,\n              372.0234375\n            ],\n            [\n              454.4782409667969,\n              384.1058349609375\n            ],\n            [\n              85.6142578125,\n              384.1058349609375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            372.0234375,\n            454.4782409667969,\n            384.1058349609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/TextInlineMath/8\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; zip('Anne', 'Elk') [('A', 'E'), ('n', 'l'), ('n', 'k')]</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              388.458984375\n            ],\n            [\n              274.6507568359375,\n              388.458984375\n            ],\n            [\n              274.6507568359375,\n              412.374267578125\n            ],\n            [\n              85.68896484375,\n              412.374267578125\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            388.458984375,\n            274.6507568359375,\n            412.374267578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can use tuple assignment in a for loop to traverse a list of tuples:</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              416.8828125\n            ],\n            [\n              391.7991943359375,\n              416.8828125\n            ],\n            [\n              391.7991943359375,\n              428.746826171875\n            ],\n            [\n              85.68896484375,\n              428.746826171875\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            416.8828125,\n            391.7991943359375,\n            428.746826171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>t = [('a', 0), ('b', 1), ('c', 2)]\\nfor letter, number in t:\\n    print number, letter</pre>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              434.857666015625\n            ],\n            [\n              264.19586181640625,\n              434.857666015625\n            ],\n            [\n              264.19586181640625,\n              469.86328125\n            ],\n            [\n              85.39013671875,\n              469.86328125\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            434.857666015625,\n            264.19586181640625,\n            469.86328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Each time through the loop, Python selects the next tuple in the list and assigns the elements to letter and number. The output of this loop is:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              474.890625\n            ],\n            [\n              482.4034729003906,\n              474.890625\n            ],\n            [\n              482.4034729003906,\n              497.77581787109375\n            ],\n            [\n              85.6142578125,\n              497.77581787109375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            474.890625,\n            482.4034729003906,\n            497.77581787109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/ListItem/207\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">0 a 1 b 2 c</li>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              503.88665771484375\n            ],\n            [\n              102.9462890625,\n              503.88665771484375\n            ],\n            [\n              102.9462890625,\n              538.2382659912109\n            ],\n            [\n              85.166015625,\n              538.2382659912109\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            503.88665771484375,\n            102.9462890625,\n            538.2382659912109\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you combine zip, for and tuple assignment, you get a useful idiom for traversing two (or more) sequences at the same time. For example, has_match takes two sequences, t1 and t2, and returns True if there is an index i such that t1[i] == t2[i]:</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              543.33984375\n            ],\n            [\n              482.90625,\n              543.33984375\n            ],\n            [\n              482.90625,\n              578.9998321533203\n            ],\n            [\n              85.0166015625,\n              578.9998321533203\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            543.33984375,\n            482.90625,\n            578.9998321533203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def has_match(t1, t2):\\n    for x, y in zip(t1, t2):\\n        if x == y:\\n            return True\\n    return False</pre>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              584.71875\n            ],\n            [\n              232.84571838378906,\n              584.71875\n            ],\n            [\n              232.84571838378906,\n              643.8502960205078\n            ],\n            [\n              86.28662109375,\n              643.8502960205078\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            584.71875,\n            232.84571838378906,\n            643.8502960205078\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you need to traverse the elements of a sequence and their indices, you can use the built-in function enumerate:</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              649.30078125\n            ],\n            [\n              482.607421875,\n              649.30078125\n            ],\n            [\n              482.607421875,\n              672.50390625\n            ],\n            [\n              85.166015625,\n              672.50390625\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            649.30078125,\n            482.607421875,\n            672.50390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/137/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>for index, element in enumerate('abc'):\\n    print index, element</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              677.91796875\n            ],\n            [\n              290.3377685546875,\n              677.91796875\n            ],\n            [\n              290.3377685546875,\n              700.6852874755859\n            ],\n            [\n              85.9130859375,\n              700.6852874755859\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            677.91796875,\n            290.3377685546875,\n            700.6852874755859\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/134/SectionHeader/1\",\n        \"2\": \"/page/137/SectionHeader/2\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/138/Page/189\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/138/PageHeader/0'></content-ref><content-ref src='/page/138/PageHeader/20'></content-ref><content-ref src='/page/138/Text/1'></content-ref><content-ref src='/page/138/Text/2'></content-ref><content-ref src='/page/138/SectionHeader/3'></content-ref><content-ref src='/page/138/Text/4'></content-ref><content-ref src='/page/138/Code/5'></content-ref><content-ref src='/page/138/Text/6'></content-ref><content-ref src='/page/138/Text/7'></content-ref><content-ref src='/page/138/Code/8'></content-ref><content-ref src='/page/138/Text/9'></content-ref><content-ref src='/page/138/Code/10'></content-ref><content-ref src='/page/138/Text/11'></content-ref><content-ref src='/page/138/Text/12'></content-ref><content-ref src='/page/138/Code/13'></content-ref><content-ref src='/page/138/Text/14'></content-ref><content-ref src='/page/138/Code/15'></content-ref><content-ref src='/page/138/Text/16'></content-ref><content-ref src='/page/138/Text/17'></content-ref><content-ref src='/page/138/Code/188'></content-ref><content-ref src='/page/138/Text/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/138/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.197265625,\n              61.1015625\n            ],\n            [\n              525.6033935546875,\n              61.1015625\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.197265625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            61.1015625,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.3984375,\n              60.521484375\n            ],\n            [\n              525.9375,\n              60.521484375\n            ],\n            [\n              525.9375,\n              70.189453125\n            ],\n            [\n              510.3984375,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            510.3984375,\n            60.521484375,\n            525.9375,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The output of this loop is:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              88.171875\n            ],\n            [\n              242.97439575195312,\n              88.171875\n            ],\n            [\n              242.97439575195312,\n              98.79791259765625\n            ],\n            [\n              128.3466796875,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            88.171875,\n            242.97439575195312,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">0 a 1 b 2 c Again.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              104.80078125\n            ],\n            [\n              165.7001953125,\n              104.80078125\n            ],\n            [\n              165.7001953125,\n              156.02496337890625\n            ],\n            [\n              128.6455078125,\n              156.02496337890625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            104.80078125,\n            165.7001953125,\n            156.02496337890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-138-0\\\"></span><b>12.6 Dictionaries and tuples</b></h4>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              186.1083984375\n            ],\n            [\n              322.0256042480469,\n              186.1083984375\n            ],\n            [\n              322.0256042480469,\n              200.4730224609375\n            ],\n            [\n              128.57080078125,\n              200.4730224609375\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            186.1083984375,\n            322.0256042480469,\n            200.4730224609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Dictionaries have a method called items that returns a list of tuples, where each tuple is a key-value pair.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              212.6953125\n            ],\n            [\n              525.5999755859375,\n              212.6953125\n            ],\n            [\n              525.5999755859375,\n              235.33001708984375\n            ],\n            [\n              129.09375,\n              235.33001708984375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            212.6953125,\n            525.5999755859375,\n            235.33001708984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; d = {'a':0, 'b':1, 'c':2}\\n&gt;&gt;&gt; t = d.items()\\n&gt;&gt;&gt; print t\\n[('a', 0), ('c', 2), ('b', 1)]</pre>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              241.6368408203125\n            ],\n            [\n              286.4798583984375,\n              241.6368408203125\n            ],\n            [\n              286.4798583984375,\n              288.1824645996094\n            ],\n            [\n              129.16845703125,\n              288.1824645996094\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            241.6368408203125,\n            286.4798583984375,\n            288.1824645996094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As you should expect from a dictionary, the items are in no particular order. In Python 3, items returns an iterator, but for many purposes, iterators behave like lists.</p>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              294.099609375\n            ],\n            [\n              525.6033935546875,\n              294.099609375\n            ],\n            [\n              525.6033935546875,\n              316.9450378417969\n            ],\n            [\n              129.60003662109375,\n              316.9450378417969\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            294.099609375,\n            525.6033935546875,\n            316.9450378417969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Going in the other direction, you can use a list of tuples to initialize a new dictionary:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              327.1640625\n            ],\n            [\n              504.15386962890625,\n              327.1640625\n            ],\n            [\n              504.15386962890625,\n              337.3360290527344\n            ],\n            [\n              128.794921875,\n              337.3360290527344\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            327.1640625,\n            504.15386962890625,\n            337.3360290527344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = [('a', 0), ('c', 2), ('b', 1)]\\n&gt;&gt;&gt; d = dict(t)\\n&gt;&gt;&gt; print d\\n{'a': 0, 'c': 2, 'b': 1}</pre>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              343.40625\n            ],\n            [\n              328.3128967285156,\n              343.40625\n            ],\n            [\n              328.3128967285156,\n              393.6796875\n            ],\n            [\n              129.5419921875,\n              393.6796875\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            343.40625,\n            328.3128967285156,\n            393.6796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Combining dict with zip yields a concise way to create a dictionary:</p>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              396.6448974609375\n            ],\n            [\n              434.49609375,\n              396.6448974609375\n            ],\n            [\n              434.49609375,\n              406.7570495605469\n            ],\n            [\n              127.4501953125,\n              406.7570495605469\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            396.6448974609375,\n            434.49609375,\n            406.7570495605469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; d = dict(zip('abc', range(3)))\\n&gt;&gt;&gt; print d\\n{'a': 0, 'c': 2, 'b': 1}</pre>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              413.0649108886719\n            ],\n            [\n              307.40447998046875,\n              413.0649108886719\n            ],\n            [\n              307.40447998046875,\n              447.4154968261719\n            ],\n            [\n              128.57080078125,\n              447.4154968261719\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            413.0649108886719,\n            307.40447998046875,\n            447.4154968261719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The dictionary method update also takes a list of tuples and adds them, as key-value pairs, to an existing dictionary.</p>\",\n          \"polygon\": [\n            [\n              129.60011291503906,\n              453.8719177246094\n            ],\n            [\n              525.9375,\n              453.8719177246094\n            ],\n            [\n              525.9375,\n              476.1790771484375\n            ],\n            [\n              129.60011291503906,\n              476.1790771484375\n            ]\n          ],\n          \"bbox\": [\n            129.60011291503906,\n            453.8719177246094,\n            525.9375,\n            476.1790771484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Combining items, tuple assignment and for, you get the idiom for traversing the keys and values of a dictionary:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              486.4569091796875\n            ],\n            [\n              525.5986328125,\n              486.4569091796875\n            ],\n            [\n              525.5986328125,\n              508.7640686035156\n            ],\n            [\n              129.09375,\n              508.7640686035156\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            486.4569091796875,\n            525.5986328125,\n            508.7640686035156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>for key, val in d.items():\\n    print val, key</pre>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              515.0709228515625\n            ],\n            [\n              265.59954833984375,\n              515.0709228515625\n            ],\n            [\n              265.59954833984375,\n              539.859375\n            ],\n            [\n              128.794921875,\n              539.859375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            515.0709228515625,\n            265.59954833984375,\n            539.859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The output of this loop is:</p>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              543.8334808349609\n            ],\n            [\n              242.97450256347656,\n              543.8334808349609\n            ],\n            [\n              242.97450256347656,\n              554.16796875\n            ],\n            [\n              128.86962890625,\n              554.16796875\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            543.8334808349609,\n            242.97450256347656,\n            554.16796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>0 a\\n2 c\\n1 b</pre>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              560.1039276123047\n            ],\n            [\n              149.2646484375,\n              560.1039276123047\n            ],\n            [\n              149.2646484375,\n              596.70703125\n            ],\n            [\n              127.8984375,\n              596.70703125\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            560.1039276123047,\n            149.2646484375,\n            596.70703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Again.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              601.0604858398438\n            ],\n            [\n              160.0224609375,\n              601.0604858398438\n            ],\n            [\n              160.0224609375,\n              611.40234375\n            ],\n            [\n              128.6455078125,\n              611.40234375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            601.0604858398438,\n            160.0224609375,\n            611.40234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is common to use tuples as keys in dictionaries (primarily because you can't use lists). For example, a telephone directory might map from last-name, first-name pairs to telephone numbers. Assuming that we have defined last, first and number, we could write:</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              621.0703125\n            ],\n            [\n              525.603515625,\n              621.0703125\n            ],\n            [\n              525.603515625,\n              655.875\n            ],\n            [\n              127.8984375,\n              655.875\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            621.0703125,\n            525.603515625,\n            655.875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Code/188\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>directory[last,first] = number</pre>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              662.1099395751953\n            ],\n            [\n              286.5209655761719,\n              662.1099395751953\n            ],\n            [\n              286.5209655761719,\n              672.0725402832031\n            ],\n            [\n              127.7490234375,\n              672.0725402832031\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            662.1099395751953,\n            286.5209655761719,\n            672.0725402832031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/138/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The expression in brackets is a tuple. We could use tuple assignment to traverse this dictionary.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              678.3046875\n            ],\n            [\n              525.6035766601562,\n              678.3046875\n            ],\n            [\n              525.6035766601562,\n              700.8351058959961\n            ],\n            [\n              128.49609375,\n              700.8351058959961\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            678.3046875,\n            525.6035766601562,\n            700.8351058959961\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/134/SectionHeader/1\",\n        \"2\": \"/page/137/SectionHeader/2\",\n        \"4\": \"/page/138/SectionHeader/3\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/139/Page/202\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/139/PageHeader/0'></content-ref><content-ref src='/page/139/PageHeader/17'></content-ref><content-ref src='/page/139/Text/1'></content-ref><content-ref src='/page/139/Text/170'></content-ref><content-ref src='/page/139/TableGroup/171'></content-ref><content-ref src='/page/139/Code/6'></content-ref><content-ref src='/page/139/Text/7'></content-ref><content-ref src='/page/139/Text/8'></content-ref><content-ref src='/page/139/Text/9'></content-ref><content-ref src='/page/139/Text/10'></content-ref><content-ref src='/page/139/Text/11'></content-ref><content-ref src='/page/139/SectionHeader/12'></content-ref><content-ref src='/page/139/Text/13'></content-ref><content-ref src='/page/139/Code/14'></content-ref><content-ref src='/page/139/Text/15'></content-ref><content-ref src='/page/139/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/139/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.47314453125\n            ],\n            [\n              482.4034118652344,\n              60.47314453125\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.47314453125,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.94189453125,\n              60.47314453125\n            ],\n            [\n              101.67626953125,\n              60.47314453125\n            ],\n            [\n              101.67626953125,\n              70.52783203125\n            ],\n            [\n              84.94189453125,\n              70.52783203125\n            ]\n          ],\n          \"bbox\": [\n            84.94189453125,\n            60.47314453125,\n            101.67626953125,\n            70.52783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">tuple</p>\",\n          \"polygon\": [\n            [\n              235.52000427246094,\n              87.45758056640625\n            ],\n            [\n              268.9453125,\n              87.45758056640625\n            ],\n            [\n              268.9453125,\n              97.98486328125\n            ],\n            [\n              235.52000427246094,\n              97.98486328125\n            ]\n          ],\n          \"bbox\": [\n            235.52000427246094,\n            87.45758056640625,\n            268.9453125,\n            97.98486328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/Text/170\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">0 1 'Cleese' 'John'</p>\",\n          \"polygon\": [\n            [\n              232.9365234375,\n              99.193359375\n            ],\n            [\n              327.515625,\n              99.193359375\n            ],\n            [\n              327.515625,\n              132.064453125\n            ],\n            [\n              232.9365234375,\n              132.064453125\n            ]\n          ],\n          \"bbox\": [\n            232.9365234375,\n            99.193359375,\n            327.515625,\n            132.064453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/TableGroup/171\",\n          \"block_type\": \"TableGroup\",\n          \"html\": \"<content-ref src='/page/139/Caption/3'></content-ref><content-ref src='/page/139/Table/4'></content-ref><content-ref src='/page/139/Caption/5'></content-ref>\",\n          \"polygon\": [\n            [\n              188.859375,\n              144.439453125\n            ],\n            [\n              375.029296875,\n              144.439453125\n            ],\n            [\n              375.029296875,\n              293.87188720703125\n            ],\n            [\n              188.859375,\n              293.87188720703125\n            ]\n          ],\n          \"bbox\": [\n            188.859375,\n            144.439453125,\n            375.029296875,\n            293.87188720703125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/139/Caption/3\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-139-1\\\"></span>Figure 12.1: State diagram.</p>\",\n              \"polygon\": [\n                [\n                  224.12109375,\n                  144.439453125\n                ],\n                [\n                  343.2491760253906,\n                  144.439453125\n                ],\n                [\n                  343.2491760253906,\n                  155.55291748046875\n                ],\n                [\n                  224.12109375,\n                  155.55291748046875\n                ]\n              ],\n              \"bbox\": [\n                224.12109375,\n                144.439453125,\n                343.2491760253906,\n                155.55291748046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"4\": \"/page/138/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/139/Table/4\",\n              \"block_type\": \"Table\",\n              \"html\": \"<table><tbody><tr><th></th><th>dict</th></tr><tr><th></th><td>('Cleese', 'John') → '08700 100 222'</td></tr><tr><th></th><td>('Chapman', 'Graham') → '08700 100 222'</td></tr><tr><th></th><td>('Idle', 'Eric') → '08700 100 222'</td></tr><tr><th></th><td>('Gilliam', 'Terry') → '08700 100 222'</td></tr><tr><th></th><td>('Jones', 'Terry') → '08700 100 222'</td></tr><tr><th></th><td>('Palin', 'Michael') → '08700 100 222'</td></tr></tbody></table>\",\n              \"polygon\": [\n                [\n                  188.859375,\n                  168.17657470703125\n                ],\n                [\n                  375.029296875,\n                  168.17657470703125\n                ],\n                [\n                  375.029296875,\n                  266.0625\n                ],\n                [\n                  188.859375,\n                  266.0625\n                ]\n              ],\n              \"bbox\": [\n                188.859375,\n                168.17657470703125,\n                375.029296875,\n                266.0625\n              ],\n              \"children\": [\n                {\n                  \"id\": \"/page/139/TableCell/186\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th></th>\",\n                  \"polygon\": [\n                    [\n                      188.859375,\n                      168.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      168.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      169.17657470703125\n                    ],\n                    [\n                      188.859375,\n                      169.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    188.859375,\n                    168.17657470703125,\n                    189.859375,\n                    169.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/187\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th>dict</th>\",\n                  \"polygon\": [\n                    [\n                      189.859375,\n                      168.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      168.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      169.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      169.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    189.859375,\n                    168.17657470703125,\n                    190.859375,\n                    169.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/188\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th></th>\",\n                  \"polygon\": [\n                    [\n                      188.859375,\n                      169.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      169.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      170.17657470703125\n                    ],\n                    [\n                      188.859375,\n                      170.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    188.859375,\n                    169.17657470703125,\n                    189.859375,\n                    170.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/189\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>('Cleese', 'John') → '08700 100 222'</td>\",\n                  \"polygon\": [\n                    [\n                      189.859375,\n                      169.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      169.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      170.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      170.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    189.859375,\n                    169.17657470703125,\n                    190.859375,\n                    170.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/190\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th></th>\",\n                  \"polygon\": [\n                    [\n                      188.859375,\n                      170.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      170.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      171.17657470703125\n                    ],\n                    [\n                      188.859375,\n                      171.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    188.859375,\n                    170.17657470703125,\n                    189.859375,\n                    171.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/191\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>('Chapman', 'Graham') → '08700 100 222'</td>\",\n                  \"polygon\": [\n                    [\n                      189.859375,\n                      170.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      170.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      171.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      171.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    189.859375,\n                    170.17657470703125,\n                    190.859375,\n                    171.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/192\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th></th>\",\n                  \"polygon\": [\n                    [\n                      188.859375,\n                      171.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      171.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      172.17657470703125\n                    ],\n                    [\n                      188.859375,\n                      172.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    188.859375,\n                    171.17657470703125,\n                    189.859375,\n                    172.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/193\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>('Idle', 'Eric') → '08700 100 222'</td>\",\n                  \"polygon\": [\n                    [\n                      189.859375,\n                      171.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      171.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      172.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      172.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    189.859375,\n                    171.17657470703125,\n                    190.859375,\n                    172.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/194\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th></th>\",\n                  \"polygon\": [\n                    [\n                      188.859375,\n                      172.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      172.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      173.17657470703125\n                    ],\n                    [\n                      188.859375,\n                      173.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    188.859375,\n                    172.17657470703125,\n                    189.859375,\n                    173.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/195\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>('Gilliam', 'Terry') → '08700 100 222'</td>\",\n                  \"polygon\": [\n                    [\n                      189.859375,\n                      172.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      172.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      173.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      173.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    189.859375,\n                    172.17657470703125,\n                    190.859375,\n                    173.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/196\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th></th>\",\n                  \"polygon\": [\n                    [\n                      188.859375,\n                      173.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      173.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      174.17657470703125\n                    ],\n                    [\n                      188.859375,\n                      174.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    188.859375,\n                    173.17657470703125,\n                    189.859375,\n                    174.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/197\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>('Jones', 'Terry') → '08700 100 222'</td>\",\n                  \"polygon\": [\n                    [\n                      189.859375,\n                      173.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      173.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      174.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      174.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    189.859375,\n                    173.17657470703125,\n                    190.859375,\n                    174.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/198\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<th></th>\",\n                  \"polygon\": [\n                    [\n                      188.859375,\n                      174.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      174.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      175.17657470703125\n                    ],\n                    [\n                      188.859375,\n                      175.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    188.859375,\n                    174.17657470703125,\n                    189.859375,\n                    175.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                },\n                {\n                  \"id\": \"/page/139/TableCell/199\",\n                  \"block_type\": \"TableCell\",\n                  \"html\": \"<td>('Palin', 'Michael') → '08700 100 222'</td>\",\n                  \"polygon\": [\n                    [\n                      189.859375,\n                      174.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      174.17657470703125\n                    ],\n                    [\n                      190.859375,\n                      175.17657470703125\n                    ],\n                    [\n                      189.859375,\n                      175.17657470703125\n                    ]\n                  ],\n                  \"bbox\": [\n                    189.859375,\n                    174.17657470703125,\n                    190.859375,\n                    175.17657470703125\n                  ],\n                  \"children\": null,\n                  \"section_hierarchy\": {\n                    \"1\": \"/page/134/SectionHeader/1\",\n                    \"2\": \"/page/137/SectionHeader/2\",\n                    \"4\": \"/page/138/SectionHeader/3\"\n                  },\n                  \"images\": {}\n                }\n              ],\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"4\": \"/page/138/SectionHeader/3\"\n              },\n              \"images\": null\n            },\n            {\n              \"id\": \"/page/139/Caption/5\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-139-2\\\"></span>Figure 12.2: State diagram.</p>\",\n              \"polygon\": [\n                [\n                  224.2705078125,\n                  282.884765625\n                ],\n                [\n                  343.2491760253906,\n                  282.884765625\n                ],\n                [\n                  343.2491760253906,\n                  293.87188720703125\n                ],\n                [\n                  224.2705078125,\n                  293.87188720703125\n                ]\n              ],\n              \"bbox\": [\n                224.2705078125,\n                282.884765625,\n                343.2491760253906,\n                293.87188720703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"4\": \"/page/138/SectionHeader/3\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/139/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>for last, first in directory:\\n    print first, last, directory[last,first]</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              316.49273681640625\n            ],\n            [\n              321.240234375,\n              316.49273681640625\n            ],\n            [\n              321.240234375,\n              339.345703125\n            ],\n            [\n              85.763671875,\n              339.345703125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            316.49273681640625,\n            321.240234375,\n            339.345703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This loop traverses the keys in directory, which are tuples. It assigns the elements of each tuple to last and first, then prints the name and corresponding telephone number.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              344.1796875\n            ],\n            [\n              482.4014892578125,\n              344.1796875\n            ],\n            [\n              482.4014892578125,\n              367.201904296875\n            ],\n            [\n              85.46484375,\n              367.201904296875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            344.1796875,\n            482.4014892578125,\n            367.201904296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are two ways to represent tuples in a state diagram. The more detailed version shows the indices and elements just as they appear in a list. For example, the tuple ('Cleese', 'John') would appear as in Figure <a href=\\\"#page-139-1\\\">12.1.</a></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              376.6640625\n            ],\n            [\n              482.607421875,\n              376.6640625\n            ],\n            [\n              482.607421875,\n              411.7698974609375\n            ],\n            [\n              85.763671875,\n              411.7698974609375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            376.6640625,\n            482.607421875,\n            411.7698974609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But in a larger diagram you might want to leave out the details. For example, a diagram of the telephone directory might appear as in Figure <a href=\\\"#page-139-2\\\">12.2.</a></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              421.13671875\n            ],\n            [\n              482.90625,\n              421.13671875\n            ],\n            [\n              482.90625,\n              444.1438903808594\n            ],\n            [\n              85.6142578125,\n              444.1438903808594\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            421.13671875,\n            482.90625,\n            444.1438903808594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here the tuples are shown using Python syntax as a graphical shorthand.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              453.234375\n            ],\n            [\n              408.0922546386719,\n              453.234375\n            ],\n            [\n              408.0922546386719,\n              464.3238830566406\n            ],\n            [\n              85.6142578125,\n              464.3238830566406\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            453.234375,\n            408.0922546386719,\n            464.3238830566406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The telephone number in the diagram is the complaints line for the BBC, so please don't call it.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              472.95703125\n            ],\n            [\n              483.205078125,\n              472.95703125\n            ],\n            [\n              483.205078125,\n              496.6968994140625\n            ],\n            [\n              85.46484375,\n              496.6968994140625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            472.95703125,\n            483.205078125,\n            496.6968994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"4\": \"/page/138/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-139-0\\\"></span><b>12.7 Comparing tuples</b></h3>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              525.55078125\n            ],\n            [\n              244.19384765625,\n              525.55078125\n            ],\n            [\n              244.19384765625,\n              540.5119476318359\n            ],\n            [\n              85.46484375,\n              540.5119476318359\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            525.55078125,\n            244.19384765625,\n            540.5119476318359\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The relational operators work with tuples and other sequences; Python starts by comparing the first element from each sequence. If they are equal, it goes on to the next elements, and so on, until it finds elements that differ. Subsequent elements are not considered (even if they are really big).</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              552.234375\n            ],\n            [\n              483.50390625,\n              552.234375\n            ],\n            [\n              483.50390625,\n              599.4618988037109\n            ],\n            [\n              85.9130859375,\n              599.4618988037109\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            552.234375,\n            483.50390625,\n            599.4618988037109\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; (0, 1, 2) &lt; (0, 3, 4)\\nTrue\\n&gt;&gt;&gt; (0, 1, 2000000) &lt; (0, 3, 4)\\nTrue</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              604.828125\n            ],\n            [\n              248.54124450683594,\n              604.828125\n            ],\n            [\n              248.54124450683594,\n              652.1033477783203\n            ],\n            [\n              85.9130859375,\n              652.1033477783203\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            604.828125,\n            248.54124450683594,\n            652.1033477783203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The sort function works the same way. It sorts primarily by first element, but in the case of a tie, it sorts by second element, and so on.</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              657.421875\n            ],\n            [\n              482.4044189453125,\n              657.421875\n            ],\n            [\n              482.4044189453125,\n              680.6559066772461\n            ],\n            [\n              86.361328125,\n              680.6559066772461\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            657.421875,\n            482.4044189453125,\n            680.6559066772461\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/139/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This feature lends itself to a pattern called <b>DSU</b> for</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              689.90625\n            ],\n            [\n              310.482421875,\n              689.90625\n            ],\n            [\n              310.482421875,\n              700.8349075317383\n            ],\n            [\n              86.0625,\n              700.8349075317383\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            689.90625,\n            310.482421875,\n            700.8349075317383\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/134/SectionHeader/1\",\n        \"2\": \"/page/137/SectionHeader/2\",\n        \"3\": \"/page/139/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/140/Page/180\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/140/PageHeader/0'></content-ref><content-ref src='/page/140/PageHeader/16'></content-ref><content-ref src='/page/140/ListItem/1'></content-ref><content-ref src='/page/140/Text/2'></content-ref><content-ref src='/page/140/Text/3'></content-ref><content-ref src='/page/140/Text/4'></content-ref><content-ref src='/page/140/Code/5'></content-ref><content-ref src='/page/140/Text/6'></content-ref><content-ref src='/page/140/Text/7'></content-ref><content-ref src='/page/140/Text/8'></content-ref><content-ref src='/page/140/Text/9'></content-ref><content-ref src='/page/140/SectionHeader/10'></content-ref><content-ref src='/page/140/Text/11'></content-ref><content-ref src='/page/140/Text/12'></content-ref><content-ref src='/page/140/Text/13'></content-ref><content-ref src='/page/140/Text/14'></content-ref><content-ref src='/page/140/ListItem/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/140/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.09375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.09375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              61.14990234375\n            ],\n            [\n              525.638671875,\n              61.14990234375\n            ],\n            [\n              525.638671875,\n              70.33447265625\n            ],\n            [\n              510.099609375,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            61.14990234375,\n            525.638671875,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/ListItem/1\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>Decorate</b> a sequence by building a list of tuples with one or more sort keys preceding the elements from the sequence,</li>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              88.41357421875\n            ],\n            [\n              526.53515625,\n              88.41357421875\n            ],\n            [\n              526.53515625,\n              110.99188232421875\n            ],\n            [\n              129.60000610351562,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            88.41357421875,\n            526.53515625,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Sort</b> the list of tuples, and</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              120.33111572265625\n            ],\n            [\n              245.935546875,\n              120.33111572265625\n            ],\n            [\n              245.935546875,\n              130.390869140625\n            ],\n            [\n              128.49609375,\n              130.390869140625\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            120.33111572265625,\n            245.935546875,\n            130.390869140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Undecorate</b> by extracting the sorted elements of the sequence.</p>\",\n          \"polygon\": [\n            [\n              127.37548828125,\n              139.5087890625\n            ],\n            [\n              405.80859375,\n              139.5087890625\n            ],\n            [\n              405.80859375,\n              149.78985595703125\n            ],\n            [\n              127.37548828125,\n              149.78985595703125\n            ]\n          ],\n          \"bbox\": [\n            127.37548828125,\n            139.5087890625,\n            405.80859375,\n            149.78985595703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, suppose you have a list of words and you want to sort them from longest to shortest:</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              161.1650390625\n            ],\n            [\n              525.638671875,\n              161.1650390625\n            ],\n            [\n              525.638671875,\n              183.69189453125\n            ],\n            [\n              127.599609375,\n              183.69189453125\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            161.1650390625,\n            525.638671875,\n            183.69189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def sort_by_length(words):\\n    t = []\\n    for word in words:\\n       t.append((len(word), word))\\n    t.sort(reverse=True)\\n    res = []\\n    for length, word in t:\\n        res.append(word)\\n    return res</pre>\",\n          \"polygon\": [\n            [\n              129.6000213623047,\n              188.84771728515625\n            ],\n            [\n              307.4338073730469,\n              188.84771728515625\n            ],\n            [\n              307.4338073730469,\n              324.0703125\n            ],\n            [\n              129.6000213623047,\n              324.0703125\n            ]\n          ],\n          \"bbox\": [\n            129.6000213623047,\n            188.84771728515625,\n            307.4338073730469,\n            324.0703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first loop builds a list of tuples, where each tuple is a word preceded by its length.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              325.423828125\n            ],\n            [\n              508.69696044921875,\n              325.423828125\n            ],\n            [\n              508.69696044921875,\n              336.171875\n            ],\n            [\n              129.2431640625,\n              336.171875\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            325.423828125,\n            508.69696044921875,\n            336.171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">sort compares the first element, length, first, and only considers the second element to break ties. The keyword argument reverse=True tells sort to go in decreasing order.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              345.2997131347656\n            ],\n            [\n              525.59912109375,\n              345.2997131347656\n            ],\n            [\n              525.59912109375,\n              367.6058654785156\n            ],\n            [\n              128.9443359375,\n              367.6058654785156\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            345.2997131347656,\n            525.59912109375,\n            367.6058654785156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The second loop traverses the list of tuples and builds a list of words in descending order of length.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              376.6640625\n            ],\n            [\n              525.6034545898438,\n              376.6640625\n            ],\n            [\n              525.6034545898438,\n              399.03985595703125\n            ],\n            [\n              129.09375,\n              399.03985595703125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            376.6640625,\n            525.6034545898438,\n            399.03985595703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 12.2.</b> <i>In this example, ties are broken by comparing words, so words with the same length</i> <i>appear in reverse alphabetical order. For other applications you might want to break ties at ran</i><i>dom. Modify this example so that words with the same length appear in random order. Hint:</i> <i>see the</i> random <i>function in the</i> random <i>module. Solution:</i> <a href=\\\"http://thinkpython.com/code/unstable_sort.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/unstable_sort.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/unstable_sort.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/unstable_sort.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/unstable_sort.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/unstable_sort.py\\\">unstable_</a> <a href=\\\"http://thinkpython.com/code/unstable_sort.py\\\">sort.</a> <a href=\\\"http://thinkpython.com/code/unstable_sort.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              401.09857177734375\n            ],\n            [\n              525.9375,\n              401.09857177734375\n            ],\n            [\n              525.9375,\n              459.83917236328125\n            ],\n            [\n              129.2431640625,\n              459.83917236328125\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            401.09857177734375,\n            525.9375,\n            459.83917236328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-140-0\\\"></span><b>12.8 Sequences of sequences</b></h4>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              488.0967102050781\n            ],\n            [\n              326.0281982421875,\n              488.0967102050781\n            ],\n            [\n              326.0281982421875,\n              502.44293212890625\n            ],\n            [\n              127.97314453125,\n              502.44293212890625\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            488.0967102050781,\n            326.0281982421875,\n            502.44293212890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\",\n            \"4\": \"/page/140/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I have focused on lists of tuples, but almost all of the examples in this chapter also work with lists of lists, tuples of tuples, and tuples of lists. To avoid enumerating the possible combinations, it is sometimes easier to talk about sequences of sequences.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              513.8912658691406\n            ],\n            [\n              525.9375,\n              513.8912658691406\n            ],\n            [\n              525.9375,\n              548.2418518066406\n            ],\n            [\n              128.6455078125,\n              548.2418518066406\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            513.8912658691406,\n            525.9375,\n            548.2418518066406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\",\n            \"4\": \"/page/140/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In many contexts, the different kinds of sequences (strings, lists and tuples) can be used interchangeably. So how and why do you choose one over the others?</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              557.26171875\n            ],\n            [\n              525.9375,\n              557.26171875\n            ],\n            [\n              525.9375,\n              579.6768646240234\n            ],\n            [\n              128.49609375,\n              579.6768646240234\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            557.26171875,\n            525.9375,\n            579.6768646240234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\",\n            \"4\": \"/page/140/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To start with the obvious, strings are more limited than other sequences because the elements have to be characters. They are also immutable. If you need the ability to change the characters in a string (as opposed to creating a new string), you might want to use a list of characters instead.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              588.9532623291016\n            ],\n            [\n              525.9375,\n              588.9532623291016\n            ],\n            [\n              525.9375,\n              635.4988708496094\n            ],\n            [\n              128.0478515625,\n              635.4988708496094\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            588.9532623291016,\n            525.9375,\n            635.4988708496094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\",\n            \"4\": \"/page/140/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Lists are more common than tuples, mostly because they are mutable. But there are a few cases where you might prefer tuples:</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              644.66015625\n            ],\n            [\n              525.6033935546875,\n              644.66015625\n            ],\n            [\n              525.6033935546875,\n              666.9338836669922\n            ],\n            [\n              127.7490234375,\n              666.9338836669922\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            644.66015625,\n            525.6033935546875,\n            666.9338836669922\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\",\n            \"4\": \"/page/140/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/140/ListItem/15\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\">1. In some contexts, like a return statement, it is syntactically simpler to create a tuple than a list. In other contexts, you might prefer a list.</li>\",\n          \"polygon\": [\n            [\n              141.1962890625,\n              678.3046875\n            ],\n            [\n              525.6043090820312,\n              678.3046875\n            ],\n            [\n              525.6043090820312,\n              700.8348846435547\n            ],\n            [\n              141.1962890625,\n              700.8348846435547\n            ]\n          ],\n          \"bbox\": [\n            141.1962890625,\n            678.3046875,\n            525.6043090820312,\n            700.8348846435547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\",\n            \"4\": \"/page/140/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/134/SectionHeader/1\",\n        \"2\": \"/page/137/SectionHeader/2\",\n        \"3\": \"/page/139/SectionHeader/12\",\n        \"4\": \"/page/140/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/141/Page/188\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/141/PageHeader/0'></content-ref><content-ref src='/page/141/PageHeader/10'></content-ref><content-ref src='/page/141/ListGroup/187'></content-ref><content-ref src='/page/141/Text/3'></content-ref><content-ref src='/page/141/SectionHeader/4'></content-ref><content-ref src='/page/141/Text/5'></content-ref><content-ref src='/page/141/Text/6'></content-ref><content-ref src='/page/141/Text/7'></content-ref><content-ref src='/page/141/Code/8'></content-ref><content-ref src='/page/141/Text/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/141/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.71484375\n            ],\n            [\n              482.4034118652344,\n              60.71484375\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.71484375,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\",\n            \"4\": \"/page/140/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/141/PageHeader/10\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              60.8115234375\n            ],\n            [\n              101.82568359375,\n              60.8115234375\n            ],\n            [\n              101.82568359375,\n              70.189453125\n            ],\n            [\n              85.39013671875,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            60.8115234375,\n            101.82568359375,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\",\n            \"4\": \"/page/140/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/141/ListGroup/187\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/141/ListItem/1'></content-ref><content-ref src='/page/141/ListItem/2'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.41796875,\n              88.70361328125\n            ],\n            [\n              482.90625,\n              88.70361328125\n            ],\n            [\n              482.90625,\n              141.47784423828125\n            ],\n            [\n              97.41796875,\n              141.47784423828125\n            ]\n          ],\n          \"bbox\": [\n            97.41796875,\n            88.70361328125,\n            482.90625,\n            141.47784423828125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/141/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">2. If you want to use a sequence as a dictionary key, you have to use an immutable type like a tuple or string.</li>\",\n              \"polygon\": [\n                [\n                  98.8530044555664,\n                  88.70361328125\n                ],\n                [\n                  482.90625,\n                  88.70361328125\n                ],\n                [\n                  482.90625,\n                  110.99188232421875\n                ],\n                [\n                  98.8530044555664,\n                  110.99188232421875\n                ]\n              ],\n              \"bbox\": [\n                98.8530044555664,\n                88.70361328125,\n                482.90625,\n                110.99188232421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/139/SectionHeader/12\",\n                \"4\": \"/page/140/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/141/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">3. If you are passing a sequence as an argument to a function, using tuples reduces the potential for unexpected behavior due to aliasing.</li>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  118.916015625\n                ],\n                [\n                  482.4031677246094,\n                  118.916015625\n                ],\n                [\n                  482.4031677246094,\n                  141.47784423828125\n                ],\n                [\n                  97.41796875,\n                  141.47784423828125\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                118.916015625,\n                482.4031677246094,\n                141.47784423828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/139/SectionHeader/12\",\n                \"4\": \"/page/140/SectionHeader/10\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\",\n            \"4\": \"/page/140/SectionHeader/10\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/141/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Because tuples are immutable, they don't provide methods like sort and reverse, which modify existing lists. But Python provides the built-in functions sorted and reversed, which take any sequence as a parameter and return a new list with the same elements in a different order.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              149.3701171875\n            ],\n            [\n              482.40362548828125,\n              149.3701171875\n            ],\n            [\n              482.40362548828125,\n              196.2547607421875\n            ],\n            [\n              85.46484375,\n              196.2547607421875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            149.3701171875,\n            482.40362548828125,\n            196.2547607421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/139/SectionHeader/12\",\n            \"4\": \"/page/140/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/141/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-141-0\\\"></span><b>12.9 Debugging</b></h3>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              222.5216064453125\n            ],\n            [\n              201.2607421875,\n              222.5216064453125\n            ],\n            [\n              201.2607421875,\n              237.4453125\n            ],\n            [\n              85.6142578125,\n              237.4453125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            222.5216064453125,\n            201.2607421875,\n            237.4453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/141/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Lists, dictionaries and tuples are known generically as <b>data structures</b>; in this chapter we are starting to see compound data structures, like lists of tuples, and dictionaries that contain tuples as keys and lists as values. Compound data structures are useful, but they are prone to what I call <b>shape errors</b>; that is, errors caused when a data structure has the wrong type, size or composition. For example, if you are expecting a list with one integer and I give you a plain old integer (not in a list), it won't work.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              246.533203125\n            ],\n            [\n              482.90625,\n              246.533203125\n            ],\n            [\n              482.90625,\n              317.9517517089844\n            ],\n            [\n              85.6142578125,\n              317.9517517089844\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            246.533203125,\n            482.90625,\n            317.9517517089844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/141/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To help debug these kinds of errors, I have written a module called structshape that provides a function, also called structshape, that takes any kind of data structure as an argument and returns a string that summarizes its shape. You can download it from <a href=\\\"http://thinkpython.com/code/structshape.py\\\">http://thinkpython.com/code/structshape.py</a></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              325.037109375\n            ],\n            [\n              482.4033508300781,\n              325.037109375\n            ],\n            [\n              482.4033508300781,\n              372.603515625\n            ],\n            [\n              85.6142578125,\n              372.603515625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            325.037109375,\n            482.4033508300781,\n            372.603515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/141/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's the result for a simple list:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              379.951171875\n            ],\n            [\n              231.6647186279297,\n              379.951171875\n            ],\n            [\n              231.6647186279297,\n              390.4167785644531\n            ],\n            [\n              85.9130859375,\n              390.4167785644531\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            379.951171875,\n            231.6647186279297,\n            390.4167785644531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/141/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; from structshape import structshape\\n&gt;&gt;&gt; t = [1,2,3]\\n&gt;&gt;&gt; print structshape(t)\\nlist of 3 int\\nA fancier program might write \\\"list of 3 ints,\\\" but it was easier not to deal with plurals.\\nHere's a list of lists:\\n&gt;&gt;&gt; t2 = [[1,2], [3,4], [5,6]]\\n&gt;&gt;&gt; print structshape(t2)\\nlist of 3 list of 2 int\\nIf the elements of the list are not the same type, structshape groups them, in order, by\\ntype:\\n&gt;&gt;&gt; t3 = [1, 2, 3, 4.0, '5', '6', [7], [8], 9]\\n&gt;&gt;&gt; print structshape(t3)\\nlist of (3 int, float, 2 str, 2 list of int, int)\\nHere's a list of tuples:\\n&gt;&gt;&gt; s = 'abc'\\n&gt;&gt;&gt; lt = zip(t, s)\\n&gt;&gt;&gt; print structshape(lt)\\nlist of 3 tuple of (int, str)\\nAnd here's a dictionary with 3 items that map integers to strings.\\n&gt;&gt;&gt; d = dict(lt)\\n&gt;&gt;&gt; print structshape(d)\\ndict of 3 int-&gt;str</pre>\",\n          \"polygon\": [\n            [\n              86.40007019042969,\n              393.6796875\n            ],\n            [\n              482.40252685546875,\n              393.6796875\n            ],\n            [\n              482.40252685546875,\n              693.0\n            ],\n            [\n              86.40007019042969,\n              693.0\n            ]\n          ],\n          \"bbox\": [\n            86.40007019042969,\n            393.6796875,\n            482.40252685546875,\n            693.0\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/141/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are having trouble keeping track of your data structures, structshape can help.</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              690.72265625\n            ],\n            [\n              465.560302734375,\n              690.72265625\n            ],\n            [\n              465.560302734375,\n              701.12109375\n            ],\n            [\n              86.361328125,\n              701.12109375\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            690.72265625,\n            465.560302734375,\n            701.12109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/134/SectionHeader/1\",\n        \"2\": \"/page/137/SectionHeader/2\",\n        \"3\": \"/page/141/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/142/Page/223\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/142/PageHeader/0'></content-ref><content-ref src='/page/142/PageHeader/19'></content-ref><content-ref src='/page/142/SectionHeader/1'></content-ref><content-ref src='/page/142/Text/2'></content-ref><content-ref src='/page/142/ListGroup/219'></content-ref><content-ref src='/page/142/SectionHeader/9'></content-ref><content-ref src='/page/142/Text/10'></content-ref><content-ref src='/page/142/Text/11'></content-ref><content-ref src='/page/142/ListItem/12'></content-ref><content-ref src='/page/142/Text/13'></content-ref><content-ref src='/page/142/Text/14'></content-ref><content-ref src='/page/142/Text/15'></content-ref><content-ref src='/page/142/ListGroup/220'></content-ref><content-ref src='/page/142/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/142/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.46728515625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/142/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              61.0048828125\n            ],\n            [\n              525.638671875,\n              61.0048828125\n            ],\n            [\n              525.638671875,\n              70.189453125\n            ],\n            [\n              510.099609375,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            61.0048828125,\n            525.638671875,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/142/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-142-0\\\"></span><b>12.10 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              85.95379638671875\n            ],\n            [\n              234.3990020751953,\n              85.95379638671875\n            ],\n            [\n              234.3990020751953,\n              100.29998779296875\n            ],\n            [\n              129.60000610351562,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            85.95379638671875,\n            234.3990020751953,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/142/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>tuple:</b> An immutable sequence of elements.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              110.17822265625\n            ],\n            [\n              325.125,\n              110.17822265625\n            ],\n            [\n              325.125,\n              120.23797607421875\n            ],\n            [\n              128.49609375,\n              120.23797607421875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            110.17822265625,\n            325.125,\n            120.23797607421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/142/ListGroup/219\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/142/ListItem/3'></content-ref><content-ref src='/page/142/ListItem/4'></content-ref><content-ref src='/page/142/ListItem/5'></content-ref><content-ref src='/page/142/ListItem/6'></content-ref><content-ref src='/page/142/ListItem/7'></content-ref><content-ref src='/page/142/ListItem/8'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              131.5810546875\n            ],\n            [\n              525.6038208007812,\n              131.5810546875\n            ],\n            [\n              525.6038208007812,\n              311.4140319824219\n            ],\n            [\n              128.3466796875,\n              311.4140319824219\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            131.5810546875,\n            525.6038208007812,\n            311.4140319824219\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/142/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>tuple assignment:</b> An assignment with a sequence on the right side and a tuple of variables on the left. The right side is evaluated and then its elements are assigned to the variables on the left.</li>\",\n              \"polygon\": [\n                [\n                  128.9443359375,\n                  131.5810546875\n                ],\n                [\n                  525.6038208007812,\n                  131.5810546875\n                ],\n                [\n                  525.6038208007812,\n                  166.3280029296875\n                ],\n                [\n                  128.9443359375,\n                  166.3280029296875\n                ]\n              ],\n              \"bbox\": [\n                128.9443359375,\n                131.5810546875,\n                525.6038208007812,\n                166.3280029296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/142/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>gather:</b> The operation of assembling a variable-length argument tuple.</li>\",\n              \"polygon\": [\n                [\n                  128.3466796875,\n                  177.96826171875\n                ],\n                [\n                  441.66796875,\n                  177.96826171875\n                ],\n                [\n                  441.66796875,\n                  188.02801513671875\n                ],\n                [\n                  128.3466796875,\n                  188.02801513671875\n                ]\n              ],\n              \"bbox\": [\n                128.3466796875,\n                177.96826171875,\n                441.66796875,\n                188.02801513671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/142/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>scatter:</b> The operation of treating a sequence as a list of arguments.</li>\",\n              \"polygon\": [\n                [\n                  128.86962890625,\n                  199.546875\n                ],\n                [\n                  424.63250732421875,\n                  199.546875\n                ],\n                [\n                  424.63250732421875,\n                  209.72900390625\n                ],\n                [\n                  128.86962890625,\n                  209.72900390625\n                ]\n              ],\n              \"bbox\": [\n                128.86962890625,\n                199.546875,\n                424.63250732421875,\n                209.72900390625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/142/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>DSU:</b> Abbreviation of \\\"decorate-sort-undecorate,\\\" a pattern that involves building a list of tuples, sorting, and extracting part of the result.</li>\",\n              \"polygon\": [\n                [\n                  129.09375,\n                  221.3692626953125\n                ],\n                [\n                  525.603515625,\n                  221.3692626953125\n                ],\n                [\n                  525.603515625,\n                  243.6240234375\n                ],\n                [\n                  129.09375,\n                  243.6240234375\n                ]\n              ],\n              \"bbox\": [\n                129.09375,\n                221.3692626953125,\n                525.603515625,\n                243.6240234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/142/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>data structure:</b> A collection of related values, often organized in lists, dictionaries, tuples, etc.</li>\",\n              \"polygon\": [\n                [\n                  129.2431640625,\n                  255.2642822265625\n                ],\n                [\n                  525.6031494140625,\n                  255.2642822265625\n                ],\n                [\n                  525.6031494140625,\n                  277.51904296875\n                ],\n                [\n                  129.2431640625,\n                  277.51904296875\n                ]\n              ],\n              \"bbox\": [\n                129.2431640625,\n                255.2642822265625,\n                525.6031494140625,\n                277.51904296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/142/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>shape (of a data structure):</b> A summary of the type, size and composition of a data structure.</li>\",\n              \"polygon\": [\n                [\n                  128.3466796875,\n                  289.072265625\n                ],\n                [\n                  525.6028442382812,\n                  289.072265625\n                ],\n                [\n                  525.6028442382812,\n                  311.4140319824219\n                ],\n                [\n                  128.3466796875,\n                  311.4140319824219\n                ]\n              ],\n              \"bbox\": [\n                128.3466796875,\n                289.072265625,\n                525.6028442382812,\n                311.4140319824219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/142/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-142-1\\\"></span><b>12.11 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              343.4568786621094\n            ],\n            [\n              235.97714233398438,\n              343.4568786621094\n            ],\n            [\n              235.97714233398438,\n              357.8031005859375\n            ],\n            [\n              128.72021484375,\n              357.8031005859375\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            343.4568786621094,\n            235.97714233398438,\n            357.8031005859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/142/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 12.3.</b> <i>Write a function called</i> most_frequent <i>that takes a string and prints the let</i><i>ters in decreasing order of frequency. Find text samples from several different languages and see</i> <i>how letter frequency varies between languages. Compare your results with the tables at</i> <a href=\\\"http://en.wikipedia.org/wiki/Letter_frequencies\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/Letter_frequencies\\\">//</a> <a href=\\\"http://en.wikipedia.org/wiki/Letter_frequencies\\\">en.</a> <a href=\\\"http://en.wikipedia.org/wiki/Letter_frequencies\\\">wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Letter_frequencies\\\">org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Letter_frequencies\\\">wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Letter_frequencies\\\">Letter_</a> <a href=\\\"http://en.wikipedia.org/wiki/Letter_frequencies\\\">frequencies</a> <i>. Solution:</i> <a href=\\\"http://thinkpython.com/code/most_frequent.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/most_frequent.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/most_frequent.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/most_frequent.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/most_frequent.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/most_frequent.py\\\">most_</a> <a href=\\\"http://thinkpython.com/code/most_frequent.py\\\">frequent.</a> <a href=\\\"http://thinkpython.com/code/most_frequent.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              371.23675537109375\n            ],\n            [\n              525.9375,\n              371.23675537109375\n            ],\n            [\n              525.9375,\n              433.8984375\n            ],\n            [\n              128.6455078125,\n              433.8984375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            371.23675537109375,\n            525.9375,\n            433.8984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/142/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-142-2\\\"></span><b>Exercise 12.4.</b> <i>More anagrams!</i></p>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              432.2087707519531\n            ],\n            [\n              261.474609375,\n              432.2087707519531\n            ],\n            [\n              261.474609375,\n              442.40625\n            ],\n            [\n              129.46728515625,\n              442.40625\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            432.2087707519531,\n            261.474609375,\n            442.40625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/142/ListItem/12\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Write a program that reads a word list from a file (see Section </i><i><a href=\\\"#page-102-1\\\">9.1)</a></i><i> and prints all the sets of</i> <i>words that are anagrams.</i></li>\",\n          \"polygon\": [\n            [\n              141.943359375,\n              457.875\n            ],\n            [\n              526.833984375,\n              457.875\n            ],\n            [\n              526.833984375,\n              480.3046875\n            ],\n            [\n              141.943359375,\n              480.3046875\n            ]\n          ],\n          \"bbox\": [\n            141.943359375,\n            457.875,\n            526.833984375,\n            480.3046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/142/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Here is an example of what the output might look like:</i></p>\",\n          \"polygon\": [\n            [\n              153.298828125,\n              486.4921875\n            ],\n            [\n              372.33984375,\n              486.4921875\n            ],\n            [\n              372.33984375,\n              497.1173400878906\n            ],\n            [\n              153.298828125,\n              497.1173400878906\n            ]\n          ],\n          \"bbox\": [\n            153.298828125,\n            486.4921875,\n            372.33984375,\n            497.1173400878906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/142/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">['deltas', 'desalt', 'lasted', 'salted', 'slated', 'staled'] ['retainers', 'ternaries'] ['generating', 'greatening'] ['resmelts', 'smelters', 'termless']</p>\",\n          \"polygon\": [\n            [\n              154.5070037841797,\n              508.89288330078125\n            ],\n            [\n              468.25445556640625,\n              508.89288330078125\n            ],\n            [\n              468.25445556640625,\n              555.4384918212891\n            ],\n            [\n              154.5070037841797,\n              555.4384918212891\n            ]\n          ],\n          \"bbox\": [\n            154.5070037841797,\n            508.89288330078125,\n            468.25445556640625,\n            555.4384918212891\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/142/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Hint: you might want to build a dictionary that maps from a set of letters to a list of words</i> <i>that can be spelled with those letters. The question is, how can you represent the set of letters</i> <i>in a way that can be used as a key?</i></p>\",\n          \"polygon\": [\n            [\n              154.1953125,\n              567.166748046875\n            ],\n            [\n              525.60400390625,\n              567.166748046875\n            ],\n            [\n              525.60400390625,\n              601.5173492431641\n            ],\n            [\n              154.1953125,\n              601.5173492431641\n            ]\n          ],\n          \"bbox\": [\n            154.1953125,\n            567.166748046875,\n            525.60400390625,\n            601.5173492431641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/142/ListGroup/220\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/142/ListItem/16'></content-ref><content-ref src='/page/142/ListItem/17'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              141.7939453125,\n              613.2557525634766\n            ],\n            [\n              525.6043090820312,\n              613.2557525634766\n            ],\n            [\n              525.6043090820312,\n              681.5023651123047\n            ],\n            [\n              141.7939453125,\n              681.5023651123047\n            ]\n          ],\n          \"bbox\": [\n            141.7939453125,\n            613.2557525634766,\n            525.6043090820312,\n            681.5023651123047\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/142/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Modify the previous program so that it prints the largest set of anagrams first, followed by the</i> <i>second largest set, and so on.</i></li>\",\n              \"polygon\": [\n                [\n                  141.7939453125,\n                  613.2557525634766\n                ],\n                [\n                  525.6043090820312,\n                  613.2557525634766\n                ],\n                [\n                  525.6043090820312,\n                  635.412353515625\n                ],\n                [\n                  141.7939453125,\n                  635.412353515625\n                ]\n              ],\n              \"bbox\": [\n                141.7939453125,\n                613.2557525634766,\n                525.6043090820312,\n                635.412353515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/142/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. In Scrabble a \\\"bingo\\\" is when you play all seven tiles in your rack, along with a letter on</i> <i>the board, to form an eight-letter word. What set of 8 letters forms the most possible bingos?</i> <i>Hint: there are seven.</i></li>\",\n              \"polygon\": [\n                [\n                  142.0541229248047,\n                  647.1507568359375\n                ],\n                [\n                  525.6043090820312,\n                  647.1507568359375\n                ],\n                [\n                  525.6043090820312,\n                  681.5023651123047\n                ],\n                [\n                  142.0541229248047,\n                  681.5023651123047\n                ]\n              ],\n              \"bbox\": [\n                142.0541229248047,\n                647.1507568359375,\n                525.6043090820312,\n                681.5023651123047\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/142/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">anagram_</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">sets.</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              154.5071258544922,\n              688.4060668945312\n            ],\n            [\n              435.58282470703125,\n              688.4060668945312\n            ],\n            [\n              435.58282470703125,\n              698.4493637084961\n            ],\n            [\n              154.5071258544922,\n              698.4493637084961\n            ]\n          ],\n          \"bbox\": [\n            154.5071258544922,\n            688.4060668945312,\n            435.58282470703125,\n            698.4493637084961\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/134/SectionHeader/1\",\n        \"2\": \"/page/137/SectionHeader/2\",\n        \"3\": \"/page/141/SectionHeader/4\",\n        \"4\": \"/page/142/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/143/Page/165\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/143/PageHeader/0'></content-ref><content-ref src='/page/143/PageHeader/13'></content-ref><content-ref src='/page/143/Text/1'></content-ref><content-ref src='/page/143/Text/2'></content-ref><content-ref src='/page/143/Text/3'></content-ref><content-ref src='/page/143/Text/4'></content-ref><content-ref src='/page/143/Text/5'></content-ref><content-ref src='/page/143/Text/6'></content-ref><content-ref src='/page/143/Text/7'></content-ref><content-ref src='/page/143/ListGroup/165'></content-ref><content-ref src='/page/143/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/143/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.66650390625\n            ],\n            [\n              482.607421875,\n              60.66650390625\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.66650390625,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/143/PageHeader/13\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.166015625,\n              60.56982421875\n            ],\n            [\n              101.6015625,\n              60.56982421875\n            ],\n            [\n              101.6015625,\n              70.43115234375\n            ],\n            [\n              85.166015625,\n              70.43115234375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            60.56982421875,\n            101.6015625,\n            70.43115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/143/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 12.5.</b> <i>Two words form a \\\"metathesis pair\\\" if you can transform one into the other by</i> <i>swapping two letters; for example, \\\"converse\\\" and \\\"conserve.\\\" Write a program that finds all of</i> <i>the metathesis pairs in the dictionary. Hint: don't test all pairs of words, and don't test all possible</i> <i>swaps. Solution:</i> <a href=\\\"http://thinkpython.com/code/metathesis.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/metathesis.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/metathesis.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/metathesis.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/metathesis.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/metathesis.py\\\">metathesis.</a> <a href=\\\"http://thinkpython.com/code/metathesis.py\\\">py</a> <i>. Credit: This exercise is</i> <i>inspired by an example at</i> <a href=\\\"http://puzzlers.org\\\">http:</a> <a href=\\\"http://puzzlers.org\\\">//</a> <a href=\\\"http://puzzlers.org\\\">puzzlers.</a> <a href=\\\"http://puzzlers.org\\\">org</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              88.0751953125\n            ],\n            [\n              482.90625,\n              88.0751953125\n            ],\n            [\n              482.90625,\n              147.40216064453125\n            ],\n            [\n              85.46484375,\n              147.40216064453125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            88.0751953125,\n            482.90625,\n            147.40216064453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/143/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 12.6.</b> <i>Here's another Car Talk Puzzler (</i><a href=\\\"http://www.cartalk.com/content/puzzlers\\\">http:</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">//</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">www.</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">cartalk.</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">com/</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">content/</a> <a href=\\\"http://www.cartalk.com/content/puzzlers\\\">puzzlers</a> <i>):</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              149.2734375\n            ],\n            [\n              480.720703125,\n              149.2734375\n            ],\n            [\n              480.720703125,\n              171.79119873046875\n            ],\n            [\n              85.46484375,\n              171.79119873046875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            149.2734375,\n            480.720703125,\n            171.79119873046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/143/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>What is the longest English word, that remains a valid English word, as you remove its</i> <i>letters one at a time?</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              110.7158203125,\n              185.9150390625\n            ],\n            [\n              457.4974060058594,\n              185.9150390625\n            ],\n            [\n              457.4974060058594,\n              208.12115478515625\n            ],\n            [\n              110.7158203125,\n              208.12115478515625\n            ]\n          ],\n          \"bbox\": [\n            110.7158203125,\n            185.9150390625,\n            457.4974060058594,\n            208.12115478515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/143/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>Now, letters can be removed from either end, or the middle, but you can't rearrange any</i> <i>of the letters. Every time you drop a letter, you wind up with another English word. If</i> <i>you do that, you're eventually going to wind up with one letter and that too is going</i> <i>to be an English word—one that's found in the dictionary. I want to know what's the</i> <i>longest word and how many letters does it have?</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              110.1181640625,\n              214.33856201171875\n            ],\n            [\n              459.0,\n              214.33856201171875\n            ],\n            [\n              459.0,\n              273.07818603515625\n            ],\n            [\n              110.1181640625,\n              273.07818603515625\n            ]\n          ],\n          \"bbox\": [\n            110.1181640625,\n            214.33856201171875,\n            459.0,\n            273.07818603515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/143/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\"><i>I'm going to give you a little modest example: Sprite. Ok? You start off with sprite,</i> <i>you take a letter off, one from the interior of the word, take the r away, and we're left</i> <i>with the word spite, then we take the e off the end, we're left with spit, we take the s off,</i> <i>we're left with pit, it, and I.</i></p></blockquote>\",\n          \"polygon\": [\n            [\n              110.1181640625,\n              278.82421875\n            ],\n            [\n              459.0,\n              278.82421875\n            ],\n            [\n              459.0,\n              325.8402099609375\n            ],\n            [\n              110.1181640625,\n              325.8402099609375\n            ]\n          ],\n          \"bbox\": [\n            110.1181640625,\n            278.82421875,\n            459.0,\n            325.8402099609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/143/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a program to find all words that can be reduced in this way, and then find the longest one.</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              339.5390625\n            ],\n            [\n              470.3984680175781,\n              339.5390625\n            ],\n            [\n              470.3984680175781,\n              349.9761962890625\n            ],\n            [\n              85.46484375,\n              349.9761962890625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            339.5390625,\n            470.3984680175781,\n            349.9761962890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/143/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>This exercise is a little more challenging than most, so here are some suggestions:</i></p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              359.455078125\n            ],\n            [\n              410.1247253417969,\n              359.455078125\n            ],\n            [\n              410.1247253417969,\n              370.11419677734375\n            ],\n            [\n              86.2119140625,\n              370.11419677734375\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            359.455078125,\n            410.1247253417969,\n            370.11419677734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/143/ListGroup/165\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/143/ListItem/8'></content-ref><content-ref src='/page/143/ListItem/9'></content-ref><content-ref src='/page/143/ListItem/10'></content-ref><content-ref src='/page/143/ListItem/11'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.119140625,\n              383.23828125\n            ],\n            [\n              483.50390625,\n              383.23828125\n            ],\n            [\n              483.50390625,\n              503.89453125\n            ],\n            [\n              97.119140625,\n              503.89453125\n            ]\n          ],\n          \"bbox\": [\n            97.119140625,\n            383.23828125,\n            483.50390625,\n            503.89453125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/143/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. You might want to write a function that takes a word and computes a list of all the words that</i> <i>can be formed by removing one letter. These are the \\\"children\\\" of the word.</i></li>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  383.23828125\n                ],\n                [\n                  482.90625,\n                  383.23828125\n                ],\n                [\n                  482.90625,\n                  406.4441833496094\n                ],\n                [\n                  97.41796875,\n                  406.4441833496094\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                383.23828125,\n                482.90625,\n                406.4441833496094\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/143/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Recursively, a word is reducible if any of its children are reducible. As a base case, you can</i> <i>consider the empty string reducible.</i></li>\",\n              \"polygon\": [\n                [\n                  97.5673828125,\n                  415.72265625\n                ],\n                [\n                  483.50390625,\n                  415.72265625\n                ],\n                [\n                  483.50390625,\n                  438.92578125\n                ],\n                [\n                  97.5673828125,\n                  438.92578125\n                ]\n              ],\n              \"bbox\": [\n                97.5673828125,\n                415.72265625,\n                483.50390625,\n                438.92578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/143/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. The wordlist I provided,</i> words.txt<i>, doesn't contain single letter words. So you might want</i> <i>to add \\\"I\\\", \\\"a\\\", and the empty string.</i></li>\",\n              \"polygon\": [\n                [\n                  97.2685546875,\n                  447.8203125\n                ],\n                [\n                  483.50390625,\n                  447.8203125\n                ],\n                [\n                  483.50390625,\n                  471.1622009277344\n                ],\n                [\n                  97.2685546875,\n                  471.1622009277344\n                ]\n              ],\n              \"bbox\": [\n                97.2685546875,\n                447.8203125,\n                483.50390625,\n                471.1622009277344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/143/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>4. To improve the performance of your program, you might want to memoize the words that are</i> <i>known to be reducible.</i></li>\",\n              \"polygon\": [\n                [\n                  97.119140625,\n                  480.69140625\n                ],\n                [\n                  483.205078125,\n                  480.69140625\n                ],\n                [\n                  483.205078125,\n                  503.89453125\n                ],\n                [\n                  97.119140625,\n                  503.89453125\n                ]\n              ],\n              \"bbox\": [\n                97.119140625,\n                480.69140625,\n                483.205078125,\n                503.89453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/134/SectionHeader/1\",\n                \"2\": \"/page/137/SectionHeader/2\",\n                \"3\": \"/page/141/SectionHeader/4\",\n                \"4\": \"/page/142/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/143/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/reducible.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/reducible.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/reducible.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/reducible.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/reducible.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/reducible.py\\\">reducible.</a> <a href=\\\"http://thinkpython.com/code/reducible.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              517.4296875\n            ],\n            [\n              350.0595703125,\n              517.4296875\n            ],\n            [\n              350.0595703125,\n              527.6561889648438\n            ],\n            [\n              85.68896484375,\n              527.6561889648438\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            517.4296875,\n            350.0595703125,\n            527.6561889648438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/137/SectionHeader/2\",\n            \"3\": \"/page/141/SectionHeader/4\",\n            \"4\": \"/page/142/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/134/SectionHeader/1\",\n        \"2\": \"/page/137/SectionHeader/2\",\n        \"3\": \"/page/141/SectionHeader/4\",\n        \"4\": \"/page/142/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/144/Page/137\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/144/SectionHeader/0'></content-ref><content-ref src='/page/144/SectionHeader/1'></content-ref><content-ref src='/page/144/SectionHeader/2'></content-ref><content-ref src='/page/144/Text/3'></content-ref><content-ref src='/page/144/Text/4'></content-ref><content-ref src='/page/144/Text/5'></content-ref><content-ref src='/page/144/Text/6'></content-ref><content-ref src='/page/144/Text/7'></content-ref><content-ref src='/page/144/Text/8'></content-ref><content-ref src='/page/144/Text/9'></content-ref><content-ref src='/page/144/Text/10'></content-ref><content-ref src='/page/144/Text/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/144/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-144-0\\\"></span><b>Chapter 13</b></h2>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              166.9874267578125\n            ],\n            [\n              231.591796875,\n              166.9874267578125\n            ],\n            [\n              231.591796875,\n              187.64990234375\n            ],\n            [\n              129.01904296875,\n              187.64990234375\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            166.9874267578125,\n            231.591796875,\n            187.64990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/134/SectionHeader/1\",\n            \"2\": \"/page/144/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/144/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Case study: data structure</b> <b>selection</b></h1>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              225.209228515625\n            ],\n            [\n              423.439453125,\n              225.209228515625\n            ],\n            [\n              423.439453125,\n              280.4812927246094\n            ],\n            [\n              128.57080078125,\n              280.4812927246094\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            225.209228515625,\n            423.439453125,\n            280.4812927246094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/144/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-144-1\\\"></span><b>13.1 Word frequency analysis</b></h3>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              331.611328125\n            ],\n            [\n              331.3649597167969,\n              331.611328125\n            ],\n            [\n              331.3649597167969,\n              346.58087158203125\n            ],\n            [\n              128.86962890625,\n              346.58087158203125\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            331.611328125,\n            331.3649597167969,\n            346.58087158203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/144/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As usual, you should at least attempt the following exercises before you read my solutions. <b>Exercise 13.1.</b> <i>Write a program that reads a file, breaks each line into words, strips whitespace and</i> <i>punctuation from the words, and converts them to lowercase.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              362.162109375\n            ],\n            [\n              526.53515625,\n              362.162109375\n            ],\n            [\n              526.53515625,\n              397.11712646484375\n            ],\n            [\n              128.6455078125,\n              397.11712646484375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            362.162109375,\n            526.53515625,\n            397.11712646484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/144/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Hint: The</i> string <i>module provides strings named</i> whitespace<i>, which contains space, tab, newline,</i> <i>etc., and</i> punctuation <i>which contains the punctuation characters. Let's see if we can make Python</i> <i>swear:</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              409.921875\n            ],\n            [\n              526.236328125,\n              409.921875\n            ],\n            [\n              526.236328125,\n              444.5091247558594\n            ],\n            [\n              128.794921875,\n              444.5091247558594\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            409.921875,\n            526.236328125,\n            444.5091247558594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/144/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; import string &gt;&gt;&gt; print string.punctuation !\\\"#$%&amp;'()*+,-./:;&lt;=&gt;?@[\\\\]^_`{|}~</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              453.6006774902344\n            ],\n            [\n              296.9364929199219,\n              453.6006774902344\n            ],\n            [\n              296.9364929199219,\n              488.0390625\n            ],\n            [\n              128.794921875,\n              488.0390625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            453.6006774902344,\n            296.9364929199219,\n            488.0390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/144/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Also, you might consider using the string methods</i> strip<i>,</i> replace <i>and</i> translate<i>.</i> <b>Exercise 13.2.</b> <i>Go to Project Gutenberg (</i><a href=\\\"http://gutenberg.org\\\">http:</a> <a href=\\\"http://gutenberg.org\\\">//</a> <a href=\\\"http://gutenberg.org\\\">gutenberg.</a> <a href=\\\"http://gutenberg.org\\\">org</a> <i>) and download your favorite</i> <i>out-of-copyright book in plain text format.</i></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              496.99755859375\n            ],\n            [\n              525.638671875,\n              496.99755859375\n            ],\n            [\n              525.638671875,\n              531.3515625\n            ],\n            [\n              129.392578125,\n              531.3515625\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            496.99755859375,\n            525.638671875,\n            531.3515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/144/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Modify your program from the previous exercise to read the book you downloaded, skip over the</i> <i>header information at the beginning of the file, and process the rest of the words as before.</i></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              544.3895568847656\n            ],\n            [\n              525.9375,\n              544.3895568847656\n            ],\n            [\n              525.9375,\n              566.5461578369141\n            ],\n            [\n              128.9443359375,\n              566.5461578369141\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            544.3895568847656,\n            525.9375,\n            566.5461578369141\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/144/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Then modify the program to count the total number of words in the book, and the number of times</i> <i>each word is used.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              579.5865631103516\n            ],\n            [\n              526.53515625,\n              579.5865631103516\n            ],\n            [\n              526.53515625,\n              601.7441711425781\n            ],\n            [\n              128.6455078125,\n              601.7441711425781\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            579.5865631103516,\n            526.53515625,\n            601.7441711425781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/144/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Print the number of different words used in the book. Compare different books by different authors,</i> <i>written in different eras. Which author uses the most extensive vocabulary?</i></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              614.109375\n            ],\n            [\n              526.236328125,\n              614.109375\n            ],\n            [\n              526.236328125,\n              639.6328125\n            ],\n            [\n              129.392578125,\n              639.6328125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            614.109375,\n            526.236328125,\n            639.6328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/144/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 13.3.</b> <i>Modify the program from the previous exercise to print the 20 most frequently-used</i> <i>words in the book.</i></p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              639.1725769042969\n            ],\n            [\n              526.53515625,\n              639.1725769042969\n            ],\n            [\n              526.53515625,\n              661.3301849365234\n            ],\n            [\n              129.2431640625,\n              661.3301849365234\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            639.1725769042969,\n            526.53515625,\n            661.3301849365234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/144/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 13.4.</b> <i>Modify the previous program to read a word list (see Section </i><i><a href=\\\"#page-102-1\\\">9.1)</a></i><i> and then print all</i> <i>the words in the book that are not in the word list. How many of them are typos? How many of</i> <i>them are common words that</i> should <i>be in the word list, and how many of them are really obscure?</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              663.5615844726562\n            ],\n            [\n              526.53515625,\n              663.5615844726562\n            ],\n            [\n              526.53515625,\n              698.0858917236328\n            ],\n            [\n              128.6455078125,\n              698.0858917236328\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            663.5615844726562,\n            526.53515625,\n            698.0858917236328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/144/SectionHeader/1\",\n        \"3\": \"/page/144/SectionHeader/2\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/145/Page/212\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/145/PageHeader/0'></content-ref><content-ref src='/page/145/PageHeader/16'></content-ref><content-ref src='/page/145/SectionHeader/1'></content-ref><content-ref src='/page/145/Text/2'></content-ref><content-ref src='/page/145/Text/3'></content-ref><content-ref src='/page/145/Text/4'></content-ref><content-ref src='/page/145/Text/5'></content-ref><content-ref src='/page/145/Code/6'></content-ref><content-ref src='/page/145/Code/7'></content-ref><content-ref src='/page/145/Text/8'></content-ref><content-ref src='/page/145/Code/9'></content-ref><content-ref src='/page/145/Text/10'></content-ref><content-ref src='/page/145/Code/11'></content-ref><content-ref src='/page/145/Text/12'></content-ref><content-ref src='/page/145/Text/13'></content-ref><content-ref src='/page/145/Code/14'></content-ref><content-ref src='/page/145/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/145/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.27978515625\n            ],\n            [\n              484.400390625,\n              60.27978515625\n            ],\n            [\n              484.400390625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.27978515625,\n            484.400390625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.8671875,\n              60.47314453125\n            ],\n            [\n              100.705078125,\n              60.47314453125\n            ],\n            [\n              100.705078125,\n              70.23779296875\n            ],\n            [\n              84.8671875,\n              70.23779296875\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            60.47314453125,\n            100.705078125,\n            70.23779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-145-0\\\"></span><b>13.2 Random numbers</b></h4>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              85.95379638671875\n            ],\n            [\n              243.544921875,\n              85.95379638671875\n            ],\n            [\n              243.544921875,\n              100.546875\n            ],\n            [\n              85.39013671875,\n              100.546875\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            85.95379638671875,\n            243.544921875,\n            100.546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Given the same inputs, most computer programs generate the same outputs every time, so they are said to be <b>deterministic</b>. Determinism is usually a good thing, since we expect the same calculation to yield the same result. For some applications, though, we want the computer to be unpredictable. Games are an obvious example, but there are more.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              115.7255859375\n            ],\n            [\n              483.802734375,\n              115.7255859375\n            ],\n            [\n              483.802734375,\n              162.81597900390625\n            ],\n            [\n              85.46484375,\n              162.81597900390625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            115.7255859375,\n            483.802734375,\n            162.81597900390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Making a program truly nondeterministic turns out to be not so easy, but there are ways to make it at least seem nondeterministic. One of them is to use algorithms that generate <b>pseudorandom</b> numbers. Pseudorandom numbers are not truly random because they are generated by a deterministic computation, but just by looking at the numbers it is all but impossible to distinguish them from random.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              174.990234375\n            ],\n            [\n              483.205078125,\n              174.990234375\n            ],\n            [\n              483.205078125,\n              234.3199462890625\n            ],\n            [\n              85.763671875,\n              234.3199462890625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            174.990234375,\n            483.205078125,\n            234.3199462890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The random module provides functions that generate pseudorandom numbers (which I will simply call \\\"random\\\" from here on).</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              245.56640625\n            ],\n            [\n              483.50390625,\n              245.56640625\n            ],\n            [\n              483.50390625,\n              269.23992919921875\n            ],\n            [\n              85.9130859375,\n              269.23992919921875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            245.56640625,\n            483.50390625,\n            269.23992919921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The function random returns a random float between 0.0 and 1.0 (including 0.0 but not 1.0). Each time you call random, you get the next number in a long series. To see a sample, run this loop:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              281.337890625\n            ],\n            [\n              482.607421875,\n              281.337890625\n            ],\n            [\n              482.607421875,\n              316.3548889160156\n            ],\n            [\n              86.0625,\n              316.3548889160156\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            281.337890625,\n            482.607421875,\n            316.3548889160156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>import random</pre>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              324.45703125\n            ],\n            [\n              156.884765625,\n              324.45703125\n            ],\n            [\n              156.884765625,\n              334.9603271484375\n            ],\n            [\n              85.98779296875,\n              334.9603271484375\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            324.45703125,\n            156.884765625,\n            334.9603271484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>for i in range(10):\\n    x = random.random()\\n    print x</pre>\",\n          \"polygon\": [\n            [\n              86.0625,\n              349.3867492675781\n            ],\n            [\n              206.70286560058594,\n              349.3867492675781\n            ],\n            [\n              206.70286560058594,\n              383.7373352050781\n            ],\n            [\n              86.0625,\n              383.7373352050781\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            349.3867492675781,\n            206.70286560058594,\n            383.7373352050781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The function randint takes parameters low and high and returns an integer between low and high (including both).</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              391.166015625\n            ],\n            [\n              482.4040832519531,\n              391.166015625\n            ],\n            [\n              482.4040832519531,\n              414.8359069824219\n            ],\n            [\n              85.9130859375,\n              414.8359069824219\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            391.166015625,\n            482.4040832519531,\n            414.8359069824219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; random.randint(5, 10)\\n5\\n&gt;&gt;&gt; random.randint(5, 10)\\n9</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              421.91015625\n            ],\n            [\n              218.2939453125,\n              421.91015625\n            ],\n            [\n              218.2939453125,\n              470.02435302734375\n            ],\n            [\n              85.6142578125,\n              470.02435302734375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            421.91015625,\n            218.2939453125,\n            470.02435302734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To choose an element from a sequence at random, you can use choice:</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              477.59765625\n            ],\n            [\n              396.30767822265625,\n              477.59765625\n            ],\n            [\n              396.30767822265625,\n              488.9289245605469\n            ],\n            [\n              86.361328125,\n              488.9289245605469\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            477.59765625,\n            396.30767822265625,\n            488.9289245605469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = [1, 2, 3]\\n&gt;&gt;&gt; random.choice(t)\\n2\\n&gt;&gt;&gt; random.choice(t)\\n3</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              497.57177734375\n            ],\n            [\n              192.8935546875,\n              497.57177734375\n            ],\n            [\n              192.8935546875,\n              556.3113861083984\n            ],\n            [\n              85.763671875,\n              556.3113861083984\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            497.57177734375,\n            192.8935546875,\n            556.3113861083984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The random module also provides functions to generate random values from continuous distributions including Gaussian, exponential, gamma, and a few more.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              563.8359375\n            ],\n            [\n              482.399169921875,\n              563.8359375\n            ],\n            [\n              482.399169921875,\n              587.4099426269531\n            ],\n            [\n              86.2119140625,\n              587.4099426269531\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            563.8359375,\n            482.399169921875,\n            587.4099426269531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 13.5.</b> <i>Write a function named</i> choose_from_hist <i>that takes a histogram as defined in</i> <i>Section </i><i><a href=\\\"#page-123-0\\\">11.1</a></i><i> and returns a random value from the histogram, chosen with probability in proportion</i> <i>to frequency. For example, for this histogram:</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              588.19921875\n            ],\n            [\n              483.205078125,\n              588.19921875\n            ],\n            [\n              483.205078125,\n              623.8202514648438\n            ],\n            [\n              85.763671875,\n              623.8202514648438\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            588.19921875,\n            483.205078125,\n            623.8202514648438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ['a', 'a', 'b']\\n&gt;&gt;&gt; hist = histogram(t)\\n&gt;&gt;&gt; print hist\\n{'a': 2, 'b': 1}</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              631.8984375\n            ],\n            [\n              206.70835876464844,\n              631.8984375\n            ],\n            [\n              206.70835876464844,\n              679.181396484375\n            ],\n            [\n              85.763671875,\n              679.181396484375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            631.8984375,\n            206.70835876464844,\n            679.181396484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/145/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>your function should return</i> 'a' <i>with probability</i> 2/3 <i>and</i> 'b' <i>with probability</i> 1/3<i>.</i></p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              686.8125\n            ],\n            [\n              426.0146789550781,\n              686.8125\n            ],\n            [\n              426.0146789550781,\n              698.0859603881836\n            ],\n            [\n              86.2119140625,\n              698.0859603881836\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            686.8125,\n            426.0146789550781,\n            698.0859603881836\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/144/SectionHeader/1\",\n        \"3\": \"/page/144/SectionHeader/2\",\n        \"4\": \"/page/145/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/146/Page/185\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/146/PageHeader/0'></content-ref><content-ref src='/page/146/PageHeader/17'></content-ref><content-ref src='/page/146/SectionHeader/1'></content-ref><content-ref src='/page/146/Text/2'></content-ref><content-ref src='/page/146/Text/3'></content-ref><content-ref src='/page/146/Code/4'></content-ref><content-ref src='/page/146/Text/5'></content-ref><content-ref src='/page/146/Text/6'></content-ref><content-ref src='/page/146/Text/7'></content-ref><content-ref src='/page/146/Text/8'></content-ref><content-ref src='/page/146/Text/9'></content-ref><content-ref src='/page/146/Text/10'></content-ref><content-ref src='/page/146/Code/11'></content-ref><content-ref src='/page/146/Text/12'></content-ref><content-ref src='/page/146/Text/13'></content-ref><content-ref src='/page/146/Text/14'></content-ref><content-ref src='/page/146/Text/15'></content-ref><content-ref src='/page/146/Code/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/146/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              61.05322265625\n            ],\n            [\n              525.6033935546875,\n              61.05322265625\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.6455078125,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            61.05322265625,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.80078125,\n              60.8115234375\n            ],\n            [\n              525.9375,\n              60.8115234375\n            ],\n            [\n              525.9375,\n              69.8994140625\n            ],\n            [\n              509.80078125,\n              69.8994140625\n            ]\n          ],\n          \"bbox\": [\n            509.80078125,\n            60.8115234375,\n            525.9375,\n            69.8994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/145/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-146-0\\\"></span><b>13.3 Word histogram</b></h4>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              85.95379638671875\n            ],\n            [\n              275.220703125,\n              85.95379638671875\n            ],\n            [\n              275.220703125,\n              100.29998779296875\n            ],\n            [\n              127.97314453125,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            85.95379638671875,\n            275.220703125,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You should attempt the previous exercises before you go on. You can download my solution from <a href=\\\"http://thinkpython.com/code/analyze_book.py\\\">http://thinkpython.com/code/analyze_book.py</a>. You will also need <a href=\\\"http://thinkpython.com/code/emma.txt\\\">http:</a> <a href=\\\"http://thinkpython.com/code/emma.txt\\\">//thinkpython.com/code/emma.txt</a>.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              112.4384765625\n            ],\n            [\n              525.6058349609375,\n              112.4384765625\n            ],\n            [\n              525.6058349609375,\n              146.88494873046875\n            ],\n            [\n              128.6455078125,\n              146.88494873046875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            112.4384765625,\n            525.6058349609375,\n            146.88494873046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is a program that reads a file and builds a histogram of the words in the file:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              156.427734375\n            ],\n            [\n              487.986328125,\n              156.427734375\n            ],\n            [\n              487.986328125,\n              166.91094970703125\n            ],\n            [\n              128.794921875,\n              166.91094970703125\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            156.427734375,\n            487.986328125,\n            166.91094970703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>import string\\ndef process_file(filename):\\n    hist = dict()\\n    fp = open(filename)\\n    for line in fp:\\n        process_line(line, hist)\\n    return hist\\ndef process_line(line, hist):\\n    line = line.replace('-', ' ')\\n    for word in line.split():\\n        word = word.strip(string.punctuation + string.whitespace)\\n        word = word.lower()\\n        hist[word] = hist.get(word, 0) + 1</pre>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              172.853759765625\n            ],\n            [\n              473.94140625,\n              172.853759765625\n            ],\n            [\n              473.94140625,\n              382.8515625\n            ],\n            [\n              128.3466796875,\n              382.8515625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            172.853759765625,\n            473.94140625,\n            382.8515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">hist = process_file('emma.txt')</p>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              392.35076904296875\n            ],\n            [\n              291.70343017578125,\n              392.35076904296875\n            ],\n            [\n              291.70343017578125,\n              402.3133544921875\n            ],\n            [\n              129.46728515625,\n              402.3133544921875\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            392.35076904296875,\n            291.70343017578125,\n            402.3133544921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This program reads emma.txt, which contains the text of <i>Emma</i> by Jane Austen.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              408.375\n            ],\n            [\n              478.33929443359375,\n              408.375\n            ],\n            [\n              478.33929443359375,\n              418.5179138183594\n            ],\n            [\n              129.2431640625,\n              418.5179138183594\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            408.375,\n            478.33929443359375,\n            418.5179138183594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">process_file loops through the lines of the file, passing them one at a time to process_line. The histogram hist is being used as an accumulator.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              428.4307556152344\n            ],\n            [\n              525.6028442382812,\n              428.4307556152344\n            ],\n            [\n              525.6028442382812,\n              450.7379150390625\n            ],\n            [\n              128.0478515625,\n              450.7379150390625\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            428.4307556152344,\n            525.6028442382812,\n            450.7379150390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">process_line uses the string method replace to replace hyphens with spaces before using split to break the line into a list of strings. It traverses the list of words and uses strip and lower to remove punctuation and convert to lower case. (It is a shorthand to say that strings are \\\"converted;\\\" remember that string are immutable, so methods like strip and lower return new strings.)</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              460.6517639160156\n            ],\n            [\n              525.6058349609375,\n              460.6517639160156\n            ],\n            [\n              525.6058349609375,\n              519.5409240722656\n            ],\n            [\n              129.09375,\n              519.5409240722656\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            460.6517639160156,\n            525.6058349609375,\n            519.5409240722656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Finally, process_line updates the histogram by creating a new item or incrementing an existing one.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              529.4547729492188\n            ],\n            [\n              525.599609375,\n              529.4547729492188\n            ],\n            [\n              525.599609375,\n              551.7609252929688\n            ],\n            [\n              128.197265625,\n              551.7609252929688\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            529.4547729492188,\n            525.599609375,\n            551.7609252929688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To count the total number of words in the file, we can add up the frequencies in the histogram:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              561.8243255615234\n            ],\n            [\n              525.6035766601562,\n              561.8243255615234\n            ],\n            [\n              525.6035766601562,\n              584.33203125\n            ],\n            [\n              128.197265625,\n              584.33203125\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            561.8243255615234,\n            525.6035766601562,\n            584.33203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def total_words(hist):\\n    return sum(hist.values())</pre>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              589.359375\n            ],\n            [\n              281.2851867675781,\n              589.359375\n            ],\n            [\n              281.2851867675781,\n              612.0803833007812\n            ],\n            [\n              128.6455078125,\n              612.0803833007812\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            589.359375,\n            281.2851867675781,\n            612.0803833007812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The number of different words is just the number of items in the dictionary:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              616.81640625\n            ],\n            [\n              463.78125,\n              616.81640625\n            ],\n            [\n              463.78125,\n              628.283935546875\n            ],\n            [\n              128.794921875,\n              628.283935546875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            616.81640625,\n            463.78125,\n            628.283935546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">def different_words(hist):</p>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              633.83203125\n            ],\n            [\n              265.5995178222656,\n              633.83203125\n            ],\n            [\n              265.5995178222656,\n              646.20703125\n            ],\n            [\n              129.01904296875,\n              646.20703125\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            633.83203125,\n            265.5995178222656,\n            646.20703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">return len(hist)</p>\",\n          \"polygon\": [\n            [\n              145.3798828125,\n              646.4197845458984\n            ],\n            [\n              234.21189880371094,\n              646.4197845458984\n            ],\n            [\n              234.21189880371094,\n              658.96875\n            ],\n            [\n              145.3798828125,\n              658.96875\n            ]\n          ],\n          \"bbox\": [\n            145.3798828125,\n            646.4197845458984,\n            234.21189880371094,\n            658.96875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is some code to print the results:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              662.6243438720703\n            ],\n            [\n              295.696533203125,\n              662.6243438720703\n            ],\n            [\n              295.696533203125,\n              672.890625\n            ],\n            [\n              128.197265625,\n              672.890625\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            662.6243438720703,\n            295.696533203125,\n            672.890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/146/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>print 'Total number of words:', total_words(hist)\\nprint 'Number of different words:', different_words(hist)</pre>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              678.5287780761719\n            ],\n            [\n              427.6984558105469,\n              678.5287780761719\n            ],\n            [\n              427.6984558105469,\n              700.6853790283203\n            ],\n            [\n              128.3466796875,\n              700.6853790283203\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            678.5287780761719,\n            427.6984558105469,\n            700.6853790283203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/144/SectionHeader/1\",\n        \"3\": \"/page/144/SectionHeader/2\",\n        \"4\": \"/page/146/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/147/Page/162\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/147/PageHeader/0'></content-ref><content-ref src='/page/147/PageHeader/15'></content-ref><content-ref src='/page/147/Text/1'></content-ref><content-ref src='/page/147/Text/2'></content-ref><content-ref src='/page/147/SectionHeader/3'></content-ref><content-ref src='/page/147/Text/4'></content-ref><content-ref src='/page/147/Code/5'></content-ref><content-ref src='/page/147/Text/6'></content-ref><content-ref src='/page/147/Code/7'></content-ref><content-ref src='/page/147/Text/8'></content-ref><content-ref src='/page/147/Text/9'></content-ref><content-ref src='/page/147/SectionHeader/10'></content-ref><content-ref src='/page/147/Text/11'></content-ref><content-ref src='/page/147/Code/12'></content-ref><content-ref src='/page/147/Text/13'></content-ref><content-ref src='/page/147/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/147/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.8115234375\n            ],\n            [\n              483.802734375,\n              60.8115234375\n            ],\n            [\n              483.802734375,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.8115234375,\n            483.802734375,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.46484375,\n              60.6181640625\n            ],\n            [\n              102.0498046875,\n              60.6181640625\n            ],\n            [\n              102.0498046875,\n              70.0927734375\n            ],\n            [\n              85.46484375,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            60.6181640625,\n            102.0498046875,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And the results:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              88.41357421875\n            ],\n            [\n              156.45700073242188,\n              88.41357421875\n            ],\n            [\n              156.45700073242188,\n              98.79791259765625\n            ],\n            [\n              86.0625,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            88.41357421875,\n            156.45700073242188,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Total number of words: 161080 Number of different words: 7214</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              104.2237548828125\n            ],\n            [\n              249.6708984375,\n              104.2237548828125\n            ],\n            [\n              249.6708984375,\n              126.38037109375\n            ],\n            [\n              85.6142578125,\n              126.38037109375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            104.2237548828125,\n            249.6708984375,\n            126.38037109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/146/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-147-0\\\"></span><b>13.4 Most common words</b></h4>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              154.7841796875\n            ],\n            [\n              263.7333679199219,\n              154.7841796875\n            ],\n            [\n              263.7333679199219,\n              169.3389892578125\n            ],\n            [\n              85.46484375,\n              169.3389892578125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            154.7841796875,\n            263.7333679199219,\n            169.3389892578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To find the most common words, we can apply the DSU pattern; most_common takes a histogram and returns a list of word-frequency tuples, sorted in reverse order by frequency:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              180.2109375\n            ],\n            [\n              482.40350341796875,\n              180.2109375\n            ],\n            [\n              482.40350341796875,\n              203.4140625\n            ],\n            [\n              85.3154296875,\n              203.4140625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            180.2109375,\n            482.40350341796875,\n            203.4140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def most_common(hist):\\n    t = []\\n    for key, value in hist.items():\\n        t.append((value, key))\\n    t.sort(reverse=True)\\n    return t</pre>\",\n          \"polygon\": [\n            [\n              86.39999389648438,\n              208.6387939453125\n            ],\n            [\n              269.4672546386719,\n              208.6387939453125\n            ],\n            [\n              269.4672546386719,\n              291.7673034667969\n            ],\n            [\n              86.39999389648438,\n              291.7673034667969\n            ]\n          ],\n          \"bbox\": [\n            86.39999389648438,\n            208.6387939453125,\n            269.4672546386719,\n            291.7673034667969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is a loop that prints the ten most common words:</p>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              296.2265625\n            ],\n            [\n              326.4787292480469,\n              296.2265625\n            ],\n            [\n              326.4787292480469,\n              307.4548645019531\n            ],\n            [\n              85.98779296875,\n              307.4548645019531\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            296.2265625,\n            326.4787292480469,\n            307.4548645019531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>t = most_common(hist)\\nprint 'The most common words are:'\\nfor freq, word in t[0:10]:\\n    print word, '\\\\t', freq</pre>\",\n          \"polygon\": [\n            [\n              84.7177734375,\n              312.8807067871094\n            ],\n            [\n              264.1913757324219,\n              312.8807067871094\n            ],\n            [\n              264.1913757324219,\n              359.4263000488281\n            ],\n            [\n              84.7177734375,\n              359.4263000488281\n            ]\n          ],\n          \"bbox\": [\n            84.7177734375,\n            312.8807067871094,\n            264.1913757324219,\n            359.4263000488281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And here are the results from <i>Emma</i>:</p>\",\n          \"polygon\": [\n            [\n              86.39999389648438,\n              363.708984375\n            ],\n            [\n              248.625,\n              363.708984375\n            ],\n            [\n              248.625,\n              375.1138610839844\n            ],\n            [\n              86.39999389648438,\n              375.1138610839844\n            ]\n          ],\n          \"bbox\": [\n            86.39999389648438,\n            363.708984375,\n            248.625,\n            375.1138610839844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The most common words are: to 5242 the 5205 and 4897 of 4295 i 3191 a 3130 it 2529 her 2483 was 2400 she 2364</p>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              379.7578125\n            ],\n            [\n              230.6953125,\n              379.7578125\n            ],\n            [\n              230.6953125,\n              512.4453125\n            ],\n            [\n              85.53955078125,\n              512.4453125\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            379.7578125,\n            230.6953125,\n            512.4453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-147-1\\\"></span><b>13.5 Optional parameters</b></h4>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              540.6328125\n            ],\n            [\n              260.9214782714844,\n              540.6328125\n            ],\n            [\n              260.9214782714844,\n              555.4039306640625\n            ],\n            [\n              85.3154296875,\n              555.4039306640625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            540.6328125,\n            260.9214782714844,\n            555.4039306640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We have seen built-in functions and methods that take a variable number of arguments. It is possible to write user-defined functions with optional arguments, too. For example, here is a function that prints the most common words in a histogram</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              566.54296875\n            ],\n            [\n              483.205078125,\n              566.54296875\n            ],\n            [\n              483.205078125,\n              601.4728851318359\n            ],\n            [\n              85.166015625,\n              601.4728851318359\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            566.54296875,\n            483.205078125,\n            601.4728851318359\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def print_most_common(hist, num=10):\\n    t = most_common(hist)\\n    print 'The most common words are:'\\n    for freq, word in t[:num]:\\n        print word, '\\\\t', freq</pre>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              606.8987274169922\n            ],\n            [\n              285.10736083984375,\n              606.8987274169922\n            ],\n            [\n              285.10736083984375,\n              665.9296875\n            ],\n            [\n              86.28662109375,\n              665.9296875\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            606.8987274169922,\n            285.10736083984375,\n            665.9296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first parameter is required; the second is optional. The <b>default value</b> of num is 10.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              670.95703125\n            ],\n            [\n              460.2401428222656,\n              670.95703125\n            ],\n            [\n              460.2401428222656,\n              681.3258972167969\n            ],\n            [\n              85.46484375,\n              681.3258972167969\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            670.95703125,\n            460.2401428222656,\n            681.3258972167969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/147/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you only provide one argument:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              690.6796875\n            ],\n            [\n              238.763671875,\n              690.6796875\n            ],\n            [\n              238.763671875,\n              700.8348999023438\n            ],\n            [\n              85.46484375,\n              700.8348999023438\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            690.6796875,\n            238.763671875,\n            700.8348999023438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/144/SectionHeader/1\",\n        \"3\": \"/page/144/SectionHeader/2\",\n        \"4\": \"/page/147/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/148/Page/231\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/148/PageHeader/0'></content-ref><content-ref src='/page/148/PageHeader/20'></content-ref><content-ref src='/page/148/Code/1'></content-ref><content-ref src='/page/148/Text/2'></content-ref><content-ref src='/page/148/Code/3'></content-ref><content-ref src='/page/148/Text/4'></content-ref><content-ref src='/page/148/Text/5'></content-ref><content-ref src='/page/148/SectionHeader/6'></content-ref><content-ref src='/page/148/Text/7'></content-ref><content-ref src='/page/148/Text/8'></content-ref><content-ref src='/page/148/Code/9'></content-ref><content-ref src='/page/148/Text/10'></content-ref><content-ref src='/page/148/Code/11'></content-ref><content-ref src='/page/148/Code/12'></content-ref><content-ref src='/page/148/Text/13'></content-ref><content-ref src='/page/148/Text/14'></content-ref><content-ref src='/page/148/Code/15'></content-ref><content-ref src='/page/148/Text/16'></content-ref><content-ref src='/page/148/Code/17'></content-ref><content-ref src='/page/148/SectionHeader/18'></content-ref><content-ref src='/page/148/Text/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/148/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              61.14990234375\n            ],\n            [\n              525.6033935546875,\n              61.14990234375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.6455078125,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            61.14990234375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.697265625,\n              60.521484375\n            ],\n            [\n              526.236328125,\n              60.521484375\n            ],\n            [\n              526.236328125,\n              70.189453125\n            ],\n            [\n              510.697265625,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            510.697265625,\n            60.521484375,\n            526.236328125,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>print_most_common(hist)</pre>\",\n          \"polygon\": [\n            [\n              129.09375,\n              88.68572998046875\n            ],\n            [\n              251.912109375,\n              88.68572998046875\n            ],\n            [\n              251.912109375,\n              98.66162109375\n            ],\n            [\n              129.09375,\n              98.66162109375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            88.68572998046875,\n            251.912109375,\n            98.66162109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">num gets the default value. If you provide two arguments:</p>\",\n          \"polygon\": [\n            [\n              127.30078125,\n              102.7767333984375\n            ],\n            [\n              382.8355712890625,\n              102.7767333984375\n            ],\n            [\n              382.8355712890625,\n              113.115234375\n            ],\n            [\n              127.30078125,\n              113.115234375\n            ]\n          ],\n          \"bbox\": [\n            127.30078125,\n            102.7767333984375,\n            382.8355712890625,\n            113.115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>print_most_common(hist, 20)</pre>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              116.86871337890625\n            ],\n            [\n              270.8298034667969,\n              116.86871337890625\n            ],\n            [\n              270.8298034667969,\n              126.831298828125\n            ],\n            [\n              127.7490234375,\n              126.831298828125\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            116.86871337890625,\n            270.8298034667969,\n            126.831298828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">num gets the value of the argument instead. In other words, the optional argument <b>over</b><b>rides</b> the default value.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              130.0341796875\n            ],\n            [\n              525.9375,\n              130.0341796875\n            ],\n            [\n              525.9375,\n              153.26690673828125\n            ],\n            [\n              129.09375,\n              153.26690673828125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            130.0341796875,\n            525.9375,\n            153.26690673828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If a function has both required and optional parameters, all the required parameters have to come first, followed by the optional ones.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              160.681640625\n            ],\n            [\n              525.9375,\n              160.681640625\n            ],\n            [\n              525.9375,\n              183.52386474609375\n            ],\n            [\n              128.6455078125,\n              183.52386474609375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            160.681640625,\n            525.9375,\n            183.52386474609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/147/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-148-0\\\"></span><b>13.6 Dictionary subtraction</b></h4>\",\n          \"polygon\": [\n            [\n              127.82373046875,\n              209.6015625\n            ],\n            [\n              316.8609924316406,\n              209.6015625\n            ],\n            [\n              316.8609924316406,\n              224.30792236328125\n            ],\n            [\n              127.82373046875,\n              224.30792236328125\n            ]\n          ],\n          \"bbox\": [\n            127.82373046875,\n            209.6015625,\n            316.8609924316406,\n            224.30792236328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Finding the words from the book that are not in the word list from words.txt is a problem you might recognize as set subtraction; that is, we want to find all the words from one set (the words in the book) that are not in another set (the words in the list).</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              234.158203125\n            ],\n            [\n              525.9375,\n              234.158203125\n            ],\n            [\n              525.9375,\n              268.92987060546875\n            ],\n            [\n              128.6455078125,\n              268.92987060546875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            234.158203125,\n            525.9375,\n            268.92987060546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">subtract takes dictionaries d1 and d2 and returns a new dictionary that contains all the keys from d1 that are not in d2. Since we don't really care about the values, we set them all to None.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              276.697265625\n            ],\n            [\n              525.598876953125,\n              276.697265625\n            ],\n            [\n              525.598876953125,\n              311.501953125\n            ],\n            [\n              129.09375,\n              311.501953125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            276.697265625,\n            525.598876953125,\n            311.501953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def subtract(d1, d2):\\n    res = dict()\\n    for key in d1:\\n        if key not in d2:\\n            res[key] = None\\n    return res</pre>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              315.3616943359375\n            ],\n            [\n              273.7265625,\n              315.3616943359375\n            ],\n            [\n              273.7265625,\n              386.2952880859375\n            ],\n            [\n              129.60003662109375,\n              386.2952880859375\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            315.3616943359375,\n            273.7265625,\n            386.2952880859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To find the words in the book that are not in words.txt, we can use process_file to build a histogram for words.txt, and then subtract:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              389.42578125\n            ],\n            [\n              525.9375,\n              389.42578125\n            ],\n            [\n              525.9375,\n              412.7308654785156\n            ],\n            [\n              128.49609375,\n              412.7308654785156\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            389.42578125,\n            525.9375,\n            412.7308654785156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>words = process_file('words.txt')\\ndiff = subtract(hist, words)</pre>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              415.72265625\n            ],\n            [\n              325.72265625,\n              415.72265625\n            ],\n            [\n              325.72265625,\n              443.56640625\n            ],\n            [\n              127.599609375,\n              443.56640625\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            415.72265625,\n            325.72265625,\n            443.56640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>print \\\"The words in the book that aren't in the word list are:\\\"\\nfor word in diff.keys():</pre>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              452.84765625\n            ],\n            [\n              459.59765625,\n              452.84765625\n            ],\n            [\n              459.59765625,\n              475.4503173828125\n            ],\n            [\n              128.6455078125,\n              475.4503173828125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            452.84765625,\n            459.59765625,\n            475.4503173828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">print word,</p>\",\n          \"polygon\": [\n            [\n              148.3681640625,\n              477.59765625\n            ],\n            [\n              208.05010986328125,\n              477.59765625\n            ],\n            [\n              208.05010986328125,\n              487.6443176269531\n            ],\n            [\n              148.3681640625,\n              487.6443176269531\n            ]\n          ],\n          \"bbox\": [\n            148.3681640625,\n            477.59765625,\n            208.05010986328125,\n            487.6443176269531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here are some of the results from <i>Emma</i>:</p>\",\n          \"polygon\": [\n            [\n              127.67431640625,\n              491.1328125\n            ],\n            [\n              308.091796875,\n              491.1328125\n            ],\n            [\n              308.091796875,\n              501.8858947753906\n            ],\n            [\n              127.67431640625,\n              501.8858947753906\n            ]\n          ],\n          \"bbox\": [\n            127.67431640625,\n            491.1328125,\n            308.091796875,\n            501.8858947753906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>The words in the book that aren't in the word list are:\\n rencontre jane's blanche woodhouses disingenuousness\\nfriend's venice apartment ...</pre>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              505.86474609375\n            ],\n            [\n              417.2294616699219,\n              505.86474609375\n            ],\n            [\n              417.2294616699219,\n              540.2163543701172\n            ],\n            [\n              129.46728515625,\n              540.2163543701172\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            505.86474609375,\n            417.2294616699219,\n            540.2163543701172\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Some of these words are names and possessives. Others, like \\\"rencontre,\\\" are no longer in common use. But a few are common words that should really be in the list!</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              544.4943084716797\n            ],\n            [\n              526.236328125,\n              544.4943084716797\n            ],\n            [\n              526.236328125,\n              566.6519165039062\n            ],\n            [\n              128.794921875,\n              566.6519165039062\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            544.4943084716797,\n            526.236328125,\n            566.6519165039062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Code/17\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>Exercise 13.6. Python provides a data structure called set that provides many common set opera-\\ntions. Read the documentation at http: // docs. python. org/ 2/ library/ stdtypes. html#\\ntypes-set and write a program that uses set subtraction to find words in the book that are not in\\nthe word list. Solution: http: // thinkpython. com/ code/ analyze_ book2. py .</pre>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              568.08984375\n            ],\n            [\n              526.833984375,\n              568.08984375\n            ],\n            [\n              526.833984375,\n              615.26953125\n            ],\n            [\n              129.392578125,\n              615.26953125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            568.08984375,\n            526.833984375,\n            615.26953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/SectionHeader/18\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-148-1\\\"></span><b>13.7 Random words</b></h4>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              641.8667907714844\n            ],\n            [\n              269.3935546875,\n              641.8667907714844\n            ],\n            [\n              269.3935546875,\n              656.2129821777344\n            ],\n            [\n              127.7490234375,\n              656.2129821777344\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            641.8667907714844,\n            269.3935546875,\n            656.2129821777344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/148/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To choose a random word from the histogram, the simplest algorithm is to build a list with multiple copies of each word, according to the observed frequency, and then choose from the list:</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              665.9296875\n            ],\n            [\n              525.603515625,\n              665.9296875\n            ],\n            [\n              525.603515625,\n              700.8349380493164\n            ],\n            [\n              128.0478515625,\n              700.8349380493164\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            665.9296875,\n            525.603515625,\n            700.8349380493164\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/18\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/144/SectionHeader/1\",\n        \"3\": \"/page/144/SectionHeader/2\",\n        \"4\": \"/page/148/SectionHeader/18\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/149/Page/181\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/149/PageHeader/0'></content-ref><content-ref src='/page/149/PageHeader/18'></content-ref><content-ref src='/page/149/Code/1'></content-ref><content-ref src='/page/149/Text/2'></content-ref><content-ref src='/page/149/Text/3'></content-ref><content-ref src='/page/149/Text/4'></content-ref><content-ref src='/page/149/Text/5'></content-ref><content-ref src='/page/149/ListGroup/179'></content-ref><content-ref src='/page/149/Text/10'></content-ref><content-ref src='/page/149/SectionHeader/11'></content-ref><content-ref src='/page/149/Text/12'></content-ref><content-ref src='/page/149/Text/13'></content-ref><content-ref src='/page/149/Text/14'></content-ref><content-ref src='/page/149/Text/15'></content-ref><content-ref src='/page/149/Text/16'></content-ref><content-ref src='/page/149/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/149/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.76318359375\n            ],\n            [\n              483.802734375,\n              60.76318359375\n            ],\n            [\n              483.802734375,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.76318359375,\n            483.802734375,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              60.66650390625\n            ],\n            [\n              101.52685546875,\n              60.66650390625\n            ],\n            [\n              101.52685546875,\n              69.65771484375\n            ],\n            [\n              85.53955078125,\n              69.65771484375\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            60.66650390625,\n            101.52685546875,\n            69.65771484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def random_word(h):\\n    t = []\\n    for word, freq in h.items():\\n        t.extend([word] * freq)</pre>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              88.68572998046875\n            ],\n            [\n              253.77613830566406,\n              88.68572998046875\n            ],\n            [\n              253.77613830566406,\n              147.2431640625\n            ],\n            [\n              86.4000015258789,\n              147.2431640625\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            88.68572998046875,\n            253.77613830566406,\n            147.2431640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">return random.choice(t)</p>\",\n          \"polygon\": [\n            [\n              104.7392578125,\n              149.65771484375\n            ],\n            [\n              227.6243438720703,\n              149.65771484375\n            ],\n            [\n              227.6243438720703,\n              160.5849609375\n            ],\n            [\n              104.7392578125,\n              160.5849609375\n            ]\n          ],\n          \"bbox\": [\n            104.7392578125,\n            149.65771484375,\n            227.6243438720703,\n            160.5849609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The expression [word] * freq creates a list with freq copies of the string word. The extend method is similar to append except that the argument is a sequence.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              165.67474365234375\n            ],\n            [\n              482.399169921875,\n              165.67474365234375\n            ],\n            [\n              482.399169921875,\n              187.98089599609375\n            ],\n            [\n              85.3154296875,\n              187.98089599609375\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            165.67474365234375,\n            482.399169921875,\n            187.98089599609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-149-1\\\"></span><b>Exercise 13.7.</b> <i>This algorithm works, but it is not very efficient; each time you choose a random</i> <i>word, it rebuilds the list, which is as big as the original book. An obvious improvement is to build</i> <i>the list once and then make multiple selections, but the list is still big.</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              189.10546875\n            ],\n            [\n              482.607421875,\n              189.10546875\n            ],\n            [\n              482.607421875,\n              224.39117431640625\n            ],\n            [\n              85.46484375,\n              224.39117431640625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            189.10546875,\n            482.607421875,\n            224.39117431640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>An alternative is:</i></p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              233.578125\n            ],\n            [\n              156.4365234375,\n              233.578125\n            ],\n            [\n              156.4365234375,\n              244.38018798828125\n            ],\n            [\n              85.39013671875,\n              244.38018798828125\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            233.578125,\n            156.4365234375,\n            244.38018798828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/ListGroup/179\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/149/ListItem/6'></content-ref><content-ref src='/page/149/ListItem/7'></content-ref><content-ref src='/page/149/ListItem/8'></content-ref><content-ref src='/page/149/ListItem/9'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.8662109375,\n              257.748046875\n            ],\n            [\n              482.4032287597656,\n              257.748046875\n            ],\n            [\n              482.4032287597656,\n              352.6161804199219\n            ],\n            [\n              97.8662109375,\n              352.6161804199219\n            ]\n          ],\n          \"bbox\": [\n            97.8662109375,\n            257.748046875,\n            482.4032287597656,\n            352.6161804199219\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/149/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Use</i> keys <i>to get a list of the words in the book.</i></li>\",\n              \"polygon\": [\n                [\n                  98.8530044555664,\n                  257.748046875\n                ],\n                [\n                  296.76519775390625,\n                  257.748046875\n                ],\n                [\n                  296.76519775390625,\n                  268.1373291015625\n                ],\n                [\n                  98.8530044555664,\n                  268.1373291015625\n                ]\n              ],\n              \"bbox\": [\n                98.8530044555664,\n                257.748046875,\n                296.76519775390625,\n                268.1373291015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/148/SectionHeader/18\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/149/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Build a list that contains the cumulative sum of the word frequencies (see Exercise </i><i><a href=\\\"#page-113-1\\\">10.3)</a></i><i>. The</i> <i>last item in this list is the total number of words in the book, n.</i></li>\",\n              \"polygon\": [\n                [\n                  97.8662109375,\n                  278.05078125\n                ],\n                [\n                  482.4032287597656,\n                  278.05078125\n                ],\n                [\n                  482.4032287597656,\n                  300.34619140625\n                ],\n                [\n                  97.8662109375,\n                  300.34619140625\n                ]\n              ],\n              \"bbox\": [\n                97.8662109375,\n                278.05078125,\n                482.4032287597656,\n                300.34619140625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/148/SectionHeader/18\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/149/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. Choose a random number from 1 to n. Use a bisection search (See Exercise </i><i><a href=\\\"#page-119-1\\\">10.11)</a></i><i> to find the</i> <i>index where the random number would be inserted in the cumulative sum.</i></li>\",\n              \"polygon\": [\n                [\n                  98.4638671875,\n                  310.341796875\n                ],\n                [\n                  482.4032287597656,\n                  310.341796875\n                ],\n                [\n                  482.4032287597656,\n                  332.57818603515625\n                ],\n                [\n                  98.4638671875,\n                  332.57818603515625\n                ]\n              ],\n              \"bbox\": [\n                98.4638671875,\n                310.341796875,\n                482.4032287597656,\n                332.57818603515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/148/SectionHeader/18\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/149/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>4. Use the index to find the corresponding word in the word list.</i></li>\",\n              \"polygon\": [\n                [\n                  98.68798828125,\n                  342.439453125\n                ],\n                [\n                  357.89056396484375,\n                  342.439453125\n                ],\n                [\n                  357.89056396484375,\n                  352.6161804199219\n                ],\n                [\n                  98.68798828125,\n                  352.6161804199219\n                ]\n              ],\n              \"bbox\": [\n                98.68798828125,\n                342.439453125,\n                357.89056396484375,\n                352.6161804199219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/148/SectionHeader/18\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/18\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/149/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a program that uses this algorithm to choose a random word from the book. Solution:</i> <a href=\\\"http://thinkpython.com/code/analyze_book3.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/analyze_book3.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/analyze_book3.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/analyze_book3.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/analyze_book3.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/analyze_book3.py\\\">analyze_</a> <a href=\\\"http://thinkpython.com/code/analyze_book3.py\\\">book3.</a> <a href=\\\"http://thinkpython.com/code/analyze_book3.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              366.22265625\n            ],\n            [\n              480.6768493652344,\n              366.22265625\n            ],\n            [\n              480.6768493652344,\n              388.65234375\n            ],\n            [\n              85.3154296875,\n              388.65234375\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            366.22265625,\n            480.6768493652344,\n            388.65234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/148/SectionHeader/18\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-149-0\\\"></span><b>13.8 Markov analysis</b></h4>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              417.85174560546875\n            ],\n            [\n              234.6392822265625,\n              417.85174560546875\n            ],\n            [\n              234.6392822265625,\n              432.1979675292969\n            ],\n            [\n              85.46484375,\n              432.1979675292969\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            417.85174560546875,\n            234.6392822265625,\n            432.1979675292969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you choose words from the book at random, you can get a sense of the vocabulary, you probably won't get a sentence:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              444.33984375\n            ],\n            [\n              482.4033203125,\n              444.33984375\n            ],\n            [\n              482.4033203125,\n              466.5509033203125\n            ],\n            [\n              85.3154296875,\n              466.5509033203125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            444.33984375,\n            482.4033203125,\n            466.5509033203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">this the small regard harriet which knightley's it most things</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              472.4567565917969\n            ],\n            [\n              410.888671875,\n              472.4567565917969\n            ],\n            [\n              410.888671875,\n              482.625\n            ],\n            [\n              85.166015625,\n              482.625\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            472.4567565917969,\n            410.888671875,\n            482.625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A series of random words seldom makes sense because there is no relationship between successive words. For example, in a real sentence you would expect an article like \\\"the\\\" to be followed by an adjective or a noun, and probably not a verb or adverb.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              488.0390625\n            ],\n            [\n              482.90625,\n              488.0390625\n            ],\n            [\n              482.90625,\n              522.9749145507812\n            ],\n            [\n              85.3154296875,\n              522.9749145507812\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            488.0390625,\n            482.90625,\n            522.9749145507812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One way to measure these kinds of relationships is Markov analysis, which characterizes, for a given sequence of words, the probability of the word that comes next. For example, the song <i>Eric, the Half a Bee</i> begins:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              532.51171875\n            ],\n            [\n              482.4034423828125,\n              532.51171875\n            ],\n            [\n              482.4034423828125,\n              567.3519134521484\n            ],\n            [\n              85.3154296875,\n              567.3519134521484\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            532.51171875,\n            482.4034423828125,\n            567.3519134521484\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\">Half a bee, philosophically, Must, ipso facto, half not be. But half the bee has got to be Vis a vis, its entity. D'you see?</p></blockquote>\",\n          \"polygon\": [\n            [\n              110.56640625,\n              580.078125\n            ],\n            [\n              243.7598114013672,\n              580.078125\n            ],\n            [\n              243.7598114013672,\n              627.6689147949219\n            ],\n            [\n              110.56640625,\n              627.6689147949219\n            ]\n          ],\n          \"bbox\": [\n            110.56640625,\n            580.078125,\n            243.7598114013672,\n            627.6689147949219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/149/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<blockquote><p block-type=\\\"Text\\\">But can a bee be said to be Or not to be an entire bee When half the bee is not a bee Due to some ancient injury?</p></blockquote>\",\n          \"polygon\": [\n            [\n              109.96875,\n              642.0953216552734\n            ],\n            [\n              242.58421325683594,\n              642.0953216552734\n            ],\n            [\n              242.58421325683594,\n              688.6409301757812\n            ],\n            [\n              109.96875,\n              688.6409301757812\n            ]\n          ],\n          \"bbox\": [\n            109.96875,\n            642.0953216552734,\n            242.58421325683594,\n            688.6409301757812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/144/SectionHeader/1\",\n        \"3\": \"/page/144/SectionHeader/2\",\n        \"4\": \"/page/149/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/150/Page/150\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/150/PageHeader/0'></content-ref><content-ref src='/page/150/PageHeader/17'></content-ref><content-ref src='/page/150/Text/1'></content-ref><content-ref src='/page/150/Text/2'></content-ref><content-ref src='/page/150/Text/3'></content-ref><content-ref src='/page/150/Text/4'></content-ref><content-ref src='/page/150/Text/5'></content-ref><content-ref src='/page/150/ListGroup/149'></content-ref><content-ref src='/page/150/Text/8'></content-ref><content-ref src='/page/150/Text/9'></content-ref><content-ref src='/page/150/Text/10'></content-ref><content-ref src='/page/150/ListItem/11'></content-ref><content-ref src='/page/150/Text/12'></content-ref><content-ref src='/page/150/Text/13'></content-ref><content-ref src='/page/150/SectionHeader/14'></content-ref><content-ref src='/page/150/Text/15'></content-ref><content-ref src='/page/150/ListItem/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/150/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              61.0048828125\n            ],\n            [\n              525.6033935546875,\n              61.0048828125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.42138671875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            61.0048828125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              60.521484375\n            ],\n            [\n              526.236328125,\n              60.521484375\n            ],\n            [\n              526.236328125,\n              69.802734375\n            ],\n            [\n              510.099609375,\n              69.802734375\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            60.521484375,\n            526.236328125,\n            69.802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this text, the phrase \\\"half the\\\" is always followed by the word \\\"bee,\\\" but the phrase \\\"the bee\\\" might be followed by either \\\"has\\\" or \\\"is\\\".</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              88.171875\n            ],\n            [\n              525.6033935546875,\n              88.171875\n            ],\n            [\n              525.6033935546875,\n              110.99188232421875\n            ],\n            [\n              127.7490234375,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            88.171875,\n            525.6033935546875,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The result of Markov analysis is a mapping from each prefix (like \\\"half the\\\" and \\\"the bee\\\") to all possible suffixes (like \\\"has\\\" and \\\"is\\\").</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              120.7529296875\n            ],\n            [\n              526.53515625,\n              120.7529296875\n            ],\n            [\n              526.53515625,\n              142.99188232421875\n            ],\n            [\n              128.49609375,\n              142.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            120.7529296875,\n            526.53515625,\n            142.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Given this mapping, you can generate a random text by starting with any prefix and choosing at random from the possible suffixes. Next, you can combine the end of the prefix and the new suffix to form the next prefix, and repeat.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              152.6572265625\n            ],\n            [\n              525.9375,\n              152.6572265625\n            ],\n            [\n              525.9375,\n              187.18695068359375\n            ],\n            [\n              127.8984375,\n              187.18695068359375\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            152.6572265625,\n            525.9375,\n            187.18695068359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, if you start with the prefix \\\"Half a,\\\" then the next word has to be \\\"bee,\\\" because the prefix only appears once in the text. The next prefix is \\\"a bee,\\\" so the next suffix might be \\\"philosophically,\\\" \\\"be\\\" or \\\"due.\\\"</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              196.3564453125\n            ],\n            [\n              525.9375,\n              196.3564453125\n            ],\n            [\n              525.9375,\n              231.38092041015625\n            ],\n            [\n              128.49609375,\n              231.38092041015625\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            196.3564453125,\n            525.9375,\n            231.38092041015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this example the length of the prefix is always two, but you can do Markov analysis with any prefix length. The length of the prefix is called the \\\"order\\\" of the analysis. <b>Exercise 13.8.</b> <i>Markov analysis:</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              241.22430419921875\n            ],\n            [\n              525.638671875,\n              241.22430419921875\n            ],\n            [\n              525.638671875,\n              275.47882080078125\n            ],\n            [\n              128.794921875,\n              275.47882080078125\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            241.22430419921875,\n            525.638671875,\n            275.47882080078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/ListGroup/149\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/150/ListItem/6'></content-ref><content-ref src='/page/150/ListItem/7'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.748046875,\n              288.6796875\n            ],\n            [\n              526.236328125,\n              288.6796875\n            ],\n            [\n              526.236328125,\n              379.66796875\n            ],\n            [\n              140.748046875,\n              379.66796875\n            ]\n          ],\n          \"bbox\": [\n            140.748046875,\n            288.6796875,\n            526.236328125,\n            379.66796875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/150/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Write a program to read a text from a file and perform Markov analysis. The result should be</i> <i>a dictionary that maps from prefixes to a collection of possible suffixes. The collection might</i> <i>be a list, tuple, or dictionary; it is up to you to make an appropriate choice. You can test your</i> <i>program with prefix length two, but you should write the program in a way that makes it easy</i> <i>to try other lengths.</i></li>\",\n              \"polygon\": [\n                [\n                  141.345703125,\n                  288.6796875\n                ],\n                [\n                  526.236328125,\n                  288.6796875\n                ],\n                [\n                  526.236328125,\n                  347.4192810058594\n                ],\n                [\n                  141.345703125,\n                  347.4192810058594\n                ]\n              ],\n              \"bbox\": [\n                141.345703125,\n                288.6796875,\n                526.236328125,\n                347.4192810058594\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/149/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/150/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Add a function to the previous program to generate random text based on the Markov analysis.</i> <i>Here is an example from</i> Emma <i>with prefix length 2:</i></li>\",\n              \"polygon\": [\n                [\n                  140.748046875,\n                  356.94140625\n                ],\n                [\n                  525.603271484375,\n                  356.94140625\n                ],\n                [\n                  525.603271484375,\n                  379.66796875\n                ],\n                [\n                  140.748046875,\n                  379.66796875\n                ]\n              ],\n              \"bbox\": [\n                140.748046875,\n                356.94140625,\n                525.603271484375,\n                379.66796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/149/SectionHeader/11\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/150/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>He was very clever, be it sweetness or be angry, ashamed or only amused, at such</i> <i>a stroke. She had never thought of Hannah till you were never meant for me?\\\" \\\"I</i> <i>cannot make speeches, Emma:\\\" he soon cut it all himself.</i></p>\",\n          \"polygon\": [\n            [\n              174.9638671875,\n              385.44268798828125\n            ],\n            [\n              505.01953125,\n              385.44268798828125\n            ],\n            [\n              505.01953125,\n              419.7942810058594\n            ],\n            [\n              174.9638671875,\n              419.7942810058594\n            ]\n          ],\n          \"bbox\": [\n            174.9638671875,\n            385.44268798828125,\n            505.01953125,\n            419.7942810058594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>For this example, I left the punctuation attached to the words. The result is almost syntacti</i><i>cally correct, but not quite. Semantically, it almost makes sense, but not quite.</i></p>\",\n          \"polygon\": [\n            [\n              153.7470703125,\n              425.74169921875\n            ],\n            [\n              525.9375,\n              425.74169921875\n            ],\n            [\n              525.9375,\n              447.8982849121094\n            ],\n            [\n              153.7470703125,\n              447.8982849121094\n            ]\n          ],\n          \"bbox\": [\n            153.7470703125,\n            425.74169921875,\n            525.9375,\n            447.8982849121094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>What happens if you increase the prefix length? Does the random text make more sense?</i></p>\",\n          \"polygon\": [\n            [\n              152.8505859375,\n              453.97369384765625\n            ],\n            [\n              507.5916748046875,\n              453.97369384765625\n            ],\n            [\n              507.5916748046875,\n              463.936279296875\n            ],\n            [\n              152.8505859375,\n              463.936279296875\n            ]\n          ],\n          \"bbox\": [\n            152.8505859375,\n            453.97369384765625,\n            507.5916748046875,\n            463.936279296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/ListItem/11\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. Once your program is working, you might want to try a mash-up: if you analyze text from</i> <i>two or more books, the random text you generate will blend the vocabulary and phrases from</i> <i>the sources in interesting ways.</i></li>\",\n          \"polygon\": [\n            [\n              141.345703125,\n              473.8556823730469\n            ],\n            [\n              525.638671875,\n              473.8556823730469\n            ],\n            [\n              525.638671875,\n              508.207275390625\n            ],\n            [\n              141.345703125,\n              508.207275390625\n            ]\n          ],\n          \"bbox\": [\n            141.345703125,\n            473.8556823730469,\n            525.638671875,\n            508.207275390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Credit: This case study is based on an example from Kernighan and Pike,</i> The Practice of Programming<i>, Addison-Wesley, 1999.</i></p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              521.296875\n            ],\n            [\n              525.9375,\n              521.296875\n            ],\n            [\n              525.9375,\n              543.81298828125\n            ],\n            [\n              129.5419921875,\n              543.81298828125\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            521.296875,\n            525.9375,\n            543.81298828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You should attempt this exercise before you go on; then you can can download my solution from <a href=\\\"http://thinkpython.com/code/markov.py\\\">http://thinkpython.com/code/markov.py</a>. You will also need <a href=\\\"http://thinkpython.com/code/emma.txt\\\">http://</a> <a href=\\\"http://thinkpython.com/code/emma.txt\\\">thinkpython.com/code/emma.txt</a>.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              553.6563873291016\n            ],\n            [\n              526.236328125,\n              553.6563873291016\n            ],\n            [\n              526.236328125,\n              588.0069885253906\n            ],\n            [\n              128.197265625,\n              588.0069885253906\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            553.6563873291016,\n            526.236328125,\n            588.0069885253906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/149/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/SectionHeader/14\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-150-0\\\"></span><b>13.9 Data structures</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              616.81640625\n            ],\n            [\n              268.24176025390625,\n              616.81640625\n            ],\n            [\n              268.24176025390625,\n              631.2310333251953\n            ],\n            [\n              128.3466796875,\n              631.2310333251953\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            616.81640625,\n            268.24176025390625,\n            631.2310333251953\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Using Markov analysis to generate random text is fun, but there is also a point to this exercise: data structure selection. In your solution to the previous exercises, you had to choose:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              643.11328125\n            ],\n            [\n              526.236328125,\n              643.11328125\n            ],\n            [\n              526.236328125,\n              677.5959854125977\n            ],\n            [\n              128.197265625,\n              677.5959854125977\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            643.11328125,\n            526.236328125,\n            677.5959854125977\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/150/ListItem/16\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"> How to represent the prefixes.</li>\",\n          \"polygon\": [\n            [\n              142.01806640625,\n              690.29296875\n            ],\n            [\n              287.2683410644531,\n              690.29296875\n            ],\n            [\n              287.2683410644531,\n              700.8349838256836\n            ],\n            [\n              142.01806640625,\n              700.8349838256836\n            ]\n          ],\n          \"bbox\": [\n            142.01806640625,\n            690.29296875,\n            287.2683410644531,\n            700.8349838256836\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/144/SectionHeader/1\",\n        \"3\": \"/page/144/SectionHeader/2\",\n        \"4\": \"/page/150/SectionHeader/14\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/151/Page/175\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/151/PageHeader/0'></content-ref><content-ref src='/page/151/PageHeader/15'></content-ref><content-ref src='/page/151/ListGroup/175'></content-ref><content-ref src='/page/151/Text/3'></content-ref><content-ref src='/page/151/Text/4'></content-ref><content-ref src='/page/151/Text/5'></content-ref><content-ref src='/page/151/Text/6'></content-ref><content-ref src='/page/151/Code/7'></content-ref><content-ref src='/page/151/Text/8'></content-ref><content-ref src='/page/151/Text/9'></content-ref><content-ref src='/page/151/Text/10'></content-ref><content-ref src='/page/151/Text/11'></content-ref><content-ref src='/page/151/Text/12'></content-ref><content-ref src='/page/151/Text/13'></content-ref><content-ref src='/page/151/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/151/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.908203125\n            ],\n            [\n              484.1015625,\n              60.908203125\n            ],\n            [\n              484.1015625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.908203125,\n            484.1015625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              60.85986328125\n            ],\n            [\n              102.42333984375,\n              60.85986328125\n            ],\n            [\n              102.42333984375,\n              70.33447265625\n            ],\n            [\n              85.68896484375,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            60.85986328125,\n            102.42333984375,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/ListGroup/175\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/151/ListItem/1'></content-ref><content-ref src='/page/151/ListItem/2'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              99.0615234375,\n              87.4951171875\n            ],\n            [\n              481.7559509277344,\n              87.4951171875\n            ],\n            [\n              481.7559509277344,\n              117.69293212890625\n            ],\n            [\n              99.0615234375,\n              117.69293212890625\n            ]\n          ],\n          \"bbox\": [\n            99.0615234375,\n            87.4951171875,\n            481.7559509277344,\n            117.69293212890625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/151/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> How to represent the collection of possible suffixes.</li>\",\n              \"polygon\": [\n                [\n                  99.9580078125,\n                  87.4951171875\n                ],\n                [\n                  339.46875,\n                  87.4951171875\n                ],\n                [\n                  339.46875,\n                  98.79791259765625\n                ],\n                [\n                  99.9580078125,\n                  98.79791259765625\n                ]\n              ],\n              \"bbox\": [\n                99.9580078125,\n                87.4951171875,\n                339.46875,\n                98.79791259765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/150/SectionHeader/14\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/151/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> How to represent the mapping from each prefix to the collection of possible suffixes.</li>\",\n              \"polygon\": [\n                [\n                  99.0615234375,\n                  106.541015625\n                ],\n                [\n                  481.7559509277344,\n                  106.541015625\n                ],\n                [\n                  481.7559509277344,\n                  117.69293212890625\n                ],\n                [\n                  99.0615234375,\n                  117.69293212890625\n                ]\n              ],\n              \"bbox\": [\n                99.0615234375,\n                106.541015625,\n                481.7559509277344,\n                117.69293212890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/150/SectionHeader/14\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/151/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Ok, the last one is easy; the only mapping type we have seen is a dictionary, so it is the natural choice.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              127.23046875\n            ],\n            [\n              482.90625,\n              127.23046875\n            ],\n            [\n              482.90625,\n              149.99798583984375\n            ],\n            [\n              85.6142578125,\n              149.99798583984375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            127.23046875,\n            482.90625,\n            149.99798583984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For the prefixes, the most obvious options are string, list of strings, or tuple of strings. For the suffixes, one option is a list; another is a histogram (dictionary).</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              157.587890625\n            ],\n            [\n              482.4033508300781,\n              157.587890625\n            ],\n            [\n              482.4033508300781,\n              180.84197998046875\n            ],\n            [\n              85.6142578125,\n              180.84197998046875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            157.587890625,\n            482.4033508300781,\n            180.84197998046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">How should you choose? The first step is to think about the operations you will need to implement for each data structure. For the prefixes, we need to be able to remove words from the beginning and add to the end. For example, if the current prefix is \\\"Half a,\\\" and the next word is \\\"bee,\\\" you need to be able to form the next prefix, \\\"a bee.\\\"</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              188.71875\n            ],\n            [\n              482.90625,\n              188.71875\n            ],\n            [\n              482.90625,\n              236.07391357421875\n            ],\n            [\n              85.9130859375,\n              236.07391357421875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            188.71875,\n            482.90625,\n            236.07391357421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Your first choice might be a list, since it is easy to add and remove elements, but we also need to be able to use the prefixes as keys in a dictionary, so that rules out lists. With tuples, you can't append or remove, but you can use the addition operator to form a new tuple:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              244.212890625\n            ],\n            [\n              482.4033203125,\n              244.212890625\n            ],\n            [\n              482.4033203125,\n              279.1129150390625\n            ],\n            [\n              85.763671875,\n              279.1129150390625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            244.212890625,\n            482.4033203125,\n            279.1129150390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def shift(prefix, word):\\n    return prefix[1:] + (word,)</pre>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              283.6787414550781\n            ],\n            [\n              248.54579162597656,\n              283.6787414550781\n            ],\n            [\n              248.54579162597656,\n              305.8353271484375\n            ],\n            [\n              86.4000015258789,\n              305.8353271484375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            283.6787414550781,\n            248.54579162597656,\n            305.8353271484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">shift takes a tuple of words, prefix, and a string, word, and forms a new tuple that has all the words in prefix except the first, and word added to the end.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              310.1484375\n            ],\n            [\n              482.90625,\n              310.1484375\n            ],\n            [\n              482.90625,\n              332.8569030761719\n            ],\n            [\n              86.0625,\n              332.8569030761719\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            310.1484375,\n            482.90625,\n            332.8569030761719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For the collection of suffixes, the operations we need to perform include adding a new suffix (or increasing the frequency of an existing one), and choosing a random suffix.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              341.0859375\n            ],\n            [\n              482.4032287597656,\n              341.0859375\n            ],\n            [\n              482.4032287597656,\n              363.7008972167969\n            ],\n            [\n              85.763671875,\n              363.7008972167969\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            341.0859375,\n            482.4032287597656,\n            363.7008972167969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Adding a new suffix is equally easy for the list implementation or the histogram. Choosing a random element from a list is easy; choosing from a histogram is harder to do efficiently (see Exercise <a href=\\\"#page-149-1\\\">13.7)</a>.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              371.63671875\n            ],\n            [\n              482.90625,\n              371.63671875\n            ],\n            [\n              482.90625,\n              406.7388916015625\n            ],\n            [\n              85.763671875,\n              406.7388916015625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            371.63671875,\n            482.90625,\n            406.7388916015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So far we have been talking mostly about ease of implementation, but there are other factors to consider in choosing data structures. One is run time. Sometimes there is a theoretical reason to expect one data structure to be faster than other; for example, I mentioned that the in operator is faster for dictionaries than for lists, at least when the number of elements is large.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              414.5625\n            ],\n            [\n              482.4034118652344,\n              414.5625\n            ],\n            [\n              482.4034118652344,\n              474.1658935546875\n            ],\n            [\n              85.9130859375,\n              474.1658935546875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            414.5625,\n            482.4034118652344,\n            474.1658935546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But often you don't know ahead of time which implementation will be faster. One option is to implement both of them and see which is better. This approach is called <b>benchmarking</b>. A practical alternative is to choose the data structure that is easiest to implement, and then see if it is fast enough for the intended application. If so, there is no need to go on. If not, there are tools, like the profile module, that can identify the places in a program that take the most time.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              482.625\n            ],\n            [\n              482.4033203125,\n              482.625\n            ],\n            [\n              482.4033203125,\n              553.7868957519531\n            ],\n            [\n              86.2119140625,\n              553.7868957519531\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            482.625,\n            482.4033203125,\n            553.7868957519531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The other factor to consider is storage space. For example, using a histogram for the collection of suffixes might take less space because you only have to store each word once, no matter how many times it appears in the text. In some cases, saving space can also make your program run faster, and in the extreme, your program might not run at all if you run out of memory. But for many applications, space is a secondary consideration after run time.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              561.90234375\n            ],\n            [\n              482.90625,\n              561.90234375\n            ],\n            [\n              482.90625,\n              633.4089050292969\n            ],\n            [\n              85.9130859375,\n              633.4089050292969\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            561.90234375,\n            482.90625,\n            633.4089050292969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/151/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One final thought: in this discussion, I have implied that we should use one data structure for both analysis and generation. But since these are separate phases, it would also be possible to use one structure for analysis and then convert to another structure for generation. This would be a net win if the time saved during generation exceeded the time spent in conversion.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              641.953125\n            ],\n            [\n              482.90625,\n              641.953125\n            ],\n            [\n              482.90625,\n              700.8349151611328\n            ],\n            [\n              85.763671875,\n              700.8349151611328\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            641.953125,\n            482.90625,\n            700.8349151611328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/144/SectionHeader/1\",\n        \"3\": \"/page/144/SectionHeader/2\",\n        \"4\": \"/page/150/SectionHeader/14\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/152/Page/148\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/152/PageHeader/0'></content-ref><content-ref src='/page/152/PageHeader/15'></content-ref><content-ref src='/page/152/SectionHeader/1'></content-ref><content-ref src='/page/152/Text/2'></content-ref><content-ref src='/page/152/ListGroup/147'></content-ref><content-ref src='/page/152/Text/7'></content-ref><content-ref src='/page/152/Text/8'></content-ref><content-ref src='/page/152/Text/9'></content-ref><content-ref src='/page/152/Text/10'></content-ref><content-ref src='/page/152/Text/11'></content-ref><content-ref src='/page/152/Text/12'></content-ref><content-ref src='/page/152/Text/13'></content-ref><content-ref src='/page/152/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/152/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              60.85986328125\n            ],\n            [\n              525.6033935546875,\n              60.85986328125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.2431640625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            60.85986328125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/152/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.501953125,\n              60.66650390625\n            ],\n            [\n              526.236328125,\n              60.66650390625\n            ],\n            [\n              526.236328125,\n              70.52783203125\n            ],\n            [\n              509.501953125,\n              70.52783203125\n            ]\n          ],\n          \"bbox\": [\n            509.501953125,\n            60.66650390625,\n            526.236328125,\n            70.52783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/150/SectionHeader/14\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/152/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-152-0\\\"></span><b>13.10 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              85.95379638671875\n            ],\n            [\n              250.35195922851562,\n              85.95379638671875\n            ],\n            [\n              250.35195922851562,\n              100.29998779296875\n            ],\n            [\n              129.60000610351562,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            85.95379638671875,\n            250.35195922851562,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/152/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you are debugging a program, and especially if you are working on a hard bug, there are four things to try:</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              112.1484375\n            ],\n            [\n              525.6033325195312,\n              112.1484375\n            ],\n            [\n              525.6033325195312,\n              134.75592041015625\n            ],\n            [\n              128.9443359375,\n              134.75592041015625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            112.1484375,\n            525.6033325195312,\n            134.75592041015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/152/ListGroup/147\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/152/ListItem/3'></content-ref><content-ref src='/page/152/ListItem/4'></content-ref><content-ref src='/page/152/ListItem/5'></content-ref><content-ref src='/page/152/ListItem/6'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              148.5966796875\n            ],\n            [\n              525.9375,\n              148.5966796875\n            ],\n            [\n              525.9375,\n              316.6939697265625\n            ],\n            [\n              128.6455078125,\n              316.6939697265625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            148.5966796875,\n            525.9375,\n            316.6939697265625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/152/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>reading:</b> Examine your code, read it back to yourself, and check that it says what you meant to say.</li>\",\n              \"polygon\": [\n                [\n                  129.2431640625,\n                  148.5966796875\n                ],\n                [\n                  525.9375,\n                  148.5966796875\n                ],\n                [\n                  525.9375,\n                  170.95989990234375\n                ],\n                [\n                  129.2431640625,\n                  170.95989990234375\n                ]\n              ],\n              \"bbox\": [\n                129.2431640625,\n                148.5966796875,\n                525.9375,\n                170.95989990234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/152/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/152/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>running:</b> Experiment by making changes and running different versions. Often if you display the right thing at the right place in the program, the problem becomes obvious, but sometimes you have to spend some time to build scaffolding.</li>\",\n              \"polygon\": [\n                [\n                  128.6455078125,\n                  180.1142578125\n                ],\n                [\n                  525.9375,\n                  180.1142578125\n                ],\n                [\n                  525.9375,\n                  215.47296142578125\n                ],\n                [\n                  128.6455078125,\n                  215.47296142578125\n                ]\n              ],\n              \"bbox\": [\n                128.6455078125,\n                180.1142578125,\n                525.9375,\n                215.47296142578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/152/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/152/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>ruminating:</b> Take some time to think! What kind of error is it: syntax, runtime, semantic? What information can you get from the error messages, or from the output of the program? What kind of error could cause the problem you're seeing? What did you change last, before the problem appeared?</li>\",\n              \"polygon\": [\n                [\n                  128.9443359375,\n                  224.876953125\n                ],\n                [\n                  525.9375,\n                  224.876953125\n                ],\n                [\n                  525.9375,\n                  272.17999267578125\n                ],\n                [\n                  128.9443359375,\n                  272.17999267578125\n                ]\n              ],\n              \"bbox\": [\n                128.9443359375,\n                224.876953125,\n                525.9375,\n                272.17999267578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/152/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/152/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>retreating:</b> At some point, the best thing to do is back off, undoing recent changes, until you get back to a program that works and that you understand. Then you can start rebuilding.</li>\",\n              \"polygon\": [\n                [\n                  128.9443359375,\n                  282.2452392578125\n                ],\n                [\n                  525.9375,\n                  282.2452392578125\n                ],\n                [\n                  525.9375,\n                  316.6939697265625\n                ],\n                [\n                  128.9443359375,\n                  316.6939697265625\n                ]\n              ],\n              \"bbox\": [\n                128.9443359375,\n                282.2452392578125,\n                525.9375,\n                316.6939697265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/152/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/152/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Beginning programmers sometimes get stuck on one of these activities and forget the others. Each activity comes with its own failure mode.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              330.7403869628906\n            ],\n            [\n              525.9375,\n              330.7403869628906\n            ],\n            [\n              525.9375,\n              352.89697265625\n            ],\n            [\n              128.6455078125,\n              352.89697265625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            330.7403869628906,\n            525.9375,\n            352.89697265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/152/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, reading your code might help if the problem is a typographical error, but not if the problem is a conceptual misunderstanding. If you don't understand what your program does, you can read it 100 times and never see the error, because the error is in your head.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              362.935546875\n            ],\n            [\n              526.53515625,\n              362.935546875\n            ],\n            [\n              526.53515625,\n              409.57098388671875\n            ],\n            [\n              128.6455078125,\n              409.57098388671875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            362.935546875,\n            526.53515625,\n            409.57098388671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/152/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Running experiments can help, especially if you run small, simple tests. But if you run experiments without thinking or reading your code, you might fall into a pattern I call \\\"random walk programming,\\\" which is the process of making random changes until the program does the right thing. Needless to say, random walk programming can take a long time.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              419.203125\n            ],\n            [\n              526.53515625,\n              419.203125\n            ],\n            [\n              526.53515625,\n              478.4389953613281\n            ],\n            [\n              128.9443359375,\n              478.4389953613281\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            419.203125,\n            526.53515625,\n            478.4389953613281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/152/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You have to take time to think. Debugging is like an experimental science. You should have at least one hypothesis about what the problem is. If there are two or more possibilities, try to think of a test that would eliminate one of them.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              488.42578125\n            ],\n            [\n              526.53515625,\n              488.42578125\n            ],\n            [\n              526.53515625,\n              522.9179992675781\n            ],\n            [\n              128.9443359375,\n              522.9179992675781\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            488.42578125,\n            526.53515625,\n            522.9179992675781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/152/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Taking a break helps with the thinking. So does talking. If you explain the problem to someone else (or even yourself), you will sometimes find the answer before you finish asking the question.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              532.51171875\n            ],\n            [\n              526.236328125,\n              532.51171875\n            ],\n            [\n              526.236328125,\n              567.3970031738281\n            ],\n            [\n              128.794921875,\n              567.3970031738281\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            532.51171875,\n            526.236328125,\n            567.3970031738281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/152/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But even the best debugging techniques will fail if there are too many errors, or if the code you are trying to fix is too big and complicated. Sometimes the best option is to retreat, simplifying the program until you get to something that works and that you understand.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              577.5254058837891\n            ],\n            [\n              526.236328125,\n              577.5254058837891\n            ],\n            [\n              526.236328125,\n              611.8770141601562\n            ],\n            [\n              128.197265625,\n              611.8770141601562\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            577.5254058837891,\n            526.236328125,\n            611.8770141601562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/152/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Beginning programmers are often reluctant to retreat because they can't stand to delete a line of code (even if it's wrong). If it makes you feel better, copy your program into another file before you start stripping it down. Then you can paste the pieces back in a little bit at a time.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              622.0044097900391\n            ],\n            [\n              525.9375,\n              622.0044097900391\n            ],\n            [\n              525.9375,\n              668.5500259399414\n            ],\n            [\n              128.3466796875,\n              668.5500259399414\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            622.0044097900391,\n            525.9375,\n            668.5500259399414\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/152/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Finding a hard bug requires reading, running, ruminating, and sometimes retreating. If you get stuck on one of these activities, try the others.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              678.3046875\n            ],\n            [\n              526.53515625,\n              678.3046875\n            ],\n            [\n              526.53515625,\n              700.8350296020508\n            ],\n            [\n              127.8984375,\n              700.8350296020508\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            678.3046875,\n            526.53515625,\n            700.8350296020508\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/144/SectionHeader/1\",\n        \"3\": \"/page/144/SectionHeader/2\",\n        \"4\": \"/page/152/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/153/Page/180\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/153/PageHeader/0'></content-ref><content-ref src='/page/153/PageHeader/16'></content-ref><content-ref src='/page/153/SectionHeader/1'></content-ref><content-ref src='/page/153/ListGroup/177'></content-ref><content-ref src='/page/153/Text/4'></content-ref><content-ref src='/page/153/Text/5'></content-ref><content-ref src='/page/153/ListItem/6'></content-ref><content-ref src='/page/153/SectionHeader/7'></content-ref><content-ref src='/page/153/Text/8'></content-ref><content-ref src='/page/153/Text/9'></content-ref><content-ref src='/page/153/TextInlineMath/10'></content-ref><content-ref src='/page/153/Text/11'></content-ref><content-ref src='/page/153/Equation/12'></content-ref><content-ref src='/page/153/Text/13'></content-ref><content-ref src='/page/153/Text/14'></content-ref><content-ref src='/page/153/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/153/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.0048828125\n            ],\n            [\n              483.50390625,\n              61.0048828125\n            ],\n            [\n              483.50390625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.0048828125,\n            483.50390625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.763671875,\n              61.53662109375\n            ],\n            [\n              102.3486328125,\n              61.53662109375\n            ],\n            [\n              102.3486328125,\n              70.91455078125\n            ],\n            [\n              85.763671875,\n              70.91455078125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            61.53662109375,\n            102.3486328125,\n            70.91455078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/152/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-153-0\\\"></span><b>13.11 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              85.95379638671875\n            ],\n            [\n              191.3994140625,\n              85.95379638671875\n            ],\n            [\n              191.3994140625,\n              100.29998779296875\n            ],\n            [\n              85.6142578125,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            85.95379638671875,\n            191.3994140625,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/ListGroup/177\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/153/ListItem/2'></content-ref><content-ref src='/page/153/ListItem/3'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              108.5712890625\n            ],\n            [\n              483.50390625,\n              108.5712890625\n            ],\n            [\n              483.50390625,\n              163.89093017578125\n            ],\n            [\n              85.6142578125,\n              163.89093017578125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            108.5712890625,\n            483.50390625,\n            163.89093017578125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/153/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>deterministic:</b> Pertaining to a program that does the same thing each time it runs, given the same inputs.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  108.5712890625\n                ],\n                [\n                  483.50390625,\n                  108.5712890625\n                ],\n                [\n                  483.50390625,\n                  131.53192138671875\n                ],\n                [\n                  85.6142578125,\n                  131.53192138671875\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                108.5712890625,\n                483.50390625,\n                131.53192138671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/153/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/153/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>pseudorandom:</b> Pertaining to a sequence of numbers that appear to be random, but are generated by a deterministic program.</li>\",\n              \"polygon\": [\n                [\n                  85.763671875,\n                  141.15234375\n                ],\n                [\n                  482.4030456542969,\n                  141.15234375\n                ],\n                [\n                  482.4030456542969,\n                  163.89093017578125\n                ],\n                [\n                  85.763671875,\n                  163.89093017578125\n                ]\n              ],\n              \"bbox\": [\n                85.763671875,\n                141.15234375,\n                482.4030456542969,\n                163.89093017578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/144/SectionHeader/1\",\n                \"3\": \"/page/144/SectionHeader/2\",\n                \"4\": \"/page/153/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/153/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>default value:</b> The value given to an optional parameter if no argument is provided.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              173.63671875\n            ],\n            [\n              459.11029052734375,\n              173.63671875\n            ],\n            [\n              459.11029052734375,\n              184.054931640625\n            ],\n            [\n              85.9130859375,\n              184.054931640625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            173.63671875,\n            459.11029052734375,\n            184.054931640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>override:</b> To replace a default value with an argument.</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              194.1328125\n            ],\n            [\n              328.72967529296875,\n              194.1328125\n            ],\n            [\n              328.72967529296875,\n              204.21990966796875\n            ],\n            [\n              85.68896484375,\n              204.21990966796875\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            194.1328125,\n            328.72967529296875,\n            204.21990966796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/ListItem/6\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>benchmarking:</b> The process of choosing between data structures by implementing alternatives and testing them on a sample of the possible inputs.</li>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              213.46875\n            ],\n            [\n              482.4027404785156,\n              213.46875\n            ],\n            [\n              482.4027404785156,\n              236.57794189453125\n            ],\n            [\n              85.6142578125,\n              236.57794189453125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            213.46875,\n            482.4027404785156,\n            236.57794189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-153-1\\\"></span><b>13.12 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              265.482421875\n            ],\n            [\n              192.77706909179688,\n              265.482421875\n            ],\n            [\n              192.77706909179688,\n              280.2669677734375\n            ],\n            [\n              85.53955078125,\n              280.2669677734375\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            265.482421875,\n            192.77706909179688,\n            280.2669677734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 13.9.</b> <i>The \\\"rank\\\" of a word is its position in a list of words sorted by frequency: the most</i> <i>common word has rank 1, the second most common has rank 2, etc.</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              292.166015625\n            ],\n            [\n              483.205078125,\n              292.166015625\n            ],\n            [\n              483.205078125,\n              314.59619140625\n            ],\n            [\n              85.46484375,\n              314.59619140625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            292.166015625,\n            483.205078125,\n            314.59619140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Zipf's law describes a relationship between the ranks and frequencies of words in natural languages</i> <i>(</i><a href=\\\"http://en.wikipedia.org/wiki/Zipf\\\" s_law'=\\\"\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/Zipf\\\" s_law'=\\\"\\\">//</a> <a href=\\\"http://en.wikipedia.org/wiki/Zipf\\\" s_law'=\\\"\\\">en.</a> <a href=\\\"http://en.wikipedia.org/wiki/Zipf\\\" s_law'=\\\"\\\">wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Zipf\\\" s_law'=\\\"\\\">org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Zipf\\\" s_law'=\\\"\\\">wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Zipf\\\" s_law'=\\\"\\\">Zipf's_</a> <a href=\\\"http://en.wikipedia.org/wiki/Zipf\\\" s_law'=\\\"\\\">law</a> <i>). Specifically, it predicts that the frequency,</i> <i>f , of the word with rank r is:</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              324.7705993652344\n            ],\n            [\n              483.50390625,\n              324.7705993652344\n            ],\n            [\n              483.50390625,\n              359.1221923828125\n            ],\n            [\n              85.3154296875,\n              359.1221923828125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            324.7705993652344,\n            483.50390625,\n            359.1221923828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/TextInlineMath/10\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\"><math display=\\\"inline\\\">f = cr^{-s} </math></p>\",\n          \"polygon\": [\n            [\n              265.8076171875,\n              378.42578125\n            ],\n            [\n              304.3564453125,\n              378.42578125\n            ],\n            [\n              304.3564453125,\n              391.4541931152344\n            ],\n            [\n              265.8076171875,\n              391.4541931152344\n            ]\n          ],\n          \"bbox\": [\n            265.8076171875,\n            378.42578125,\n            304.3564453125,\n            391.4541931152344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>where s and c are parameters that depend on the language and the text. If you take the logarithm of</i> <i>both sides of this equation, you get:</i></p>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              399.48046875\n            ],\n            [\n              483.205078125,\n              399.48046875\n            ],\n            [\n              483.205078125,\n              421.9402160644531\n            ],\n            [\n              84.8671875,\n              421.9402160644531\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            399.48046875,\n            483.205078125,\n            421.9402160644531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/Equation/12\",\n          \"block_type\": \"Equation\",\n          \"html\": \"<p block-type=\\\"Equation\\\"><math display=\\\"block\\\">\\\\log f = \\\\log c - s \\\\log r</math></p>\",\n          \"polygon\": [\n            [\n              237.7177734375,\n              443.3782958984375\n            ],\n            [\n              331.1015625,\n              443.3782958984375\n            ],\n            [\n              331.1015625,\n              454.44390869140625\n            ],\n            [\n              237.7177734375,\n              454.44390869140625\n            ]\n          ],\n          \"bbox\": [\n            237.7177734375,\n            443.3782958984375,\n            331.1015625,\n            454.44390869140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>So if you plot log f versus log r, you should get a straight line with slope</i> −<i>s and intercept log c.</i></p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              461.6702880859375\n            ],\n            [\n              471.8552551269531,\n              461.6702880859375\n            ],\n            [\n              471.8552551269531,\n              472.5703125\n            ],\n            [\n              85.9130859375,\n              472.5703125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            461.6702880859375,\n            471.8552551269531,\n            472.5703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a program that reads a text from a file, counts word frequencies, and prints one line for each</i> <i>word, in descending order of frequency, with log f and log r. Use the graphing program of your</i> <i>choice to plot the results and check whether they form a straight line. Can you estimate the value of</i> <i>s?</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              481.8515625\n            ],\n            [\n              482.90625,\n              481.8515625\n            ],\n            [\n              482.90625,\n              529.283203125\n            ],\n            [\n              85.6142578125,\n              529.283203125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            481.8515625,\n            482.90625,\n            529.283203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/153/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/zipf.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/zipf.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/zipf.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/zipf.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/zipf.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/zipf.py\\\">zipf.</a> <a href=\\\"http://thinkpython.com/code/zipf.py\\\">py</a> <i>. To make the plots, you might have to</i> <i>install matplotlib (see</i> <a href=\\\"http://matplotlib.sourceforge.net/\\\">http:</a> <a href=\\\"http://matplotlib.sourceforge.net/\\\">//</a> <a href=\\\"http://matplotlib.sourceforge.net/\\\">matplotlib.</a> <a href=\\\"http://matplotlib.sourceforge.net/\\\">sourceforge.</a> <a href=\\\"http://matplotlib.sourceforge.net/\\\">net/</a> <i>).</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              539.3779144287109\n            ],\n            [\n              482.4043273925781,\n              539.3779144287109\n            ],\n            [\n              482.4043273925781,\n              561.6152038574219\n            ],\n            [\n              85.46484375,\n              561.6152038574219\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            539.3779144287109,\n            482.4043273925781,\n            561.6152038574219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"3\": \"/page/144/SectionHeader/2\",\n            \"4\": \"/page/153/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/144/SectionHeader/1\",\n        \"3\": \"/page/144/SectionHeader/2\",\n        \"4\": \"/page/153/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/154/Page/119\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/154/SectionHeader/0'></content-ref><content-ref src='/page/154/SectionHeader/1'></content-ref><content-ref src='/page/154/SectionHeader/2'></content-ref><content-ref src='/page/154/Text/3'></content-ref><content-ref src='/page/154/Text/4'></content-ref><content-ref src='/page/154/Text/5'></content-ref><content-ref src='/page/154/Text/6'></content-ref><content-ref src='/page/154/Text/7'></content-ref><content-ref src='/page/154/SectionHeader/8'></content-ref><content-ref src='/page/154/Text/9'></content-ref><content-ref src='/page/154/Text/10'></content-ref><content-ref src='/page/154/Code/11'></content-ref><content-ref src='/page/154/Text/12'></content-ref><content-ref src='/page/154/Text/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/154/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-154-0\\\"></span><b>Chapter 14</b></h2>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              162.615234375\n            ],\n            [\n              232.787109375,\n              162.615234375\n            ],\n            [\n              232.787109375,\n              184.32196044921875\n            ],\n            [\n              128.794921875,\n              184.32196044921875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            162.615234375,\n            232.787109375,\n            184.32196044921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/144/SectionHeader/1\",\n            \"2\": \"/page/154/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Files</b></h1>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              217.916015625\n            ],\n            [\n              184.974609375,\n              217.916015625\n            ],\n            [\n              184.974609375,\n              243.34136962890625\n            ],\n            [\n              127.8984375,\n              243.34136962890625\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            217.916015625,\n            184.974609375,\n            243.34136962890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-154-1\\\"></span><b>14.1 Persistence</b></h4>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              291.7667541503906\n            ],\n            [\n              242.4990234375,\n              291.7667541503906\n            ],\n            [\n              242.4990234375,\n              306.11297607421875\n            ],\n            [\n              128.6455078125,\n              306.11297607421875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            291.7667541503906,\n            242.4990234375,\n            306.11297607421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Most of the programs we have seen so far are transient in the sense that they run for a short time and produce some output, but when they end, their data disappears. If you run the program again, it starts with a clean slate.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              317.996337890625\n            ],\n            [\n              526.53515625,\n              317.996337890625\n            ],\n            [\n              526.53515625,\n              352.3479309082031\n            ],\n            [\n              128.3466796875,\n              352.3479309082031\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            317.996337890625,\n            526.53515625,\n            352.3479309082031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Other programs are <b>persistent</b>: they run for a long time (or all the time); they keep at least some of their data in permanent storage (a hard drive, for example); and if they shut down and restart, they pick up where they left off.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              361.58203125\n            ],\n            [\n              525.9375,\n              361.58203125\n            ],\n            [\n              525.9375,\n              396.41192626953125\n            ],\n            [\n              128.49609375,\n              396.41192626953125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            361.58203125,\n            525.9375,\n            396.41192626953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Examples of persistent programs are operating systems, which run pretty much whenever a computer is on, and web servers, which run all the time, waiting for requests to come in on the network.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              405.28125\n            ],\n            [\n              525.9375,\n              405.28125\n            ],\n            [\n              525.9375,\n              440.4769287109375\n            ],\n            [\n              129.09375,\n              440.4769287109375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            405.28125,\n            525.9375,\n            440.4769287109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One of the simplest ways for programs to maintain their data is by reading and writing text files. We have already seen programs that read text files; in this chapter we will see programs that write them.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              449.75390625\n            ],\n            [\n              526.53515625,\n              449.75390625\n            ],\n            [\n              526.53515625,\n              484.5409240722656\n            ],\n            [\n              128.3466796875,\n              484.5409240722656\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            449.75390625,\n            526.53515625,\n            484.5409240722656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An alternative is to store the state of the program in a database. In this chapter I will present a simple database and a module, pickle, that makes it easy to store program data.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              493.83984375\n            ],\n            [\n              525.9375,\n              493.83984375\n            ],\n            [\n              525.9375,\n              516.4109191894531\n            ],\n            [\n              128.3466796875,\n              516.4109191894531\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            493.83984375,\n            525.9375,\n            516.4109191894531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-154-2\\\"></span><b>14.2 Reading and writing</b></h4>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              544.88671875\n            ],\n            [\n              305.701171875,\n              544.88671875\n            ],\n            [\n              305.701171875,\n              559.58203125\n            ],\n            [\n              127.8984375,\n              559.58203125\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            544.88671875,\n            305.701171875,\n            559.58203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A text file is a sequence of characters stored on a permanent medium like a hard drive, flash memory, or CD-ROM. We saw how to open and read a file in Section <a href=\\\"#page-102-1\\\">9.1.</a></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              571.18359375\n            ],\n            [\n              525.9375,\n              571.18359375\n            ],\n            [\n              525.9375,\n              593.61328125\n            ],\n            [\n              128.49609375,\n              593.61328125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            571.18359375,\n            525.9375,\n            593.61328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To write a file, you have to open it with mode 'w' as a second parameter:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              602.5078125\n            ],\n            [\n              451.828125,\n              602.5078125\n            ],\n            [\n              451.828125,\n              613.1689300537109\n            ],\n            [\n              128.197265625,\n              613.1689300537109\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            602.5078125,\n            451.828125,\n            613.1689300537109\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; fout = open('output.txt', 'w')\\n&gt;&gt;&gt; print fout\\n&lt;open file 'output.txt', mode 'w' at 0xb7eb2410&gt;</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              617.9765625\n            ],\n            [\n              380.61517333984375,\n              617.9765625\n            ],\n            [\n              380.61517333984375,\n              658.1953125\n            ],\n            [\n              129.60000610351562,\n              658.1953125\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            617.9765625,\n            380.61517333984375,\n            658.1953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the file already exists, opening it in write mode clears out the old data and starts fresh, so be careful! If the file doesn't exist, a new one is created.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              658.96875\n            ],\n            [\n              526.53515625,\n              658.96875\n            ],\n            [\n              526.53515625,\n              681.1599349975586\n            ],\n            [\n              129.2431640625,\n              681.1599349975586\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            658.96875,\n            526.53515625,\n            681.1599349975586\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/154/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The write method puts data into the file.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              690.29296875\n            ],\n            [\n              310.78125,\n              690.29296875\n            ],\n            [\n              310.78125,\n              700.8349380493164\n            ],\n            [\n              128.49609375,\n              700.8349380493164\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            690.29296875,\n            310.78125,\n            700.8349380493164\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/154/SectionHeader/1\",\n        \"4\": \"/page/154/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/155/Page/224\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/155/PageHeader/0'></content-ref><content-ref src='/page/155/PageHeader/21'></content-ref><content-ref src='/page/155/TextInlineMath/1'></content-ref><content-ref src='/page/155/Text/2'></content-ref><content-ref src='/page/155/Text/3'></content-ref><content-ref src='/page/155/Text/4'></content-ref><content-ref src='/page/155/Text/5'></content-ref><content-ref src='/page/155/SectionHeader/6'></content-ref><content-ref src='/page/155/Text/7'></content-ref><content-ref src='/page/155/Code/8'></content-ref><content-ref src='/page/155/Text/9'></content-ref><content-ref src='/page/155/Text/10'></content-ref><content-ref src='/page/155/Text/11'></content-ref><content-ref src='/page/155/Code/12'></content-ref><content-ref src='/page/155/Text/13'></content-ref><content-ref src='/page/155/Text/14'></content-ref><content-ref src='/page/155/Code/15'></content-ref><content-ref src='/page/155/Text/16'></content-ref><content-ref src='/page/155/Text/17'></content-ref><content-ref src='/page/155/Code/18'></content-ref><content-ref src='/page/155/Text/19'></content-ref><content-ref src='/page/155/Code/20'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/155/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.71484375\n            ],\n            [\n              482.4034118652344,\n              60.71484375\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.71484375,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/PageHeader/21\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.46484375,\n              61.1015625\n            ],\n            [\n              101.6015625,\n              61.1015625\n            ],\n            [\n              101.6015625,\n              70.3828125\n            ],\n            [\n              85.46484375,\n              70.3828125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            61.1015625,\n            101.6015625,\n            70.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/TextInlineMath/1\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; line1 = \\\"This here's the wattle,\\\\n\\\" &gt;&gt;&gt; fout.write(line1)</p>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              88.0751953125\n            ],\n            [\n              290.3558654785156,\n              88.0751953125\n            ],\n            [\n              290.3558654785156,\n              110.84228515625\n            ],\n            [\n              86.4000015258789,\n              110.84228515625\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            88.0751953125,\n            290.3558654785156,\n            110.84228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Again, the file object keeps track of where it is, so if you call write again, it adds the new data to the end.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              116.4990234375\n            ],\n            [\n              482.4018859863281,\n              116.4990234375\n            ],\n            [\n              482.4018859863281,\n              139.60589599609375\n            ],\n            [\n              85.6142578125,\n              139.60589599609375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            116.4990234375,\n            482.4018859863281,\n            139.60589599609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; line2 = \\\"the emblem of our land.\\\\n\\\" &gt;&gt;&gt; fout.write(line2)</p>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              145.9127197265625\n            ],\n            [\n              290.4609375,\n              145.9127197265625\n            ],\n            [\n              290.4609375,\n              168.0693359375\n            ],\n            [\n              85.53955078125,\n              168.0693359375\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            145.9127197265625,\n            290.4609375,\n            168.0693359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you are done writing, you have to close the file.</p>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              174.1201171875\n            ],\n            [\n              323.96807861328125,\n              174.1201171875\n            ],\n            [\n              323.96807861328125,\n              184.637939453125\n            ],\n            [\n              85.98779296875,\n              184.637939453125\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            174.1201171875,\n            323.96807861328125,\n            184.637939453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; fout.close()</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              190.94573974609375\n            ],\n            [\n              172.423828125,\n              190.94573974609375\n            ],\n            [\n              172.423828125,\n              200.9083251953125\n            ],\n            [\n              85.68896484375,\n              200.9083251953125\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            190.94573974609375,\n            172.423828125,\n            200.9083251953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/154/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-155-0\\\"></span><b>14.3 Format operator</b></h4>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              227.187744140625\n            ],\n            [\n              232.189453125,\n              227.187744140625\n            ],\n            [\n              232.189453125,\n              241.533935546875\n            ],\n            [\n              85.83837890625,\n              241.533935546875\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            227.187744140625,\n            232.189453125,\n            241.533935546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The argument of write has to be a string, so if we want to put other values in a file, we have to convert them to strings. The easiest way to do that is with str:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              254.07421875\n            ],\n            [\n              482.40325927734375,\n              254.07421875\n            ],\n            [\n              482.40325927734375,\n              276.39093017578125\n            ],\n            [\n              85.6142578125,\n              276.39093017578125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            254.07421875,\n            482.40325927734375,\n            276.39093017578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; x = 52\\n&gt;&gt;&gt; fout.write(str(x))</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              282.69775390625\n            ],\n            [\n              201.47799682617188,\n              282.69775390625\n            ],\n            [\n              201.47799682617188,\n              304.8543395996094\n            ],\n            [\n              85.9130859375,\n              304.8543395996094\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            282.69775390625,\n            201.47799682617188,\n            304.8543395996094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An alternative is to use the <b>format operator</b>, %. When applied to integers, % is the modulus operator. But when the first operand is a string, % is the format operator.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              311.311767578125\n            ],\n            [\n              482.39886474609375,\n              311.311767578125\n            ],\n            [\n              482.39886474609375,\n              333.617919921875\n            ],\n            [\n              86.0625,\n              333.617919921875\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            311.311767578125,\n            482.39886474609375,\n            333.617919921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first operand is the <b>format string</b>, which contains one or more <b>format sequences</b>, which specify how the second operand is formatted. The result is a string.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              343.79296875\n            ],\n            [\n              482.3996887207031,\n              343.79296875\n            ],\n            [\n              482.3996887207031,\n              366.2029113769531\n            ],\n            [\n              85.763671875,\n              366.2029113769531\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            343.79296875,\n            482.3996887207031,\n            366.2029113769531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, the format sequence '%d' means that the second operand should be formatted as an integer (d stands for \\\"decimal\\\"):</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              376.470703125\n            ],\n            [\n              482.40252685546875,\n              376.470703125\n            ],\n            [\n              482.40252685546875,\n              398.78790283203125\n            ],\n            [\n              85.6142578125,\n              398.78790283203125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            376.470703125,\n            482.40252685546875,\n            398.78790283203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; camels = 42\\n&gt;&gt;&gt; '%d' % camels\\n'42'</pre>\",\n          \"polygon\": [\n            [\n              85.09130859375,\n              404.89453125\n            ],\n            [\n              176.90625,\n              404.89453125\n            ],\n            [\n              176.90625,\n              439.44635009765625\n            ],\n            [\n              85.09130859375,\n              439.44635009765625\n            ]\n          ],\n          \"bbox\": [\n            85.09130859375,\n            404.89453125,\n            176.90625,\n            439.44635009765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The result is the string '42', which is not to be confused with the integer value 42.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              445.5\n            ],\n            [\n              447.9716796875,\n              445.5\n            ],\n            [\n              447.9716796875,\n              456.0149230957031\n            ],\n            [\n              85.46484375,\n              456.0149230957031\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            445.5,\n            447.9716796875,\n            456.0149230957031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A format sequence can appear anywhere in the string, so you can embed a value in a sentence:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              465.99609375\n            ],\n            [\n              482.4034118652344,\n              465.99609375\n            ],\n            [\n              482.4034118652344,\n              488.59991455078125\n            ],\n            [\n              85.46484375,\n              488.59991455078125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            465.99609375,\n            482.4034118652344,\n            488.59991455078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; camels = 42\\n&gt;&gt;&gt; 'I have spotted %d camels.' % camels\\n'I have spotted 42 camels.'</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              494.9067687988281\n            ],\n            [\n              295.573974609375,\n              494.9067687988281\n            ],\n            [\n              295.573974609375,\n              529.2583618164062\n            ],\n            [\n              85.46484375,\n              529.2583618164062\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            494.9067687988281,\n            295.573974609375,\n            529.2583618164062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If there is more than one format sequence in the string, the second argument has to be a tuple. Each format sequence is matched with an element of the tuple, in order.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              535.60546875\n            ],\n            [\n              482.90625,\n              535.60546875\n            ],\n            [\n              482.90625,\n              558.0209350585938\n            ],\n            [\n              85.6142578125,\n              558.0209350585938\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            535.60546875,\n            482.90625,\n            558.0209350585938\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The following example uses '%d' to format an integer, '%g' to format a floating-point number (don't ask why), and '%s' to format a string:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              567.703125\n            ],\n            [\n              482.90625,\n              567.703125\n            ],\n            [\n              482.90625,\n              590.6059265136719\n            ],\n            [\n              85.6142578125,\n              590.6059265136719\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            567.703125,\n            482.90625,\n            590.6059265136719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Code/18\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; 'In %d years I have spotted %g %s.' % (3, 0.1, 'camels')\\n'In 3 years I have spotted 0.1 camels.'</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              596.9127807617188\n            ],\n            [\n              400.1474304199219,\n              596.9127807617188\n            ],\n            [\n              400.1474304199219,\n              619.0703887939453\n            ],\n            [\n              85.3154296875,\n              619.0703887939453\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            596.9127807617188,\n            400.1474304199219,\n            619.0703887939453\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The number of elements in the tuple has to match the number of format sequences in the string. Also, the types of the elements have to match the format sequences:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              625.6763458251953\n            ],\n            [\n              482.4034118652344,\n              625.6763458251953\n            ],\n            [\n              482.4034118652344,\n              647.8329467773438\n            ],\n            [\n              85.3154296875,\n              647.8329467773438\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            625.6763458251953,\n            482.4034118652344,\n            647.8329467773438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/155/Code/20\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; '%d %d %d' % (1, 2)\\nTypeError: not enough arguments for format string\\n&gt;&gt;&gt; '%d' % 'dollars'\\nTypeError: illegal argument type for built-in operation</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              653.5546875\n            ],\n            [\n              376.5234375,\n              653.5546875\n            ],\n            [\n              376.5234375,\n              700.6853942871094\n            ],\n            [\n              85.3154296875,\n              700.6853942871094\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            653.5546875,\n            376.5234375,\n            700.6853942871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/154/SectionHeader/1\",\n        \"4\": \"/page/155/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/156/Page/198\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/156/PageHeader/0'></content-ref><content-ref src='/page/156/PageHeader/21'></content-ref><content-ref src='/page/156/Text/1'></content-ref><content-ref src='/page/156/Text/2'></content-ref><content-ref src='/page/156/SectionHeader/3'></content-ref><content-ref src='/page/156/Text/4'></content-ref><content-ref src='/page/156/Text/5'></content-ref><content-ref src='/page/156/Code/6'></content-ref><content-ref src='/page/156/Text/7'></content-ref><content-ref src='/page/156/Text/8'></content-ref><content-ref src='/page/156/Text/9'></content-ref><content-ref src='/page/156/Code/10'></content-ref><content-ref src='/page/156/Text/11'></content-ref><content-ref src='/page/156/Code/12'></content-ref><content-ref src='/page/156/Text/13'></content-ref><content-ref src='/page/156/Text/14'></content-ref><content-ref src='/page/156/Code/15'></content-ref><content-ref src='/page/156/Text/16'></content-ref><content-ref src='/page/156/Text/17'></content-ref><content-ref src='/page/156/Code/18'></content-ref><content-ref src='/page/156/Text/19'></content-ref><content-ref src='/page/156/Code/20'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/156/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              60.8115234375\n            ],\n            [\n              525.6033935546875,\n              60.8115234375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.0478515625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            60.8115234375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/PageHeader/21\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.203125,\n              60.56982421875\n            ],\n            [\n              525.9375,\n              60.56982421875\n            ],\n            [\n              525.9375,\n              69.94775390625\n            ],\n            [\n              509.203125,\n              69.94775390625\n            ]\n          ],\n          \"bbox\": [\n            509.203125,\n            60.56982421875,\n            525.9375,\n            69.94775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In the first example, there aren't enough elements; in the second, the element is the wrong type.</p>\",\n          \"polygon\": [\n            [\n              127.1513671875,\n              88.70361328125\n            ],\n            [\n              525.6033935546875,\n              88.70361328125\n            ],\n            [\n              525.6033935546875,\n              110.99188232421875\n            ],\n            [\n              127.1513671875,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            127.1513671875,\n            88.70361328125,\n            525.6033935546875,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The format operator is powerful, but it can be difficult to use. You can read more about it at <a href=\\\"http://docs.python.org/2/library/stdtypes.html#string-formatting\\\">http://docs.python.org/2/library/stdtypes.html#string-formatting</a>.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              120.65625\n            ],\n            [\n              526.53515625,\n              120.65625\n            ],\n            [\n              526.53515625,\n              143.39483642578125\n            ],\n            [\n              128.3466796875,\n              143.39483642578125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            120.65625,\n            526.53515625,\n            143.39483642578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/155/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-156-0\\\"></span><b>14.4 Filenames and paths</b></h4>\",\n          \"polygon\": [\n            [\n              127.82373046875,\n              172.94970703125\n            ],\n            [\n              303.7198791503906,\n              172.94970703125\n            ],\n            [\n              303.7198791503906,\n              187.2958984375\n            ],\n            [\n              127.82373046875,\n              187.2958984375\n            ]\n          ],\n          \"bbox\": [\n            127.82373046875,\n            172.94970703125,\n            303.7198791503906,\n            187.2958984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Files are organized into <b>directories</b> (also called \\\"folders\\\"). Every running program has a \\\"current directory,\\\" which is the default directory for most operations. For example, when you open a file for reading, Python looks for it in the current directory.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              199.353515625\n            ],\n            [\n              525.6033935546875,\n              199.353515625\n            ],\n            [\n              525.6033935546875,\n              234.09185791015625\n            ],\n            [\n              129.392578125,\n              234.09185791015625\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            199.353515625,\n            525.6033935546875,\n            234.09185791015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The os module provides functions for working with files and directories (\\\"os\\\" stands for \\\"operating system\\\"). os.getcwd returns the name of the current directory:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              243.6328125\n            ],\n            [\n              525.6028442382812,\n              243.6328125\n            ],\n            [\n              525.6028442382812,\n              266.49481201171875\n            ],\n            [\n              129.2431640625,\n              266.49481201171875\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            243.6328125,\n            525.6028442382812,\n            266.49481201171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; import os\\n&gt;&gt;&gt; cwd = os.getcwd()\\n&gt;&gt;&gt; print cwd\\n/home/dinsdale</pre>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              272.61962890625\n            ],\n            [\n              239.43768310546875,\n              272.61962890625\n            ],\n            [\n              239.43768310546875,\n              320.009765625\n            ],\n            [\n              128.72021484375,\n              320.009765625\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            272.61962890625,\n            239.43768310546875,\n            320.009765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">cwd stands for \\\"current working directory.\\\" The result in this example is /home/dinsdale, which is the home directory of a user named dinsdale.</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              325.43963623046875\n            ],\n            [\n              525.5996704101562,\n              325.43963623046875\n            ],\n            [\n              525.5996704101562,\n              347.74578857421875\n            ],\n            [\n              129.60000610351562,\n              347.74578857421875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            325.43963623046875,\n            525.5996704101562,\n            347.74578857421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A string like cwd that identifies a file is called a <b>path</b>. A <b>relative path</b> starts from the current directory; an <b>absolute path</b> starts from the topmost directory in the file system.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              357.71484375\n            ],\n            [\n              525.6044311523438,\n              357.71484375\n            ],\n            [\n              525.6044311523438,\n              380.1488037109375\n            ],\n            [\n              128.6455078125,\n              380.1488037109375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            357.71484375,\n            525.6044311523438,\n            380.1488037109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The paths we have seen so far are simple filenames, so they are relative to the current directory. To find the absolute path to a file, you can use os.path.abspath:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              389.619140625\n            ],\n            [\n              525.603515625,\n              389.619140625\n            ],\n            [\n              525.603515625,\n              412.55181884765625\n            ],\n            [\n              128.3466796875,\n              412.55181884765625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            389.619140625,\n            525.603515625,\n            412.55181884765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; os.path.abspath('memo.txt')\\n'/home/dinsdale/memo.txt'</pre>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              418.6766662597656\n            ],\n            [\n              291.7033996582031,\n              418.6766662597656\n            ],\n            [\n              291.7033996582031,\n              440.833251953125\n            ],\n            [\n              129.2431640625,\n              440.833251953125\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            418.6766662597656,\n            291.7033996582031,\n            440.833251953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">os.path.exists checks whether a file or directory exists:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              447.046875\n            ],\n            [\n              381.2076110839844,\n              447.046875\n            ],\n            [\n              381.2076110839844,\n              457.2198181152344\n            ],\n            [\n              128.794921875,\n              457.2198181152344\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            447.046875,\n            381.2076110839844,\n            457.2198181152344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; os.path.exists('memo.txt')</pre>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              463.2890625\n            ],\n            [\n              286.875,\n              463.2890625\n            ],\n            [\n              286.875,\n              477.984375\n            ],\n            [\n              128.794921875,\n              477.984375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            463.2890625,\n            286.875,\n            477.984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">True</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              475.5386657714844\n            ],\n            [\n              152.103515625,\n              475.5386657714844\n            ],\n            [\n              152.103515625,\n              486.4921875\n            ],\n            [\n              128.6455078125,\n              486.4921875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            475.5386657714844,\n            152.103515625,\n            486.4921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If it exists, os.path.isdir checks whether it's a directory:</p>\",\n          \"polygon\": [\n            [\n              127.30078125,\n              491.51953125\n            ],\n            [\n              384.890625,\n              491.51953125\n            ],\n            [\n              384.890625,\n              501.8878173828125\n            ],\n            [\n              127.30078125,\n              501.8878173828125\n            ]\n          ],\n          \"bbox\": [\n            127.30078125,\n            491.51953125,\n            384.890625,\n            501.8878173828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; os.path.isdir('memo.txt')\\nFalse\\n&gt;&gt;&gt; os.path.isdir('music')\\nTrue</pre>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              507.76171875\n            ],\n            [\n              281.24542236328125,\n              507.76171875\n            ],\n            [\n              281.24542236328125,\n              556.48828125\n            ],\n            [\n              128.197265625,\n              556.48828125\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            507.76171875,\n            281.24542236328125,\n            556.48828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Similarly, os.path.isfile checks whether it's a file.</p>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              560.8326721191406\n            ],\n            [\n              359.490234375,\n              560.8326721191406\n            ],\n            [\n              359.490234375,\n              570.94482421875\n            ],\n            [\n              129.16845703125,\n              570.94482421875\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            560.8326721191406,\n            359.490234375,\n            570.94482421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">os.listdir returns a list of the files (and other directories) in the given directory:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              580.46484375\n            ],\n            [\n              487.653564453125,\n              580.46484375\n            ],\n            [\n              487.653564453125,\n              591.15283203125\n            ],\n            [\n              128.3466796875,\n              591.15283203125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            580.46484375,\n            487.653564453125,\n            591.15283203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Code/18\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; os.listdir(cwd)\\n['music', 'photos', 'memo.txt']</pre>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              597.2776794433594\n            ],\n            [\n              291.7034606933594,\n              597.2776794433594\n            ],\n            [\n              291.7034606933594,\n              619.4342803955078\n            ],\n            [\n              127.8984375,\n              619.4342803955078\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            597.2776794433594,\n            291.7034606933594,\n            619.4342803955078\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To demonstrate these functions, the following example \\\"walks\\\" through a directory, prints the names of all the files, and calls itself recursively on all the directories.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              624.9375\n            ],\n            [\n              525.638671875,\n              624.9375\n            ],\n            [\n              525.638671875,\n              648.0158386230469\n            ],\n            [\n              128.794921875,\n              648.0158386230469\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            624.9375,\n            525.638671875,\n            648.0158386230469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/156/Code/20\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def walk(dirname):\\n    for name in os.listdir(dirname):\\n        path = os.path.join(dirname, name)</pre>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              653.94140625\n            ],\n            [\n              349.2754211425781,\n              653.94140625\n            ],\n            [\n              349.2754211425781,\n              688.4912872314453\n            ],\n            [\n              127.97314453125,\n              688.4912872314453\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            653.94140625,\n            349.2754211425781,\n            688.4912872314453\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/154/SectionHeader/1\",\n        \"4\": \"/page/156/SectionHeader/3\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/157/Page/235\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/157/PageHeader/0'></content-ref><content-ref src='/page/157/PageHeader/16'></content-ref><content-ref src='/page/157/Code/1'></content-ref><content-ref src='/page/157/Text/2'></content-ref><content-ref src='/page/157/Text/3'></content-ref><content-ref src='/page/157/SectionHeader/4'></content-ref><content-ref src='/page/157/Text/5'></content-ref><content-ref src='/page/157/Code/6'></content-ref><content-ref src='/page/157/Text/7'></content-ref><content-ref src='/page/157/Text/8'></content-ref><content-ref src='/page/157/Text/9'></content-ref><content-ref src='/page/157/Text/10'></content-ref><content-ref src='/page/157/Text/11'></content-ref><content-ref src='/page/157/Code/12'></content-ref><content-ref src='/page/157/Text/13'></content-ref><content-ref src='/page/157/Text/14'></content-ref><content-ref src='/page/157/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/157/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.2314453125\n            ],\n            [\n              482.4034118652344,\n              60.2314453125\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.2314453125,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.166015625,\n              60.18310546875\n            ],\n            [\n              102.6474609375,\n              60.18310546875\n            ],\n            [\n              102.6474609375,\n              70.52783203125\n            ],\n            [\n              85.166015625,\n              70.52783203125\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            60.18310546875,\n            102.6474609375,\n            70.52783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if os.path.isfile(path):\\n    print path\\nelse:\\n    walk(path)</pre>\",\n          \"polygon\": [\n            [\n              123.416015625,\n              87.8818359375\n            ],\n            [\n              253.77169799804688,\n              87.8818359375\n            ],\n            [\n              253.77169799804688,\n              135.2313232421875\n            ],\n            [\n              123.416015625,\n              135.2313232421875\n            ]\n          ],\n          \"bbox\": [\n            123.416015625,\n            87.8818359375,\n            253.77169799804688,\n            135.2313232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">os.path.join takes a directory and a file name and joins them into a complete path. <b>Exercise 14.1.</b> <i>The</i> os <i>module provides a function called</i> walk <i>that is similar to this one but more</i> <i>versatile. Read the documentation and use it to print the names of the files in a given directory and</i> <i>its subdirectories.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              139.60546875\n            ],\n            [\n              483.50390625,\n              139.60546875\n            ],\n            [\n              483.50390625,\n              187.172119140625\n            ],\n            [\n              85.763671875,\n              187.172119140625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            139.60546875,\n            483.50390625,\n            187.172119140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/walk.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/walk.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/walk.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/walk.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/walk.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/walk.py\\\">walk.</a> <a href=\\\"http://thinkpython.com/code/walk.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              195.6796875\n            ],\n            [\n              323.9296875,\n              195.6796875\n            ],\n            [\n              323.9296875,\n              206.52410888671875\n            ],\n            [\n              85.46484375,\n              206.52410888671875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            195.6796875,\n            323.9296875,\n            206.52410888671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"4\": \"/page/156/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-157-0\\\"></span><b>14.5 Catching exceptions</b></h2>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              233.384765625\n            ],\n            [\n              258.1875,\n              233.384765625\n            ],\n            [\n              258.1875,\n              249.285888671875\n            ],\n            [\n              85.39013671875,\n              249.285888671875\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            233.384765625,\n            258.1875,\n            249.285888671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A lot of things can go wrong when you try to read and write files. If you try to open a file that doesn't exist, you get an IOError:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              258.328125\n            ],\n            [\n              483.205078125,\n              258.328125\n            ],\n            [\n              483.205078125,\n              283.0028076171875\n            ],\n            [\n              85.763671875,\n              283.0028076171875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            258.328125,\n            483.205078125,\n            283.0028076171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; fin = open('bad_file')\\nIOError: [Errno 2] No such file or directory: 'bad_file'</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              286.171875\n            ],\n            [\n              379.2314147949219,\n              286.171875\n            ],\n            [\n              379.2314147949219,\n              310.4282531738281\n            ],\n            [\n              85.763671875,\n              310.4282531738281\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            286.171875,\n            379.2314147949219,\n            310.4282531738281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you don't have permission to access a file:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              313.435546875\n            ],\n            [\n              284.3349609375,\n              313.435546875\n            ],\n            [\n              284.3349609375,\n              325.9588317871094\n            ],\n            [\n              86.2119140625,\n              325.9588317871094\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            313.435546875,\n            284.3349609375,\n            325.9588317871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; fout = open('/etc/passwd', 'w') IOError: [Errno 13] Permission denied: '/etc/passwd' And if you try to open a directory for reading, you get</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              328.130859375\n            ],\n            [\n              358.3153991699219,\n              328.130859375\n            ],\n            [\n              358.3153991699219,\n              368.91485595703125\n            ],\n            [\n              86.0625,\n              368.91485595703125\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            328.130859375,\n            358.3153991699219,\n            368.91485595703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; fin = open('/home') IOError: [Errno 21] Is a directory</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              370.08984375\n            ],\n            [\n              264.2424011230469,\n              370.08984375\n            ],\n            [\n              264.2424011230469,\n              396.3403015136719\n            ],\n            [\n              85.46484375,\n              396.3403015136719\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            370.08984375,\n            264.2424011230469,\n            396.3403015136719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To avoid these errors, you could use functions like os.path.exists and os.path.isfile, but it would take a lot of time and code to check all the possibilities (if \\\"Errno 21\\\" is any indication, there are at least 21 things that can go wrong).</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              398.70703125\n            ],\n            [\n              482.607421875,\n              398.70703125\n            ],\n            [\n              482.607421875,\n              436.2598876953125\n            ],\n            [\n              85.763671875,\n              436.2598876953125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            398.70703125,\n            482.607421875,\n            436.2598876953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is better to go ahead and try—and deal with problems if they happen—which is exactly what the try statement does. The syntax is similar to an if statement:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              443.953125\n            ],\n            [\n              482.40338134765625,\n              443.953125\n            ],\n            [\n              482.40338134765625,\n              467.9296875\n            ],\n            [\n              85.6142578125,\n              467.9296875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            443.953125,\n            482.40338134765625,\n            467.9296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>try:\\n    fin = open('bad_file')\\n    for line in fin:\\n        print line\\n    fin.close()\\nexcept:\\n    print 'Something went wrong.'</pre>\",\n          \"polygon\": [\n            [\n              86.39998626708984,\n              473.0747375488281\n            ],\n            [\n              258.96136474609375,\n              473.0747375488281\n            ],\n            [\n              258.96136474609375,\n              556.2033538818359\n            ],\n            [\n              86.39998626708984,\n              556.2033538818359\n            ]\n          ],\n          \"bbox\": [\n            86.39998626708984,\n            473.0747375488281,\n            258.96136474609375,\n            556.2033538818359\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python starts by executing the try clause. If all goes well, it skips the except clause and proceeds. If an exception occurs, it jumps out of the try clause and executes the except clause.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              559.96875\n            ],\n            [\n              482.90625,\n              559.96875\n            ],\n            [\n              482.90625,\n              596.3203125\n            ],\n            [\n              85.9130859375,\n              596.3203125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            559.96875,\n            482.90625,\n            596.3203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Handling an exception with a try statement is called <b>catching</b> an exception. In this example, the except clause prints an error message that is not very helpful. In general, catching an exception gives you a chance to fix the problem, or try again, or at least end the program gracefully.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              603.66796875\n            ],\n            [\n              482.90625,\n              603.66796875\n            ],\n            [\n              482.90625,\n              652.0579223632812\n            ],\n            [\n              85.9130859375,\n              652.0579223632812\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            603.66796875,\n            482.90625,\n            652.0579223632812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/157/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 14.2.</b> <i>Write a function called</i> sed <i>that takes as arguments a pattern string, a replacement</i> <i>string, and two filenames; it should read the first file and write the contents into the second file</i> <i>(creating it if necessary). If the pattern string appears anywhere in the file, it should be replaced</i> <i>with the replacement string.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              652.39453125\n            ],\n            [\n              482.607421875,\n              652.39453125\n            ],\n            [\n              482.607421875,\n              700.6622314453125\n            ],\n            [\n              85.763671875,\n              700.6622314453125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            652.39453125,\n            482.607421875,\n            700.6622314453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/154/SectionHeader/1\",\n        \"2\": \"/page/157/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/158/Page/203\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/158/PageHeader/0'></content-ref><content-ref src='/page/158/PageHeader/21'></content-ref><content-ref src='/page/158/Text/1'></content-ref><content-ref src='/page/158/SectionHeader/2'></content-ref><content-ref src='/page/158/Text/3'></content-ref><content-ref src='/page/158/Text/4'></content-ref><content-ref src='/page/158/Text/5'></content-ref><content-ref src='/page/158/Code/6'></content-ref><content-ref src='/page/158/Text/7'></content-ref><content-ref src='/page/158/TextInlineMath/8'></content-ref><content-ref src='/page/158/Text/9'></content-ref><content-ref src='/page/158/Code/10'></content-ref><content-ref src='/page/158/Text/11'></content-ref><content-ref src='/page/158/Code/12'></content-ref><content-ref src='/page/158/Text/13'></content-ref><content-ref src='/page/158/Text/14'></content-ref><content-ref src='/page/158/Text/15'></content-ref><content-ref src='/page/158/Code/200'></content-ref><content-ref src='/page/158/SectionHeader/17'></content-ref><content-ref src='/page/158/Text/18'></content-ref><content-ref src='/page/158/Text/19'></content-ref><content-ref src='/page/158/Text/20'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/158/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              61.05322265625\n            ],\n            [\n              525.6033935546875,\n              61.05322265625\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.12255859375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            61.05322265625,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/PageHeader/21\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.80078125,\n              60.76318359375\n            ],\n            [\n              525.33984375,\n              60.76318359375\n            ],\n            [\n              525.33984375,\n              70.43115234375\n            ],\n            [\n              509.80078125,\n              70.43115234375\n            ]\n          ],\n          \"bbox\": [\n            509.80078125,\n            60.76318359375,\n            525.33984375,\n            70.43115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>If an error occurs while opening, reading, writing or closing files, your program should catch the</i> <i>exception, print an error message, and exit. Solution:</i> <a href=\\\"http://thinkpython.com/code/sed.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/sed.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/sed.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/sed.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/sed.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/sed.py\\\">sed.</a> <a href=\\\"http://thinkpython.com/code/sed.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              88.51025390625\n            ],\n            [\n              525.6034545898438,\n              88.51025390625\n            ],\n            [\n              525.6034545898438,\n              123.01416015625\n            ],\n            [\n              127.7490234375,\n              123.01416015625\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            88.51025390625,\n            525.6034545898438,\n            123.01416015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-158-0\\\"></span><b>14.6 Databases</b></h4>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              155.07421875\n            ],\n            [\n              235.97708129882812,\n              155.07421875\n            ],\n            [\n              235.97708129882812,\n              169.46295166015625\n            ],\n            [\n              128.27197265625,\n              169.46295166015625\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            155.07421875,\n            235.97708129882812,\n            169.46295166015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>database</b> is a file that is organized for storing data. Most databases are organized like a dictionary in the sense that they map from keys to values. The biggest difference is that the database is on disk (or other permanent storage), so it persists after the program ends.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              182.6279296875\n            ],\n            [\n              525.9375,\n              182.6279296875\n            ],\n            [\n              525.9375,\n              217.36688232421875\n            ],\n            [\n              128.6455078125,\n              217.36688232421875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            182.6279296875,\n            525.9375,\n            217.36688232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The module anydbm provides an interface for creating and updating database files. As an example, I'll create a database that contains captions for image files.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              227.77734375\n            ],\n            [\n              525.604736328125,\n              227.77734375\n            ],\n            [\n              525.604736328125,\n              250.56182861328125\n            ],\n            [\n              128.794921875,\n              250.56182861328125\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            227.77734375,\n            525.604736328125,\n            250.56182861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Opening a database is similar to opening other files:</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              260.6484375\n            ],\n            [\n              358.2017822265625,\n              260.6484375\n            ],\n            [\n              358.2017822265625,\n              271.56182861328125\n            ],\n            [\n              127.8984375,\n              271.56182861328125\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            260.6484375,\n            358.2017822265625,\n            271.56182861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; import anydbm\\n&gt;&gt;&gt; db = anydbm.open('captions.db', 'c')</pre>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              278.4786376953125\n            ],\n            [\n              339.46875,\n              278.4786376953125\n            ],\n            [\n              339.46875,\n              300.6352233886719\n            ],\n            [\n              129.5419921875,\n              300.6352233886719\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            278.4786376953125,\n            339.46875,\n            300.6352233886719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The mode 'c' means that the database should be created if it doesn't already exist. The result is a database object that can be used (for most operations) like a dictionary. If you create a new item, anydbm updates the database file.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              307.0546875\n            ],\n            [\n              525.638671875,\n              307.0546875\n            ],\n            [\n              525.638671875,\n              342.2017822265625\n            ],\n            [\n              129.392578125,\n              342.2017822265625\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            307.0546875,\n            525.638671875,\n            342.2017822265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/TextInlineMath/8\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">&gt;&gt;&gt; db['cleese.png'] = 'Photo of John Cleese.'</p>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              348.8203125\n            ],\n            [\n              370.14044189453125,\n              348.8203125\n            ],\n            [\n              370.14044189453125,\n              359.0812072753906\n            ],\n            [\n              128.86962890625,\n              359.0812072753906\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            348.8203125,\n            370.14044189453125,\n            359.0812072753906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you access one of the items, anydbm reads the file:</p>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              366.029296875\n            ],\n            [\n              376.224609375,\n              366.029296875\n            ],\n            [\n              376.224609375,\n              376.259765625\n            ],\n            [\n              128.27197265625,\n              376.259765625\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            366.029296875,\n            376.224609375,\n            376.259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print db['cleese.png']\\nPhoto of John Cleese.</pre>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              383.17559814453125\n            ],\n            [\n              265.5584411621094,\n              383.17559814453125\n            ],\n            [\n              265.5584411621094,\n              405.3321838378906\n            ],\n            [\n              127.599609375,\n              405.3321838378906\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            383.17559814453125,\n            265.5584411621094,\n            405.3321838378906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you make another assignment to an existing key, anydbm replaces the old value:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              412.3985900878906\n            ],\n            [\n              487.41802978515625,\n              412.3985900878906\n            ],\n            [\n              487.41802978515625,\n              422.5107421875\n            ],\n            [\n              128.49609375,\n              422.5107421875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            412.3985900878906,\n            487.41802978515625,\n            422.5107421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; db['cleese.png'] = 'Photo of John Cleese doing a silly walk.'\\n&gt;&gt;&gt; print db['cleese.png']\\nPhoto of John Cleese doing a silly walk.</pre>\",\n          \"polygon\": [\n            [\n              129.60009765625,\n              428.484375\n            ],\n            [\n              469.4934997558594,\n              428.484375\n            ],\n            [\n              469.4934997558594,\n              464.0625\n            ],\n            [\n              129.60009765625,\n              464.0625\n            ]\n          ],\n          \"bbox\": [\n            129.60009765625,\n            428.484375,\n            469.4934997558594,\n            464.0625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Many dictionary methods, like keys and items, also work with database objects. So does iteration with a for statement.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              470.8445739746094\n            ],\n            [\n              525.599853515625,\n              470.8445739746094\n            ],\n            [\n              525.599853515625,\n              493.1507263183594\n            ],\n            [\n              128.49609375,\n              493.1507263183594\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            470.8445739746094,\n            525.599853515625,\n            493.1507263183594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">for key in db: print key</p>\",\n          \"polygon\": [\n            [\n              127.30078125,\n              500.06756591796875\n            ],\n            [\n              202.82525634765625,\n              500.06756591796875\n            ],\n            [\n              202.82525634765625,\n              522.2241516113281\n            ],\n            [\n              127.30078125,\n              522.2241516113281\n            ]\n          ],\n          \"bbox\": [\n            127.30078125,\n            500.06756591796875,\n            202.82525634765625,\n            522.2241516113281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As with other files, you should close the database when you are done:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              529.03125\n            ],\n            [\n              437.484375,\n              529.03125\n            ],\n            [\n              437.484375,\n              539.4027252197266\n            ],\n            [\n              129.2431640625,\n              539.4027252197266\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            529.03125,\n            437.484375,\n            539.4027252197266\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Code/200\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; db.close()</pre>\",\n          \"polygon\": [\n            [\n              129.6001434326172,\n              546.3185729980469\n            ],\n            [\n              202.82525634765625,\n              546.3185729980469\n            ],\n            [\n              202.82525634765625,\n              556.2811737060547\n            ],\n            [\n              129.6001434326172,\n              556.2811737060547\n            ]\n          ],\n          \"bbox\": [\n            129.6001434326172,\n            546.3185729980469,\n            202.82525634765625,\n            556.2811737060547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/SectionHeader/17\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-158-1\\\"></span><b>14.7 Pickling</b></h4>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              584.33203125\n            ],\n            [\n              224.02682495117188,\n              584.33203125\n            ],\n            [\n              224.02682495117188,\n              598.7357788085938\n            ],\n            [\n              127.8984375,\n              598.7357788085938\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            584.33203125,\n            224.02682495117188,\n            598.7357788085938\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A limitation of anydbm is that the keys and values have to be strings. If you try to use any other type, you get an error.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              612.1395721435547\n            ],\n            [\n              525.638671875,\n              612.1395721435547\n            ],\n            [\n              525.638671875,\n              634.4457244873047\n            ],\n            [\n              128.197265625,\n              634.4457244873047\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            612.1395721435547,\n            525.638671875,\n            634.4457244873047\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The pickle module can help. It translates almost any type of object into a string suitable for storage in a database, and then translates strings back into objects.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              645.3345642089844\n            ],\n            [\n              525.9375,\n              645.3345642089844\n            ],\n            [\n              525.9375,\n              667.6407241821289\n            ],\n            [\n              128.49609375,\n              667.6407241821289\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            645.3345642089844,\n            525.9375,\n            667.6407241821289\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/158/Text/20\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">pickle.dumps takes an object as a parameter and returns a string representation (dumps is short for \\\"dump string\\\"):</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              678.528564453125\n            ],\n            [\n              525.600341796875,\n              678.528564453125\n            ],\n            [\n              525.600341796875,\n              700.8347244262695\n            ],\n            [\n              128.0478515625,\n              700.8347244262695\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            678.528564453125,\n            525.600341796875,\n            700.8347244262695\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/154/SectionHeader/1\",\n        \"2\": \"/page/157/SectionHeader/4\",\n        \"4\": \"/page/158/SectionHeader/17\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/159/Page/266\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/159/PageHeader/0'></content-ref><content-ref src='/page/159/PageHeader/17'></content-ref><content-ref src='/page/159/Code/1'></content-ref><content-ref src='/page/159/Text/2'></content-ref><content-ref src='/page/159/Code/3'></content-ref><content-ref src='/page/159/Text/4'></content-ref><content-ref src='/page/159/Code/5'></content-ref><content-ref src='/page/159/Text/6'></content-ref><content-ref src='/page/159/Text/7'></content-ref><content-ref src='/page/159/Text/8'></content-ref><content-ref src='/page/159/Text/9'></content-ref><content-ref src='/page/159/SectionHeader/10'></content-ref><content-ref src='/page/159/Text/11'></content-ref><content-ref src='/page/159/Text/12'></content-ref><content-ref src='/page/159/Text/13'></content-ref><content-ref src='/page/159/Code/14'></content-ref><content-ref src='/page/159/Text/15'></content-ref><content-ref src='/page/159/Footnote/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/159/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.18310546875\n            ],\n            [\n              482.4034118652344,\n              60.18310546875\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.18310546875,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.763671875,\n              60.08642578125\n            ],\n            [\n              102.19921875,\n              60.08642578125\n            ],\n            [\n              102.19921875,\n              69.94775390625\n            ],\n            [\n              85.763671875,\n              69.94775390625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            60.08642578125,\n            102.19921875,\n            69.94775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; import pickle\\n&gt;&gt;&gt; t = [1, 2, 3]\\n&gt;&gt;&gt; pickle.dumps(t)\\n'(lp0\\\\nI1\\\\naI2\\\\naI3\\\\na.'</pre>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              88.68572998046875\n            ],\n            [\n              211.90036010742188,\n              88.68572998046875\n            ],\n            [\n              211.90036010742188,\n              135.2313232421875\n            ],\n            [\n              86.13720703125,\n              135.2313232421875\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            88.68572998046875,\n            211.90036010742188,\n            135.2313232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The format isn't obvious to human readers; it is meant to be easy for pickle to interpret. pickle.loads (\\\"load string\\\") reconstitutes the object:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              139.025390625\n            ],\n            [\n              482.3997497558594,\n              139.025390625\n            ],\n            [\n              482.3997497558594,\n              162.866943359375\n            ],\n            [\n              85.6142578125,\n              162.866943359375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            139.025390625,\n            482.3997497558594,\n            162.866943359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t1 = [1, 2, 3]\\n&gt;&gt;&gt; s = pickle.dumps(t1)\\n&gt;&gt;&gt; t2 = pickle.loads(s)\\n&gt;&gt;&gt; print t2\\n[1, 2, 3]</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              167.7392578125\n            ],\n            [\n              211.93870544433594,\n              167.7392578125\n            ],\n            [\n              211.93870544433594,\n              227.390625\n            ],\n            [\n              85.3154296875,\n              227.390625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            167.7392578125,\n            211.93870544433594,\n            227.390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Although the new object has the same value as the old, it is not (in general) the same object:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              231.451171875\n            ],\n            [\n              482.4033203125,\n              231.451171875\n            ],\n            [\n              482.4033203125,\n              242.2269287109375\n            ],\n            [\n              86.2119140625,\n              242.2269287109375\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            231.451171875,\n            482.4033203125,\n            242.2269287109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t1 == t2\\nTrue\\n&gt;&gt;&gt; t1 is t2\\nFalse</pre>\",\n          \"polygon\": [\n            [\n              84.94189453125,\n              247.306640625\n            ],\n            [\n              152.77587890625,\n              247.306640625\n            ],\n            [\n              152.77587890625,\n              293.95233154296875\n            ],\n            [\n              84.94189453125,\n              293.95233154296875\n            ]\n          ],\n          \"bbox\": [\n            84.94189453125,\n            247.306640625,\n            152.77587890625,\n            293.95233154296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In other words, pickling and then unpickling has the same effect as copying the object.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              298.546875\n            ],\n            [\n              466.3138122558594,\n              298.546875\n            ],\n            [\n              466.3138122558594,\n              309.3929138183594\n            ],\n            [\n              86.0625,\n              309.3929138183594\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            298.546875,\n            466.3138122558594,\n            309.3929138183594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can use pickle to store non-strings in a database. In fact, this combination is so common that it has been encapsulated in a module called shelve.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              317.49609375\n            ],\n            [\n              482.4024658203125,\n              317.49609375\n            ],\n            [\n              482.4024658203125,\n              340.84991455078125\n            ],\n            [\n              85.46484375,\n              340.84991455078125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            317.49609375,\n            482.4024658203125,\n            340.84991455078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 14.3.</b> <i>If you download my solution to Exercise </i><i><a href=\\\"#page-142-2\\\">12.4</a></i><i> from</i> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">anagram_</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">sets.</a> <a href=\\\"http://thinkpython.com/code/anagram_sets.py\\\">py</a> <i>, you'll see that it creates a dictionary that maps from a sorted string of</i> <i>letters to the list of words that can be spelled with those letters. For example,</i> 'opst' <i>maps to the</i> <i>list</i> ['opts', 'post', 'pots', 'spot', 'stop', 'tops']<i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              342.82891845703125\n            ],\n            [\n              482.90625,\n              342.82891845703125\n            ],\n            [\n              482.90625,\n              389.4783630371094\n            ],\n            [\n              85.9130859375,\n              389.4783630371094\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            342.82891845703125,\n            482.90625,\n            389.4783630371094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a module that imports</i> anagram_sets <i>and provides two new functions:</i> store_anagrams <i>should store the anagram dictionary in a \\\"shelf;\\\"</i> read_anagrams <i>should look up a word and return</i> <i>a list of its anagrams. Solution:</i> <a href=\\\"http://thinkpython.com/code/anagram_db.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/anagram_db.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/anagram_db.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/anagram_db.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/anagram_db.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/anagram_db.py\\\">anagram_</a> <a href=\\\"http://thinkpython.com/code/anagram_db.py\\\">db.</a> <a href=\\\"http://thinkpython.com/code/anagram_db.py\\\">py</a></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              398.3203125\n            ],\n            [\n              482.4270324707031,\n              398.3203125\n            ],\n            [\n              482.4270324707031,\n              433.125\n            ],\n            [\n              85.6142578125,\n              433.125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            398.3203125,\n            482.4270324707031,\n            433.125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"4\": \"/page/158/SectionHeader/17\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-159-0\\\"></span><b>14.8 Pipes</b></h3>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              460.1953125\n            ],\n            [\n              162.5625,\n              460.1953125\n            ],\n            [\n              162.5625,\n              475.7430114746094\n            ],\n            [\n              85.68896484375,\n              475.7430114746094\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            460.1953125,\n            162.5625,\n            475.7430114746094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Most operating systems provide a command-line interface, also known as a <b>shell</b>. Shells usually provide commands to navigate the file system and launch applications. For example, in Unix you can change directories with cd, display the contents of a directory with ls, and launch a web browser by typing (for example) firefox.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              486.4921875\n            ],\n            [\n              482.4032287597656,\n              486.4921875\n            ],\n            [\n              482.4032287597656,\n              533.7599487304688\n            ],\n            [\n              85.763671875,\n              533.7599487304688\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            486.4921875,\n            482.4032287597656,\n            533.7599487304688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Any program that you can launch from the shell can also be launched from Python using a <b>pipe</b>. A pipe is an object that represents a running program.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              542.1796875\n            ],\n            [\n              482.4032897949219,\n              542.1796875\n            ],\n            [\n              482.4032897949219,\n              565.3828125\n            ],\n            [\n              85.6142578125,\n              565.3828125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            542.1796875,\n            482.4032897949219,\n            565.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, the Unix command ls -l normally displays the contents of the current directory (in long format). You can launch ls with os.popen<a href=\\\"#page-159-1\\\">1</a> :</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              573.50390625\n            ],\n            [\n              482.90625,\n              573.50390625\n            ],\n            [\n              482.90625,\n              596.6749572753906\n            ],\n            [\n              85.763671875,\n              596.6749572753906\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            573.50390625,\n            482.90625,\n            596.6749572753906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; cmd = 'ls -l'\\n&gt;&gt;&gt; fp = os.popen(cmd)</pre>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              600.9609375\n            ],\n            [\n              201.4779510498047,\n              600.9609375\n            ],\n            [\n              201.4779510498047,\n              624.0114135742188\n            ],\n            [\n              86.13720703125,\n              624.0114135742188\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            600.9609375,\n            201.4779510498047,\n            624.0114135742188\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The argument is a string that contains a shell command. The return value is an object that behaves just like an open file. You can read the output from the ls process one line at a time with readline or get the whole thing at once with read:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              628.41796875\n            ],\n            [\n              482.90625,\n              628.41796875\n            ],\n            [\n              482.90625,\n              663.8409729003906\n            ],\n            [\n              86.0625,\n              663.8409729003906\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            628.41796875,\n            482.90625,\n            663.8409729003906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/159/Footnote/16\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-159-1\\\"></span><sup>1</sup>popen is deprecated now, which means we are supposed to stop using it and start using the subprocess module. But for simple cases, I find subprocess more complicated than necessary. So I am going to keep using popen until they take it away.</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              671.9081573486328\n            ],\n            [\n              482.607421875,\n              671.9081573486328\n            ],\n            [\n              482.607421875,\n              700.734375\n            ],\n            [\n              86.361328125,\n              700.734375\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            671.9081573486328,\n            482.607421875,\n            700.734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/154/SectionHeader/1\",\n        \"2\": \"/page/157/SectionHeader/4\",\n        \"3\": \"/page/159/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/160/Page/210\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/160/PageHeader/0'></content-ref><content-ref src='/page/160/PageHeader/17'></content-ref><content-ref src='/page/160/Text/1'></content-ref><content-ref src='/page/160/Text/2'></content-ref><content-ref src='/page/160/Code/3'></content-ref><content-ref src='/page/160/Text/4'></content-ref><content-ref src='/page/160/Text/5'></content-ref><content-ref src='/page/160/Text/6'></content-ref><content-ref src='/page/160/Code/7'></content-ref><content-ref src='/page/160/Text/8'></content-ref><content-ref src='/page/160/ListGroup/208'></content-ref><content-ref src='/page/160/Text/12'></content-ref><content-ref src='/page/160/SectionHeader/13'></content-ref><content-ref src='/page/160/Text/14'></content-ref><content-ref src='/page/160/Code/15'></content-ref><content-ref src='/page/160/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/160/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.01904296875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.80078125,\n              61.1015625\n            ],\n            [\n              525.9375,\n              61.1015625\n            ],\n            [\n              525.9375,\n              70.3828125\n            ],\n            [\n              509.80078125,\n              70.3828125\n            ]\n          ],\n          \"bbox\": [\n            509.80078125,\n            61.1015625,\n            525.9375,\n            70.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; res = fp.read()</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              88.68572998046875\n            ],\n            [\n              249.9697265625,\n              88.68572998046875\n            ],\n            [\n              249.9697265625,\n              100.2568359375\n            ],\n            [\n              127.7490234375,\n              100.2568359375\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            88.68572998046875,\n            249.9697265625,\n            100.2568359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you are done, you close the pipe like a file:</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              103.833984375\n            ],\n            [\n              345.4097900390625,\n              103.833984375\n            ],\n            [\n              345.4097900390625,\n              114.04888916015625\n            ],\n            [\n              127.7490234375,\n              114.04888916015625\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            103.833984375,\n            345.4097900390625,\n            114.04888916015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; stat = fp.close()\\n&gt;&gt;&gt; print stat\\nNone</pre>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              119.188720703125\n            ],\n            [\n              239.43765258789062,\n              119.188720703125\n            ],\n            [\n              239.43765258789062,\n              156.041015625\n            ],\n            [\n              128.197265625,\n              156.041015625\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            119.188720703125,\n            239.43765258789062,\n            156.041015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The return value is the final status of the ls process; None means that it ended normally (with no errors).</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              158.8287353515625\n            ],\n            [\n              525.595947265625,\n              158.8287353515625\n            ],\n            [\n              525.595947265625,\n              181.13494873046875\n            ],\n            [\n              129.09375,\n              181.13494873046875\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            158.8287353515625,\n            525.595947265625,\n            181.13494873046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, most Unix systems provide a command called md5sum that reads the contents of a file and computes a \\\"checksum.\\\" You can read about MD5 at <a href=\\\"http://en.wikipedia.org/wiki/Md5\\\">http://en.wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Md5\\\">org/wiki/Md5</a>. This command provides an efficient way to check whether two files have the same contents. The probability that different contents yield the same checksum is very small (that is, unlikely to happen before the universe collapses).</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              189.9755859375\n            ],\n            [\n              525.638671875,\n              189.9755859375\n            ],\n            [\n              525.638671875,\n              249.13494873046875\n            ],\n            [\n              128.794921875,\n              249.13494873046875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            189.9755859375,\n            525.638671875,\n            249.13494873046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can use a pipe to run md5sum from Python and get the result:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              258.24578857421875\n            ],\n            [\n              414.5018005371094,\n              258.24578857421875\n            ],\n            [\n              414.5018005371094,\n              268.35797119140625\n            ],\n            [\n              128.794921875,\n              268.35797119140625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            258.24578857421875,\n            414.5018005371094,\n            268.35797119140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; filename = 'book.tex'\\n&gt;&gt;&gt; cmd = 'md5sum ' + filename\\n&gt;&gt;&gt; fp = os.popen(cmd)\\n&gt;&gt;&gt; res = fp.read()\\n&gt;&gt;&gt; stat = fp.close()\\n&gt;&gt;&gt; print res\\n1e0033f0ed0656636de0d75144ba32e0 book.tex\\n&gt;&gt;&gt; print stat\\nNone</pre>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              273.497802734375\n            ],\n            [\n              350.82421875,\n              273.497802734375\n            ],\n            [\n              350.82421875,\n              382.658203125\n            ],\n            [\n              128.72021484375,\n              382.658203125\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            273.497802734375,\n            350.82421875,\n            382.658203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-160-0\\\"></span><b>Exercise 14.4.</b> <i>In a large collection of MP3 files, there may be more than one copy of the same song,</i> <i>stored in different directories or with different file names. The goal of this exercise is to search for</i> <i>duplicates.</i></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              383.22369384765625\n            ],\n            [\n              525.6034545898438,\n              383.22369384765625\n            ],\n            [\n              525.6034545898438,\n              417.57427978515625\n            ],\n            [\n              128.49609375,\n              417.57427978515625\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            383.22369384765625,\n            525.6034545898438,\n            417.57427978515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/ListGroup/208\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/160/ListItem/9'></content-ref><content-ref src='/page/160/ListItem/10'></content-ref><content-ref src='/page/160/ListItem/11'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.0009765625,\n              428.87109375\n            ],\n            [\n              525.603271484375,\n              428.87109375\n            ],\n            [\n              525.603271484375,\n              514.6114196777344\n            ],\n            [\n              140.0009765625,\n              514.6114196777344\n            ]\n          ],\n          \"bbox\": [\n            140.0009765625,\n            428.87109375,\n            525.603271484375,\n            514.6114196777344\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/160/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Write a program that searches a directory and all of its subdirectories, recursively, and returns</i> <i>a list of complete paths for all files with a given suffix (like</i> .mp3<i>). Hint:</i> os.path <i>provides</i> <i>several useful functions for manipulating file and path names.</i></li>\",\n              \"polygon\": [\n                [\n                  140.0009765625,\n                  428.87109375\n                ],\n                [\n                  525.603271484375,\n                  428.87109375\n                ],\n                [\n                  525.603271484375,\n                  463.624267578125\n                ],\n                [\n                  140.0009765625,\n                  463.624267578125\n                ]\n              ],\n              \"bbox\": [\n                140.0009765625,\n                428.87109375,\n                525.603271484375,\n                463.624267578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/159/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/160/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. To recognize duplicates, you can use</i> md5sum <i>to compute a \\\"checksum\\\" for each files. If two</i> <i>files have the same checksum, they probably have the same contents.</i></li>\",\n              \"polygon\": [\n                [\n                  140.748046875,\n                  472.18359375\n                ],\n                [\n                  525.5972290039062,\n                  472.18359375\n                ],\n                [\n                  525.5972290039062,\n                  495.2032775878906\n                ],\n                [\n                  140.748046875,\n                  495.2032775878906\n                ]\n              ],\n              \"bbox\": [\n                140.748046875,\n                472.18359375,\n                525.5972290039062,\n                495.2032775878906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/159/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/160/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. To double-check, you can use the Unix command</i> diff<i>.</i></li>\",\n              \"polygon\": [\n                [\n                  140.5986328125,\n                  504.28125\n                ],\n                [\n                  375.03265380859375,\n                  504.28125\n                ],\n                [\n                  375.03265380859375,\n                  514.6114196777344\n                ],\n                [\n                  140.5986328125,\n                  514.6114196777344\n                ]\n              ],\n              \"bbox\": [\n                140.5986328125,\n                504.28125,\n                375.03265380859375,\n                514.6114196777344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/159/SectionHeader/10\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/160/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/find_duplicates.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/find_duplicates.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/find_duplicates.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/find_duplicates.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/find_duplicates.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/find_duplicates.py\\\">find_</a> <a href=\\\"http://thinkpython.com/code/find_duplicates.py\\\">duplicates.</a> <a href=\\\"http://thinkpython.com/code/find_duplicates.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              526.2059936523438\n            ],\n            [\n              426.3626708984375,\n              526.2059936523438\n            ],\n            [\n              426.3626708984375,\n              536.2492980957031\n            ],\n            [\n              127.4501953125,\n              536.2492980957031\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            526.2059936523438,\n            426.3626708984375,\n            536.2492980957031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-160-1\\\"></span><b>14.9 Writing modules</b></h4>\",\n          \"polygon\": [\n            [\n              127.1513671875,\n              564.4838562011719\n            ],\n            [\n              279.5537109375,\n              564.4838562011719\n            ],\n            [\n              279.5537109375,\n              578.8300476074219\n            ],\n            [\n              127.1513671875,\n              578.8300476074219\n            ]\n          ],\n          \"bbox\": [\n            127.1513671875,\n            564.4838562011719,\n            279.5537109375,\n            578.8300476074219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Any file that contains Python code can be imported as a module. For example, suppose you have a file named wc.py with the following code:</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              590.1328125\n            ],\n            [\n              525.638671875,\n              590.1328125\n            ],\n            [\n              525.638671875,\n              612.5625\n            ],\n            [\n              127.599609375,\n              612.5625\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            590.1328125,\n            525.638671875,\n            612.5625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def linecount(filename):\\n    count = 0\\n    for line in open(filename):\\n        count += 1\\n    return count</pre>\",\n          \"polygon\": [\n            [\n              129.5999298095703,\n              617.5568542480469\n            ],\n            [\n              291.7457275390625,\n              617.5568542480469\n            ],\n            [\n              291.7457275390625,\n              687.19921875\n            ],\n            [\n              129.5999298095703,\n              687.19921875\n            ]\n          ],\n          \"bbox\": [\n            129.5999298095703,\n            617.5568542480469,\n            291.7457275390625,\n            687.19921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/160/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">print linecount('wc.py')</p>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              690.7228546142578\n            ],\n            [\n              255.1002960205078,\n              690.7228546142578\n            ],\n            [\n              255.1002960205078,\n              701.5078125\n            ],\n            [\n              128.12255859375,\n              701.5078125\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            690.7228546142578,\n            255.1002960205078,\n            701.5078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/154/SectionHeader/1\",\n        \"2\": \"/page/157/SectionHeader/4\",\n        \"3\": \"/page/159/SectionHeader/10\",\n        \"4\": \"/page/160/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/161/Page/184\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/161/PageHeader/0'></content-ref><content-ref src='/page/161/PageHeader/20'></content-ref><content-ref src='/page/161/Text/1'></content-ref><content-ref src='/page/161/Code/2'></content-ref><content-ref src='/page/161/Text/3'></content-ref><content-ref src='/page/161/Code/4'></content-ref><content-ref src='/page/161/Text/5'></content-ref><content-ref src='/page/161/Code/6'></content-ref><content-ref src='/page/161/Text/7'></content-ref><content-ref src='/page/161/Text/8'></content-ref><content-ref src='/page/161/Text/9'></content-ref><content-ref src='/page/161/Code/10'></content-ref><content-ref src='/page/161/Text/11'></content-ref><content-ref src='/page/161/Text/12'></content-ref><content-ref src='/page/161/Text/13'></content-ref><content-ref src='/page/161/Text/14'></content-ref><content-ref src='/page/161/SectionHeader/15'></content-ref><content-ref src='/page/161/Text/16'></content-ref><content-ref src='/page/161/Code/17'></content-ref><content-ref src='/page/161/Text/18'></content-ref><content-ref src='/page/161/Code/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/161/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.47314453125\n            ],\n            [\n              482.4034118652344,\n              60.47314453125\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.47314453125,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.763671875,\n              60.328125\n            ],\n            [\n              102.796875,\n              60.328125\n            ],\n            [\n              102.796875,\n              70.189453125\n            ],\n            [\n              85.763671875,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            60.328125,\n            102.796875,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you run this program, it reads itself and prints the number of lines in the file, which is 7. You can also import it like this:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              87.93017578125\n            ],\n            [\n              482.90625,\n              87.93017578125\n            ],\n            [\n              482.90625,\n              110.99188232421875\n            ],\n            [\n              85.763671875,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            87.93017578125,\n            482.90625,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; import wc\\n7</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              115.62890625\n            ],\n            [\n              187.8134765625,\n              115.62890625\n            ],\n            [\n              187.8134765625,\n              143.279296875\n            ],\n            [\n              85.46484375,\n              143.279296875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            115.62890625,\n            187.8134765625,\n            143.279296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now you have a module object wc:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              147.6317138671875\n            ],\n            [\n              239.8095703125,\n              147.6317138671875\n            ],\n            [\n              239.8095703125,\n              158.4580078125\n            ],\n            [\n              85.6142578125,\n              158.4580078125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            147.6317138671875,\n            239.8095703125,\n            158.4580078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print wc\\n&lt;module 'wc' from 'wc.py'&gt;</pre>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              164.90972900390625\n            ],\n            [\n              227.70703125,\n              164.90972900390625\n            ],\n            [\n              227.70703125,\n              187.06732177734375\n            ],\n            [\n              85.39013671875,\n              187.06732177734375\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            164.90972900390625,\n            227.70703125,\n            187.06732177734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">That provides a function called linecount:</p>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              193.8427734375\n            ],\n            [\n              277.3125,\n              193.8427734375\n            ],\n            [\n              277.3125,\n              204.49493408203125\n            ],\n            [\n              85.98779296875,\n              204.49493408203125\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            193.8427734375,\n            277.3125,\n            204.49493408203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; wc.linecount('wc.py')\\n7</pre>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              211.53515625\n            ],\n            [\n              217.12937927246094,\n              211.53515625\n            ],\n            [\n              217.12937927246094,\n              233.818359375\n            ],\n            [\n              85.166015625,\n              233.818359375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            211.53515625,\n            217.12937927246094,\n            233.818359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So that's how you write modules in Python.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              240.15234375\n            ],\n            [\n              280.30078125,\n              240.15234375\n            ],\n            [\n              280.30078125,\n              251.2469482421875\n            ],\n            [\n              86.0625,\n              251.2469482421875\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            240.15234375,\n            280.30078125,\n            251.2469482421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The only problem with this example is that when you import the module it executes the test code at the bottom. Normally when you import a module, it defines new functions but it doesn't execute them.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              261.615234375\n            ],\n            [\n              482.90625,\n              261.615234375\n            ],\n            [\n              482.90625,\n              296.8849182128906\n            ],\n            [\n              85.9130859375,\n              296.8849182128906\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            261.615234375,\n            482.90625,\n            296.8849182128906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Programs that will be imported as modules often use the following idiom:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              307.0546875\n            ],\n            [\n              412.3828125,\n              307.0546875\n            ],\n            [\n              412.3828125,\n              318.1349182128906\n            ],\n            [\n              85.9130859375,\n              318.1349182128906\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            307.0546875,\n            412.3828125,\n            318.1349182128906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if __name__ == '__main__':\\n    print linecount('wc.py')</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              325.23046875\n            ],\n            [\n              232.9365234375,\n              325.23046875\n            ],\n            [\n              232.9365234375,\n              347.66015625\n            ],\n            [\n              85.9130859375,\n              347.66015625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            325.23046875,\n            232.9365234375,\n            347.66015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">__name__ is a built-in variable that is set when the program starts. If the program is running as a script, __name__ has the value __main__; in that case, the test code is executed. Otherwise, if the module is being imported, the test code is skipped.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              354.62109375\n            ],\n            [\n              482.39801025390625,\n              354.62109375\n            ],\n            [\n              482.39801025390625,\n              389.2759094238281\n            ],\n            [\n              85.763671875,\n              389.2759094238281\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            354.62109375,\n            482.39801025390625,\n            389.2759094238281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 14.5.</b> <i>Type this example into a file named</i> wc.py <i>and run it as a script. Then run the</i> <i>Python interpreter and</i> import wc<i>. What is the value of</i> __name__ <i>when the module is being</i> <i>imported?</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              390.97265625\n            ],\n            [\n              482.3984069824219,\n              390.97265625\n            ],\n            [\n              482.3984069824219,\n              425.68621826171875\n            ],\n            [\n              85.6142578125,\n              425.68621826171875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            390.97265625,\n            482.3984069824219,\n            425.68621826171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Warning: If you import a module that has already been imported, Python does nothing. It does not</i> <i>re-read the file, even if it has changed.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              435.4453125\n            ],\n            [\n              482.607421875,\n              435.4453125\n            ],\n            [\n              482.607421875,\n              459.1302185058594\n            ],\n            [\n              85.763671875,\n              459.1302185058594\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            435.4453125,\n            482.607421875,\n            459.1302185058594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>If you want to reload a module, you can use the built-in function</i> reload<i>, but it can be tricky, so</i> <i>the safest thing to do is restart the interpreter and then import the module again.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              469.86328125\n            ],\n            [\n              482.4019775390625,\n              469.86328125\n            ],\n            [\n              482.4019775390625,\n              492.57421875\n            ],\n            [\n              85.6142578125,\n              492.57421875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            469.86328125,\n            482.4019775390625,\n            492.57421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/159/SectionHeader/10\",\n            \"4\": \"/page/160/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/SectionHeader/15\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-161-0\\\"></span><b>14.10 Debugging</b></h3>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              524.77734375\n            ],\n            [\n              207.1519775390625,\n              524.77734375\n            ],\n            [\n              207.1519775390625,\n              539.7729644775391\n            ],\n            [\n              85.6142578125,\n              539.7729644775391\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            524.77734375,\n            207.1519775390625,\n            539.7729644775391\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you are reading and writing files, you might run into problems with whitespace. These errors can be hard to debug because spaces, tabs and newlines are normally invisible:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              553.0078125\n            ],\n            [\n              482.607421875,\n              553.0078125\n            ],\n            [\n              482.607421875,\n              575.8339233398438\n            ],\n            [\n              86.0625,\n              575.8339233398438\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            553.0078125,\n            482.607421875,\n            575.8339233398438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Code/17\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; s = '1 2\\\\t 3\\\\n 4'\\n&gt;&gt;&gt; print s\\n1 2 3\\n 4</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              582.78515625\n            ],\n            [\n              196.21238708496094,\n              582.78515625\n            ],\n            [\n              196.21238708496094,\n              629.5453796386719\n            ],\n            [\n              85.9130859375,\n              629.5453796386719\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            582.78515625,\n            196.21238708496094,\n            629.5453796386719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The built-in function repr can help. It takes any object as an argument and returns a string representation of the object. For strings, it represents whitespace characters with backslash sequences:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              636.15234375\n            ],\n            [\n              482.90625,\n              636.15234375\n            ],\n            [\n              482.90625,\n              671.361946105957\n            ],\n            [\n              86.2119140625,\n              671.361946105957\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            636.15234375,\n            482.90625,\n            671.361946105957\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/161/Code/19\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print repr(s)\\n'1 2\\\\t 3\\\\n 4'</pre>\",\n          \"polygon\": [\n            [\n              86.0625,\n              678.3046875\n            ],\n            [\n              175.3162078857422,\n              678.3046875\n            ],\n            [\n              175.3162078857422,\n              700.734375\n            ],\n            [\n              86.0625,\n              700.734375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            678.3046875,\n            175.3162078857422,\n            700.734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/154/SectionHeader/1\",\n        \"2\": \"/page/157/SectionHeader/4\",\n        \"3\": \"/page/161/SectionHeader/15\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/162/Page/202\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/162/PageHeader/0'></content-ref><content-ref src='/page/162/PageHeader/21'></content-ref><content-ref src='/page/162/Text/1'></content-ref><content-ref src='/page/162/Text/2'></content-ref><content-ref src='/page/162/Text/3'></content-ref><content-ref src='/page/162/SectionHeader/4'></content-ref><content-ref src='/page/162/ListGroup/199'></content-ref><content-ref src='/page/162/SectionHeader/16'></content-ref><content-ref src='/page/162/Text/17'></content-ref><content-ref src='/page/162/Code/18'></content-ref><content-ref src='/page/162/Code/19'></content-ref><content-ref src='/page/162/Text/20'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/162/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.2431640625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/162/PageHeader/21\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.3984375,\n              60.8115234375\n            ],\n            [\n              525.9375,\n              60.8115234375\n            ],\n            [\n              525.9375,\n              69.8994140625\n            ],\n            [\n              510.3984375,\n              69.8994140625\n            ]\n          ],\n          \"bbox\": [\n            510.3984375,\n            60.8115234375,\n            525.9375,\n            69.8994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/162/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This can be helpful for debugging.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              88.70361328125\n            ],\n            [\n              281.1211853027344,\n              88.70361328125\n            ],\n            [\n              281.1211853027344,\n              98.79791259765625\n            ],\n            [\n              129.09375,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            88.70361328125,\n            281.1211853027344,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/162/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One other problem you might run into is that different systems use different characters to indicate the end of a line. Some systems use a newline, represented \\\\n. Others use a return character, represented \\\\r. Some use both. If you move files between different systems, these inconsistencies might cause problems.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              107.12109375\n            ],\n            [\n              526.53515625,\n              107.12109375\n            ],\n            [\n              526.53515625,\n              154.21087646484375\n            ],\n            [\n              128.6455078125,\n              154.21087646484375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            107.12109375,\n            526.53515625,\n            154.21087646484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/162/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For most systems, there are applications to convert from one format to another. You can find them (and read more about this issue) at <a href=\\\"http://en.wikipedia.org/wiki/Newline\\\">http://en.wikipedia.org/wiki/Newline</a>. Or, of course, you could write one yourself.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              162.7119140625\n            ],\n            [\n              526.236328125,\n              162.7119140625\n            ],\n            [\n              526.236328125,\n              197.430908203125\n            ],\n            [\n              129.392578125,\n              197.430908203125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            162.7119140625,\n            526.236328125,\n            197.430908203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/162/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-162-0\\\"></span><b>14.11 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              224.9427490234375\n            ],\n            [\n              235.177734375,\n              224.9427490234375\n            ],\n            [\n              235.177734375,\n              239.2889404296875\n            ],\n            [\n              128.86962890625,\n              239.2889404296875\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            224.9427490234375,\n            235.177734375,\n            239.2889404296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\",\n            \"4\": \"/page/162/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/162/ListGroup/199\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/162/ListItem/5'></content-ref><content-ref src='/page/162/ListItem/6'></content-ref><content-ref src='/page/162/ListItem/7'></content-ref><content-ref src='/page/162/ListItem/8'></content-ref><content-ref src='/page/162/ListItem/9'></content-ref><content-ref src='/page/162/ListItem/10'></content-ref><content-ref src='/page/162/ListItem/11'></content-ref><content-ref src='/page/162/ListItem/12'></content-ref><content-ref src='/page/162/ListItem/13'></content-ref><content-ref src='/page/162/ListItem/14'></content-ref><content-ref src='/page/162/ListItem/15'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              246.7265625\n            ],\n            [\n              526.236328125,\n              246.7265625\n            ],\n            [\n              526.236328125,\n              520.6838073730469\n            ],\n            [\n              127.8984375,\n              520.6838073730469\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            246.7265625,\n            526.236328125,\n            520.6838073730469\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/162/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>persistent:</b> Pertaining to a program that runs indefinitely and keeps at least some of its data in permanent storage.</li>\",\n              \"polygon\": [\n                [\n                  129.2431640625,\n                  246.7265625\n                ],\n                [\n                  525.9375,\n                  246.7265625\n                ],\n                [\n                  525.9375,\n                  269.21392822265625\n                ],\n                [\n                  129.2431640625,\n                  269.21392822265625\n                ]\n              ],\n              \"bbox\": [\n                129.2431640625,\n                246.7265625,\n                525.9375,\n                269.21392822265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/161/SectionHeader/15\",\n                \"4\": \"/page/162/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/162/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>format operator:</b> An operator, %, that takes a format string and a tuple and generates a string that includes the elements of the tuple formatted as specified by the format string.</li>\",\n              \"polygon\": [\n                [\n                  129.392578125,\n                  278.1517333984375\n                ],\n                [\n                  526.236328125,\n                  278.1517333984375\n                ],\n                [\n                  526.236328125,\n                  312.6518859863281\n                ],\n                [\n                  129.392578125,\n                  312.6518859863281\n                ]\n              ],\n              \"bbox\": [\n                129.392578125,\n                278.1517333984375,\n                526.236328125,\n                312.6518859863281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/161/SectionHeader/15\",\n                \"4\": \"/page/162/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/162/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>format string:</b> A string, used with the format operator, that contains format sequences.</li>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  321.64215087890625\n                ],\n                [\n                  512.6015625,\n                  321.64215087890625\n                ],\n                [\n                  512.6015625,\n                  331.7018737792969\n                ],\n                [\n                  129.60000610351562,\n                  331.7018737792969\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                321.64215087890625,\n                512.6015625,\n                331.7018737792969\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/161/SectionHeader/15\",\n                \"4\": \"/page/162/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/162/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>format sequence:</b> A sequence of characters in a format string, like %d, that specifies how a value should be formatted.</li>\",\n              \"polygon\": [\n                [\n                  129.2431640625,\n                  340.63970947265625\n                ],\n                [\n                  525.6023559570312,\n                  340.63970947265625\n                ],\n                [\n                  525.6023559570312,\n                  362.94586181640625\n                ],\n                [\n                  129.2431640625,\n                  362.94586181640625\n                ]\n              ],\n              \"bbox\": [\n                129.2431640625,\n                340.63970947265625,\n                525.6023559570312,\n                362.94586181640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/161/SectionHeader/15\",\n                \"4\": \"/page/162/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/162/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>text file:</b> A sequence of characters stored in permanent storage like a hard drive.</li>\",\n              \"polygon\": [\n                [\n                  128.197265625,\n                  371.9361267089844\n                ],\n                [\n                  483.5011291503906,\n                  371.9361267089844\n                ],\n                [\n                  483.5011291503906,\n                  381.995849609375\n                ],\n                [\n                  128.197265625,\n                  381.995849609375\n                ]\n              ],\n              \"bbox\": [\n                128.197265625,\n                371.9361267089844,\n                483.5011291503906,\n                381.995849609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/161/SectionHeader/15\",\n                \"4\": \"/page/162/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/162/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>directory:</b> A named collection of files, also called a folder.</li>\",\n              \"polygon\": [\n                [\n                  128.42138671875,\n                  390.9861145019531\n                ],\n                [\n                  385.189453125,\n                  390.9861145019531\n                ],\n                [\n                  385.189453125,\n                  401.04583740234375\n                ],\n                [\n                  128.42138671875,\n                  401.04583740234375\n                ]\n              ],\n              \"bbox\": [\n                128.42138671875,\n                390.9861145019531,\n                385.189453125,\n                401.04583740234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/161/SectionHeader/15\",\n                \"4\": \"/page/162/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/162/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>path:</b> A string that identifies a file.</li>\",\n              \"polygon\": [\n                [\n                  128.49609375,\n                  410.0361022949219\n                ],\n                [\n                  282.565673828125,\n                  410.0361022949219\n                ],\n                [\n                  282.565673828125,\n                  420.0958251953125\n                ],\n                [\n                  128.49609375,\n                  420.0958251953125\n                ]\n              ],\n              \"bbox\": [\n                128.49609375,\n                410.0361022949219,\n                282.565673828125,\n                420.0958251953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/161/SectionHeader/15\",\n                \"4\": \"/page/162/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/162/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>relative path:</b> A path that starts from the current directory.</li>\",\n              \"polygon\": [\n                [\n                  128.197265625,\n                  429.0860900878906\n                ],\n                [\n                  389.2353515625,\n                  429.0860900878906\n                ],\n                [\n                  389.2353515625,\n                  439.14581298828125\n                ],\n                [\n                  128.197265625,\n                  439.14581298828125\n                ]\n              ],\n              \"bbox\": [\n                128.197265625,\n                429.0860900878906,\n                389.2353515625,\n                439.14581298828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/161/SectionHeader/15\",\n                \"4\": \"/page/162/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/162/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>absolute path:</b> A path that starts from the topmost directory in the file system.</li>\",\n              \"polygon\": [\n                [\n                  128.3466796875,\n                  448.1360778808594\n                ],\n                [\n                  476.33203125,\n                  448.1360778808594\n                ],\n                [\n                  476.33203125,\n                  458.19580078125\n                ],\n                [\n                  128.3466796875,\n                  458.19580078125\n                ]\n              ],\n              \"bbox\": [\n                128.3466796875,\n                448.1360778808594,\n                476.33203125,\n                458.19580078125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/161/SectionHeader/15\",\n                \"4\": \"/page/162/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/162/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>catch:</b> To prevent an exception from terminating a program using the try and except statements.</li>\",\n              \"polygon\": [\n                [\n                  128.197265625,\n                  467.1326599121094\n                ],\n                [\n                  525.6006469726562,\n                  467.1326599121094\n                ],\n                [\n                  525.6006469726562,\n                  489.4398193359375\n                ],\n                [\n                  128.197265625,\n                  489.4398193359375\n                ]\n              ],\n              \"bbox\": [\n                128.197265625,\n                467.1326599121094,\n                525.6006469726562,\n                489.4398193359375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/161/SectionHeader/15\",\n                \"4\": \"/page/162/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/162/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>database:</b> A file whose contents are organized like a dictionary with keys that correspond to values.</li>\",\n              \"polygon\": [\n                [\n                  127.8984375,\n                  498.4300842285156\n                ],\n                [\n                  525.6029052734375,\n                  498.4300842285156\n                ],\n                [\n                  525.6029052734375,\n                  520.6838073730469\n                ],\n                [\n                  127.8984375,\n                  520.6838073730469\n                ]\n              ],\n              \"bbox\": [\n                127.8984375,\n                498.4300842285156,\n                525.6029052734375,\n                520.6838073730469\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/154/SectionHeader/1\",\n                \"2\": \"/page/157/SectionHeader/4\",\n                \"3\": \"/page/161/SectionHeader/15\",\n                \"4\": \"/page/162/SectionHeader/4\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\",\n            \"4\": \"/page/162/SectionHeader/4\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/162/SectionHeader/16\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-162-1\\\"></span><b>14.12 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              548.1956634521484\n            ],\n            [\n              235.97705078125,\n              548.1956634521484\n            ],\n            [\n              235.97705078125,\n              562.5418548583984\n            ],\n            [\n              128.3466796875,\n              562.5418548583984\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            548.1956634521484,\n            235.97705078125,\n            562.5418548583984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\",\n            \"4\": \"/page/162/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/162/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-162-2\\\"></span><b>Exercise 14.6.</b> <i>The</i> urllib <i>module provides methods for manipulating URLs and downloading</i> <i>information from the web. The following example downloads and prints a secret message from</i> thinkpython.com<i>:</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              573.4085083007812\n            ],\n            [\n              525.9375,\n              573.4085083007812\n            ],\n            [\n              525.9375,\n              608.30859375\n            ],\n            [\n              128.6455078125,\n              608.30859375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            573.4085083007812,\n            525.9375,\n            608.30859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\",\n            \"4\": \"/page/162/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/162/Code/18\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>import urllib</pre>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              612.6786499023438\n            ],\n            [\n              197.6748046875,\n              612.6786499023438\n            ],\n            [\n              197.6748046875,\n              623.390625\n            ],\n            [\n              128.3466796875,\n              623.390625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            612.6786499023438,\n            197.6748046875,\n            623.390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\",\n            \"4\": \"/page/162/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/162/Code/19\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>conn = urllib.urlopen('http://thinkpython.com/secret.html')\\nfor line in conn:\\n    print line.strip()</pre>\",\n          \"polygon\": [\n            [\n              129.09375,\n              637.0676574707031\n            ],\n            [\n              439.27734375,\n              637.0676574707031\n            ],\n            [\n              439.27734375,\n              672.890625\n            ],\n            [\n              129.09375,\n              672.890625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            637.0676574707031,\n            439.27734375,\n            672.890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\",\n            \"4\": \"/page/162/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/162/Text/20\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Run this code and follow the instructions you see there. Solution:</i> <a href=\\\"http://thinkpython.com/code/zip_code.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/zip_code.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/zip_code.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/zip_code.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/zip_code.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/zip_code.py\\\">zip_</a> <a href=\\\"http://thinkpython.com/code/zip_code.py\\\">code.</a> <a href=\\\"http://thinkpython.com/code/zip_code.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              676.2118225097656\n            ],\n            [\n              525.638671875,\n              676.2118225097656\n            ],\n            [\n              525.638671875,\n              698.80078125\n            ],\n            [\n              129.392578125,\n              698.80078125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            676.2118225097656,\n            525.638671875,\n            698.80078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\",\n            \"4\": \"/page/162/SectionHeader/16\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/154/SectionHeader/1\",\n        \"2\": \"/page/157/SectionHeader/4\",\n        \"3\": \"/page/161/SectionHeader/15\",\n        \"4\": \"/page/162/SectionHeader/16\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/163/Page/3\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/163/PageHeader/0'></content-ref><content-ref src='/page/163/PageHeader/1'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/163/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.79638671875\n            ],\n            [\n              482.4034118652344,\n              59.79638671875\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.79638671875,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\",\n            \"4\": \"/page/162/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/163/PageHeader/1\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.8671875,\n              60.37646484375\n            ],\n            [\n              100.705078125,\n              60.37646484375\n            ],\n            [\n              100.705078125,\n              70.62451171875\n            ],\n            [\n              84.8671875,\n              70.62451171875\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            60.37646484375,\n            100.705078125,\n            70.62451171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/157/SectionHeader/4\",\n            \"3\": \"/page/161/SectionHeader/15\",\n            \"4\": \"/page/162/SectionHeader/16\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/154/SectionHeader/1\",\n        \"2\": \"/page/157/SectionHeader/4\",\n        \"3\": \"/page/161/SectionHeader/15\",\n        \"4\": \"/page/162/SectionHeader/16\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/164/Page/145\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/164/SectionHeader/0'></content-ref><content-ref src='/page/164/SectionHeader/1'></content-ref><content-ref src='/page/164/Text/2'></content-ref><content-ref src='/page/164/SectionHeader/3'></content-ref><content-ref src='/page/164/Text/4'></content-ref><content-ref src='/page/164/Text/5'></content-ref><content-ref src='/page/164/Text/6'></content-ref><content-ref src='/page/164/ListGroup/143'></content-ref><content-ref src='/page/164/Text/10'></content-ref><content-ref src='/page/164/Text/11'></content-ref><content-ref src='/page/164/Code/12'></content-ref><content-ref src='/page/164/Text/13'></content-ref><content-ref src='/page/164/Text/14'></content-ref><content-ref src='/page/164/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/164/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-164-0\\\"></span><b>Chapter 15</b></h2>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              163.001953125\n            ],\n            [\n              232.6376953125,\n              163.001953125\n            ],\n            [\n              232.6376953125,\n              184.200927734375\n            ],\n            [\n              128.6455078125,\n              184.200927734375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            163.001953125,\n            232.6376953125,\n            184.200927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/154/SectionHeader/1\",\n            \"2\": \"/page/164/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Classes and objects</b></h1>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              218.302734375\n            ],\n            [\n              348.4700927734375,\n              218.302734375\n            ],\n            [\n              348.4700927734375,\n              243.09832763671875\n            ],\n            [\n              128.49609375,\n              243.09832763671875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            218.302734375,\n            348.4700927734375,\n            243.09832763671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Code examples from this chapter are available from <a href=\\\"http://thinkpython.com/code/Point1.py\\\">http://thinkpython.com/code/</a> <a href=\\\"http://thinkpython.com/code/Point1.py\\\">Point1.py</a>; solutions to the exercises are available from <a href=\\\"http://thinkpython.com/code/Point1_soln.py\\\">http://thinkpython.com/code/</a> <a href=\\\"http://thinkpython.com/code/Point1_soln.py\\\">Point1_soln.py</a>.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              290.619140625\n            ],\n            [\n              526.236328125,\n              290.619140625\n            ],\n            [\n              526.236328125,\n              325.2958984375\n            ],\n            [\n              128.197265625,\n              325.2958984375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            290.619140625,\n            526.236328125,\n            325.2958984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-164-1\\\"></span><b>15.1 User-defined types</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              353.8217468261719\n            ],\n            [\n              292.1044921875,\n              353.8217468261719\n            ],\n            [\n              292.1044921875,\n              368.16796875\n            ],\n            [\n              128.3466796875,\n              368.16796875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            353.8217468261719,\n            292.1044921875,\n            368.16796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We have used many of Python's built-in types; now we are going to define a new type. As an example, we will create a type called Point that represents a point in two-dimensional space.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              379.37109375\n            ],\n            [\n              526.53515625,\n              379.37109375\n            ],\n            [\n              526.53515625,\n              414.2809143066406\n            ],\n            [\n              128.3466796875,\n              414.2809143066406\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            379.37109375,\n            526.53515625,\n            414.2809143066406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In mathematical notation, points are often written in parentheses with a comma separating the coordinates. For example, (0, 0) represents the origin, and (<i>x</i>, <i>y</i>) represents the point <i>x</i> units to the right and <i>y</i> units up from the origin.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              423.84375\n            ],\n            [\n              527.1328125,\n              423.84375\n            ],\n            [\n              527.1328125,\n              458.2239074707031\n            ],\n            [\n              128.49609375,\n              458.2239074707031\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            423.84375,\n            527.1328125,\n            458.2239074707031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are several ways we might represent points in Python:</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              467.15625\n            ],\n            [\n              397.142578125,\n              467.15625\n            ],\n            [\n              397.142578125,\n              477.7789001464844\n            ],\n            [\n              129.392578125,\n              477.7789001464844\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            467.15625,\n            397.142578125,\n            477.7789001464844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/ListGroup/143\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/164/ListItem/7'></content-ref><content-ref src='/page/164/ListItem/8'></content-ref><content-ref src='/page/164/ListItem/9'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.5986328125,\n              489.5859375\n            ],\n            [\n              450.0726013183594,\n              489.5859375\n            ],\n            [\n              450.0726013183594,\n              539.6708679199219\n            ],\n            [\n              140.5986328125,\n              539.6708679199219\n            ]\n          ],\n          \"bbox\": [\n            140.5986328125,\n            489.5859375,\n            450.0726013183594,\n            539.6708679199219\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/164/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> We could store the coordinates separately in two variables, x and y.</li>\",\n              \"polygon\": [\n                [\n                  140.5986328125,\n                  489.5859375\n                ],\n                [\n                  450.0726013183594,\n                  489.5859375\n                ],\n                [\n                  450.0726013183594,\n                  500.3368835449219\n                ],\n                [\n                  140.5986328125,\n                  500.3368835449219\n                ]\n              ],\n              \"bbox\": [\n                140.5986328125,\n                489.5859375,\n                450.0726013183594,\n                500.3368835449219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"4\": \"/page/164/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/164/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> We could store the coordinates as elements in a list or tuple.</li>\",\n              \"polygon\": [\n                [\n                  143.48794555664062,\n                  509.6953125\n                ],\n                [\n                  418.060546875,\n                  509.6953125\n                ],\n                [\n                  418.060546875,\n                  520.0038757324219\n                ],\n                [\n                  143.48794555664062,\n                  520.0038757324219\n                ]\n              ],\n              \"bbox\": [\n                143.48794555664062,\n                509.6953125,\n                418.060546875,\n                520.0038757324219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"4\": \"/page/164/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/164/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> We could create a new type to represent points as objects.</li>\",\n              \"polygon\": [\n                [\n                  143.48794555664062,\n                  529.03125\n                ],\n                [\n                  406.4606628417969,\n                  529.03125\n                ],\n                [\n                  406.4606628417969,\n                  539.6708679199219\n                ],\n                [\n                  143.48794555664062,\n                  539.6708679199219\n                ]\n              ],\n              \"bbox\": [\n                143.48794555664062,\n                529.03125,\n                406.4606628417969,\n                539.6708679199219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"4\": \"/page/164/SectionHeader/3\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/164/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Creating a new type is (a little) more complicated than the other options, but it has advantages that will be apparent soon.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              551.84765625\n            ],\n            [\n              525.6033325195312,\n              551.84765625\n            ],\n            [\n              525.6033325195312,\n              574.4238739013672\n            ],\n            [\n              128.6455078125,\n              574.4238739013672\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            551.84765625,\n            525.6033325195312,\n            574.4238739013672\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A user-defined type is also called a <b>class</b>. A class definition looks like this:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              583.171875\n            ],\n            [\n              455.115234375,\n              583.171875\n            ],\n            [\n              455.115234375,\n              593.9778747558594\n            ],\n            [\n              129.09375,\n              593.9778747558594\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            583.171875,\n            455.115234375,\n            593.9778747558594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class Point(object):\\n    \\\"\\\"\\\"Represents a point in 2-D space.\\\"\\\"\\\"</pre>\",\n          \"polygon\": [\n            [\n              129.09375,\n              597.8671875\n            ],\n            [\n              349.2797546386719,\n              597.8671875\n            ],\n            [\n              349.2797546386719,\n              621.6053314208984\n            ],\n            [\n              129.09375,\n              621.6053314208984\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            597.8671875,\n            349.2797546386719,\n            621.6053314208984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This header indicates that the new class is a Point, which is a kind of object, which is a built-in type.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              627.2257385253906\n            ],\n            [\n              525.638671875,\n              627.2257385253906\n            ],\n            [\n              525.638671875,\n              649.5318908691406\n            ],\n            [\n              128.794921875,\n              649.5318908691406\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            627.2257385253906,\n            525.638671875,\n            649.5318908691406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The body is a docstring that explains what the class is for. You can define variables and functions inside a class definition, but we will get back to that later.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              658.1953125\n            ],\n            [\n              525.9375,\n              658.1953125\n            ],\n            [\n              525.9375,\n              681.2808990478516\n            ],\n            [\n              128.3466796875,\n              681.2808990478516\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            658.1953125,\n            525.9375,\n            681.2808990478516\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/164/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Defining a class named Point creates a class object.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              690.6796875\n            ],\n            [\n              355.60546875,\n              690.6796875\n            ],\n            [\n              355.60546875,\n              700.8348999023438\n            ],\n            [\n              128.9443359375,\n              700.8348999023438\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            690.6796875,\n            355.60546875,\n            700.8348999023438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/164/SectionHeader/1\",\n        \"4\": \"/page/164/SectionHeader/3\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/165/Page/214\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/165/PageHeader/0'></content-ref><content-ref src='/page/165/PageHeader/20'></content-ref><content-ref src='/page/165/Code/1'></content-ref><content-ref src='/page/165/Caption/2'></content-ref><content-ref src='/page/165/Code/3'></content-ref><content-ref src='/page/165/Text/4'></content-ref><content-ref src='/page/165/Text/5'></content-ref><content-ref src='/page/165/Code/6'></content-ref><content-ref src='/page/165/Text/7'></content-ref><content-ref src='/page/165/Text/8'></content-ref><content-ref src='/page/165/SectionHeader/9'></content-ref><content-ref src='/page/165/Text/10'></content-ref><content-ref src='/page/165/Code/11'></content-ref><content-ref src='/page/165/Text/12'></content-ref><content-ref src='/page/165/Text/13'></content-ref><content-ref src='/page/165/Text/14'></content-ref><content-ref src='/page/165/Text/15'></content-ref><content-ref src='/page/165/Text/16'></content-ref><content-ref src='/page/165/Code/17'></content-ref><content-ref src='/page/165/Text/18'></content-ref><content-ref src='/page/165/Text/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/165/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.27978515625\n            ],\n            [\n              482.4034118652344,\n              60.27978515625\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.27978515625,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.49365234375,\n              59.94140625\n            ],\n            [\n              101.52685546875,\n              59.94140625\n            ],\n            [\n              101.52685546875,\n              70.0927734375\n            ],\n            [\n              84.49365234375,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            84.49365234375,\n            59.94140625,\n            101.52685546875,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>x\\n              y\\n                       3.0\\n                       4.0\\nblank\\n            Point</pre>\",\n          \"polygon\": [\n            [\n              236.64968872070312,\n              85.31982421875\n            ],\n            [\n              336.48046875,\n              85.31982421875\n            ],\n            [\n              336.48046875,\n              129.55078125\n            ],\n            [\n              236.64968872070312,\n              129.55078125\n            ]\n          ],\n          \"bbox\": [\n            236.64968872070312,\n            85.31982421875,\n            336.48046875,\n            129.55078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Caption/2\",\n          \"block_type\": \"Caption\",\n          \"html\": \"<p><span id=\\\"page-165-1\\\"></span>Figure 15.1: Object diagram.</p>\",\n          \"polygon\": [\n            [\n              222.1787109375,\n              143.9560546875\n            ],\n            [\n              346.5672607421875,\n              143.9560546875\n            ],\n            [\n              346.5672607421875,\n              154.7529296875\n            ],\n            [\n              222.1787109375,\n              154.7529296875\n            ]\n          ],\n          \"bbox\": [\n            222.1787109375,\n            143.9560546875,\n            346.5672607421875,\n            154.7529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print Point\\n&lt;class '__main__.Point'&gt;</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              174.603515625\n            ],\n            [\n              215.9033203125,\n              174.603515625\n            ],\n            [\n              215.9033203125,\n              198.0\n            ],\n            [\n              85.46484375,\n              198.0\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            174.603515625,\n            215.9033203125,\n            198.0\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Because Point is defined at the top level, its \\\"full name\\\" is __main__.Point.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              201.09375\n            ],\n            [\n              421.17767333984375,\n              201.09375\n            ],\n            [\n              421.17767333984375,\n              211.889892578125\n            ],\n            [\n              85.46484375,\n              211.889892578125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            201.09375,\n            421.17767333984375,\n            211.889892578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The class object is like a factory for creating objects. To create a Point, you call Point as if it were a function.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              219.462890625\n            ],\n            [\n              482.40020751953125,\n              219.462890625\n            ],\n            [\n              482.40020751953125,\n              242.77288818359375\n            ],\n            [\n              85.6142578125,\n              242.77288818359375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            219.462890625,\n            482.40020751953125,\n            242.77288818359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; blank = Point()\\n&gt;&gt;&gt; print blank\\n&lt;__main__.Point instance at 0xb7e9d3ac&gt;</pre>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              247.377685546875\n            ],\n            [\n              290.3941345214844,\n              247.377685546875\n            ],\n            [\n              290.3941345214844,\n              281.91796875\n            ],\n            [\n              84.8671875,\n              281.91796875\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            247.377685546875,\n            290.3941345214844,\n            281.91796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The return value is a reference to a Point object, which we assign to blank. Creating a new object is called <b>instantiation</b>, and the object is an <b>instance</b> of the class.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              286.171875\n            ],\n            [\n              482.4039611816406,\n              286.171875\n            ],\n            [\n              482.4039611816406,\n              308.7898254394531\n            ],\n            [\n              85.9130859375,\n              308.7898254394531\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            286.171875,\n            482.4039611816406,\n            308.7898254394531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you print an instance, Python tells you what class it belongs to and where it is stored in memory (the prefix 0x means that the following number is in hexadecimal).</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              316.72265625\n            ],\n            [\n              482.607421875,\n              316.72265625\n            ],\n            [\n              482.607421875,\n              339.6728210449219\n            ],\n            [\n              85.46484375,\n              339.6728210449219\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            316.72265625,\n            482.607421875,\n            339.6728210449219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"4\": \"/page/164/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-165-0\\\"></span><b>15.2 Attributes</b></h3>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              366.22265625\n            ],\n            [\n              192.77703857421875,\n              366.22265625\n            ],\n            [\n              192.77703857421875,\n              381.3328857421875\n            ],\n            [\n              85.68896484375,\n              381.3328857421875\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            366.22265625,\n            192.77703857421875,\n            381.3328857421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can assign values to an instance using dot notation:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              391.166015625\n            ],\n            [\n              331.69921875,\n              391.166015625\n            ],\n            [\n              331.69921875,\n              402.1918029785156\n            ],\n            [\n              85.763671875,\n              402.1918029785156\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            391.166015625,\n            331.69921875,\n            402.1918029785156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; blank.x = 3.0\\n&gt;&gt;&gt; blank.y = 4.0</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              406.0546875\n            ],\n            [\n              175.8603515625,\n              406.0546875\n            ],\n            [\n              175.8603515625,\n              429.2578125\n            ],\n            [\n              85.3154296875,\n              429.2578125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            406.0546875,\n            175.8603515625,\n            429.2578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This syntax is similar to the syntax for selecting a variable from a module, such as math.pi or string.whitespace. In this case, though, we are assigning values to named elements of an object. These elements are called <b>attributes</b>.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              433.51171875\n            ],\n            [\n              482.4085388183594,\n              433.51171875\n            ],\n            [\n              482.4085388183594,\n              468.2088317871094\n            ],\n            [\n              85.6142578125,\n              468.2088317871094\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            433.51171875,\n            482.4085388183594,\n            468.2088317871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As a noun, \\\"AT-trib-ute\\\" is pronounced with emphasis on the first syllable, as opposed to \\\"a-TRIB-ute,\\\" which is a verb.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              475.27734375\n            ],\n            [\n              482.4033203125,\n              475.27734375\n            ],\n            [\n              482.4033203125,\n              499.0918273925781\n            ],\n            [\n              85.6142578125,\n              499.0918273925781\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            475.27734375,\n            482.4033203125,\n            499.0918273925781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The following diagram shows the result of these assignments. A state diagram that shows an object and its attributes is called an <b>object diagram</b>; see Figure <a href=\\\"#page-165-1\\\">15.1.</a></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              506.6015625\n            ],\n            [\n              482.40325927734375,\n              506.6015625\n            ],\n            [\n              482.40325927734375,\n              529.9748229980469\n            ],\n            [\n              85.46484375,\n              529.9748229980469\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            506.6015625,\n            482.40325927734375,\n            529.9748229980469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The variable blank refers to a Point object, which contains two attributes. Each attribute refers to a floating-point number.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              537.5390625\n            ],\n            [\n              482.90625,\n              537.5390625\n            ],\n            [\n              482.90625,\n              560.8578186035156\n            ],\n            [\n              85.46484375,\n              560.8578186035156\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            537.5390625,\n            482.90625,\n            560.8578186035156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can read the value of an attribute using the same syntax:</p>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              569.25\n            ],\n            [\n              353.74627685546875,\n              569.25\n            ],\n            [\n              353.74627685546875,\n              579.5468139648438\n            ],\n            [\n              85.53955078125,\n              579.5468139648438\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            569.25,\n            353.74627685546875,\n            579.5468139648438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Code/17\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print blank.y\\n4.0\\n&gt;&gt;&gt; x = blank.x\\n&gt;&gt;&gt; print x\\n3.0</pre>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              584.1516571044922\n            ],\n            [\n              175.31614685058594,\n              584.1516571044922\n            ],\n            [\n              175.31614685058594,\n              642.8912658691406\n            ],\n            [\n              84.8671875,\n              642.8912658691406\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            584.1516571044922,\n            175.31614685058594,\n            642.8912658691406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The expression blank.x means, \\\"Go to the object blank refers to and get the value of x.\\\" In this case, we assign that value to a variable named x. There is no conflict between the variable x and the attribute x.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              646.98046875\n            ],\n            [\n              482.4050598144531,\n              646.98046875\n            ],\n            [\n              482.4050598144531,\n              682.1468200683594\n            ],\n            [\n              86.0625,\n              682.1468200683594\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            646.98046875,\n            482.4050598144531,\n            682.1468200683594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/165/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can use dot notation as part of any expression. For example:</p>\",\n          \"polygon\": [\n            [\n              86.39995574951172,\n              690.29296875\n            ],\n            [\n              370.248046875,\n              690.29296875\n            ],\n            [\n              370.248046875,\n              700.8348159790039\n            ],\n            [\n              86.39995574951172,\n              700.8348159790039\n            ]\n          ],\n          \"bbox\": [\n            86.39995574951172,\n            690.29296875,\n            370.248046875,\n            700.8348159790039\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/164/SectionHeader/1\",\n        \"3\": \"/page/165/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/166/Page/185\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/166/PageHeader/0'></content-ref><content-ref src='/page/166/PageHeader/18'></content-ref><content-ref src='/page/166/Code/1'></content-ref><content-ref src='/page/166/Text/2'></content-ref><content-ref src='/page/166/TextInlineMath/3'></content-ref><content-ref src='/page/166/Text/4'></content-ref><content-ref src='/page/166/Text/5'></content-ref><content-ref src='/page/166/Text/6'></content-ref><content-ref src='/page/166/SectionHeader/7'></content-ref><content-ref src='/page/166/Text/8'></content-ref><content-ref src='/page/166/Text/9'></content-ref><content-ref src='/page/166/ListGroup/179'></content-ref><content-ref src='/page/166/Text/12'></content-ref><content-ref src='/page/166/Text/13'></content-ref><content-ref src='/page/166/Code/14'></content-ref><content-ref src='/page/166/Text/15'></content-ref><content-ref src='/page/166/Text/16'></content-ref><content-ref src='/page/166/TextInlineMath/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/166/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              61.1015625\n            ],\n            [\n              525.6033935546875,\n              61.1015625\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.6455078125,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            61.1015625,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.3984375,\n              60.908203125\n            ],\n            [\n              525.9375,\n              60.908203125\n            ],\n            [\n              525.9375,\n              70.2861328125\n            ],\n            [\n              510.3984375,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            510.3984375,\n            60.908203125,\n            525.9375,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print '(%g, %g)' % (blank.x, blank.y)\\n(3.0, 4.0)\\n&gt;&gt;&gt; distance = math.sqrt(blank.x**2 + blank.y**2)\\n&gt;&gt;&gt; print distance\\n5.0</pre>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              88.31689453125\n            ],\n            [\n              385.9077453613281,\n              88.31689453125\n            ],\n            [\n              385.9077453613281,\n              147.42529296875\n            ],\n            [\n              128.6455078125,\n              147.42529296875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            88.31689453125,\n            385.9077453613281,\n            147.42529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can pass an instance as an argument in the usual way. For example:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              152.8505859375\n            ],\n            [\n              445.8515625,\n              152.8505859375\n            ],\n            [\n              445.8515625,\n              163.60888671875\n            ],\n            [\n              128.794921875,\n              163.60888671875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            152.8505859375,\n            445.8515625,\n            163.60888671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/TextInlineMath/3\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">def print_point(p): print '(%g, %g)' % (p.x, p.y)</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              169.52972412109375\n            ],\n            [\n              302.1754150390625,\n              169.52972412109375\n            ],\n            [\n              302.1754150390625,\n              191.686279296875\n            ],\n            [\n              128.57080078125,\n              191.686279296875\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            169.52972412109375,\n            302.1754150390625,\n            191.686279296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">print_point takes a point as an argument and displays it in mathematical notation. To invoke it, you can pass blank as an argument:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              196.83984375\n            ],\n            [\n              525.638671875,\n              196.83984375\n            ],\n            [\n              525.638671875,\n              220.06390380859375\n            ],\n            [\n              128.197265625,\n              220.06390380859375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            196.83984375,\n            525.638671875,\n            220.06390380859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; print_point(blank) (3.0, 4.0)</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              225.84375\n            ],\n            [\n              244.67799377441406,\n              225.84375\n            ],\n            [\n              244.67799377441406,\n              248.142333984375\n            ],\n            [\n              128.197265625,\n              248.142333984375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            225.84375,\n            244.67799377441406,\n            248.142333984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Inside the function, p is an alias for blank, so if the function modifies p, blank changes. <b>Exercise 15.1.</b> <i>Write a function called</i> distance_between_points <i>that takes two Points as ar</i><i>guments and returns the distance between them.</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              254.2137451171875\n            ],\n            [\n              525.6033325195312,\n              254.2137451171875\n            ],\n            [\n              525.6033325195312,\n              288.5412292480469\n            ],\n            [\n              128.794921875,\n              288.5412292480469\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            254.2137451171875,\n            525.6033325195312,\n            288.5412292480469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-166-0\\\"></span><b>15.3 Rectangles</b></h4>\",\n          \"polygon\": [\n            [\n              127.82373046875,\n              317.8707580566406\n            ],\n            [\n              239.96533203125,\n              317.8707580566406\n            ],\n            [\n              239.96533203125,\n              332.21697998046875\n            ],\n            [\n              127.82373046875,\n              332.21697998046875\n            ]\n          ],\n          \"bbox\": [\n            127.82373046875,\n            317.8707580566406,\n            239.96533203125,\n            332.21697998046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Sometimes it is obvious what the attributes of an object should be, but other times you have to make decisions. For example, imagine you are designing a class to represent rectangles. What attributes would you use to specify the location and size of a rectangle? You can ignore angle; to keep things simple, assume that the rectangle is either vertical or horizontal.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              344.4303283691406\n            ],\n            [\n              525.9375,\n              344.4303283691406\n            ],\n            [\n              525.9375,\n              390.9759216308594\n            ],\n            [\n              128.9443359375,\n              390.9759216308594\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            344.4303283691406,\n            525.9375,\n            390.9759216308594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are at least two possibilities:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              412.2421875\n            ],\n            [\n              280.7326354980469,\n              412.2421875\n            ],\n            [\n              280.7326354980469,\n              423.1749267578125\n            ],\n            [\n              128.197265625,\n              423.1749267578125\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            412.2421875,\n            280.7326354980469,\n            423.1749267578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/ListGroup/179\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/166/ListItem/10'></content-ref><content-ref src='/page/166/ListItem/11'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              143.48800659179688,\n              436.60546875\n            ],\n            [\n              525.9375,\n              436.60546875\n            ],\n            [\n              525.9375,\n              479.1979064941406\n            ],\n            [\n              143.48800659179688,\n              479.1979064941406\n            ]\n          ],\n          \"bbox\": [\n            143.48800659179688,\n            436.60546875,\n            525.9375,\n            479.1979064941406\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/166/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> You could specify one corner of the rectangle (or the center), the width, and the height.</li>\",\n              \"polygon\": [\n                [\n                  143.48800659179688,\n                  436.60546875\n                ],\n                [\n                  525.9375,\n                  436.60546875\n                ],\n                [\n                  525.9375,\n                  459.14691162109375\n                ],\n                [\n                  143.48800659179688,\n                  459.14691162109375\n                ]\n              ],\n              \"bbox\": [\n                143.48800659179688,\n                436.60546875,\n                525.9375,\n                459.14691162109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/166/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/166/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> You could specify two opposing corners.</li>\",\n              \"polygon\": [\n                [\n                  143.48800659179688,\n                  468.703125\n                ],\n                [\n                  333.4847412109375,\n                  468.703125\n                ],\n                [\n                  333.4847412109375,\n                  479.1979064941406\n                ],\n                [\n                  143.48800659179688,\n                  479.1979064941406\n                ]\n              ],\n              \"bbox\": [\n                143.48800659179688,\n                468.703125,\n                333.4847412109375,\n                479.1979064941406\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/166/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/166/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">At this point it is hard to say whether either is better than the other, so we'll implement the first one, just as an example.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              492.6796875\n            ],\n            [\n              525.603271484375,\n              492.6796875\n            ],\n            [\n              525.603271484375,\n              515.169921875\n            ],\n            [\n              128.9443359375,\n              515.169921875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            492.6796875,\n            525.603271484375,\n            515.169921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is the class definition:</p>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              525.1640625\n            ],\n            [\n              248.625,\n              525.1640625\n            ],\n            [\n              248.625,\n              535.1749267578125\n            ],\n            [\n              128.12255859375,\n              535.1749267578125\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            525.1640625,\n            248.625,\n            535.1749267578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class Rectangle(object):\\n    \\\"\\\"\\\"Represents a rectangle.\\n    attributes: width, height, corner.\\n    \\\"\\\"\\\"</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              541.01953125\n            ],\n            [\n              328.35833740234375,\n              541.01953125\n            ],\n            [\n              328.35833740234375,\n              599.8363800048828\n            ],\n            [\n              129.60000610351562,\n              599.8363800048828\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            541.01953125,\n            328.35833740234375,\n            599.8363800048828\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The docstring lists the attributes: width and height are numbers; corner is a Point object that specifies the lower-left corner.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              605.9077758789062\n            ],\n            [\n              525.9375,\n              605.9077758789062\n            ],\n            [\n              525.9375,\n              628.2139282226562\n            ],\n            [\n              128.3466796875,\n              628.2139282226562\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            605.9077758789062,\n            525.9375,\n            628.2139282226562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To represent a rectangle, you have to instantiate a Rectangle object and assign values to the attributes:</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              638.2563323974609\n            ],\n            [\n              525.6033935546875,\n              638.2563323974609\n            ],\n            [\n              525.6033935546875,\n              660.515625\n            ],\n            [\n              128.0478515625,\n              660.515625\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            638.2563323974609,\n            525.6033935546875,\n            660.515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/166/TextInlineMath/17\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">box = Rectangle() box.width = 100.0 box.height = 200.0</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              666.3347778320312\n            ],\n            [\n              223.75653076171875,\n              666.3347778320312\n            ],\n            [\n              223.75653076171875,\n              700.6853713989258\n            ],\n            [\n              128.6455078125,\n              700.6853713989258\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            666.3347778320312,\n            223.75653076171875,\n            700.6853713989258\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/164/SectionHeader/1\",\n        \"3\": \"/page/165/SectionHeader/9\",\n        \"4\": \"/page/166/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/167/Page/207\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/167/PageHeader/0'></content-ref><content-ref src='/page/167/PageHeader/16'></content-ref><content-ref src='/page/167/FigureGroup/204'></content-ref><content-ref src='/page/167/Code/3'></content-ref><content-ref src='/page/167/Text/4'></content-ref><content-ref src='/page/167/Text/5'></content-ref><content-ref src='/page/167/SectionHeader/6'></content-ref><content-ref src='/page/167/Text/7'></content-ref><content-ref src='/page/167/Code/8'></content-ref><content-ref src='/page/167/Text/9'></content-ref><content-ref src='/page/167/Code/10'></content-ref><content-ref src='/page/167/SectionHeader/11'></content-ref><content-ref src='/page/167/Text/12'></content-ref><content-ref src='/page/167/Code/13'></content-ref><content-ref src='/page/167/Text/14'></content-ref><content-ref src='/page/167/Code/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/167/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.66650390625\n            ],\n            [\n              482.4034118652344,\n              60.66650390625\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.66650390625,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.79248046875,\n              61.0048828125\n            ],\n            [\n              101.67626953125,\n              61.0048828125\n            ],\n            [\n              101.67626953125,\n              70.189453125\n            ],\n            [\n              84.79248046875,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            84.79248046875,\n            61.0048828125,\n            101.67626953125,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/FigureGroup/204\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/167/Figure/1'></content-ref><content-ref src='/page/167/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              197.0771484375,\n              86.431640625\n            ],\n            [\n              372.9375,\n              86.431640625\n            ],\n            [\n              372.9375,\n              169.95294189453125\n            ],\n            [\n              197.0771484375,\n              169.95294189453125\n            ]\n          ],\n          \"bbox\": [\n            197.0771484375,\n            86.431640625,\n            372.9375,\n            169.95294189453125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/167/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  197.0771484375,\n                  86.431640625\n                ],\n                [\n                  372.9375,\n                  86.431640625\n                ],\n                [\n                  372.9375,\n                  146.373046875\n                ],\n                [\n                  197.0771484375,\n                  146.373046875\n                ]\n              ],\n              \"bbox\": [\n                197.0771484375,\n                86.431640625,\n                372.9375,\n                146.373046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/166/SectionHeader/7\"\n              },\n              \"images\": {\n                \"/page/167/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/167/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-167-2\\\"></span>Figure 15.2: Object diagram.</p>\",\n              \"polygon\": [\n                [\n                  221.5810546875,\n                  159.8115234375\n                ],\n                [\n                  346.939453125,\n                  159.8115234375\n                ],\n                [\n                  346.939453125,\n                  169.95294189453125\n                ],\n                [\n                  221.5810546875,\n                  169.95294189453125\n                ]\n              ],\n              \"bbox\": [\n                221.5810546875,\n                159.8115234375,\n                346.939453125,\n                169.95294189453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/166/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/167/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>box.corner = Point()\\nbox.corner.x = 0.0\\nbox.corner.y = 0.0</pre>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              192.59674072265625\n            ],\n            [\n              191.01724243164062,\n              192.59674072265625\n            ],\n            [\n              191.01724243164062,\n              226.947265625\n            ],\n            [\n              86.2119140625,\n              226.947265625\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            192.59674072265625,\n            191.01724243164062,\n            226.947265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The expression box.corner.x means, \\\"Go to the object box refers to and select the attribute named corner; then go to that object and select the attribute named x.\\\"</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              233.21868896484375\n            ],\n            [\n              482.4002990722656,\n              233.21868896484375\n            ],\n            [\n              482.4002990722656,\n              255.52484130859375\n            ],\n            [\n              86.2119140625,\n              255.52484130859375\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            233.21868896484375,\n            482.4002990722656,\n            255.52484130859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-167-2\\\">15.2</a> shows the state of this object. An object that is an attribute of another object is <b>embedded</b>.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              265.482421875\n            ],\n            [\n              482.4033508300781,\n              265.482421875\n            ],\n            [\n              482.4033508300781,\n              287.9248046875\n            ],\n            [\n              86.2119140625,\n              287.9248046875\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            265.482421875,\n            482.4033508300781,\n            287.9248046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/166/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-167-0\\\"></span><b>15.4 Instances as return values</b></h4>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              317.4716491699219\n            ],\n            [\n              294.3768615722656,\n              317.4716491699219\n            ],\n            [\n              294.3768615722656,\n              331.81787109375\n            ],\n            [\n              85.98779296875,\n              331.81787109375\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            317.4716491699219,\n            294.3768615722656,\n            331.81787109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Functions can return instances. For example, find_center takes a Rectangle as an argument and returns a Point that contains the coordinates of the center of the Rectangle:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              344.108642578125\n            ],\n            [\n              482.4006042480469,\n              344.108642578125\n            ],\n            [\n              482.4006042480469,\n              366.416015625\n            ],\n            [\n              85.6142578125,\n              366.416015625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            344.108642578125,\n            482.4006042480469,\n            366.416015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def find_center(rect):\\n    p = Point()\\n    p.x = rect.corner.x + rect.width/2.0\\n    p.y = rect.corner.y + rect.height/2.0\\n    return p</pre>\",\n          \"polygon\": [\n            [\n              86.40005493164062,\n              372.5366516113281\n            ],\n            [\n              300.8494873046875,\n              372.5366516113281\n            ],\n            [\n              300.8494873046875,\n              431.2772521972656\n            ],\n            [\n              86.40005493164062,\n              431.2772521972656\n            ]\n          ],\n          \"bbox\": [\n            86.40005493164062,\n            372.5366516113281,\n            300.8494873046875,\n            431.2772521972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is an example that passes box as an argument and assigns the resulting Point to center:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              436.9921875\n            ],\n            [\n              482.3963317871094,\n              436.9921875\n            ],\n            [\n              482.3963317871094,\n              459.8548278808594\n            ],\n            [\n              86.2119140625,\n              459.8548278808594\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            436.9921875,\n            482.3963317871094,\n            459.8548278808594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; center = find_center(box)\\n&gt;&gt;&gt; print_point(center)\\n(50.0, 100.0)</pre>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              465.9766845703125\n            ],\n            [\n              238.09054565429688,\n              465.9766845703125\n            ],\n            [\n              238.09054565429688,\n              500.4140625\n            ],\n            [\n              86.2119140625,\n              500.4140625\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            465.9766845703125,\n            238.09054565429688,\n            500.4140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-167-1\\\"></span><b>15.5 Objects are mutable</b></h4>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              530.023681640625\n            ],\n            [\n              257.888671875,\n              530.023681640625\n            ],\n            [\n              257.888671875,\n              544.3698883056641\n            ],\n            [\n              85.98779296875,\n              544.3698883056641\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            530.023681640625,\n            257.888671875,\n            544.3698883056641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can change the state of an object by making an assignment to one of its attributes. For example, to change the size of a rectangle without changing its position, you can modify the values of width and height:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              556.48828125\n            ],\n            [\n              482.607421875,\n              556.48828125\n            ],\n            [\n              482.607421875,\n              591.1618499755859\n            ],\n            [\n              86.0625,\n              591.1618499755859\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            556.48828125,\n            482.607421875,\n            591.1618499755859\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>box.width = box.width + 50\\nbox.height = box.width + 100</pre>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              597.28369140625\n            ],\n            [\n              232.8601837158203,\n              597.28369140625\n            ],\n            [\n              232.8601837158203,\n              619.4402923583984\n            ],\n            [\n              86.361328125,\n              619.4402923583984\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            597.28369140625,\n            232.8601837158203,\n            619.4402923583984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can also write functions that modify objects. For example, grow_rectangle takes a Rectangle object and two numbers, dwidth and dheight, and adds the numbers to the width and height of the rectangle:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              625.7109375\n            ],\n            [\n              482.90625,\n              625.7109375\n            ],\n            [\n              482.90625,\n              660.515625\n            ],\n            [\n              85.6142578125,\n              660.515625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            625.7109375,\n            482.90625,\n            660.515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/167/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def grow_rectangle(rect, dwidth, dheight):\\n    rect.width += dwidth\\n    rect.height += dheight</pre>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              666.3347015380859\n            ],\n            [\n              306.09521484375,\n              666.3347015380859\n            ],\n            [\n              306.09521484375,\n              700.685302734375\n            ],\n            [\n              86.28662109375,\n              700.685302734375\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            666.3347015380859,\n            306.09521484375,\n            700.685302734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/164/SectionHeader/1\",\n        \"3\": \"/page/165/SectionHeader/9\",\n        \"4\": \"/page/167/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/168/Page/230\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/168/PageHeader/0'></content-ref><content-ref src='/page/168/PageHeader/12'></content-ref><content-ref src='/page/168/Text/1'></content-ref><content-ref src='/page/168/Code/2'></content-ref><content-ref src='/page/168/Text/3'></content-ref><content-ref src='/page/168/SectionHeader/4'></content-ref><content-ref src='/page/168/Text/5'></content-ref><content-ref src='/page/168/Text/6'></content-ref><content-ref src='/page/168/Code/7'></content-ref><content-ref src='/page/168/Text/8'></content-ref><content-ref src='/page/168/Code/9'></content-ref><content-ref src='/page/168/Text/10'></content-ref><content-ref src='/page/168/Text/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/168/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.86962890625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/PageHeader/12\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.3984375,\n              61.1015625\n            ],\n            [\n              525.33984375,\n              61.1015625\n            ],\n            [\n              525.33984375,\n              70.3828125\n            ],\n            [\n              510.3984375,\n              70.3828125\n            ]\n          ],\n          \"bbox\": [\n            510.3984375,\n            61.1015625,\n            525.33984375,\n            70.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is an example that demonstrates the effect:</p>\",\n          \"polygon\": [\n            [\n              127.52490234375,\n              88.365234375\n            ],\n            [\n              340.962890625,\n              88.365234375\n            ],\n            [\n              340.962890625,\n              98.79791259765625\n            ],\n            [\n              127.52490234375,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            127.52490234375,\n            88.365234375,\n            340.962890625,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print box.width\\n100.0\\n&gt;&gt;&gt; print box.height\\n200.0\\n&gt;&gt;&gt; grow_rectangle(box, 50, 100)\\n&gt;&gt;&gt; print box.width\\n150.0\\n&gt;&gt;&gt; print box.height\\n300.0</pre>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              106.52471923828125\n            ],\n            [\n              296.9815979003906,\n              106.52471923828125\n            ],\n            [\n              296.9815979003906,\n              214.04229736328125\n            ],\n            [\n              128.6455078125,\n              214.04229736328125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            106.52471923828125,\n            296.9815979003906,\n            214.04229736328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Inside the function, rect is an alias for box, so if the function modifies rect, box changes. <b>Exercise 15.2.</b> <i>Write a function named</i> move_rectangle <i>that takes a Rectangle and two numbers</i> <i>named</i> dx <i>and</i> dy<i>. It should change the location of the rectangle by adding</i> dx <i>to the</i> x <i>coordinate of</i> corner <i>and adding</i> dy <i>to the</i> y <i>coordinate of</i> corner<i>.</i></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              221.918701171875\n            ],\n            [\n              525.9375,\n              221.918701171875\n            ],\n            [\n              525.9375,\n              268.46429443359375\n            ],\n            [\n              128.9443359375,\n              268.46429443359375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            221.918701171875,\n            525.9375,\n            268.46429443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/167/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-168-0\\\"></span><b>15.6 Copying</b></h4>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              302.9747009277344\n            ],\n            [\n              225.7646484375,\n              302.9747009277344\n            ],\n            [\n              225.7646484375,\n              317.3209228515625\n            ],\n            [\n              127.7490234375,\n              317.3209228515625\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            302.9747009277344,\n            225.7646484375,\n            317.3209228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Aliasing can make a program difficult to read because changes in one place might have unexpected effects in another place. It is hard to keep track of all the variables that might refer to a given object.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              331.41796875\n            ],\n            [\n              525.6033935546875,\n              331.41796875\n            ],\n            [\n              525.6033935546875,\n              366.35986328125\n            ],\n            [\n              129.09375,\n              366.35986328125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            331.41796875,\n            525.6033935546875,\n            366.35986328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Copying an object is often an alternative to aliasing. The copy module contains a function called copy that can duplicate any object:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              377.82421875\n            ],\n            [\n              525.638671875,\n              377.82421875\n            ],\n            [\n              525.638671875,\n              400.3648681640625\n            ],\n            [\n              128.794921875,\n              400.3648681640625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            377.82421875,\n            525.638671875,\n            400.3648681640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; p1 = Point()\\n&gt;&gt;&gt; p1.x = 3.0\\n&gt;&gt;&gt; p1.y = 4.0\\n&gt;&gt;&gt; import copy\\n&gt;&gt;&gt; p2 = copy.copy(p1)</pre>\",\n          \"polygon\": [\n            [\n              129.6000518798828,\n              408.0917053222656\n            ],\n            [\n              244.6780242919922,\n              408.0917053222656\n            ],\n            [\n              244.6780242919922,\n              483.3984375\n            ],\n            [\n              129.6000518798828,\n              483.3984375\n            ]\n          ],\n          \"bbox\": [\n            129.6000518798828,\n            408.0917053222656,\n            244.6780242919922,\n            483.3984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">p1 and p2 contain the same data, but they are not the same Point.</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              486.9027099609375\n            ],\n            [\n              416.267578125,\n              486.9027099609375\n            ],\n            [\n              416.267578125,\n              497.0148620605469\n            ],\n            [\n              128.57080078125,\n              497.0148620605469\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            486.9027099609375,\n            416.267578125,\n            497.0148620605469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print_point(p1)\\n(3.0, 4.0)\\n&gt;&gt;&gt; print_point(p2)\\n(3.0, 4.0)\\n&gt;&gt;&gt; p1 is p2\\nFalse\\n&gt;&gt;&gt; p1 == p2\\nFalse</pre>\",\n          \"polygon\": [\n            [\n              129.6000518798828,\n              504.74169921875\n            ],\n            [\n              231.4423828125,\n              504.74169921875\n            ],\n            [\n              231.4423828125,\n              600.1875\n            ],\n            [\n              129.6000518798828,\n              600.1875\n            ]\n          ],\n          \"bbox\": [\n            129.6000518798828,\n            504.74169921875,\n            231.4423828125,\n            600.1875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The is operator indicates that p1 and p2 are not the same object, which is what we expected. But you might have expected == to yield True because these points contain the same data. In that case, you will be disappointed to learn that for instances, the default behavior of the == operator is the same as the is operator; it checks object identity, not object equivalence. This behavior can be changed—we'll see how later.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              607.53515625\n            ],\n            [\n              525.6033325195312,\n              607.53515625\n            ],\n            [\n              525.6033325195312,\n              666.8308868408203\n            ],\n            [\n              128.794921875,\n              666.8308868408203\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            607.53515625,\n            525.6033325195312,\n            666.8308868408203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/168/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you use copy.copy to duplicate a Rectangle, you will find that it copies the Rectangle object but not the embedded Point.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              678.3046875\n            ],\n            [\n              525.602783203125,\n              678.3046875\n            ],\n            [\n              525.602783203125,\n              700.8348846435547\n            ],\n            [\n              128.197265625,\n              700.8348846435547\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            678.3046875,\n            525.602783203125,\n            700.8348846435547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/164/SectionHeader/1\",\n        \"3\": \"/page/165/SectionHeader/9\",\n        \"4\": \"/page/168/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/169/Page/233\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/169/PageHeader/0'></content-ref><content-ref src='/page/169/PageHeader/17'></content-ref><content-ref src='/page/169/FigureGroup/231'></content-ref><content-ref src='/page/169/Code/3'></content-ref><content-ref src='/page/169/Text/4'></content-ref><content-ref src='/page/169/Text/5'></content-ref><content-ref src='/page/169/Text/6'></content-ref><content-ref src='/page/169/Code/7'></content-ref><content-ref src='/page/169/Text/8'></content-ref><content-ref src='/page/169/Text/9'></content-ref><content-ref src='/page/169/SectionHeader/10'></content-ref><content-ref src='/page/169/Text/11'></content-ref><content-ref src='/page/169/Code/12'></content-ref><content-ref src='/page/169/Text/13'></content-ref><content-ref src='/page/169/Code/14'></content-ref><content-ref src='/page/169/Text/15'></content-ref><content-ref src='/page/169/Code/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/169/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.66650390625\n            ],\n            [\n              482.607421875,\n              60.66650390625\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.66650390625,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.09130859375,\n              60.95654296875\n            ],\n            [\n              101.52685546875,\n              60.95654296875\n            ],\n            [\n              101.52685546875,\n              70.23779296875\n            ],\n            [\n              85.09130859375,\n              70.23779296875\n            ]\n          ],\n          \"bbox\": [\n            85.09130859375,\n            60.95654296875,\n            101.52685546875,\n            70.23779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/FigureGroup/231\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/169/Figure/1'></content-ref><content-ref src='/page/169/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              131.70849609375,\n              84.44970703125\n            ],\n            [\n              431.4208984375,\n              84.44970703125\n            ],\n            [\n              431.4208984375,\n              158.7529296875\n            ],\n            [\n              131.70849609375,\n              158.7529296875\n            ]\n          ],\n          \"bbox\": [\n            131.70849609375,\n            84.44970703125,\n            431.4208984375,\n            158.7529296875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/169/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  131.70849609375,\n                  84.44970703125\n                ],\n                [\n                  431.4208984375,\n                  84.44970703125\n                ],\n                [\n                  431.4208984375,\n                  135.158203125\n                ],\n                [\n                  131.70849609375,\n                  135.158203125\n                ]\n              ],\n              \"bbox\": [\n                131.70849609375,\n                84.44970703125,\n                431.4208984375,\n                135.158203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/168/SectionHeader/4\"\n              },\n              \"images\": {\n                \"/page/169/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/169/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-169-1\\\"></span>Figure 15.3: Object diagram.</p>\",\n              \"polygon\": [\n                [\n                  222.23399353027344,\n                  148.5966796875\n                ],\n                [\n                  346.5672607421875,\n                  148.5966796875\n                ],\n                [\n                  346.5672607421875,\n                  158.7529296875\n                ],\n                [\n                  222.23399353027344,\n                  158.7529296875\n                ]\n              ],\n              \"bbox\": [\n                222.23399353027344,\n                148.5966796875,\n                346.5672607421875,\n                158.7529296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/168/SectionHeader/4\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/169/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; box2 = copy.copy(box)\\n&gt;&gt;&gt; box2 is box\\nFalse\\n&gt;&gt;&gt; box2.corner is box.corner\\nTrue</pre>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              179.05078125\n            ],\n            [\n              239.0625,\n              179.05078125\n            ],\n            [\n              239.0625,\n              241.3125\n            ],\n            [\n              85.68896484375,\n              241.3125\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            179.05078125,\n            239.0625,\n            241.3125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-169-1\\\">15.3</a> shows what the object diagram looks like. This operation is called a <b>shallow</b> <b>copy</b> because it copies the object and any references it contains, but not the embedded objects.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              242.713134765625\n            ],\n            [\n              482.4046325683594,\n              242.713134765625\n            ],\n            [\n              482.4046325683594,\n              277.16082763671875\n            ],\n            [\n              85.763671875,\n              277.16082763671875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            242.713134765625,\n            482.4046325683594,\n            277.16082763671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For most applications, this is not what you want. In this example, invoking grow_rectangle on one of the Rectangles would not affect the other, but invoking move_rectangle on either would affect both! This behavior is confusing and error-prone.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              285.205078125\n            ],\n            [\n              482.40338134765625,\n              285.205078125\n            ],\n            [\n              482.40338134765625,\n              320.34881591796875\n            ],\n            [\n              85.763671875,\n              320.34881591796875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            285.205078125,\n            482.40338134765625,\n            320.34881591796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Fortunately, the copy module contains a method named deepcopy that copies not only the object but also the objects it refers to, and the objects <i>they</i> refer to, and so on. You will not be surprised to learn that this operation is called a <b>deep copy</b>.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              328.7109375\n            ],\n            [\n              482.607421875,\n              328.7109375\n            ],\n            [\n              482.607421875,\n              363.5368347167969\n            ],\n            [\n              85.46484375,\n              363.5368347167969\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            328.7109375,\n            482.607421875,\n            363.5368347167969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; box3 = copy.deepcopy(box)\\n&gt;&gt;&gt; box3 is box\\nFalse\\n&gt;&gt;&gt; box3.corner is box.corner\\nFalse</pre>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              367.76953125\n            ],\n            [\n              238.09048461914062,\n              367.76953125\n            ],\n            [\n              238.09048461914062,\n              426.9922790527344\n            ],\n            [\n              85.39013671875,\n              426.9922790527344\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            367.76953125,\n            238.09048461914062,\n            426.9922790527344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">box3 and box are completely separate objects.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              431.19140625\n            ],\n            [\n              286.43975830078125,\n              431.19140625\n            ],\n            [\n              286.43975830078125,\n              441.9698486328125\n            ],\n            [\n              85.9130859375,\n              441.9698486328125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            431.19140625,\n            286.43975830078125,\n            441.9698486328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 15.3.</b> <i>Write a version of</i> move_rectangle <i>that creates and returns a new Rectangle</i> <i>instead of modifying the old one.</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              443.953125\n            ],\n            [\n              482.607421875,\n              443.953125\n            ],\n            [\n              482.607421875,\n              466.1851501464844\n            ],\n            [\n              85.46484375,\n              466.1851501464844\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            443.953125,\n            482.607421875,\n            466.1851501464844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/168/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-169-0\\\"></span><b>15.7 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              493.453125\n            ],\n            [\n              199.9788055419922,\n              493.453125\n            ],\n            [\n              199.9788055419922,\n              508.17291259765625\n            ],\n            [\n              85.763671875,\n              508.17291259765625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            493.453125,\n            199.9788055419922,\n            508.17291259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/169/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you start working with objects, you are likely to encounter some new exceptions. If you try to access an attribute that doesn't exist, you get an AttributeError:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              518.58984375\n            ],\n            [\n              483.50390625,\n              518.58984375\n            ],\n            [\n              483.50390625,\n              541.3368530273438\n            ],\n            [\n              85.9130859375,\n              541.3368530273438\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            518.58984375,\n            483.50390625,\n            541.3368530273438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/169/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; p = Point()\\n&gt;&gt;&gt; print p.z\\nAttributeError: Point instance has no attribute 'z'</pre>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              546.0527038574219\n            ],\n            [\n              354.41015625,\n              546.0527038574219\n            ],\n            [\n              354.41015625,\n              582.01171875\n            ],\n            [\n              86.28662109375,\n              582.01171875\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            546.0527038574219,\n            354.41015625,\n            582.01171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/169/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are not sure what type an object is, you can ask:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              585.10546875\n            ],\n            [\n              325.72265625,\n              585.10546875\n            ],\n            [\n              325.72265625,\n              595.380859375\n            ],\n            [\n              85.763671875,\n              595.380859375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            585.10546875,\n            325.72265625,\n            595.380859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/169/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; type(p)\\n&lt;type '__main__.Point'&gt;</pre>\",\n          \"polygon\": [\n            [\n              86.0625,\n              600.0967102050781\n            ],\n            [\n              206.6703643798828,\n              600.0967102050781\n            ],\n            [\n              206.6703643798828,\n              622.2533111572266\n            ],\n            [\n              86.0625,\n              622.2533111572266\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            600.0967102050781,\n            206.6703643798828,\n            622.2533111572266\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/169/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are not sure whether an object has a particular attribute, you can use the built-in function hasattr:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              626.87109375\n            ],\n            [\n              482.40338134765625,\n              626.87109375\n            ],\n            [\n              482.40338134765625,\n              649.4248657226562\n            ],\n            [\n              85.763671875,\n              649.4248657226562\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            626.87109375,\n            482.40338134765625,\n            649.4248657226562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/169/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/169/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; hasattr(p, 'x')\\nTrue\\n&gt;&gt;&gt; hasattr(p, 'z')\\nFalse</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              654.1407165527344\n            ],\n            [\n              186.9169921875,\n              654.1407165527344\n            ],\n            [\n              186.9169921875,\n              700.6863098144531\n            ],\n            [\n              85.9130859375,\n              700.6863098144531\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            654.1407165527344,\n            186.9169921875,\n            700.6863098144531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/169/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/164/SectionHeader/1\",\n        \"3\": \"/page/165/SectionHeader/9\",\n        \"4\": \"/page/169/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/170/Page/197\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/170/PageHeader/0'></content-ref><content-ref src='/page/170/PageHeader/23'></content-ref><content-ref src='/page/170/Text/1'></content-ref><content-ref src='/page/170/SectionHeader/2'></content-ref><content-ref src='/page/170/Text/3'></content-ref><content-ref src='/page/170/ListItem/4'></content-ref><content-ref src='/page/170/Text/5'></content-ref><content-ref src='/page/170/Text/6'></content-ref><content-ref src='/page/170/Text/193'></content-ref><content-ref src='/page/170/ListGroup/194'></content-ref><content-ref src='/page/170/SectionHeader/11'></content-ref><content-ref src='/page/170/Text/12'></content-ref><content-ref src='/page/170/Text/13'></content-ref><content-ref src='/page/170/Text/14'></content-ref><content-ref src='/page/170/Text/15'></content-ref><content-ref src='/page/170/Text/16'></content-ref><content-ref src='/page/170/Code/192'></content-ref><content-ref src='/page/170/Text/18'></content-ref><content-ref src='/page/170/Code/19'></content-ref><content-ref src='/page/170/Text/20'></content-ref><content-ref src='/page/170/Text/21'></content-ref><content-ref src='/page/170/Text/22'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/170/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.42138671875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/169/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/PageHeader/23\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.3984375,\n              60.908203125\n            ],\n            [\n              525.33984375,\n              60.908203125\n            ],\n            [\n              525.33984375,\n              69.802734375\n            ],\n            [\n              510.3984375,\n              69.802734375\n            ]\n          ],\n          \"bbox\": [\n            510.3984375,\n            60.908203125,\n            525.33984375,\n            69.802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/169/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first argument can be any object; the second argument is a <i>string</i> that contains the name of the attribute.</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              88.365234375\n            ],\n            [\n              526.236328125,\n              88.365234375\n            ],\n            [\n              526.236328125,\n              110.99188232421875\n            ],\n            [\n              127.599609375,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            88.365234375,\n            526.236328125,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/169/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-170-0\\\"></span><b>15.8 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              138.96173095703125\n            ],\n            [\n              227.2587890625,\n              138.96173095703125\n            ],\n            [\n              227.2587890625,\n              153.30792236328125\n            ],\n            [\n              127.4501953125,\n              153.30792236328125\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            138.96173095703125,\n            227.2587890625,\n            153.30792236328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>class:</b> A user-defined type. A class definition creates a new class object.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              161.30615234375\n            ],\n            [\n              444.357421875,\n              161.30615234375\n            ],\n            [\n              444.357421875,\n              171.36590576171875\n            ],\n            [\n              128.49609375,\n              171.36590576171875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            161.30615234375,\n            444.357421875,\n            171.36590576171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/ListItem/4\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>class object:</b> An object that contains information about a user-defined type. The class object can be used to create instances of the type.</li>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              180.59765625\n            ],\n            [\n              525.638671875,\n              180.59765625\n            ],\n            [\n              525.638671875,\n              202.88885498046875\n            ],\n            [\n              128.197265625,\n              202.88885498046875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            180.59765625,\n            525.638671875,\n            202.88885498046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>instance:</b> An object that belongs to a class.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              212.1580810546875\n            ],\n            [\n              317.27569580078125,\n              212.1580810546875\n            ],\n            [\n              317.27569580078125,\n              222.21783447265625\n            ],\n            [\n              128.49609375,\n              222.21783447265625\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            212.1580810546875,\n            317.27569580078125,\n            222.21783447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>attribute:</b> One of the named values associated with an object.</p>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              231.2578125\n            ],\n            [\n              400.73162841796875,\n              231.2578125\n            ],\n            [\n              400.73162841796875,\n              241.54681396484375\n            ],\n            [\n              129.16845703125,\n              241.54681396484375\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            231.2578125,\n            400.73162841796875,\n            241.54681396484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/193\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>embedded (object):</b> An object that is stored as an attribute of another object.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              250.787109375\n            ],\n            [\n              467.068359375,\n              250.787109375\n            ],\n            [\n              467.068359375,\n              260.87481689453125\n            ],\n            [\n              129.09375,\n              260.87481689453125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            250.787109375,\n            467.068359375,\n            260.87481689453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/ListGroup/194\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/170/ListItem/8'></content-ref><content-ref src='/page/170/ListItem/9'></content-ref><content-ref src='/page/170/ListItem/10'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              270.14404296875\n            ],\n            [\n              525.9375,\n              270.14404296875\n            ],\n            [\n              525.9375,\n              367.6387939453125\n            ],\n            [\n              128.6455078125,\n              367.6387939453125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            270.14404296875,\n            525.9375,\n            367.6387939453125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/170/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>shallow copy:</b> To copy the contents of an object, including any references to embedded objects; implemented by the copy function in the copy module.</li>\",\n              \"polygon\": [\n                [\n                  128.6455078125,\n                  270.14404296875\n                ],\n                [\n                  525.9375,\n                  270.14404296875\n                ],\n                [\n                  525.9375,\n                  292.39776611328125\n                ],\n                [\n                  128.6455078125,\n                  292.39776611328125\n                ]\n              ],\n              \"bbox\": [\n                128.6455078125,\n                270.14404296875,\n                525.9375,\n                292.39776611328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/170/SectionHeader/2\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/170/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>deep copy:</b> To copy the contents of an object as well as any embedded objects, and any objects embedded in them, and so on; implemented by the deepcopy function in the copy module.</li>\",\n              \"polygon\": [\n                [\n                  128.9443359375,\n                  301.66705322265625\n                ],\n                [\n                  525.6045532226562,\n                  301.66705322265625\n                ],\n                [\n                  525.6045532226562,\n                  336.11578369140625\n                ],\n                [\n                  128.9443359375,\n                  336.11578369140625\n                ]\n              ],\n              \"bbox\": [\n                128.9443359375,\n                301.66705322265625,\n                525.6045532226562,\n                336.11578369140625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/170/SectionHeader/2\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/170/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>object diagram:</b> A diagram that shows objects, their attributes, and the values of the attributes.</li>\",\n              \"polygon\": [\n                [\n                  129.09375,\n                  345.33984375\n                ],\n                [\n                  525.6028442382812,\n                  345.33984375\n                ],\n                [\n                  525.6028442382812,\n                  367.6387939453125\n                ],\n                [\n                  129.09375,\n                  367.6387939453125\n                ]\n              ],\n              \"bbox\": [\n                129.09375,\n                345.33984375,\n                525.6028442382812,\n                367.6387939453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/170/SectionHeader/2\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/2\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/170/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-170-1\\\"></span><b>15.9 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              395.608642578125\n            ],\n            [\n              228.80392456054688,\n              395.608642578125\n            ],\n            [\n              228.80392456054688,\n              409.9548645019531\n            ],\n            [\n              128.57080078125,\n              409.9548645019531\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            395.608642578125,\n            228.80392456054688,\n            409.9548645019531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-170-2\\\"></span><b>Exercise 15.4.</b> <i>Swampy (see Chapter </i><i><a href=\\\"#page-52-0\\\">4)</a></i><i> provides a module named</i> World<i>, which defines a user</i><i>defined type also called</i> World<i>. You can import it like this:</i></p>\",\n          \"polygon\": [\n            [\n              129.59994506835938,\n              421.13671875\n            ],\n            [\n              525.6023559570312,\n              421.13671875\n            ],\n            [\n              525.6023559570312,\n              443.3272399902344\n            ],\n            [\n              129.59994506835938,\n              443.3272399902344\n            ]\n          ],\n          \"bbox\": [\n            129.59994506835938,\n            421.13671875,\n            525.6023559570312,\n            443.3272399902344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">from swampy.World import World</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              448.5516662597656\n            ],\n            [\n              286.5208435058594,\n              448.5516662597656\n            ],\n            [\n              286.5208435058594,\n              458.5142517089844\n            ],\n            [\n              129.2431640625,\n              458.5142517089844\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            448.5516662597656,\n            286.5208435058594,\n            458.5142517089844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Or, depending on how you installed Swampy, like this:</i></p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              463.71453857421875\n            ],\n            [\n              349.62890625,\n              463.71453857421875\n            ],\n            [\n              349.62890625,\n              473.6771240234375\n            ],\n            [\n              129.2431640625,\n              473.6771240234375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            463.71453857421875,\n            349.62890625,\n            473.6771240234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">from World import World</p>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              478.9236755371094\n            ],\n            [\n              251.015625,\n              478.9236755371094\n            ],\n            [\n              251.015625,\n              488.8862609863281\n            ],\n            [\n              128.86962890625,\n              488.8862609863281\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            478.9236755371094,\n            251.015625,\n            488.8862609863281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The following code creates a World object and calls the</i> mainloop <i>method, which waits for the user.</i></p>\",\n          \"polygon\": [\n            [\n              129.59994506835938,\n              493.83984375\n            ],\n            [\n              525.6014404296875,\n              493.83984375\n            ],\n            [\n              525.6014404296875,\n              509.30859375\n            ],\n            [\n              129.59994506835938,\n              509.30859375\n            ]\n          ],\n          \"bbox\": [\n            129.59994506835938,\n            493.83984375,\n            525.6014404296875,\n            509.30859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Code/192\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>world = World()\\nworld.mainloop()</pre>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              509.2956848144531\n            ],\n            [\n              213.2957763671875,\n              509.2956848144531\n            ],\n            [\n              213.2957763671875,\n              531.4522705078125\n            ],\n            [\n              128.86962890625,\n              531.4522705078125\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            509.2956848144531,\n            213.2957763671875,\n            531.4522705078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>A window should appear with a title bar and an empty square. We will use this window to draw</i> <i>Points, Rectangles and other shapes. Add the following lines before calling</i> mainloop <i>and run the</i> <i>program again.</i></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              535.9921875\n            ],\n            [\n              525.6033935546875,\n              535.9921875\n            ],\n            [\n              525.6033935546875,\n              571.004150390625\n            ],\n            [\n              128.9443359375,\n              571.004150390625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            535.9921875,\n            525.6033935546875,\n            571.004150390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Code/19\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>canvas = world.ca(width=500, height=500, background='white')\\nbbox = [[-150,-100], [150, 100]]\\ncanvas.rectangle(bbox, outline='black', width=2, fill='green4')</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              576.2109375\n            ],\n            [\n              459.035400390625,\n              576.2109375\n            ],\n            [\n              459.035400390625,\n              610.6013031005859\n            ],\n            [\n              129.60000610351562,\n              610.6013031005859\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            576.2109375,\n            459.035400390625,\n            610.6013031005859\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/20\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>You should see a green rectangle with a black outline. The first line creates a Canvas, which appears</i> <i>in the window as a white square. The Canvas object provides methods like</i> rectangle <i>for drawing</i> <i>various shapes.</i></p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              614.8828125\n            ],\n            [\n              525.9375,\n              614.8828125\n            ],\n            [\n              525.9375,\n              650.1531677246094\n            ],\n            [\n              129.2431640625,\n              650.1531677246094\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            614.8828125,\n            525.9375,\n            650.1531677246094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/21\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">bbox <i>is a list of lists that represents the \\\"bounding box\\\" of the rectangle. The first pair of coordinates</i> <i>is the lower-left corner of the rectangle; the second pair is the upper-right corner.</i></p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              658.96875\n            ],\n            [\n              525.5986328125,\n              658.96875\n            ],\n            [\n              525.5986328125,\n              681.5051727294922\n            ],\n            [\n              128.49609375,\n              681.5051727294922\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            658.96875,\n            525.5986328125,\n            681.5051727294922\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/170/Text/22\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>You can draw a circle like this:</i></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              690.6796875\n            ],\n            [\n              251.45249938964844,\n              690.6796875\n            ],\n            [\n              251.45249938964844,\n              700.6621704101562\n            ],\n            [\n              129.392578125,\n              700.6621704101562\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            690.6796875,\n            251.45249938964844,\n            700.6621704101562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/164/SectionHeader/1\",\n        \"3\": \"/page/165/SectionHeader/9\",\n        \"4\": \"/page/170/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/171/Page/126\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/171/PageHeader/0'></content-ref><content-ref src='/page/171/PageHeader/11'></content-ref><content-ref src='/page/171/Text/1'></content-ref><content-ref src='/page/171/Text/2'></content-ref><content-ref src='/page/171/Text/3'></content-ref><content-ref src='/page/171/ListGroup/126'></content-ref><content-ref src='/page/171/Text/9'></content-ref><content-ref src='/page/171/Text/10'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/171/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.521484375\n            ],\n            [\n              482.607421875,\n              60.521484375\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.521484375,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/171/PageHeader/11\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              60.908203125\n            ],\n            [\n              101.900390625,\n              60.908203125\n            ],\n            [\n              101.900390625,\n              70.2861328125\n            ],\n            [\n              85.3154296875,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            60.908203125,\n            101.900390625,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/171/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">canvas.circle([-25,0], 70, outline=None, fill='red')</p>\",\n          \"polygon\": [\n            [\n              84.64306640625,\n              88.365234375\n            ],\n            [\n              358.3153991699219,\n              88.365234375\n            ],\n            [\n              358.3153991699219,\n              98.6483154296875\n            ],\n            [\n              84.64306640625,\n              98.6483154296875\n            ]\n          ],\n          \"bbox\": [\n            84.64306640625,\n            88.365234375,\n            358.3153991699219,\n            98.6483154296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/171/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The first parameter is the coordinate pair for the center of the circle; the second parameter is the</i> <i>radius.</i></p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              104.82861328125\n            ],\n            [\n              483.50390625,\n              104.82861328125\n            ],\n            [\n              483.50390625,\n              126.98516845703125\n            ],\n            [\n              85.166015625,\n              126.98516845703125\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            104.82861328125,\n            483.50390625,\n            126.98516845703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/171/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>If you add this line to the program, the result should resemble the national flag of Bangladesh (see</i> <a href=\\\"http://en.wikipedia.org/wiki/Gallery_of_sovereign-state_flags\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/Gallery_of_sovereign-state_flags\\\">//</a> <a href=\\\"http://en.wikipedia.org/wiki/Gallery_of_sovereign-state_flags\\\">en.</a> <a href=\\\"http://en.wikipedia.org/wiki/Gallery_of_sovereign-state_flags\\\">wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Gallery_of_sovereign-state_flags\\\">org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Gallery_of_sovereign-state_flags\\\">wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Gallery_of_sovereign-state_flags\\\">Gallery_</a> <a href=\\\"http://en.wikipedia.org/wiki/Gallery_of_sovereign-state_flags\\\">of_</a> <a href=\\\"http://en.wikipedia.org/wiki/Gallery_of_sovereign-state_flags\\\">sovereign-state_</a> <a href=\\\"http://en.wikipedia.org/wiki/Gallery_of_sovereign-state_flags\\\">flags</a> <i>).</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              136.8017578125\n            ],\n            [\n              482.90625,\n              136.8017578125\n            ],\n            [\n              482.90625,\n              159.31719970703125\n            ],\n            [\n              85.3154296875,\n              159.31719970703125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            136.8017578125,\n            482.90625,\n            159.31719970703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/171/ListGroup/126\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/171/ListItem/4'></content-ref><content-ref src='/page/171/ListItem/5'></content-ref><content-ref src='/page/171/ListItem/6'></content-ref><content-ref src='/page/171/ListItem/7'></content-ref><content-ref src='/page/171/ListItem/8'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.5673828125,\n              172.9599609375\n            ],\n            [\n              482.4051208496094,\n              172.9599609375\n            ],\n            [\n              482.4051208496094,\n              325.0821838378906\n            ],\n            [\n              97.5673828125,\n              325.0821838378906\n            ]\n          ],\n          \"bbox\": [\n            97.5673828125,\n            172.9599609375,\n            482.4051208496094,\n            325.0821838378906\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/171/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Write a function called</i> draw_rectangle <i>that takes a Canvas and a Rectangle as arguments</i> <i>and draws a representation of the Rectangle on the Canvas.</i></li>\",\n              \"polygon\": [\n                [\n                  98.015625,\n                  172.9599609375\n                ],\n                [\n                  482.4051208496094,\n                  172.9599609375\n                ],\n                [\n                  482.4051208496094,\n                  195.64715576171875\n                ],\n                [\n                  98.015625,\n                  195.64715576171875\n                ]\n              ],\n              \"bbox\": [\n                98.015625,\n                172.9599609375,\n                482.4051208496094,\n                195.64715576171875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/170/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/171/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Add an attribute named</i> color <i>to your Rectangle objects and modify</i> draw_rectangle <i>so</i> <i>that it uses the color attribute as the fill color.</i></li>\",\n              \"polygon\": [\n                [\n                  98.1650390625,\n                  205.34765625\n                ],\n                [\n                  482.39990234375,\n                  205.34765625\n                ],\n                [\n                  482.39990234375,\n                  228.00616455078125\n                ],\n                [\n                  98.1650390625,\n                  228.00616455078125\n                ]\n              ],\n              \"bbox\": [\n                98.1650390625,\n                205.34765625,\n                482.39990234375,\n                228.00616455078125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/170/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/171/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. Write a function called</i> draw_point <i>that takes a Canvas and a Point as arguments and draws</i> <i>a representation of the Point on the Canvas.</i></li>\",\n              \"polygon\": [\n                [\n                  98.1650390625,\n                  237.83203125\n                ],\n                [\n                  482.39691162109375,\n                  237.83203125\n                ],\n                [\n                  482.39691162109375,\n                  260.36517333984375\n                ],\n                [\n                  98.1650390625,\n                  260.36517333984375\n                ]\n              ],\n              \"bbox\": [\n                98.1650390625,\n                237.83203125,\n                482.39691162109375,\n                260.36517333984375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/170/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/171/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>4. Define a new class called Circle with appropriate attributes and instantiate a few Circle ob</i><i>jects. Write a function called</i> draw_circle <i>that draws circles on the canvas.</i></li>\",\n              \"polygon\": [\n                [\n                  98.1650390625,\n                  270.31640625\n                ],\n                [\n                  482.4031982421875,\n                  270.31640625\n                ],\n                [\n                  482.4031982421875,\n                  292.7463073730469\n                ],\n                [\n                  98.1650390625,\n                  292.7463073730469\n                ]\n              ],\n              \"bbox\": [\n                98.1650390625,\n                270.31640625,\n                482.4031982421875,\n                292.7463073730469\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/170/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/171/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>5. Write a program that draws the national flag of the Czech Republic. Hint: you can draw a</i> <i>polygon like this:</i></li>\",\n              \"polygon\": [\n                [\n                  97.5673828125,\n                  302.80078125\n                ],\n                [\n                  482.4031677246094,\n                  302.80078125\n                ],\n                [\n                  482.4031677246094,\n                  325.0821838378906\n                ],\n                [\n                  97.5673828125,\n                  325.0821838378906\n                ]\n              ],\n              \"bbox\": [\n                97.5673828125,\n                302.80078125,\n                482.4031677246094,\n                325.0821838378906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/164/SectionHeader/1\",\n                \"3\": \"/page/165/SectionHeader/9\",\n                \"4\": \"/page/170/SectionHeader/11\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/171/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">points = [[-150,-100], [150, 100], [150, -100]] canvas.polygon(points, fill='blue')</p>\",\n          \"polygon\": [\n            [\n              111.30699920654297,\n              335.32073974609375\n            ],\n            [\n              357.3984375,\n              335.32073974609375\n            ],\n            [\n              357.3984375,\n              357.47833251953125\n            ],\n            [\n              111.30699920654297,\n              357.47833251953125\n            ]\n          ],\n          \"bbox\": [\n            111.30699920654297,\n            335.32073974609375,\n            357.3984375,\n            357.47833251953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/171/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>I have written a small program that lists the available colors; you can download it from</i> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">color_</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">list.</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              84.1201171875,\n              371.443359375\n            ],\n            [\n              480.6768493652344,\n              371.443359375\n            ],\n            [\n              480.6768493652344,\n              393.873046875\n            ],\n            [\n              84.1201171875,\n              393.873046875\n            ]\n          ],\n          \"bbox\": [\n            84.1201171875,\n            371.443359375,\n            480.6768493652344,\n            393.873046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"3\": \"/page/165/SectionHeader/9\",\n            \"4\": \"/page/170/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/164/SectionHeader/1\",\n        \"3\": \"/page/165/SectionHeader/9\",\n        \"4\": \"/page/170/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/172/Page/163\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/172/SectionHeader/0'></content-ref><content-ref src='/page/172/SectionHeader/1'></content-ref><content-ref src='/page/172/Text/2'></content-ref><content-ref src='/page/172/SectionHeader/3'></content-ref><content-ref src='/page/172/Text/4'></content-ref><content-ref src='/page/172/Code/5'></content-ref><content-ref src='/page/172/Text/6'></content-ref><content-ref src='/page/172/Code/7'></content-ref><content-ref src='/page/172/Text/13'></content-ref><content-ref src='/page/172/Text/8'></content-ref><content-ref src='/page/172/Text/9'></content-ref><content-ref src='/page/172/Text/10'></content-ref><content-ref src='/page/172/SectionHeader/11'></content-ref><content-ref src='/page/172/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/172/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-172-0\\\"></span><b>Chapter 16</b></h2>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              162.7974853515625\n            ],\n            [\n              232.787109375,\n              162.7974853515625\n            ],\n            [\n              232.787109375,\n              183.4599609375\n            ],\n            [\n              128.794921875,\n              183.4599609375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            162.7974853515625,\n            232.787109375,\n            183.4599609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/164/SectionHeader/1\",\n            \"2\": \"/page/172/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Classes and functions</b></h1>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              216.830322265625\n            ],\n            [\n              376.008544921875,\n              216.830322265625\n            ],\n            [\n              376.008544921875,\n              241.61737060546875\n            ],\n            [\n              128.86962890625,\n              241.61737060546875\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            216.830322265625,\n            376.008544921875,\n            241.61737060546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Code examples from this chapter are available from <a href=\\\"http://thinkpython.com/code/Time1.py\\\">http://thinkpython.com/code/</a> <a href=\\\"http://thinkpython.com/code/Time1.py\\\">Time1.py</a>.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              285.591796875\n            ],\n            [\n              525.6451416015625,\n              285.591796875\n            ],\n            [\n              525.6451416015625,\n              308.52392578125\n            ],\n            [\n              128.3466796875,\n              308.52392578125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            285.591796875,\n            525.6451416015625,\n            308.52392578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-172-1\\\"></span><b>16.1 Time</b></h4>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              336.0127868652344\n            ],\n            [\n              202.53607177734375,\n              336.0127868652344\n            ],\n            [\n              202.53607177734375,\n              350.3590087890625\n            ],\n            [\n              128.86962890625,\n              350.3590087890625\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            336.0127868652344,\n            202.53607177734375,\n            350.3590087890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As another example of a user-defined type, we'll define a class called Time that records the time of day. The class definition looks like this:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              361.1953125\n            ],\n            [\n              525.6033935546875,\n              361.1953125\n            ],\n            [\n              525.6033935546875,\n              384.3984375\n            ],\n            [\n              129.2431640625,\n              384.3984375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            361.1953125,\n            525.6033935546875,\n            384.3984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class Time(object):\\n    \\\"\\\"\\\"Represents the time of day.\\n    attributes: hour, minute, second</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              388.2677917480469\n            ],\n            [\n              317.8975830078125,\n              388.2677917480469\n            ],\n            [\n              317.8975830078125,\n              436.21875\n            ],\n            [\n              129.5999755859375,\n              436.21875\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            388.2677917480469,\n            317.8975830078125,\n            436.21875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We can create a new Time object and assign attributes for hours, minutes, and seconds:</p>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              451.6875\n            ],\n            [\n              509.69757080078125,\n              451.6875\n            ],\n            [\n              509.69757080078125,\n              461.9999694824219\n            ],\n            [\n              129.5999755859375,\n              461.9999694824219\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            451.6875,\n            509.69757080078125,\n            461.9999694824219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>time = Time()\\ntime.hour = 11\\ntime.minute = 59\\ntime.second = 30</pre>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              466.7298278808594\n            ],\n            [\n              213.36328125,\n              466.7298278808594\n            ],\n            [\n              213.36328125,\n              513.2754211425781\n            ],\n            [\n              128.49609375,\n              513.2754211425781\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            466.7298278808594,\n            213.36328125,\n            513.2754211425781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">\\\"\\\"\\\"</p>\",\n          \"polygon\": [\n            [\n              150.51597595214844,\n              437.0458068847656\n            ],\n            [\n              166.20706176757812,\n              437.0458068847656\n            ],\n            [\n              166.20706176757812,\n              447.0083923339844\n            ],\n            [\n              150.51597595214844,\n              447.0083923339844\n            ]\n          ],\n          \"bbox\": [\n            150.51597595214844,\n            437.0458068847656,\n            166.20706176757812,\n            447.0083923339844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The state diagram for the Time object looks like Figure <a href=\\\"#page-173-0\\\">16.1.</a></p>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              518.1548461914062\n            ],\n            [\n              391.166015625,\n              518.1548461914062\n            ],\n            [\n              391.166015625,\n              528.2669982910156\n            ],\n            [\n              128.86962890625,\n              528.2669982910156\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            518.1548461914062,\n            391.166015625,\n            528.2669982910156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-172-3\\\"></span><b>Exercise 16.1.</b> <i>Write a function called</i> print_time <i>that takes a Time object and prints it in the</i> <i>form</i> hour:minute:second<i>. Hint: the format sequence</i> '%.2d' <i>prints an integer using at least</i> <i>two digits, including a leading zero if necessary.</i></p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              530.19140625\n            ],\n            [\n              525.601806640625,\n              530.19140625\n            ],\n            [\n              525.601806640625,\n              564.6773071289062\n            ],\n            [\n              129.2431640625,\n              564.6773071289062\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            530.19140625,\n            525.601806640625,\n            564.6773071289062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-172-4\\\"></span><b>Exercise 16.2.</b> <i>Write a boolean function called</i> is_after <i>that takes two Time objects,</i> t1 <i>and</i> t2<i>,</i> <i>and returns</i> True <i>if</i> t1 <i>follows</i> t2 <i>chronologically and</i> False <i>otherwise. Challenge: don't use an</i> if <i>statement.</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              566.9087066650391\n            ],\n            [\n              525.6027221679688,\n              566.9087066650391\n            ],\n            [\n              525.6027221679688,\n              601.2603149414062\n            ],\n            [\n              128.794921875,\n              601.2603149414062\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            566.9087066650391,\n            525.6027221679688,\n            601.2603149414062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-172-2\\\"></span><b>16.2 Pure functions</b></h4>\",\n          \"polygon\": [\n            [\n              127.82373046875,\n              628.8046875\n            ],\n            [\n              265.0711975097656,\n              628.8046875\n            ],\n            [\n              265.0711975097656,\n              643.26806640625\n            ],\n            [\n              127.82373046875,\n              643.26806640625\n            ]\n          ],\n          \"bbox\": [\n            127.82373046875,\n            628.8046875,\n            265.0711975097656,\n            643.26806640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/172/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In the next few sections, we'll write two functions that add time values. They demonstrate two kinds of functions: pure functions and modifiers. They also demonstrate a development plan I'll call <b>prototype and patch</b>, which is a way of tackling a complex problem by starting with a simple prototype and incrementally dealing with the complications.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              653.94140625\n            ],\n            [\n              525.6033935546875,\n              653.94140625\n            ],\n            [\n              525.6033935546875,\n              700.8350219726562\n            ],\n            [\n              128.49609375,\n              700.8350219726562\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            653.94140625,\n            525.6033935546875,\n            700.8350219726562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/172/SectionHeader/1\",\n        \"4\": \"/page/172/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/173/Page/179\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/173/PageHeader/0'></content-ref><content-ref src='/page/173/PageHeader/12'></content-ref><content-ref src='/page/173/FigureGroup/178'></content-ref><content-ref src='/page/173/Text/3'></content-ref><content-ref src='/page/173/Code/4'></content-ref><content-ref src='/page/173/Text/5'></content-ref><content-ref src='/page/173/Text/6'></content-ref><content-ref src='/page/173/Text/7'></content-ref><content-ref src='/page/173/Code/8'></content-ref><content-ref src='/page/173/Text/9'></content-ref><content-ref src='/page/173/Text/10'></content-ref><content-ref src='/page/173/Code/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/173/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.8115234375\n            ],\n            [\n              482.4034118652344,\n              60.8115234375\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.8115234375,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/173/PageHeader/12\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.8671875,\n              61.24658203125\n            ],\n            [\n              100.5556640625,\n              61.24658203125\n            ],\n            [\n              100.5556640625,\n              70.23779296875\n            ],\n            [\n              84.8671875,\n              70.23779296875\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            61.24658203125,\n            100.5556640625,\n            70.23779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/173/FigureGroup/178\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/173/Figure/1'></content-ref><content-ref src='/page/173/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              221.431640625,\n              84.0146484375\n            ],\n            [\n              346.939453125,\n              84.0146484375\n            ],\n            [\n              346.939453125,\n              169.1529541015625\n            ],\n            [\n              221.431640625,\n              169.1529541015625\n            ]\n          ],\n          \"bbox\": [\n            221.431640625,\n            84.0146484375,\n            346.939453125,\n            169.1529541015625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/173/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  226.212890625,\n                  84.0146484375\n                ],\n                [\n                  344.25,\n                  84.0146484375\n                ],\n                [\n                  344.25,\n                  141.8291015625\n                ],\n                [\n                  226.212890625,\n                  141.8291015625\n                ]\n              ],\n              \"bbox\": [\n                226.212890625,\n                84.0146484375,\n                344.25,\n                141.8291015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/172/SectionHeader/1\",\n                \"4\": \"/page/172/SectionHeader/11\"\n              },\n              \"images\": {\n                \"/page/173/Figure/1\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCACaATsDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD3+iiigAooooAKKKKACiiigAooooAKKKKACkZgoyxAA7mlqjq+kWGvaXNpup24uLOYASRFiu7ByOQQeooAtfaIf+e0f/fQpRLGRkSIR0zmvEfEXw38I2XxP8KaTb6NGljex3BuIRLIRIVXK8lsjHsa6nxH4Y8F+DPCuxdFlSyuNQti0VtM24yhsIxLN0BPSgD0iiuQ13x7Do/iVfD0GkX2oanJbC4hitguHyxGCSQFAwSSeKybT4py31xc6Xb+E9WfxBbPibTsoBGuM7zKTtwc8etAHotFcroHjzTda8N3+sXEU2mrpzvHfQ3I+aBkGSOOtYg+K3lW8Wp3vhTWbTQJWAXUpFUgKTgOyA7lU+tAHotFMilSeJJYnDxuoZWU5BB6EU+gAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA838Wf8ln8D/wDXK7/9Aqx8Yf8AkTbb/sKWv/owV28unWVxewXs1nbyXduCIZ3iUvHnrtYjIz7Ut5YWeowiG+tILqIMHCTxh1DDkHB7j1oA4ZQP+F+McdNAH/o6jwsB/wALf8bnHPlWf/oBrufsFn9v+3/ZIPtvl+V9o8seZsznbu64zziiKws4Lye8htII7q4AE0yRgPJjpuYcnHbNAHiOoWdze+B/ifFaKzSLrLyMqDJKKUZuPoDV3VTDL4BN3e/E24uNJubdY/ssNnbF5AwA8tVAB3dscEYr2C20+ys2na1tLeA3DmSYxRhfNc9WbA5PuaxrfwH4TtdVGpweHtPjvA28SLAPlb1A6A+4FAGh4ftBYeHNNs1aVlhtY4wZl2uQFA+YDofWtKiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoopGYIpZiAoGST2FAC0VXsb+01O0S7sbmG5tpM7JYXDK2Dg4I96sUAFFFFABRRRQAUUUUAFFFFABXPeL72/s7KwTT7r7LLdX0du0vlq5VSGJwG4zxXQ1zPjP8A1eif9hWH/wBBegCt9j8Qf9DTcf8AgHB/8TR9j8Qf9DTcf+AcH/xNa1FAGT9j8Qf9DTcf+AcH/wATR9j8Qf8AQ03H/gHB/wDE1rUUAZP2PxB/0NNx/wCAcH/xNH2PxB/0NNx/4Bwf/E1pXFxDaW8lxcSpFDGpd5HbCqB1JPYUQTxXVvHPBKksMihkdDlWB6EHuKAM37H4g/6Gm4/8A4P/AImj7H4g/wChpuP/AADg/wDia1qKAMn7H4g/6Gm4/wDAOD/4mj7H4g/6Gm4/8A4P/ia1qKAMn7H4g/6Gm4/8A4P/AImj7H4g/wChpuP/AADg/wDia1qKAMn7H4g/6Gm4/wDAOD/4mj7H4g/6Gm4/8A4P/ia1qKAMn7H4g/6Gm4/8A4P/AImj7H4g/wChpuP/AADg/wDia1qKAMn7H4g/6Gm4/wDAOD/4mj7H4g/6Gm4/8A4P/ia1qKAMn7H4g/6Gm4/8A4P/AImj7H4g/wChpuP/AADg/wDia1qjmnit4/MnlSJMgbnYKMngcmgDN+x+IP8Aoabj/wAA4P8A4mj7H4g/6Gm4/wDAOD/4mtaoxPEZzAJUMwXeY9w3BfXHXFAGb9j8Qf8AQ03H/gHB/wDE1Xmm17TNR0lpNfkuobi9SCWKS1iUFWDd1UEHgVvVj67/AMfWhf8AYUh/k1AHY0UUUAFeS+FL/wARN8TPGC3lhZ+QBCbpRdMwiAiOzYNvO7jPTHvXrVeX6PqFnafFXxzZXFzHFdXcVubeJ2w0oWE52jvigAtPHkWhfCzRdcsNAiihubsWwsLd+EDOwO3jk5HT1NP1Hx94u0DV7C11fwrauuqlo7GOzvNzrLxhJCwA7jJHA561yUX/ACRLwZ/2G4f/AEc9dz4+/wCR28A/9hKT/wBF0AT6L4v8QJ40j8NeJtJsraa6tmubWeynaRCFPKtuAOfeqq+NvFOvT3lx4S8PWd3pVpK0IuLy6MbXTLw3lgDgZ4yeKXXk8z41+HEzjdpd2M15/wCGYPDOg6bd6T4p8S65ouqWE8gkto9QlhSRCxKvGq8EEHtQB7N4R8TweLdCTUYYJLaRZGhuLeT70MqnDKfX61u1xPwus7SDwq93ZWN/Zw31y9wq305llkBwBISQCN2M4rotS8OaPrFwtxqGnw3EqpsDuOQuScfmTQBqUVz/APwg/hn/AKA1r+R/xo/4Qfwz/wBAa1/I/wCNAHQVk6jrFzp1yF/sXULq12gm4tQj7T3BTcH/ACBqr/wg/hn/AKA1r+R/xrJ1HwPBJciLTNF0OC32jNxciSV93ceUu0Y6c7/woA2rbxhoFxOtudSjtrlulveK1tKfokgVj+VVPGZBi0Qjkf2rD/6C9Y6fCbRbjnVZpLpT1ghjW3i/DaN/5uam1jw/pPhvTNDsdHso7S3GrxHYmTk4fqSSTQB0FFFFABRRRQBg+N/+RF13/rxm/wDQTXDaX4s8VaX4B0/V7bw/aPo1nZx7/OuStxIigAuqgYA64zk4rufG/wDyIuu/9eM3/oJrnb7/AJIQ3/YEX/0WKANDW/G0tumj2uiaf9v1TV4vOt4JH2LHHgEu57AZpukeLNWj8SxeHvE+mW9neXMTS2k9rKXhmC/eXkZBFcu90nhvXPBviS/DLpT6OtjLcBSVgcqGUtjoD0q/cavZ+M/iV4f/ALClF3a6QJZ7u7jB8tSy7VTd3JoA6zwp4ik8R2+oyyW6wG0vpbQBW3bghHzfjmsCX4iSxeCdU8Qtp8ebG/a08oSHDKrhd2cdec4rK8HeK9F8MN4k0/Wb1bO8TVZ5hBIDvkViNuwfxZ9q5wSNP8EtflkiaJpNadmjcYK5lQ4PvQB6x4a1TWtXSe61PSo9PtH2tZqZd0rIc8uOinpx71vVHB/x7x/7o/lTL2yttRtHtbuFZoHxuRuhwcj9QKAJ6Kwv+EM8Of8AQItvyNH/AAhnhz/oEW35GgDdqlqN7cWKI8Gm3N8pJ3rbsgZB64dlz+BzWf8A8IZ4c/6BFt+RqlqPg6wCIumaHpbOxO97l3UIPUKoO76ZH1oAur4v0ZWCXs8mnSE426hC1uM+gZwFP4E1tRSxzxLJDIkkbDKsjAg/iK4hfhraXJzqFzGF7xWFqsKH2Jfe35MK3tB8HaB4ZeSTSNOS3llADyFmdm/FiT3oA3K8p+KllrypaXcutRnSTqVuqWCWwU5LcFnzk4I6Yr1auC+LX/IsWH/YVtv/AEKgDtb6O6lsZo7KdILlkIildN6o3YlcjP515z4MtdUs/iv4hh1jUxqN2LGEmYRCIBSchQoJwBXp1cFo/wDyWnxH/wBg63oA72sfXf8Aj60L/sKQ/wAmrYrH13/j60L/ALCkP8moA7GiiigAqFrS2e5W5a3iNwowspQbgPQHrU1FABRRRQAVXnsbS6kSS4tYJnT7jSRhiv0J6VYooAKKKKACiiigAooooAK5nxn/AKvRP+wrD/6C9dNXM+M/9Xon/YVh/wDQXoAu0UUUAFFFFABRRRQA2SNJY2jkRXRhgqwyCPpTILaC1j8u3hjhjznbGgUfkKlooAheztZLhbiS2heZPuyMgLL9D1qaiigAooooAKKKKACiiigAooooAKKKKACiiigArH13/j60L/sKQ/yatisfXf8Aj60L/sKQ/wAmoA7GiiigAooooAKKKKACiiigAooooAKKKKACiiigArmfGf8Aq9E/7CsP/oL101cz4z/1eif9hWH/ANBegC7RRWfr1xLa+HdSuIHKTRWsrow/hYKSDQBoUV47PJ4sHw0h8Zv4qulvYrdJ1tUjQQMmQMMMZZiOSc/hVzW28T6DpOleKZPEtzPPPcwC5sdii22SEfKq4yMZxkkmgD0RdZRvEb6N9kug624uPtBT90RnG3dn73tWlXIJqt8fivPpRuG+wrpInEOBgP5mN3r0rmPC1v4o8ZeG5r+68VXtj5U00duLVUBcqx+aQ45HbAxwKAPVqK8pj8Xa3c/D/wAM6i93svbjVo7S4kRQPNQOynIxxkAdK6vxrql7ps3hxbO4aEXWswW820D542Jypz60Ab6arYyavLpSXCm+iiEzw4OQhOAfTrVyvL7LS7tPjXqcja1ebYrGO4YbUw6Fz+6PH3R+fvWXaeJT4q+1apd/EKHw+POdLKwiliXYinAaQNyxPXFAHslFcl8O/Etx4m8OyS3ksM13aXD2ss8GNkxXGHGOMEEHiumvb22060e6vJ0ggTG6RzgDJwP1IoAnorC/4TPw1/0GrP8A7+Uf8Jn4a/6DVn/38oA3aKwv+Ez8Nf8AQas/+/lUtS8ZacURtL17Rw4J3pdFiHHoGU/L9cGgDqqK4VfiZY2x26hBDjvLY3aToPwbY/5Ka3tC8YaB4mZ00jUoriSMZePDI6/VWANAG5XF6n8TdF0zV7vTGs9VuJ7RwkptbQyKCRnGQfeu0ry3Q7Px9Y6j4iudN0rS4ku9RknDalK4aZeihAnQYHUnvQB21h4s0y98PS65L59jYxFvMa9jMTLjvj+XrWZpnxK8O6pqNvZo93btdHFtJdWzRRzn/YY8H9K5XxJrV342+HMs8emypd6ZqKDUtPU7yRG2XA9R0P4VT+Ivj7w7rvgk2+iyvd3aSRTKEgZfsu1h8zEgBf7v40Aey1j67/x9aF/2FIf5NWlaSNLZQSP9541Y/Uis3Xf+PrQv+wpD/JqAOxooooAKKKKACiiigAooooAKKKKACiiigAooooAK5nxn/q9E/wCwrD/6C9dNXM+M/wDV6J/2FYf/AEF6ALtZ+u20t54f1G1t03zTWskca5AyxUgDJ461oUUAcDc+G9Wk+Co8PraZ1T7AkPkeYn3wRkbs7f1qz4x0HU9V8D6dp1lbebdwzWrPH5irgIRu5JA4xXa0UAcmmjagPilPrJt/+Je2lC3E29eZN+cYznp3xik+H2i6hofhA2Oo2/k3P2id9m9W4ZyQcqSOhrraKAPJz4Q8Q2/ww0y0jsFbVNO1L7b9kMq/vFEjNgMCRkgg9avaqfE/i/UvD0yeHJ9OsdP1OG5uPtc0YkbB5KqD91Rn3ORgV6VRQBws1pqVj8WJdQ/sq5udO1CwjtftEJUrEwYkl8nIGKwtM03VPBsNzo7+CV1yFZneyvIRF8yschZN3KkZ616vRQBg+ELHUrHQUGrpax30rtJJFaxKiR56L8owcDvW9RRQAUUUUAFUtSsrm9SNLfU7ixAJ3tAiFmHpl1YD8qu0UAYS+ENHdg99FLqTg5zqEzTjPsjEqPwArahhit4ligiSKNeAiKFA/AU+igArgYda8aeH5ruy1DQbnXlMrNZ3tq8aBkPRXHG0j1xXfUUAefaT4c8T6V4S1e6tJre38SaldNfNH8rxqSR+6yeOgxn1NU9Sj8R+Obe20W48NS6LZtMkupXM0qEOFOdsYXlskda9NooARVCqFUYAGAKyNd/4+tC/7CkP8mrYrH13/j60L/sKQ/yagDsaKKKACiiigAooooAKKKKACiiigAooooAKKKKACuZ8Z/6vRP8AsKw/+gvXTVzPjP8A1eif9hWH/wBBegC7RRVe6v7OxCm8u4LcMcKZpAmfpk0AWKKRHWRA6MGVhkMDkEVXh1CyuJ3ggvLeWZPvxpIGZfqAeKALNFRXF1b2cJmuZ4oIhwXlcKPzNOhmiuIllhkSSNhlXRgQfoRQA+iq0eo2Mt01rHeW73C/eiWVS4+ozmpnmiRtryIrYLYLAHA6mgB9FQWt9aXys1pdQXCqcMYpA4B98Ukt/ZwXKW0t3BHO/wByJ5AGb6DOTQBYormvBOv3fiLTL65vEhV4L+e2URKQNqHAzknmuloAKKKKACiiigAooooAKKK4AeMfE+t3d+/hfQ7O40+ymaAz3dyUad1+8EAHH1NAHf0Vx9n8QrCbwJP4nuLeWAWxaOa1Jyyyg42A98kjn3rOHjfxHpT2F54k0C2s9JvpFiWWC4LyWxb7vmAjH5dP0oA9BrH13/j60L/sKQ/yatisfXf+PrQv+wpD/JqAOxooooAKKKKACiiigAooooAKKKKACiiigAooooAK5nxn/q9E/wCwrD/6C9dNXM+M/wDV6J/2FYf/AEF6ALteT+IdHks/HOp6tr3hS58R6XcxottJbqJmtVA+ZfKJ9ecivWK4m98K+IrPxDfap4b12C3jvyrT2t7AZUVwMbkIPH0oA46/1TTtM+E81v4UvtQkt7jUVtWjk4ntQ5y0Sg4xwMDJ79ag1bR4I9LgPhjwDr2maxaOj214I0UkgjO8iQlgRnqDXb23w5t28M6npup38l1e6nP9quLxEEZWbgqyKOmMfzqu/g3xTqy29hr/AInhuNKhdXdLa28qW52ngO2eB64oApRWEHjL4l6hBr1uJ7bSbODybKXlBJIMsxXoT2qDxPo3/CA+FfEtzoN+0EF75Qjs0GBaMzBWdTnjIPoMcV0mueEtQfxAviDw5qcen6iYRbzpND5kU6DpuGcgj1FV7L4eiey1o+Ir86jqGsosdxNHH5axqv3VQc4wec+1AGN4k+H2gaP8Pp7zTrVbbUtPtxcxX6EiUyKM5Ld88/nVXUYE8WeMvA/9ohjFd6VJNcRKSBJ8qsVOOxOMitWXwL4p1HTo9C1XxVFNoabVcRWu24mjXojNnA6Dmukm8Kxv4p0fWYbgRRabayWyWwjyGDAAfNnjGPQ0AclLplh4W+K1sdGtI7OK40eeSaCAbUdkOVO0cZqHwN4K0TxR4QGt65arfanqjSSy3MjHfGdxACnPy4x2rt7vw2LrxlZeIDdYFtaSWxtzHnfvOc7s8fTFc3b+BvEeim50/wAPeJYrTRbiRnEM1r5kttuPzCNs/lnpQAnwdhNv4RvYTKZTHqdwhkY5LYIGSfeu7vbh7S0eaO1nunXGIYNu9uccbmA9+T2rE8GeFE8HaLJpkd490jXDzK7ptYBscHk5PHXv6V0VAGF/wkF7/wBCtrX523/x6j/hIL3/AKFbWvztv/j1btFAGF/wkF7/ANCtrX523/x6s7Ur7VLyRJrfTPE1hIi4/cmzZG/3leQg/hg+9ddWdqOhaZq0qSajaJdBBgRzEtH+KE7SfcigDz9/iNrWn3X2YaX/AGxIDgwweWk6/VY5Zcn/AICtd5oWr3OsWnn3GjX+mN/cu9gJ+gVifzArQt7a3tIRDbQRQxL0SNAqj8BUtAAeBk9K5jU7W/vdGUeCNS0qyDO5eVYVkRj3xt4Bz1ODXT1wMPgzxLoMt3B4Y8QWttptzK0wt7u18w27N12EHkexoA4W4khT4U/YPs7wz2OvRw6lvk3+ZJvyz5wOCcdq7/4ubP8AhWuoZxndFs/3vMXGKs2nw90+Hwbe+H7q4luWvnaa5u2ADvMTneB2wQMD2qiPBGv6o9haeI9fgvdKsZFlWGG28t7hl+75hJPT260AdxZ7vsVvv+/5a7vris3Xf+PrQv8AsKQ/yatisfXf+PrQv+wpD/JqAOxooooAKKKKACiiigAooooAKKKKACiiigAooooAK5nxn/q9E/7CsP8A6C9dNXM+M/8AV6J/2FYf/QXoAu0UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABWPrv/H1oX/YUh/k1bFY+u/8fWhf9hSH+TUAdjRRRQB//9k=\"\n              }\n            },\n            {\n              \"id\": \"/page/173/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-173-0\\\"></span>Figure 16.1: Object diagram.</p>\",\n              \"polygon\": [\n                [\n                  221.431640625,\n                  158.8447265625\n                ],\n                [\n                  346.939453125,\n                  158.8447265625\n                ],\n                [\n                  346.939453125,\n                  169.1529541015625\n                ],\n                [\n                  221.431640625,\n                  169.1529541015625\n                ]\n              ],\n              \"bbox\": [\n                221.431640625,\n                158.8447265625,\n                346.939453125,\n                169.1529541015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/172/SectionHeader/1\",\n                \"4\": \"/page/172/SectionHeader/11\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/173/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is a simple prototype of add_time:</p>\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              192.1337890625\n            ],\n            [\n              261.1126708984375,\n              192.1337890625\n            ],\n            [\n              261.1126708984375,\n              202.2459716796875\n            ],\n            [\n              85.24072265625,\n              202.2459716796875\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            192.1337890625,\n            261.1126708984375,\n            202.2459716796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/173/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def add_time(t1, t2):\\n    sum = Time()\\n    sum.hour = t1.hour + t2.hour\\n    sum.minute = t1.minute + t2.minute\\n    sum.second = t1.second + t2.second\\n    return sum</pre>\",\n          \"polygon\": [\n            [\n              86.40000915527344,\n              208.7637939453125\n            ],\n            [\n              285.1583557128906,\n              208.7637939453125\n            ],\n            [\n              285.1583557128906,\n              279.69842529296875\n            ],\n            [\n              86.40000915527344,\n              279.69842529296875\n            ]\n          ],\n          \"bbox\": [\n            86.40000915527344,\n            208.7637939453125,\n            285.1583557128906,\n            279.69842529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/173/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The function creates a new Time object, initializes its attributes, and returns a reference to the new object. This is called a <b>pure function</b> because it does not modify any of the objects passed to it as arguments and it has no effect, like displaying a value or getting user input, other than returning a value.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              286.3658447265625\n            ],\n            [\n              482.607421875,\n              286.3658447265625\n            ],\n            [\n              482.607421875,\n              333.0610046386719\n            ],\n            [\n              85.46484375,\n              333.0610046386719\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            286.3658447265625,\n            482.607421875,\n            333.0610046386719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/173/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To test this function, I'll create two Time objects: start contains the start time of a movie, like <i>Monty Python and the Holy Grail</i>, and duration contains the run time of the movie, which is one hour 35 minutes.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              343.54986572265625\n            ],\n            [\n              482.40179443359375,\n              343.54986572265625\n            ],\n            [\n              482.40179443359375,\n              378.051025390625\n            ],\n            [\n              85.46484375,\n              378.051025390625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            343.54986572265625,\n            482.40179443359375,\n            378.051025390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/173/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">add_time figures out when the movie will be done.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              388.5398864746094\n            ],\n            [\n              311.0869140625,\n              388.5398864746094\n            ],\n            [\n              311.0869140625,\n              398.65203857421875\n            ],\n            [\n              85.166015625,\n              398.65203857421875\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            388.5398864746094,\n            311.0869140625,\n            398.65203857421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/173/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; start = Time()\\n&gt;&gt;&gt; start.hour = 9\\n&gt;&gt;&gt; start.minute = 45\\n&gt;&gt;&gt; start.second = 0\\n&gt;&gt;&gt; duration = Time()\\n&gt;&gt;&gt; duration.hour = 1\\n&gt;&gt;&gt; duration.minute = 35\\n&gt;&gt;&gt; duration.second = 0\\n&gt;&gt;&gt; done = add_time(start, duration)\\n&gt;&gt;&gt; print_time(done)\\n10:80:00</pre>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              405.1698913574219\n            ],\n            [\n              274.7030944824219,\n              405.1698913574219\n            ],\n            [\n              274.7030944824219,\n              561.4645233154297\n            ],\n            [\n              86.28662109375,\n              561.4645233154297\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            405.1698913574219,\n            274.7030944824219,\n            561.4645233154297\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/173/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The result, 10:80:00 might not be what you were hoping for. The problem is that this function does not deal with cases where the number of seconds or minutes adds up to more than sixty. When that happens, we have to \\\"carry\\\" the extra seconds into the minute column or the extra minutes into the hour column.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              567.703125\n            ],\n            [\n              483.50390625,\n              567.703125\n            ],\n            [\n              483.50390625,\n              614.8270874023438\n            ],\n            [\n              85.6142578125,\n              614.8270874023438\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            567.703125,\n            483.50390625,\n            614.8270874023438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/173/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's an improved version:</p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              625.32421875\n            ],\n            [\n              212.466796875,\n              625.32421875\n            ],\n            [\n              212.466796875,\n              635.4280853271484\n            ],\n            [\n              85.39013671875,\n              635.4280853271484\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            625.32421875,\n            212.466796875,\n            635.4280853271484\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/173/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def add_time(t1, t2):\\n    sum = Time()\\n    sum.hour = t1.hour + t2.hour\\n    sum.minute = t1.minute + t2.minute\\n    sum.second = t1.second + t2.second</pre>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              641.9459381103516\n            ],\n            [\n              285.1583557128906,\n              641.9459381103516\n            ],\n            [\n              285.1583557128906,\n              701.12109375\n            ],\n            [\n              85.98779296875,\n              701.12109375\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            641.9459381103516,\n            285.1583557128906,\n            701.12109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/172/SectionHeader/1\",\n        \"4\": \"/page/172/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/174/Page/172\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/174/PageHeader/0'></content-ref><content-ref src='/page/174/PageHeader/15'></content-ref><content-ref src='/page/174/Code/1'></content-ref><content-ref src='/page/174/Text/2'></content-ref><content-ref src='/page/174/Text/3'></content-ref><content-ref src='/page/174/SectionHeader/4'></content-ref><content-ref src='/page/174/Text/5'></content-ref><content-ref src='/page/174/Text/6'></content-ref><content-ref src='/page/174/Code/7'></content-ref><content-ref src='/page/174/Text/8'></content-ref><content-ref src='/page/174/Text/9'></content-ref><content-ref src='/page/174/Text/10'></content-ref><content-ref src='/page/174/Text/11'></content-ref><content-ref src='/page/174/Text/12'></content-ref><content-ref src='/page/174/Text/13'></content-ref><content-ref src='/page/174/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/174/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.72021484375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              61.05322265625\n            ],\n            [\n              525.638671875,\n              61.05322265625\n            ],\n            [\n              525.638671875,\n              70.43115234375\n            ],\n            [\n              510.099609375,\n              70.43115234375\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            61.05322265625,\n            525.638671875,\n            70.43115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>if sum.second &gt;= 60:\\n    sum.second -= 60\\n    sum.minute += 1\\nif sum.minute &gt;= 60:\\n    sum.minute -= 60\\n    sum.hour += 1</pre>\",\n          \"polygon\": [\n            [\n              149.115234375,\n              100.8797607421875\n            ],\n            [\n              258.78515625,\n              100.8797607421875\n            ],\n            [\n              258.78515625,\n              186.205078125\n            ],\n            [\n              149.115234375,\n              186.205078125\n            ]\n          ],\n          \"bbox\": [\n            149.115234375,\n            100.8797607421875,\n            258.78515625,\n            186.205078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">return sum</p>\",\n          \"polygon\": [\n            [\n              148.74169921875,\n              198.4346923828125\n            ],\n            [\n              202.81964111328125,\n              198.4346923828125\n            ],\n            [\n              202.81964111328125,\n              208.39727783203125\n            ],\n            [\n              148.74169921875,\n              208.39727783203125\n            ]\n          ],\n          \"bbox\": [\n            148.74169921875,\n            198.4346923828125,\n            202.81964111328125,\n            208.39727783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Although this function is correct, it is starting to get big. We will see a shorter alternative later.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              212.990234375\n            ],\n            [\n              525.6033935546875,\n              212.990234375\n            ],\n            [\n              525.6033935546875,\n              235.51171875\n            ],\n            [\n              128.197265625,\n              235.51171875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            212.990234375,\n            525.6033935546875,\n            235.51171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/172/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-174-0\\\"></span><b>16.3 Modifiers</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              262.001953125\n            ],\n            [\n              232.80654907226562,\n              262.001953125\n            ],\n            [\n              232.80654907226562,\n              276.3709716796875\n            ],\n            [\n              128.3466796875,\n              276.3709716796875\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            262.001953125,\n            232.80654907226562,\n            276.3709716796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Sometimes it is useful for a function to modify the objects it gets as parameters. In that case, the changes are visible to the caller. Functions that work this way are called <b>modifiers</b>.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              286.751953125\n            ],\n            [\n              525.6033325195312,\n              286.751953125\n            ],\n            [\n              525.6033325195312,\n              309.1129150390625\n            ],\n            [\n              129.2431640625,\n              309.1129150390625\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            286.751953125,\n            525.6033325195312,\n            309.1129150390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">increment, which adds a given number of seconds to a Time object, can be written naturally as a modifier. Here is a rough draft:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              317.302734375\n            ],\n            [\n              525.6021118164062,\n              317.302734375\n            ],\n            [\n              525.6021118164062,\n              339.6849060058594\n            ],\n            [\n              129.2431640625,\n              339.6849060058594\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            317.302734375,\n            525.6021118164062,\n            339.6849060058594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def increment(time, seconds):\\n    time.second += seconds\\n    if time.second &gt;= 60:\\n        time.second -= 60\\n        time.minute += 1\\n    if time.minute &gt;= 60:\\n        time.minute -= 60\\n        time.hour += 1</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              343.9777526855469\n            ],\n            [\n              281.2904968261719,\n              343.9777526855469\n            ],\n            [\n              281.2904968261719,\n              467.15625\n            ],\n            [\n              129.5999755859375,\n              467.15625\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            343.9777526855469,\n            281.2904968261719,\n            467.15625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first line performs the basic operation; the remainder deals with the special cases we saw before.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              468.2823486328125\n            ],\n            [\n              525.6033325195312,\n              468.2823486328125\n            ],\n            [\n              525.6033325195312,\n              490.4389343261719\n            ],\n            [\n              129.2431640625,\n              490.4389343261719\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            468.2823486328125,\n            525.6033325195312,\n            490.4389343261719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Is this function correct? What happens if the parameter seconds is much greater than sixty?</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              498.70379638671875\n            ],\n            [\n              525.6008911132812,\n              498.70379638671875\n            ],\n            [\n              525.6008911132812,\n              508.8159484863281\n            ],\n            [\n              128.49609375,\n              508.8159484863281\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            498.70379638671875,\n            525.6008911132812,\n            508.8159484863281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In that case, it is not enough to carry once; we have to keep doing it until time.second is less than sixty. One solution is to replace the if statements with while statements. That would make the function correct, but not very efficient.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              517.04296875\n            ],\n            [\n              525.6044311523438,\n              517.04296875\n            ],\n            [\n              525.6044311523438,\n              551.5819396972656\n            ],\n            [\n              128.3466796875,\n              551.5819396972656\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            517.04296875,\n            525.6044311523438,\n            551.5819396972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 16.3.</b> <i>Write a correct version of</i> increment <i>that doesn't contain any loops.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              553.6416473388672\n            ],\n            [\n              470.35546875,\n              553.6416473388672\n            ],\n            [\n              470.35546875,\n              563.6798400878906\n            ],\n            [\n              128.6455078125,\n              563.6798400878906\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            553.6416473388672,\n            470.35546875,\n            563.6798400878906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Anything that can be done with modifiers can also be done with pure functions. In fact, some programming languages only allow pure functions. There is some evidence that programs that use pure functions are faster to develop and less error-prone than programs that use modifiers. But modifiers are convenient at times, and functional programs tend to be less efficient.</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              571.95703125\n            ],\n            [\n              525.638671875,\n              571.95703125\n            ],\n            [\n              525.638671875,\n              630.9309539794922\n            ],\n            [\n              127.599609375,\n              630.9309539794922\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            571.95703125,\n            525.638671875,\n            630.9309539794922\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In general, I recommend that you write pure functions whenever it is reasonable and resort to modifiers only if there is a compelling advantage. This approach might be called a <b>functional programming style</b>.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              639.3463592529297\n            ],\n            [\n              525.638671875,\n              639.3463592529297\n            ],\n            [\n              525.638671875,\n              673.6969680786133\n            ],\n            [\n              128.197265625,\n              673.6969680786133\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            639.3463592529297,\n            525.638671875,\n            673.6969680786133\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/174/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 16.4.</b> <i>Write a \\\"pure\\\" version of</i> increment <i>that creates and returns a new Time object</i> <i>rather than modifying the parameter.</i></p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              675.7566680908203\n            ],\n            [\n              525.6038818359375,\n              675.7566680908203\n            ],\n            [\n              525.6038818359375,\n              697.9132690429688\n            ],\n            [\n              127.7490234375,\n              697.9132690429688\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            675.7566680908203,\n            525.6038818359375,\n            697.9132690429688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/172/SectionHeader/1\",\n        \"4\": \"/page/174/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/175/Page/205\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/175/PageHeader/0'></content-ref><content-ref src='/page/175/PageHeader/17'></content-ref><content-ref src='/page/175/SectionHeader/1'></content-ref><content-ref src='/page/175/Text/2'></content-ref><content-ref src='/page/175/Text/3'></content-ref><content-ref src='/page/175/Text/4'></content-ref><content-ref src='/page/175/Text/5'></content-ref><content-ref src='/page/175/Text/6'></content-ref><content-ref src='/page/175/Text/7'></content-ref><content-ref src='/page/175/Code/8'></content-ref><content-ref src='/page/175/Text/9'></content-ref><content-ref src='/page/175/Code/10'></content-ref><content-ref src='/page/175/Text/11'></content-ref><content-ref src='/page/175/Text/12'></content-ref><content-ref src='/page/175/Code/13'></content-ref><content-ref src='/page/175/Text/14'></content-ref><content-ref src='/page/175/Text/15'></content-ref><content-ref src='/page/175/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/175/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.69970703125\n            ],\n            [\n              482.90625,\n              59.69970703125\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.69970703125,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              59.8447265625\n            ],\n            [\n              102.0498046875,\n              59.8447265625\n            ],\n            [\n              102.0498046875,\n              70.4794921875\n            ],\n            [\n              85.6142578125,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            59.8447265625,\n            102.0498046875,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"4\": \"/page/174/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-175-0\\\"></span><b>16.4 Prototyping versus planning</b></h3>\",\n          \"polygon\": [\n            [\n              84.94189453125,\n              85.271484375\n            ],\n            [\n              314.666015625,\n              85.271484375\n            ],\n            [\n              314.666015625,\n              100.353515625\n            ],\n            [\n              84.94189453125,\n              100.353515625\n            ]\n          ],\n          \"bbox\": [\n            84.94189453125,\n            85.271484375,\n            314.666015625,\n            100.353515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The development plan I am demonstrating is called \\\"prototype and patch.\\\" For each function, I wrote a prototype that performed the basic calculation and then tested it, patching errors along the way.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              109.44140625\n            ],\n            [\n              483.50390625,\n              109.44140625\n            ],\n            [\n              483.50390625,\n              145.576904296875\n            ],\n            [\n              85.6142578125,\n              145.576904296875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            109.44140625,\n            483.50390625,\n            145.576904296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This approach can be effective, especially if you don't yet have a deep understanding of the problem. But incremental corrections can generate code that is unnecessarily complicated—since it deals with many special cases—and unreliable—since it is hard to know if you have found all the errors.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              152.6572265625\n            ],\n            [\n              483.50390625,\n              152.6572265625\n            ],\n            [\n              483.50390625,\n              200.87591552734375\n            ],\n            [\n              85.763671875,\n              200.87591552734375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            152.6572265625,\n            483.50390625,\n            200.87591552734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An alternative is <b>planned development</b>, in which high-level insight into the problem can make the programming much easier. In this case, the insight is that a Time object is really a three-digit number in base 60 (see <a href=\\\"http://en.wikipedia.org/wiki/Sexagesimal\\\">http://en.wikipedia.org/wiki/Sexagesimal</a>.)! The second attribute is the \\\"ones column,\\\" the minute attribute is the \\\"sixties column,\\\" and the hour attribute is the \\\"thirty-six hundreds column.\\\"</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              207.66796875\n            ],\n            [\n              483.50390625,\n              207.66796875\n            ],\n            [\n              483.50390625,\n              268.36993408203125\n            ],\n            [\n              85.763671875,\n              268.36993408203125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            207.66796875,\n            483.50390625,\n            268.36993408203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When we wrote add_time and increment, we were effectively doing addition in base 60, which is why we had to carry from one column to the next.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              274.95703125\n            ],\n            [\n              483.205078125,\n              274.95703125\n            ],\n            [\n              483.205078125,\n              299.28192138671875\n            ],\n            [\n              85.763671875,\n              299.28192138671875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            274.95703125,\n            483.205078125,\n            299.28192138671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This observation suggests another approach to the whole problem—we can convert Time objects to integers and take advantage of the fact that the computer knows how to do integer arithmetic.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              305.89453125\n            ],\n            [\n              484.1015625,\n              305.89453125\n            ],\n            [\n              484.1015625,\n              342.3869323730469\n            ],\n            [\n              85.6142578125,\n              342.3869323730469\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            305.89453125,\n            484.1015625,\n            342.3869323730469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is a function that converts Times to integers:</p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              349.59375\n            ],\n            [\n              304.505859375,\n              349.59375\n            ],\n            [\n              304.505859375,\n              361.10394287109375\n            ],\n            [\n              85.39013671875,\n              361.10394287109375\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            349.59375,\n            304.505859375,\n            361.10394287109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def time_to_int(time):\\n    minutes = time.hour * 60 + time.minute\\n    seconds = minutes * 60 + time.second\\n    return seconds</pre>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              365.7367858886719\n            ],\n            [\n              306.0797424316406,\n              365.7367858886719\n            ],\n            [\n              306.0797424316406,\n              412.2823791503906\n            ],\n            [\n              85.83837890625,\n              412.2823791503906\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            365.7367858886719,\n            306.0797424316406,\n            412.2823791503906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And here is the function that converts integers to Times (recall that divmod divides the first argument by the second and returns the quotient and remainder as a tuple).</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              415.3359375\n            ],\n            [\n              482.90625,\n              415.3359375\n            ],\n            [\n              482.90625,\n              439.3719482421875\n            ],\n            [\n              85.0166015625,\n              439.3719482421875\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            415.3359375,\n            482.90625,\n            439.3719482421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def int_to_time(seconds):\\n    time = Time()\\n    minutes, time.second = divmod(seconds, 60)\\n    time.hour, time.minute = divmod(minutes, 60)\\n    return time</pre>\",\n          \"polygon\": [\n            [\n              86.39996337890625,\n              442.79296875\n            ],\n            [\n              337.4718933105469,\n              442.79296875\n            ],\n            [\n              337.4718933105469,\n              502.744384765625\n            ],\n            [\n              86.39996337890625,\n              502.744384765625\n            ]\n          ],\n          \"bbox\": [\n            86.39996337890625,\n            442.79296875,\n            337.4718933105469,\n            502.744384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You might have to think a bit, and run some tests, to convince yourself that these functions are correct. One way to test them is to check that time_to_int(int_to_time(x)) == x for many values of x. This is an example of a consistency check.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              505.828125\n            ],\n            [\n              482.607421875,\n              505.828125\n            ],\n            [\n              482.607421875,\n              542.0279541015625\n            ],\n            [\n              85.763671875,\n              542.0279541015625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            505.828125,\n            482.607421875,\n            542.0279541015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Once you are convinced they are correct, you can use them to rewrite add_time:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              549.52734375\n            ],\n            [\n              437.783203125,\n              549.52734375\n            ],\n            [\n              437.783203125,\n              560.7449493408203\n            ],\n            [\n              85.46484375,\n              560.7449493408203\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            549.52734375,\n            437.783203125,\n            560.7449493408203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def add_time(t1, t2):\\n    seconds = time_to_int(t1) + time_to_int(t2)\\n    return int_to_time(seconds)</pre>\",\n          \"polygon\": [\n            [\n              86.39999389648438,\n              564.22265625\n            ],\n            [\n              336.48046875,\n              564.22265625\n            ],\n            [\n              336.48046875,\n              600.57421875\n            ],\n            [\n              86.39999389648438,\n              600.57421875\n            ]\n          ],\n          \"bbox\": [\n            86.39999389648438,\n            564.22265625,\n            336.48046875,\n            600.57421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This version is shorter than the original, and easier to verify. <b>Exercise 16.5.</b> <i>Rewrite</i> increment <i>using</i> time_to_int <i>and</i> int_to_time<i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              604.0546875\n            ],\n            [\n              397.44140625,\n              604.0546875\n            ],\n            [\n              397.44140625,\n              626.7218475341797\n            ],\n            [\n              85.763671875,\n              626.7218475341797\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            604.0546875,\n            397.44140625,\n            626.7218475341797\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In some ways, converting from base 60 to base 10 and back is harder than just dealing with times. Base conversion is more abstract; our intuition for dealing with time values is better.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              633.83203125\n            ],\n            [\n              482.90625,\n              633.83203125\n            ],\n            [\n              482.90625,\n              657.7299652099609\n            ],\n            [\n              85.9130859375,\n              657.7299652099609\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            633.83203125,\n            482.90625,\n            657.7299652099609\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/175/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But if we have the insight to treat times as base 60 numbers and make the investment of writing the conversion functions (time_to_int and int_to_time), we get a program that is shorter, easier to read and debug, and more reliable.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              664.76953125\n            ],\n            [\n              482.90625,\n              664.76953125\n            ],\n            [\n              482.90625,\n              700.8349761962891\n            ],\n            [\n              86.2119140625,\n              700.8349761962891\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            664.76953125,\n            482.90625,\n            700.8349761962891\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/172/SectionHeader/1\",\n        \"3\": \"/page/175/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/176/Page/180\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/176/PageHeader/0'></content-ref><content-ref src='/page/176/PageHeader/16'></content-ref><content-ref src='/page/176/Text/1'></content-ref><content-ref src='/page/176/Text/2'></content-ref><content-ref src='/page/176/SectionHeader/3'></content-ref><content-ref src='/page/176/Text/4'></content-ref><content-ref src='/page/176/Text/5'></content-ref><content-ref src='/page/176/Text/6'></content-ref><content-ref src='/page/176/Code/7'></content-ref><content-ref src='/page/176/Text/8'></content-ref><content-ref src='/page/176/Code/9'></content-ref><content-ref src='/page/176/Text/10'></content-ref><content-ref src='/page/176/Code/11'></content-ref><content-ref src='/page/176/Text/12'></content-ref><content-ref src='/page/176/SectionHeader/13'></content-ref><content-ref src='/page/176/Text/14'></content-ref><content-ref src='/page/176/ListItem/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/176/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.2431640625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.501953125,\n              61.05322265625\n            ],\n            [\n              525.638671875,\n              61.05322265625\n            ],\n            [\n              525.638671875,\n              70.43115234375\n            ],\n            [\n              509.501953125,\n              70.43115234375\n            ]\n          ],\n          \"bbox\": [\n            509.501953125,\n            61.05322265625,\n            525.638671875,\n            70.43115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is also easier to add features later. For example, imagine subtracting two Times to find the duration between them. The naive approach would be to implement subtraction with borrowing. Using the conversion functions would be easier and more likely to be correct.</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              88.31689453125\n            ],\n            [\n              525.603271484375,\n              88.31689453125\n            ],\n            [\n              525.603271484375,\n              123.1868896484375\n            ],\n            [\n              127.599609375,\n              123.1868896484375\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            88.31689453125,\n            525.603271484375,\n            123.1868896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Ironically, sometimes making a problem harder (or more general) makes it easier (because there are fewer special cases and fewer opportunities for error).</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              132.1611328125\n            ],\n            [\n              526.53515625,\n              132.1611328125\n            ],\n            [\n              526.53515625,\n              154.89593505859375\n            ],\n            [\n              129.09375,\n              154.89593505859375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            132.1611328125,\n            526.53515625,\n            154.89593505859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-176-0\\\"></span><b>16.5 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              183.3677978515625\n            ],\n            [\n              243.3955078125,\n              183.3677978515625\n            ],\n            [\n              243.3955078125,\n              197.7139892578125\n            ],\n            [\n              127.7490234375,\n              197.7139892578125\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            183.3677978515625,\n            243.3955078125,\n            197.7139892578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A Time object is well-formed if the values of minute and second are between 0 and 60 (including 0 but not 60) and if hour is positive. hour and minute should be integral values, but we might allow second to have a fraction part.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              209.21484375\n            ],\n            [\n              525.6015625,\n              209.21484375\n            ],\n            [\n              525.6015625,\n              243.78790283203125\n            ],\n            [\n              128.794921875,\n              243.78790283203125\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            209.21484375,\n            525.6015625,\n            243.78790283203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Requirements like these are called <b>invariants</b> because they should always be true. To put it a different way, if they are not true, then something has gone wrong.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              252.9140625\n            ],\n            [\n              525.6036376953125,\n              252.9140625\n            ],\n            [\n              525.6036376953125,\n              275.49786376953125\n            ],\n            [\n              128.9443359375,\n              275.49786376953125\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            252.9140625,\n            525.6036376953125,\n            275.49786376953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Writing code to check your invariants can help you detect errors and find their causes. For example, you might have a function like valid_time that takes a Time object and returns False if it violates an invariant:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              285.01171875\n            ],\n            [\n              525.638671875,\n              285.01171875\n            ],\n            [\n              525.638671875,\n              319.40185546875\n            ],\n            [\n              128.197265625,\n              319.40185546875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            285.01171875,\n            525.638671875,\n            319.40185546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def valid_time(time):\\n    if time.hour &lt; 0 or time.minute &lt; 0 or time.second &lt; 0:\\n        return False\\n    if time.minute &gt;= 60 or time.second &gt;= 60:\\n        return False\\n    return True</pre>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              324.45703125\n            ],\n            [\n              438.6796875,\n              324.45703125\n            ],\n            [\n              438.6796875,\n              395.768310546875\n            ],\n            [\n              129.60003662109375,\n              395.768310546875\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            324.45703125,\n            438.6796875,\n            395.768310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Then at the beginning of each function you could check the arguments to make sure they are valid:</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              401.02734375\n            ],\n            [\n              525.603515625,\n              401.02734375\n            ],\n            [\n              525.603515625,\n              423.6558837890625\n            ],\n            [\n              127.8984375,\n              423.6558837890625\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            401.02734375,\n            525.603515625,\n            423.6558837890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def add_time(t1, t2):\\n    if not valid_time(t1) or not valid_time(t2):\\n        raise ValueError('invalid Time object in add_time')\\n    seconds = time_to_int(t1) + time_to_int(t2)\\n    return int_to_time(seconds)</pre>\",\n          \"polygon\": [\n            [\n              129.6000518798828,\n              429.0877380371094\n            ],\n            [\n              438.1184387207031,\n              429.0877380371094\n            ],\n            [\n              438.1184387207031,\n              487.82733154296875\n            ],\n            [\n              129.6000518798828,\n              487.82733154296875\n            ]\n          ],\n          \"bbox\": [\n            129.6000518798828,\n            429.0877380371094,\n            438.1184387207031,\n            487.82733154296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Or you could use an assert statement, which checks a given invariant and raises an exception if it fails:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              493.40875244140625\n            ],\n            [\n              525.598388671875,\n              493.40875244140625\n            ],\n            [\n              525.598388671875,\n              515.8828125\n            ],\n            [\n              128.3466796875,\n              515.8828125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            493.40875244140625,\n            525.598388671875,\n            515.8828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def add_time(t1, t2):\\n    assert valid_time(t1) and valid_time(t2)\\n    seconds = time_to_int(t1) + time_to_int(t2)\\n    return int_to_time(seconds)</pre>\",\n          \"polygon\": [\n            [\n              129.60006713867188,\n              521.1467590332031\n            ],\n            [\n              375.92578125,\n              521.1467590332031\n            ],\n            [\n              375.92578125,\n              567.6923675537109\n            ],\n            [\n              129.60006713867188,\n              567.6923675537109\n            ]\n          ],\n          \"bbox\": [\n            129.60006713867188,\n            521.1467590332031,\n            375.92578125,\n            567.6923675537109\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">assert statements are useful because they distinguish code that deals with normal conditions from code that checks for errors.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              573.1171875\n            ],\n            [\n              525.6021118164062,\n              573.1171875\n            ],\n            [\n              525.6021118164062,\n              595.5799255371094\n            ],\n            [\n              128.9443359375,\n              595.5799255371094\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            573.1171875,\n            525.6021118164062,\n            595.5799255371094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-176-1\\\"></span><b>16.6 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              624.05078125\n            ],\n            [\n              227.22596740722656,\n              624.05078125\n            ],\n            [\n              227.22596740722656,\n              638.39697265625\n            ],\n            [\n              127.97314453125,\n              638.39697265625\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            624.05078125,\n            227.22596740722656,\n            638.39697265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>prototype and patch:</b> A development plan that involves writing a rough draft of a program, testing, and correcting errors as they are found.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              646.7532196044922\n            ],\n            [\n              525.603271484375,\n              646.7532196044922\n            ],\n            [\n              525.603271484375,\n              669.0069351196289\n            ],\n            [\n              128.49609375,\n              669.0069351196289\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            646.7532196044922,\n            525.603271484375,\n            669.0069351196289\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/176/ListItem/15\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>planned development:</b> A development plan that involves high-level insight into the problem and more planning than incremental development or prototype development.</li>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              678.3046875\n            ],\n            [\n              525.6034545898438,\n              678.3046875\n            ],\n            [\n              525.6034545898438,\n              700.8349380493164\n            ],\n            [\n              127.599609375,\n              700.8349380493164\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            678.3046875,\n            525.6034545898438,\n            700.8349380493164\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/172/SectionHeader/1\",\n        \"3\": \"/page/175/SectionHeader/1\",\n        \"4\": \"/page/176/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/177/Page/164\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/177/PageHeader/0'></content-ref><content-ref src='/page/177/PageHeader/14'></content-ref><content-ref src='/page/177/ListGroup/162'></content-ref><content-ref src='/page/177/SectionHeader/5'></content-ref><content-ref src='/page/177/Text/6'></content-ref><content-ref src='/page/177/Text/7'></content-ref><content-ref src='/page/177/Text/8'></content-ref><content-ref src='/page/177/Text/9'></content-ref><content-ref src='/page/177/ListGroup/163'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/177/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.71484375\n            ],\n            [\n              482.90625,\n              60.71484375\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.71484375,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/177/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              61.5849609375\n            ],\n            [\n              101.67626953125,\n              61.5849609375\n            ],\n            [\n              101.67626953125,\n              70.576171875\n            ],\n            [\n              85.68896484375,\n              70.576171875\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            61.5849609375,\n            101.67626953125,\n            70.576171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/177/ListGroup/162\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/177/ListItem/1'></content-ref><content-ref src='/page/177/ListItem/2'></content-ref><content-ref src='/page/177/ListItem/3'></content-ref><content-ref src='/page/177/ListItem/4'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              88.7381591796875\n            ],\n            [\n              482.90625,\n              88.7381591796875\n            ],\n            [\n              482.90625,\n              195.8739013671875\n            ],\n            [\n              85.0166015625,\n              195.8739013671875\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            88.7381591796875,\n            482.90625,\n            195.8739013671875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/177/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>pure function:</b> A function that does not modify any of the objects it receives as arguments. Most pure functions are fruitful.</li>\",\n              \"polygon\": [\n                [\n                  85.0166015625,\n                  88.7381591796875\n                ],\n                [\n                  482.90625,\n                  88.7381591796875\n                ],\n                [\n                  482.90625,\n                  110.99188232421875\n                ],\n                [\n                  85.0166015625,\n                  110.99188232421875\n                ]\n              ],\n              \"bbox\": [\n                85.0166015625,\n                88.7381591796875,\n                482.90625,\n                110.99188232421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/172/SectionHeader/1\",\n                \"3\": \"/page/175/SectionHeader/1\",\n                \"4\": \"/page/176/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/177/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>modifier:</b> A function that changes one or more of the objects it receives as arguments. Most modifiers are fruitless.</li>\",\n              \"polygon\": [\n                [\n                  85.166015625,\n                  120.849609375\n                ],\n                [\n                  482.607421875,\n                  120.849609375\n                ],\n                [\n                  482.607421875,\n                  143.35089111328125\n                ],\n                [\n                  85.166015625,\n                  143.35089111328125\n                ]\n              ],\n              \"bbox\": [\n                85.166015625,\n                120.849609375,\n                482.607421875,\n                143.35089111328125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/172/SectionHeader/1\",\n                \"3\": \"/page/175/SectionHeader/1\",\n                \"4\": \"/page/176/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/177/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>functional programming style:</b> A style of program design in which the majority of functions are pure.</li>\",\n              \"polygon\": [\n                [\n                  85.46484375,\n                  152.8505859375\n                ],\n                [\n                  482.402587890625,\n                  152.8505859375\n                ],\n                [\n                  482.402587890625,\n                  175.70989990234375\n                ],\n                [\n                  85.46484375,\n                  175.70989990234375\n                ]\n              ],\n              \"bbox\": [\n                85.46484375,\n                152.8505859375,\n                482.402587890625,\n                175.70989990234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/172/SectionHeader/1\",\n                \"3\": \"/page/175/SectionHeader/1\",\n                \"4\": \"/page/176/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/177/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>invariant:</b> A condition that should always be true during the execution of a program.</li>\",\n              \"polygon\": [\n                [\n                  85.3154296875,\n                  185.3349609375\n                ],\n                [\n                  463.18359375,\n                  185.3349609375\n                ],\n                [\n                  463.18359375,\n                  195.8739013671875\n                ],\n                [\n                  85.3154296875,\n                  195.8739013671875\n                ]\n              ],\n              \"bbox\": [\n                85.3154296875,\n                185.3349609375,\n                463.18359375,\n                195.8739013671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/172/SectionHeader/1\",\n                \"3\": \"/page/175/SectionHeader/1\",\n                \"4\": \"/page/176/SectionHeader/13\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/176/SectionHeader/13\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/177/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-177-0\\\"></span><b>16.7 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              225.21575927734375\n            ],\n            [\n              185.7216796875,\n              225.21575927734375\n            ],\n            [\n              185.7216796875,\n              239.56195068359375\n            ],\n            [\n              85.6142578125,\n              239.56195068359375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            225.21575927734375,\n            185.7216796875,\n            239.56195068359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/177/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/177/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Code examples from this chapter are available from <a href=\\\"http://thinkpython.com/code/Time1.py\\\">http://thinkpython.com/code/</a> <a href=\\\"http://thinkpython.com/code/Time1.py\\\">Time1.py</a>; solutions to these exercises are available from <a href=\\\"http://thinkpython.com/code/Time1_soln.py\\\">http://thinkpython.com/code/</a> <a href=\\\"http://thinkpython.com/code/Time1_soln.py\\\">Time1_soln.py</a>.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              251.75775146484375\n            ],\n            [\n              482.607421875,\n              251.75775146484375\n            ],\n            [\n              482.607421875,\n              286.2589111328125\n            ],\n            [\n              85.46484375,\n              286.2589111328125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            251.75775146484375,\n            482.607421875,\n            286.2589111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/177/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/177/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 16.6.</b> <i>Write a function called</i> mul_time <i>that takes a Time object and a number and returns</i> <i>a new Time object that contains the product of the original Time and the number.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              287.912109375\n            ],\n            [\n              482.3958435058594,\n              287.912109375\n            ],\n            [\n              482.3958435058594,\n              310.4752197265625\n            ],\n            [\n              85.6142578125,\n              310.4752197265625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            287.912109375,\n            482.3958435058594,\n            310.4752197265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/177/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/177/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Then use</i> mul_time <i>to write a function that takes a Time object that represents the finishing time</i> <i>in a race, and a number that represents the distance, and returns a Time object that represents the</i> <i>average pace (time per mile).</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              320.396484375\n            ],\n            [\n              483.205078125,\n              320.396484375\n            ],\n            [\n              483.205078125,\n              355.001220703125\n            ],\n            [\n              85.763671875,\n              355.001220703125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            320.396484375,\n            483.205078125,\n            355.001220703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/177/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/177/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 16.7.</b> <i>The</i> datetime <i>module provides</i> date <i>and</i> time <i>objects that are similar to the Date</i> <i>and Time objects in this chapter, but they provide a rich set of methods and operators. Read the</i> <i>documentation at</i> <a href=\\\"http://docs.python.org/2/library/datetime.html\\\">http:</a> <a href=\\\"http://docs.python.org/2/library/datetime.html\\\">//</a> <a href=\\\"http://docs.python.org/2/library/datetime.html\\\">docs.</a> <a href=\\\"http://docs.python.org/2/library/datetime.html\\\">python.</a> <a href=\\\"http://docs.python.org/2/library/datetime.html\\\">org/</a> <a href=\\\"http://docs.python.org/2/library/datetime.html\\\">2/</a> <a href=\\\"http://docs.python.org/2/library/datetime.html\\\">library/</a> <a href=\\\"http://docs.python.org/2/library/datetime.html\\\">datetime.</a> <a href=\\\"http://docs.python.org/2/library/datetime.html\\\">html</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              357.2326354980469\n            ],\n            [\n              482.403564453125,\n              357.2326354980469\n            ],\n            [\n              482.403564453125,\n              391.584228515625\n            ],\n            [\n              85.9130859375,\n              391.584228515625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            357.2326354980469,\n            482.403564453125,\n            391.584228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/177/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/177/ListGroup/163\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/177/ListItem/10'></content-ref><content-ref src='/page/177/ListItem/11'></content-ref><content-ref src='/page/177/ListItem/12'></content-ref><content-ref src='/page/177/ListItem/13'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.716796875,\n              405.66796875\n            ],\n            [\n              484.1015625,\n              405.66796875\n            ],\n            [\n              484.1015625,\n              537.1852416992188\n            ],\n            [\n              97.716796875,\n              537.1852416992188\n            ]\n          ],\n          \"bbox\": [\n            97.716796875,\n            405.66796875,\n            484.1015625,\n            537.1852416992188\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/177/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Use the</i> datetime <i>module to write a program that gets the current date and prints the day of</i> <i>the week.</i></li>\",\n              \"polygon\": [\n                [\n                  97.8662109375,\n                  405.66796875\n                ],\n                [\n                  483.50390625,\n                  405.66796875\n                ],\n                [\n                  483.50390625,\n                  428.09765625\n                ],\n                [\n                  97.8662109375,\n                  428.09765625\n                ]\n              ],\n              \"bbox\": [\n                97.8662109375,\n                405.66796875,\n                483.50390625,\n                428.09765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/172/SectionHeader/1\",\n                \"3\": \"/page/175/SectionHeader/1\",\n                \"4\": \"/page/177/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/177/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Write a program that takes a birthday as input and prints the user's age and the number of</i> <i>days, hours, minutes and seconds until their next birthday.</i></li>\",\n              \"polygon\": [\n                [\n                  97.8662109375,\n                  437.765625\n                ],\n                [\n                  484.1015625,\n                  437.765625\n                ],\n                [\n                  484.1015625,\n                  460.2732238769531\n                ],\n                [\n                  97.8662109375,\n                  460.2732238769531\n                ]\n              ],\n              \"bbox\": [\n                97.8662109375,\n                437.765625,\n                484.1015625,\n                460.2732238769531\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/172/SectionHeader/1\",\n                \"3\": \"/page/175/SectionHeader/1\",\n                \"4\": \"/page/177/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/177/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. For two people born on different days, there is a day when one is twice as old as the other.</i> <i>That's their Double Day. Write a program that takes two birthdays and computes their Double</i> <i>Day.</i></li>\",\n              \"polygon\": [\n                [\n                  97.716796875,\n                  469.86328125\n                ],\n                [\n                  482.404052734375,\n                  469.86328125\n                ],\n                [\n                  482.404052734375,\n                  504.82623291015625\n                ],\n                [\n                  97.716796875,\n                  504.82623291015625\n                ]\n              ],\n              \"bbox\": [\n                97.716796875,\n                469.86328125,\n                482.404052734375,\n                504.82623291015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/172/SectionHeader/1\",\n                \"3\": \"/page/175/SectionHeader/1\",\n                \"4\": \"/page/177/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/177/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>4. For a little more challenge, write the more general version that computes the day when one</i> <i>person is n times older than the other.</i></li>\",\n              \"polygon\": [\n                [\n                  97.716796875,\n                  514.3359375\n                ],\n                [\n                  482.607421875,\n                  514.3359375\n                ],\n                [\n                  482.607421875,\n                  537.1852416992188\n                ],\n                [\n                  97.716796875,\n                  537.1852416992188\n                ]\n              ],\n              \"bbox\": [\n                97.716796875,\n                514.3359375,\n                482.607421875,\n                537.1852416992188\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/172/SectionHeader/1\",\n                \"3\": \"/page/175/SectionHeader/1\",\n                \"4\": \"/page/177/SectionHeader/5\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"3\": \"/page/175/SectionHeader/1\",\n            \"4\": \"/page/177/SectionHeader/5\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/172/SectionHeader/1\",\n        \"3\": \"/page/175/SectionHeader/1\",\n        \"4\": \"/page/177/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/178/Page/129\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/178/SectionHeader/0'></content-ref><content-ref src='/page/178/SectionHeader/1'></content-ref><content-ref src='/page/178/Text/2'></content-ref><content-ref src='/page/178/SectionHeader/3'></content-ref><content-ref src='/page/178/Text/4'></content-ref><content-ref src='/page/178/Text/5'></content-ref><content-ref src='/page/178/ListGroup/127'></content-ref><content-ref src='/page/178/Text/8'></content-ref><content-ref src='/page/178/Text/9'></content-ref><content-ref src='/page/178/Text/10'></content-ref><content-ref src='/page/178/Text/11'></content-ref><content-ref src='/page/178/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/178/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-178-0\\\"></span><b>Chapter 17</b></h2>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              161.26171875\n            ],\n            [\n              232.6376953125,\n              161.26171875\n            ],\n            [\n              232.6376953125,\n              183.00201416015625\n            ],\n            [\n              128.3466796875,\n              183.00201416015625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            161.26171875,\n            232.6376953125,\n            183.00201416015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/172/SectionHeader/1\",\n            \"2\": \"/page/178/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/178/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Classes and methods</b></h1>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              215.208984375\n            ],\n            [\n              366.662109375,\n              215.208984375\n            ],\n            [\n              366.662109375,\n              240.700439453125\n            ],\n            [\n              129.16845703125,\n              240.700439453125\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            215.208984375,\n            366.662109375,\n            240.700439453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/178/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Code examples from this chapter are available from <a href=\\\"http://thinkpython.com/code/Time2.py\\\">http://thinkpython.com/code/</a> <a href=\\\"http://thinkpython.com/code/Time2.py\\\">Time2.py</a>.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              284.23828125\n            ],\n            [\n              526.53515625,\n              284.23828125\n            ],\n            [\n              526.53515625,\n              307.1499938964844\n            ],\n            [\n              128.9443359375,\n              307.1499938964844\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            284.23828125,\n            526.53515625,\n            307.1499938964844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/178/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-178-1\\\"></span><b>17.1 Object-oriented features</b></h4>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              333.73828125\n            ],\n            [\n              329.30859375,\n              333.73828125\n            ],\n            [\n              329.30859375,\n              348.3430480957031\n            ],\n            [\n              128.6455078125,\n              348.3430480957031\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            333.73828125,\n            329.30859375,\n            348.3430480957031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/178/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python is an <b>object-oriented programming language</b>, which means that it provides features that support object-oriented programming.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              358.1015625\n            ],\n            [\n              525.9375,\n              358.1015625\n            ],\n            [\n              525.9375,\n              381.0639953613281\n            ],\n            [\n              129.2431640625,\n              381.0639953613281\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            358.1015625,\n            525.9375,\n            381.0639953613281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/178/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is not easy to define object-oriented programming, but we have already seen some of its characteristics:</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              388.845703125\n            ],\n            [\n              525.9375,\n              388.845703125\n            ],\n            [\n              525.9375,\n              411.6130065917969\n            ],\n            [\n              128.9443359375,\n              411.6130065917969\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            388.845703125,\n            525.9375,\n            411.6130065917969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/178/ListGroup/127\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/178/ListItem/6'></content-ref><content-ref src='/page/178/ListItem/7'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.2421875,\n              420.36328125\n            ],\n            [\n              526.53515625,\n              420.36328125\n            ],\n            [\n              526.53515625,\n              486.156005859375\n            ],\n            [\n              142.2421875,\n              486.156005859375\n            ]\n          ],\n          \"bbox\": [\n            142.2421875,\n            420.36328125,\n            526.53515625,\n            486.156005859375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/178/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Programs are made up of object definitions and function definitions, and most of the computation is expressed in terms of operations on objects.</li>\",\n              \"polygon\": [\n                [\n                  142.83984375,\n                  420.36328125\n                ],\n                [\n                  525.9375,\n                  420.36328125\n                ],\n                [\n                  525.9375,\n                  443.12200927734375\n                ],\n                [\n                  142.83984375,\n                  443.12200927734375\n                ]\n              ],\n              \"bbox\": [\n                142.83984375,\n                420.36328125,\n                525.9375,\n                443.12200927734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"4\": \"/page/178/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/178/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Each object definition corresponds to some object or concept in the real world, and the functions that operate on that object correspond to the ways real-world objects interact.</li>\",\n              \"polygon\": [\n                [\n                  142.2421875,\n                  451.30078125\n                ],\n                [\n                  526.53515625,\n                  451.30078125\n                ],\n                [\n                  526.53515625,\n                  486.156005859375\n                ],\n                [\n                  142.2421875,\n                  486.156005859375\n                ]\n              ],\n              \"bbox\": [\n                142.2421875,\n                451.30078125,\n                526.53515625,\n                486.156005859375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"4\": \"/page/178/SectionHeader/3\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/178/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, the Time class defined in Chapter <a href=\\\"#page-172-0\\\">16</a> corresponds to the way people record the time of day, and the functions we defined correspond to the kinds of things people do with times. Similarly, the Point and Rectangle classes correspond to the mathematical concepts of a point and a rectangle.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              495.0\n            ],\n            [\n              527.1328125,\n              495.0\n            ],\n            [\n              527.1328125,\n              542.0530090332031\n            ],\n            [\n              129.09375,\n              542.0530090332031\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            495.0,\n            527.1328125,\n            542.0530090332031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/178/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So far, we have not taken advantage of the features Python provides to support objectoriented programming. These features are not strictly necessary; most of them provide alternative syntax for things we have already done. But in many cases, the alternative is more concise and more accurately conveys the structure of the program.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              549.52734375\n            ],\n            [\n              527.1328125,\n              549.52734375\n            ],\n            [\n              527.1328125,\n              596.9920196533203\n            ],\n            [\n              128.49609375,\n              596.9920196533203\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            549.52734375,\n            527.1328125,\n            596.9920196533203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/178/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, in the Time program, there is no obvious connection between the class definition and the function definitions that follow. With some examination, it is apparent that every function takes at least one Time object as an argument.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              605.21484375\n            ],\n            [\n              526.53515625,\n              605.21484375\n            ],\n            [\n              526.53515625,\n              639.7360229492188\n            ],\n            [\n              128.3466796875,\n              639.7360229492188\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            605.21484375,\n            526.53515625,\n            639.7360229492188\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/178/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This observation is the motivation for <b>methods</b>; a method is a function that is associated with a particular class. We have seen methods for strings, lists, dictionaries and tuples. In this chapter, we will define methods for user-defined types.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              648.0313110351562\n            ],\n            [\n              526.833984375,\n              648.0313110351562\n            ],\n            [\n              526.833984375,\n              682.4800262451172\n            ],\n            [\n              128.197265625,\n              682.4800262451172\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            648.0313110351562,\n            526.833984375,\n            682.4800262451172\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/178/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Methods are semantically the same as functions, but there are two syntactic differences:</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              690.6796875\n            ],\n            [\n              514.880859375,\n              690.6796875\n            ],\n            [\n              514.880859375,\n              700.8350219726562\n            ],\n            [\n              127.599609375,\n              700.8350219726562\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            690.6796875,\n            514.880859375,\n            700.8350219726562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/178/SectionHeader/1\",\n        \"4\": \"/page/178/SectionHeader/3\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/179/Page/205\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/179/PageHeader/0'></content-ref><content-ref src='/page/179/PageHeader/19'></content-ref><content-ref src='/page/179/ListGroup/204'></content-ref><content-ref src='/page/179/Text/3'></content-ref><content-ref src='/page/179/SectionHeader/4'></content-ref><content-ref src='/page/179/Text/5'></content-ref><content-ref src='/page/179/Code/6'></content-ref><content-ref src='/page/179/Code/7'></content-ref><content-ref src='/page/179/Text/8'></content-ref><content-ref src='/page/179/Code/9'></content-ref><content-ref src='/page/179/Text/10'></content-ref><content-ref src='/page/179/Code/11'></content-ref><content-ref src='/page/179/Text/12'></content-ref><content-ref src='/page/179/Code/13'></content-ref><content-ref src='/page/179/Text/14'></content-ref><content-ref src='/page/179/Text/15'></content-ref><content-ref src='/page/179/Code/16'></content-ref><content-ref src='/page/179/Text/17'></content-ref><content-ref src='/page/179/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/179/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.4248046875\n            ],\n            [\n              482.4034423828125,\n              60.4248046875\n            ],\n            [\n              482.4034423828125,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.4248046875,\n            482.4034423828125,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              61.1982421875\n            ],\n            [\n              101.97509765625,\n              61.1982421875\n            ],\n            [\n              101.97509765625,\n              70.4794921875\n            ],\n            [\n              85.68896484375,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            61.1982421875,\n            101.97509765625,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/ListGroup/204\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/179/ListItem/1'></content-ref><content-ref src='/page/179/ListItem/2'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              99.6591796875,\n              87.978515625\n            ],\n            [\n              482.4034729003906,\n              87.978515625\n            ],\n            [\n              482.4034729003906,\n              130.44189453125\n            ],\n            [\n              99.6591796875,\n              130.44189453125\n            ]\n          ],\n          \"bbox\": [\n            99.6591796875,\n            87.978515625,\n            482.4034729003906,\n            130.44189453125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/179/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Methods are defined inside a class definition in order to make the relationship between the class and the method explicit.</li>\",\n              \"polygon\": [\n                [\n                  100.28800201416016,\n                  87.978515625\n                ],\n                [\n                  482.4034729003906,\n                  87.978515625\n                ],\n                [\n                  482.4034729003906,\n                  110.99188232421875\n                ],\n                [\n                  100.28800201416016,\n                  110.99188232421875\n                ]\n              ],\n              \"bbox\": [\n                100.28800201416016,\n                87.978515625,\n                482.4034729003906,\n                110.99188232421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"4\": \"/page/178/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/179/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> The syntax for invoking a method is different from the syntax for calling a function.</li>\",\n              \"polygon\": [\n                [\n                  99.6591796875,\n                  119.3994140625\n                ],\n                [\n                  478.6476135253906,\n                  119.3994140625\n                ],\n                [\n                  478.6476135253906,\n                  130.44189453125\n                ],\n                [\n                  99.6591796875,\n                  130.44189453125\n                ]\n              ],\n              \"bbox\": [\n                99.6591796875,\n                119.3994140625,\n                478.6476135253906,\n                130.44189453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"4\": \"/page/178/SectionHeader/3\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/179/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In the next few sections, we will take the functions from the previous two chapters and transform them into methods. This transformation is purely mechanical; you can do it simply by following a sequence of steps. If you are comfortable converting from one form to another, you will be able to choose the best form for whatever you are doing.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              141.732421875\n            ],\n            [\n              482.4034118652344,\n              141.732421875\n            ],\n            [\n              482.4034118652344,\n              188.89288330078125\n            ],\n            [\n              85.166015625,\n              188.89288330078125\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            141.732421875,\n            482.4034118652344,\n            188.89288330078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"4\": \"/page/178/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-179-0\\\"></span><b>17.2 Printing objects</b></h3>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              216.17578125\n            ],\n            [\n              229.83331298828125,\n              216.17578125\n            ],\n            [\n              229.83331298828125,\n              231.40789794921875\n            ],\n            [\n              85.46484375,\n              231.40789794921875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            216.17578125,\n            229.83331298828125,\n            231.40789794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In Chapter <a href=\\\"#page-172-0\\\">16,</a> we defined a class named Time and in Exercise <a href=\\\"#page-172-3\\\">16.1,</a> you wrote a function named print_time:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              242.279296875\n            ],\n            [\n              482.90625,\n              242.279296875\n            ],\n            [\n              482.90625,\n              265.07183837890625\n            ],\n            [\n              85.3154296875,\n              265.07183837890625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            242.279296875,\n            482.90625,\n            265.07183837890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class Time(object):\\n    \\\"\\\"\\\"Represents the time of day.\\\"\\\"\\\"</pre>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              270.28765869140625\n            ],\n            [\n              283.88671875,\n              270.28765869140625\n            ],\n            [\n              283.88671875,\n              292.4442443847656\n            ],\n            [\n              86.4000015258789,\n              292.4442443847656\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            270.28765869140625,\n            283.88671875,\n            292.4442443847656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def print_time(time):\\n    print '%.2d:%.2d:%.2d' % (time.hour, time.minute, time.second)</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              305.314453125\n            ],\n            [\n              435.69140625,\n              305.314453125\n            ],\n            [\n              435.69140625,\n              329.0272521972656\n            ],\n            [\n              85.9130859375,\n              329.0272521972656\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            305.314453125,\n            435.69140625,\n            329.0272521972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To call this function, you have to pass a Time object as an argument:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              334.3926696777344\n            ],\n            [\n              383.4679870605469,\n              334.3926696777344\n            ],\n            [\n              383.4679870605469,\n              344.50482177734375\n            ],\n            [\n              85.763671875,\n              344.50482177734375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            334.3926696777344,\n            383.4679870605469,\n            344.50482177734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; start = Time()\\n&gt;&gt;&gt; start.hour = 9\\n&gt;&gt;&gt; start.minute = 45\\n&gt;&gt;&gt; start.second = 00\\n&gt;&gt;&gt; print_time(start)\\n09:45:00</pre>\",\n          \"polygon\": [\n            [\n              86.0625,\n              349.7206726074219\n            ],\n            [\n              197.3759765625,\n              349.7206726074219\n            ],\n            [\n              197.3759765625,\n              420.6552734375\n            ],\n            [\n              86.0625,\n              420.6552734375\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            349.7206726074219,\n            197.3759765625,\n            420.6552734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To make print_time a method, all we have to do is move the function definition inside the class definition. Notice the change in indentation.</p>\",\n          \"polygon\": [\n            [\n              86.40001678466797,\n              425.77734375\n            ],\n            [\n              482.4044189453125,\n              425.77734375\n            ],\n            [\n              482.4044189453125,\n              448.32684326171875\n            ],\n            [\n              86.40001678466797,\n              448.32684326171875\n            ]\n          ],\n          \"bbox\": [\n            86.40001678466797,\n            425.77734375,\n            482.4044189453125,\n            448.32684326171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class Time(object):\\n    def print_time(time):\\n        print '%.2d:%.2d:%.2d' % (time.hour, time.minute, time.second)</pre>\",\n          \"polygon\": [\n            [\n              86.40001678466797,\n              453.54168701171875\n            ],\n            [\n              459.59765625,\n              453.54168701171875\n            ],\n            [\n              459.59765625,\n              489.19921875\n            ],\n            [\n              86.40001678466797,\n              489.19921875\n            ]\n          ],\n          \"bbox\": [\n            86.40001678466797,\n            453.54168701171875,\n            459.59765625,\n            489.19921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now there are two ways to call print_time. The first (and less common) way is to use function syntax:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              492.29296875\n            ],\n            [\n              482.39813232421875,\n              492.29296875\n            ],\n            [\n              482.39813232421875,\n              515.5648498535156\n            ],\n            [\n              86.2119140625,\n              515.5648498535156\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            492.29296875,\n            482.39813232421875,\n            515.5648498535156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; Time.print_time(start)\\n09:45:00</pre>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              519.75\n            ],\n            [\n              226.51171875,\n              519.75\n            ],\n            [\n              226.51171875,\n              542.9373016357422\n            ],\n            [\n              85.98779296875,\n              542.9373016357422\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            519.75,\n            226.51171875,\n            542.9373016357422\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this use of dot notation, Time is the name of the class, and print_time is the name of the method. start is passed as a parameter.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              548.3027038574219\n            ],\n            [\n              482.4007263183594,\n              548.3027038574219\n            ],\n            [\n              482.4007263183594,\n              570.6088562011719\n            ],\n            [\n              85.9130859375,\n              570.6088562011719\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            548.3027038574219,\n            482.4007263183594,\n            570.6088562011719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The second (and more concise) way is to use method syntax:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              579.69140625\n            ],\n            [\n              352.6171875,\n              579.69140625\n            ],\n            [\n              352.6171875,\n              589.9088592529297\n            ],\n            [\n              85.9130859375,\n              589.9088592529297\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            579.69140625,\n            352.6171875,\n            589.9088592529297\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; start.print_time()\\n09:45:00</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              594.38671875\n            ],\n            [\n              201.4779510498047,\n              594.38671875\n            ],\n            [\n              201.4779510498047,\n              617.2813110351562\n            ],\n            [\n              85.763671875,\n              617.2813110351562\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            594.38671875,\n            201.4779510498047,\n            617.2813110351562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this use of dot notation, print_time is the name of the method (again), and start is the object the method is invoked on, which is called the <b>subject</b>. Just as the subject of a sentence is what the sentence is about, the subject of a method invocation is what the method is about.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              622.6171875\n            ],\n            [\n              482.90625,\n              622.6171875\n            ],\n            [\n              482.90625,\n              669.3418731689453\n            ],\n            [\n              85.6142578125,\n              669.3418731689453\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            622.6171875,\n            482.90625,\n            669.3418731689453\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/179/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Inside the method, the subject is assigned to the first parameter, so in this case start is assigned to time.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              678.3046875\n            ],\n            [\n              482.4002685546875,\n              678.3046875\n            ],\n            [\n              482.4002685546875,\n              700.8348770141602\n            ],\n            [\n              85.9130859375,\n              700.8348770141602\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            678.3046875,\n            482.4002685546875,\n            700.8348770141602\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/178/SectionHeader/1\",\n        \"3\": \"/page/179/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/180/Page/205\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/180/PageHeader/0'></content-ref><content-ref src='/page/180/PageHeader/19'></content-ref><content-ref src='/page/180/Text/1'></content-ref><content-ref src='/page/180/Code/2'></content-ref><content-ref src='/page/180/Text/3'></content-ref><content-ref src='/page/180/ListGroup/203'></content-ref><content-ref src='/page/180/Text/6'></content-ref><content-ref src='/page/180/Text/7'></content-ref><content-ref src='/page/180/SectionHeader/8'></content-ref><content-ref src='/page/180/Text/9'></content-ref><content-ref src='/page/180/Code/10'></content-ref><content-ref src='/page/180/Code/11'></content-ref><content-ref src='/page/180/Text/12'></content-ref><content-ref src='/page/180/Text/13'></content-ref><content-ref src='/page/180/Code/14'></content-ref><content-ref src='/page/180/Text/15'></content-ref><content-ref src='/page/180/Text/16'></content-ref><content-ref src='/page/180/Code/17'></content-ref><content-ref src='/page/180/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/180/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.49609375,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.49609375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            60.95654296875,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.80078125,\n              60.71484375\n            ],\n            [\n              525.33984375,\n              60.71484375\n            ],\n            [\n              525.33984375,\n              69.99609375\n            ],\n            [\n              509.80078125,\n              69.99609375\n            ]\n          ],\n          \"bbox\": [\n            509.80078125,\n            60.71484375,\n            525.33984375,\n            69.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">By convention, the first parameter of a method is called self, so it would be more common to write print_time like this:</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              88.22021484375\n            ],\n            [\n              525.6015014648438,\n              88.22021484375\n            ],\n            [\n              525.6015014648438,\n              110.99188232421875\n            ],\n            [\n              128.0478515625,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            88.22021484375,\n            525.6015014648438,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class Time(object):\\n    def print_time(self):\\n        print '%.2d:%.2d:%.2d' % (self.hour, self.minute, self.second)</pre>\",\n          \"polygon\": [\n            [\n              129.60006713867188,\n              117.315673828125\n            ],\n            [\n              495.69622802734375,\n              117.315673828125\n            ],\n            [\n              495.69622802734375,\n              151.787109375\n            ],\n            [\n              129.60006713867188,\n              151.787109375\n            ]\n          ],\n          \"bbox\": [\n            129.60006713867188,\n            117.315673828125,\n            495.69622802734375,\n            151.787109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The reason for this convention is an implicit metaphor:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              157.6845703125\n            ],\n            [\n              371.14453125,\n              157.6845703125\n            ],\n            [\n              371.14453125,\n              168.2518310546875\n            ],\n            [\n              128.6455078125,\n              168.2518310546875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            157.6845703125,\n            371.14453125,\n            168.2518310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/ListGroup/203\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/180/ListItem/4'></content-ref><content-ref src='/page/180/ListItem/5'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.541015625,\n              181.7578125\n            ],\n            [\n              525.638671875,\n              181.7578125\n            ],\n            [\n              525.638671875,\n              250.09393310546875\n            ],\n            [\n              142.541015625,\n              250.09393310546875\n            ]\n          ],\n          \"bbox\": [\n            142.541015625,\n            181.7578125,\n            525.638671875,\n            250.09393310546875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/180/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> The syntax for a function call, print_time(start), suggests that the function is the active agent. It says something like, \\\"Hey print_time! Here's an object for you to print.\\\"</li>\",\n              \"polygon\": [\n                [\n                  142.541015625,\n                  181.7578125\n                ],\n                [\n                  525.638671875,\n                  181.7578125\n                ],\n                [\n                  525.638671875,\n                  217.3359375\n                ],\n                [\n                  142.541015625,\n                  217.3359375\n                ]\n              ],\n              \"bbox\": [\n                142.541015625,\n                181.7578125,\n                525.638671875,\n                217.3359375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"3\": \"/page/179/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/180/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> In object-oriented programming, the objects are the active agents. A method invocation like start.print_time() says \\\"Hey start! Please print yourself.\\\"</li>\",\n              \"polygon\": [\n                [\n                  142.541015625,\n                  226.6171875\n                ],\n                [\n                  525.6036987304688,\n                  226.6171875\n                ],\n                [\n                  525.6036987304688,\n                  250.09393310546875\n                ],\n                [\n                  142.541015625,\n                  250.09393310546875\n                ]\n              ],\n              \"bbox\": [\n                142.541015625,\n                226.6171875,\n                525.6036987304688,\n                250.09393310546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"3\": \"/page/179/SectionHeader/4\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/180/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This change in perspective might be more polite, but it is not obvious that it is useful. In the examples we have seen so far, it may not be. But sometimes shifting responsibility from the functions onto the objects makes it possible to write more versatile functions, and makes it easier to maintain and reuse code.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              264.708984375\n            ],\n            [\n              525.603515625,\n              264.708984375\n            ],\n            [\n              525.603515625,\n              311.3119201660156\n            ],\n            [\n              128.6455078125,\n              311.3119201660156\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            264.708984375,\n            525.603515625,\n            311.3119201660156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-180-1\\\"></span><b>Exercise 17.1.</b> <i>Rewrite</i> time_to_int <i>(from Section </i><i><a href=\\\"#page-175-0\\\">16.4)</a></i><i> as a method. It is probably not appro</i><i>priate to rewrite</i> int_to_time <i>as a method; what object you would invoke it on?</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              313.37164306640625\n            ],\n            [\n              525.6038818359375,\n              313.37164306640625\n            ],\n            [\n              525.6038818359375,\n              335.5513610839844\n            ],\n            [\n              128.6455078125,\n              335.5513610839844\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            313.37164306640625,\n            525.6038818359375,\n            335.5513610839844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-180-0\\\"></span><b>17.3 Another example</b></h4>\",\n          \"polygon\": [\n            [\n              127.52490234375,\n              365.8359375\n            ],\n            [\n              282.09375,\n              365.8359375\n            ],\n            [\n              282.09375,\n              380.197998046875\n            ],\n            [\n              127.52490234375,\n              380.197998046875\n            ]\n          ],\n          \"bbox\": [\n            127.52490234375,\n            365.8359375,\n            282.09375,\n            380.197998046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's a version of increment (from Section <a href=\\\"#page-174-0\\\">16.3)</a> rewritten as a method:</p>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              391.939453125\n            ],\n            [\n              449.4375,\n              391.939453125\n            ],\n            [\n              449.4375,\n              402.8829345703125\n            ],\n            [\n              127.4501953125,\n              402.8829345703125\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            391.939453125,\n            449.4375,\n            402.8829345703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># inside class Time:</pre>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              409.2057800292969\n            ],\n            [\n              234.2073974609375,\n              409.2057800292969\n            ],\n            [\n              234.2073974609375,\n              419.1683654785156\n            ],\n            [\n              129.2431640625,\n              419.1683654785156\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            409.2057800292969,\n            234.2073974609375,\n            419.1683654785156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def increment(self, seconds):\\n    seconds += self.time_to_int()\\n    return int_to_time(seconds)</pre>\",\n          \"polygon\": [\n            [\n              148.0693359375,\n              433.51171875\n            ],\n            [\n              323.9296875,\n              433.51171875\n            ],\n            [\n              323.9296875,\n              467.9463806152344\n            ],\n            [\n              148.0693359375,\n              467.9463806152344\n            ]\n          ],\n          \"bbox\": [\n            148.0693359375,\n            433.51171875,\n            323.9296875,\n            467.9463806152344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This version assumes that time_to_int is written as a method, as in Exercise <a href=\\\"#page-180-1\\\">17.1.</a> Also, note that it is a pure function, not a modifier.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              474.4187927246094\n            ],\n            [\n              525.638671875,\n              474.4187927246094\n            ],\n            [\n              525.638671875,\n              496.7249450683594\n            ],\n            [\n              128.794921875,\n              496.7249450683594\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            474.4187927246094,\n            525.638671875,\n            496.7249450683594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's how you would invoke increment:</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              507.0198059082031\n            ],\n            [\n              315.539794921875,\n              507.0198059082031\n            ],\n            [\n              315.539794921875,\n              517.1319580078125\n            ],\n            [\n              127.599609375,\n              517.1319580078125\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            507.0198059082031,\n            315.539794921875,\n            517.1319580078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; start.print_time()\\n09:45:00\\n&gt;&gt;&gt; end = start.increment(1337)\\n&gt;&gt;&gt; end.print_time()\\n10:07:17</pre>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              523.455810546875\n            ],\n            [\n              291.7513732910156,\n              523.455810546875\n            ],\n            [\n              291.7513732910156,\n              582.1954193115234\n            ],\n            [\n              128.42138671875,\n              582.1954193115234\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            523.455810546875,\n            291.7513732910156,\n            582.1954193115234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The subject, start, gets assigned to the first parameter, self. The argument, 1337, gets assigned to the second parameter, seconds.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              588.6678161621094\n            ],\n            [\n              525.6004638671875,\n              588.6678161621094\n            ],\n            [\n              525.6004638671875,\n              611.015625\n            ],\n            [\n              128.3466796875,\n              611.015625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            588.6678161621094,\n            525.6004638671875,\n            611.015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This mechanism can be confusing, especially if you make an error. For example, if you invoke increment with two arguments, you get:</p>\",\n          \"polygon\": [\n            [\n              127.30078125,\n              620.68359375\n            ],\n            [\n              525.6035766601562,\n              620.68359375\n            ],\n            [\n              525.6035766601562,\n              643.5759735107422\n            ],\n            [\n              127.30078125,\n              643.5759735107422\n            ]\n          ],\n          \"bbox\": [\n            127.30078125,\n            620.68359375,\n            525.6035766601562,\n            643.5759735107422\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Code/17\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; end = start.increment(1337, 460)\\nTypeError: increment() takes exactly 2 arguments (3 given)</pre>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              649.8988189697266\n            ],\n            [\n              432.98126220703125,\n              649.8988189697266\n            ],\n            [\n              432.98126220703125,\n              672.0564117431641\n            ],\n            [\n              127.97314453125,\n              672.0564117431641\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            649.8988189697266,\n            432.98126220703125,\n            672.0564117431641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/180/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The error message is initially confusing, because there are only two arguments in parentheses. But the subject is also considered an argument, so all together that's three.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              677.91796875\n            ],\n            [\n              525.6036376953125,\n              677.91796875\n            ],\n            [\n              525.6036376953125,\n              700.8349761962891\n            ],\n            [\n              127.8984375,\n              700.8349761962891\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            677.91796875,\n            525.6036376953125,\n            700.8349761962891\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/178/SectionHeader/1\",\n        \"3\": \"/page/179/SectionHeader/4\",\n        \"4\": \"/page/180/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/181/Page/208\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/181/PageHeader/0'></content-ref><content-ref src='/page/181/PageHeader/22'></content-ref><content-ref src='/page/181/SectionHeader/1'></content-ref><content-ref src='/page/181/Text/2'></content-ref><content-ref src='/page/181/Code/3'></content-ref><content-ref src='/page/181/Text/4'></content-ref><content-ref src='/page/181/Text/5'></content-ref><content-ref src='/page/181/Text/6'></content-ref><content-ref src='/page/181/SectionHeader/7'></content-ref><content-ref src='/page/181/Text/23'></content-ref><content-ref src='/page/181/Text/8'></content-ref><content-ref src='/page/181/Code/9'></content-ref><content-ref src='/page/181/Code/10'></content-ref><content-ref src='/page/181/Text/11'></content-ref><content-ref src='/page/181/Code/12'></content-ref><content-ref src='/page/181/Text/13'></content-ref><content-ref src='/page/181/Text/14'></content-ref><content-ref src='/page/181/Code/15'></content-ref><content-ref src='/page/181/Text/16'></content-ref><content-ref src='/page/181/Code/17'></content-ref><content-ref src='/page/181/Text/18'></content-ref><content-ref src='/page/181/Code/19'></content-ref><content-ref src='/page/181/Text/20'></content-ref><content-ref src='/page/181/Text/21'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/181/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.18310546875\n            ],\n            [\n              482.4034423828125,\n              60.18310546875\n            ],\n            [\n              482.4034423828125,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.18310546875,\n            482.4034423828125,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/PageHeader/22\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              60.134765625\n            ],\n            [\n              101.97509765625,\n              60.134765625\n            ],\n            [\n              101.97509765625,\n              70.576171875\n            ],\n            [\n              85.39013671875,\n              70.576171875\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            60.134765625,\n            101.97509765625,\n            70.576171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/180/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-181-0\\\"></span><b>17.4 A more complicated example</b></h4>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              85.70654296875\n            ],\n            [\n              317.35546875,\n              85.70654296875\n            ],\n            [\n              317.35546875,\n              100.29998779296875\n            ],\n            [\n              85.3154296875,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            85.70654296875,\n            317.35546875,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/181/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">is_after (from Exercise <a href=\\\"#page-172-4\\\">16.2)</a> is slightly more complicated because it takes two Time objects as parameters. In this case it is conventional to name the first parameter self and the second parameter other:</p>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              110.021484375\n            ],\n            [\n              483.205078125,\n              110.021484375\n            ],\n            [\n              483.205078125,\n              145.38592529296875\n            ],\n            [\n              84.8671875,\n              145.38592529296875\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            110.021484375,\n            483.205078125,\n            145.38592529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/181/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def is_after(self, other):\\n    return self.time_to_int() &gt; other.time_to_int()</pre>\",\n          \"polygon\": [\n            [\n              100.705078125,\n              161.1650390625\n            ],\n            [\n              375.328125,\n              161.1650390625\n            ],\n            [\n              375.328125,\n              196.374267578125\n            ],\n            [\n              100.705078125,\n              196.374267578125\n            ]\n          ],\n          \"bbox\": [\n            100.705078125,\n            161.1650390625,\n            375.328125,\n            196.374267578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/181/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To use this method, you have to invoke it on one object and pass the other as an argument: &gt;&gt;&gt; end.is_after(start)</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              199.546875\n            ],\n            [\n              482.4034423828125,\n              199.546875\n            ],\n            [\n              482.4034423828125,\n              226.6171875\n            ],\n            [\n              85.9130859375,\n              226.6171875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            199.546875,\n            482.4034423828125,\n            226.6171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/181/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">True</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              226.6171875\n            ],\n            [\n              107.32149505615234,\n              226.6171875\n            ],\n            [\n              107.32149505615234,\n              237.67822265625\n            ],\n            [\n              85.763671875,\n              237.67822265625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            226.6171875,\n            107.32149505615234,\n            237.67822265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/181/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One nice thing about this syntax is that it almost reads like English: \\\"end is after start?\\\"</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              241.505859375\n            ],\n            [\n              470.5677795410156,\n              241.505859375\n            ],\n            [\n              470.5677795410156,\n              252.3828125\n            ],\n            [\n              86.2119140625,\n              252.3828125\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            241.505859375,\n            470.5677795410156,\n            252.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/179/SectionHeader/4\",\n            \"4\": \"/page/181/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-181-1\\\"></span><b>17.5 The init method</b></h3>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              278.4375\n            ],\n            [\n              231.84181213378906,\n              278.4375\n            ],\n            [\n              231.84181213378906,\n              293.90625\n            ],\n            [\n              85.763671875,\n              293.90625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            278.4375,\n            231.84181213378906,\n            293.90625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/23\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"># inside class Time:</p>\",\n          \"polygon\": [\n            [\n              86.4000244140625,\n              149.8287353515625\n            ],\n            [\n              191.00730895996094,\n              149.8287353515625\n            ],\n            [\n              191.00730895996094,\n              159.79132080078125\n            ],\n            [\n              86.4000244140625,\n              159.79132080078125\n            ]\n          ],\n          \"bbox\": [\n            86.4000244140625,\n            149.8287353515625,\n            191.00730895996094,\n            159.79132080078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The init method (short for \\\"initialization\\\") is a special method that gets invoked when an object is instantiated. Its full name is __init__ (two underscore characters, followed by init, and then two more underscores). An init method for the Time class might look like this:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              303.57421875\n            ],\n            [\n              482.4036865234375,\n              303.57421875\n            ],\n            [\n              482.4036865234375,\n              351.0957946777344\n            ],\n            [\n              86.2119140625,\n              351.0957946777344\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            303.57421875,\n            482.4036865234375,\n            351.0957946777344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># inside class Time:</pre>\",\n          \"polygon\": [\n            [\n              86.4000244140625,\n              354.234375\n            ],\n            [\n              200.8125,\n              354.234375\n            ],\n            [\n              200.8125,\n              365.501220703125\n            ],\n            [\n              86.4000244140625,\n              365.501220703125\n            ]\n          ],\n          \"bbox\": [\n            86.4000244140625,\n            354.234375,\n            200.8125,\n            365.501220703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def __init__(self, hour=0, minute=0, second=0):\\n    self.hour = hour\\n    self.minute = minute\\n    self.second = second</pre>\",\n          \"polygon\": [\n            [\n              104.51513671875,\n              375.890625\n            ],\n            [\n              353.8125,\n              375.890625\n            ],\n            [\n              353.8125,\n              426.47222900390625\n            ],\n            [\n              104.51513671875,\n              426.47222900390625\n            ]\n          ],\n          \"bbox\": [\n            104.51513671875,\n            375.890625,\n            353.8125,\n            426.47222900390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is common for the parameters of __init__ to have the same names as the attributes. The statement</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              430.03125\n            ],\n            [\n              482.404052734375,\n              430.03125\n            ],\n            [\n              482.404052734375,\n              453.37078857421875\n            ],\n            [\n              85.9130859375,\n              453.37078857421875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            430.03125,\n            482.404052734375,\n            453.37078857421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>self.hour = hour</pre>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              457.48828125\n            ],\n            [\n              212.6162109375,\n              457.48828125\n            ],\n            [\n              212.6162109375,\n              467.7762145996094\n            ],\n            [\n              127.4501953125,\n              467.7762145996094\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            457.48828125,\n            212.6162109375,\n            467.7762145996094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">stores the value of the parameter hour as an attribute of self.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              472.3686218261719\n            ],\n            [\n              356.46368408203125,\n              472.3686218261719\n            ],\n            [\n              356.46368408203125,\n              482.625\n            ],\n            [\n              85.9130859375,\n              482.625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            472.3686218261719,\n            356.46368408203125,\n            482.625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The parameters are optional, so if you call Time with no arguments, you get the default values.</p>\",\n          \"polygon\": [\n            [\n              86.4000244140625,\n              489.19921875\n            ],\n            [\n              482.90625,\n              489.19921875\n            ],\n            [\n              482.90625,\n              513.2017822265625\n            ],\n            [\n              86.4000244140625,\n              513.2017822265625\n            ]\n          ],\n          \"bbox\": [\n            86.4000244140625,\n            489.19921875,\n            482.90625,\n            513.2017822265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; time = Time()\\n&gt;&gt;&gt; time.print_time()\\n00:00:00</pre>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              515.49609375\n            ],\n            [\n              196.2476348876953,\n              515.49609375\n            ],\n            [\n              196.2476348876953,\n              551.9952239990234\n            ],\n            [\n              86.13720703125,\n              551.9952239990234\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            515.49609375,\n            196.2476348876953,\n            551.9952239990234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you provide one argument, it overrides hour:</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              554.94140625\n            ],\n            [\n              295.541015625,\n              554.94140625\n            ],\n            [\n              295.541015625,\n              566.6997680664062\n            ],\n            [\n              85.68896484375,\n              566.6997680664062\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            554.94140625,\n            295.541015625,\n            566.6997680664062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Code/17\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; time = Time (9)\\n&gt;&gt;&gt; time.print_time()\\n09:00:00</pre>\",\n          \"polygon\": [\n            [\n              86.0625,\n              567.703125\n            ],\n            [\n              196.2476043701172,\n              567.703125\n            ],\n            [\n              196.2476043701172,\n              607.921875\n            ],\n            [\n              86.0625,\n              607.921875\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            567.703125,\n            196.2476043701172,\n            607.921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you provide two arguments, they override hour and minute.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              609.08203125\n            ],\n            [\n              362.13067626953125,\n              609.08203125\n            ],\n            [\n              362.13067626953125,\n              620.1987609863281\n            ],\n            [\n              86.2119140625,\n              620.1987609863281\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            609.08203125,\n            362.13067626953125,\n            620.1987609863281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Code/19\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; time = Time(9, 45)\\n&gt;&gt;&gt; time.print_time()\\n09:45:00</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              624.55078125\n            ],\n            [\n              201.46800231933594,\n              624.55078125\n            ],\n            [\n              201.46800231933594,\n              658.9922027587891\n            ],\n            [\n              85.3154296875,\n              658.9922027587891\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            624.55078125,\n            201.46800231933594,\n            658.9922027587891\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/20\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And if you provide three arguments, they override all three default values.</p>\",\n          \"polygon\": [\n            [\n              86.39999389648438,\n              662.0625\n            ],\n            [\n              416.56640625,\n              662.0625\n            ],\n            [\n              416.56640625,\n              673.6967620849609\n            ],\n            [\n              86.39999389648438,\n              673.6967620849609\n            ]\n          ],\n          \"bbox\": [\n            86.39999389648438,\n            662.0625,\n            416.56640625,\n            673.6967620849609\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/181/Text/21\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 17.2.</b> <i>Write an init method for the</i> Point <i>class that takes</i> x <i>and</i> y <i>as optional parameters</i> <i>and assigns them to the corresponding attributes.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              675.2109375\n            ],\n            [\n              482.90625,\n              675.2109375\n            ],\n            [\n              482.90625,\n              697.9130630493164\n            ],\n            [\n              85.6142578125,\n              697.9130630493164\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            675.2109375,\n            482.90625,\n            697.9130630493164\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/178/SectionHeader/1\",\n        \"3\": \"/page/181/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/182/Page/206\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/182/PageHeader/0'></content-ref><content-ref src='/page/182/PageHeader/18'></content-ref><content-ref src='/page/182/SectionHeader/1'></content-ref><content-ref src='/page/182/Text/2'></content-ref><content-ref src='/page/182/Text/3'></content-ref><content-ref src='/page/182/Code/4'></content-ref><content-ref src='/page/182/Text/5'></content-ref><content-ref src='/page/182/Code/6'></content-ref><content-ref src='/page/182/Text/7'></content-ref><content-ref src='/page/182/Text/8'></content-ref><content-ref src='/page/182/SectionHeader/9'></content-ref><content-ref src='/page/182/Text/10'></content-ref><content-ref src='/page/182/Text/11'></content-ref><content-ref src='/page/182/Code/12'></content-ref><content-ref src='/page/182/Text/13'></content-ref><content-ref src='/page/182/Code/14'></content-ref><content-ref src='/page/182/Text/15'></content-ref><content-ref src='/page/182/Text/16'></content-ref><content-ref src='/page/182/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/182/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.49609375,\n              61.11871337890625\n            ],\n            [\n              525.5947875976562,\n              61.11871337890625\n            ],\n            [\n              525.5947875976562,\n              71.13372802734375\n            ],\n            [\n              128.49609375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            61.11871337890625,\n            525.5947875976562,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              61.294921875\n            ],\n            [\n              525.638671875,\n              61.294921875\n            ],\n            [\n              525.638671875,\n              70.3828125\n            ],\n            [\n              510.099609375,\n              70.3828125\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            61.294921875,\n            525.638671875,\n            70.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"3\": \"/page/181/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-182-0\\\"></span><b>17.6 The</b> __str__ <b>method</b></h2>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              83.87713623046875\n            ],\n            [\n              302.9117126464844,\n              83.87713623046875\n            ],\n            [\n              302.9117126464844,\n              100.29998779296875\n            ],\n            [\n              128.6455078125,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            83.87713623046875,\n            302.9117126464844,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">__str__ is a special method, like __init__, that is supposed to return a string representation of an object.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              116.208984375\n            ],\n            [\n              525.595703125,\n              116.208984375\n            ],\n            [\n              525.595703125,\n              139.09197998046875\n            ],\n            [\n              128.9443359375,\n              139.09197998046875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            116.208984375,\n            525.595703125,\n            139.09197998046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, here is a str method for Time objects:</p>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              152.0771484375\n            ],\n            [\n              356.203125,\n              152.0771484375\n            ],\n            [\n              356.203125,\n              162.29296875\n            ],\n            [\n              128.72021484375,\n              162.29296875\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            152.0771484375,\n            356.203125,\n            162.29296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># inside class Time:\\n    def __str__(self):\\n        return '%.2d:%.2d:%.2d' % (self.hour, self.minute, self.second)</pre>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              171.4097900390625\n            ],\n            [\n              501.134765625,\n              171.4097900390625\n            ],\n            [\n              501.134765625,\n              217.955322265625\n            ],\n            [\n              129.60003662109375,\n              217.955322265625\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            171.4097900390625,\n            501.134765625,\n            217.955322265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you print an object, Python invokes the str method:</p>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              227.22174072265625\n            ],\n            [\n              392.958984375,\n              227.22174072265625\n            ],\n            [\n              392.958984375,\n              237.33392333984375\n            ],\n            [\n              128.12255859375,\n              237.33392333984375\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            227.22174072265625,\n            392.958984375,\n            237.33392333984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; time = Time(9, 45)\\n&gt;&gt;&gt; print time\\n09:45:00</pre>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              246.146484375\n            ],\n            [\n              244.6680908203125,\n              246.146484375\n            ],\n            [\n              244.6680908203125,\n              280.80224609375\n            ],\n            [\n              129.2431640625,\n              280.80224609375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            246.146484375,\n            244.6680908203125,\n            280.80224609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When I write a new class, I almost always start by writing __init__, which makes it easier to instantiate objects, and __str__, which is useful for debugging.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              290.0696716308594\n            ],\n            [\n              525.6041259765625,\n              290.0696716308594\n            ],\n            [\n              525.6041259765625,\n              318.076171875\n            ],\n            [\n              129.09375,\n              318.076171875\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            290.0696716308594,\n            525.6041259765625,\n            318.076171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 17.3.</b> <i>Write a</i> str <i>method for the</i> Point <i>class. Create a Point object and print it.</i></p>\",\n          \"polygon\": [\n            [\n              129.60008239746094,\n              314.4345397949219\n            ],\n            [\n              492.3472900390625,\n              314.4345397949219\n            ],\n            [\n              492.3472900390625,\n              324.47271728515625\n            ],\n            [\n              129.60008239746094,\n              324.47271728515625\n            ]\n          ],\n          \"bbox\": [\n            129.60008239746094,\n            314.4345397949219,\n            492.3472900390625,\n            324.47271728515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-182-1\\\"></span><b>17.7 Operator overloading</b></h4>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              363.1026611328125\n            ],\n            [\n              311.080078125,\n              363.1026611328125\n            ],\n            [\n              311.080078125,\n              377.4488830566406\n            ],\n            [\n              127.8984375,\n              377.4488830566406\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            363.1026611328125,\n            311.080078125,\n            377.4488830566406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/182/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">By defining other special methods, you can specify the behavior of operators on userdefined types. For example, if you define a method named __add__ for the Time class, you can use the + operator on Time objects.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              393.873046875\n            ],\n            [\n              525.603515625,\n              393.873046875\n            ],\n            [\n              525.603515625,\n              428.434814453125\n            ],\n            [\n              128.3466796875,\n              428.434814453125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            393.873046875,\n            525.603515625,\n            428.434814453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/182/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is what the definition might look like:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              441.24609375\n            ],\n            [\n              319.0688171386719,\n              441.24609375\n            ],\n            [\n              319.0688171386719,\n              451.63482666015625\n            ],\n            [\n              128.3466796875,\n              451.63482666015625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            441.24609375,\n            319.0688171386719,\n            451.63482666015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/182/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># inside class Time:\\n    def __add__(self, other):\\n        seconds = self.time_to_int() + other.time_to_int()\\n        return int_to_time(seconds)</pre>\",\n          \"polygon\": [\n            [\n              129.60012817382812,\n              460.752685546875\n            ],\n            [\n              432.9712219238281,\n              460.752685546875\n            ],\n            [\n              432.9712219238281,\n              519.4922790527344\n            ],\n            [\n              129.60012817382812,\n              519.4922790527344\n            ]\n          ],\n          \"bbox\": [\n            129.60012817382812,\n            460.752685546875,\n            432.9712219238281,\n            519.4922790527344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/182/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And here is how you could use it:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              528.64453125\n            ],\n            [\n              278.5078125,\n              528.64453125\n            ],\n            [\n              278.5078125,\n              538.870849609375\n            ],\n            [\n              129.09375,\n              538.870849609375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            528.64453125,\n            278.5078125,\n            538.870849609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/182/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; start = Time(9, 45)\\n&gt;&gt;&gt; duration = Time(1, 35)\\n&gt;&gt;&gt; print start + duration\\n11:20:00</pre>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              547.9886932373047\n            ],\n            [\n              265.8076171875,\n              547.9886932373047\n            ],\n            [\n              265.8076171875,\n              594.5343017578125\n            ],\n            [\n              128.0478515625,\n              594.5343017578125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            547.9886932373047,\n            265.8076171875,\n            594.5343017578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/182/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you apply the + operator to Time objects, Python invokes __add__. When you print the result, Python invokes __str__. So there is quite a lot happening behind the scenes!</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              603.8007049560547\n            ],\n            [\n              526.53515625,\n              603.8007049560547\n            ],\n            [\n              526.53515625,\n              626.1078643798828\n            ],\n            [\n              128.3466796875,\n              626.1078643798828\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            603.8007049560547,\n            526.53515625,\n            626.1078643798828\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/182/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Changing the behavior of an operator so that it works with user-defined types is called <b>op</b><b>erator overloading</b>. For every operator in Python there is a corresponding special method, like __add__. For more details, see <a href=\\\"http://docs.python.org/2/reference/datamodel.html#specialnames\\\">http://docs.python.org/2/reference/datamodel.</a> <a href=\\\"http://docs.python.org/2/reference/datamodel.html#specialnames\\\">html#specialnames</a>.</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              639.2481536865234\n            ],\n            [\n              525.6763916015625,\n              639.2481536865234\n            ],\n            [\n              525.6763916015625,\n              686.0390625\n            ],\n            [\n              127.7490234375,\n              686.0390625\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            639.2481536865234,\n            525.6763916015625,\n            686.0390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/182/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/182/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 17.4.</b> <i>Write an</i> add <i>method for the Point class.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              687.9505767822266\n            ],\n            [\n              356.3946228027344,\n              687.9505767822266\n            ],\n            [\n              356.3946228027344,\n              697.9887619018555\n            ],\n            [\n              128.6455078125,\n              697.9887619018555\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            687.9505767822266,\n            356.3946228027344,\n            697.9887619018555\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/182/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/178/SectionHeader/1\",\n        \"2\": \"/page/182/SectionHeader/1\",\n        \"4\": \"/page/182/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/183/Page/197\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/183/PageHeader/0'></content-ref><content-ref src='/page/183/PageHeader/16'></content-ref><content-ref src='/page/183/SectionHeader/1'></content-ref><content-ref src='/page/183/Text/2'></content-ref><content-ref src='/page/183/Code/3'></content-ref><content-ref src='/page/183/Code/4'></content-ref><content-ref src='/page/183/Text/5'></content-ref><content-ref src='/page/183/Text/6'></content-ref><content-ref src='/page/183/Text/7'></content-ref><content-ref src='/page/183/Code/8'></content-ref><content-ref src='/page/183/Text/9'></content-ref><content-ref src='/page/183/Code/10'></content-ref><content-ref src='/page/183/Text/11'></content-ref><content-ref src='/page/183/Text/12'></content-ref><content-ref src='/page/183/Code/13'></content-ref><content-ref src='/page/183/Code/14'></content-ref><content-ref src='/page/183/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/183/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.4248046875\n            ],\n            [\n              482.4034423828125,\n              60.4248046875\n            ],\n            [\n              482.4034423828125,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.4248046875,\n            482.4034423828125,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/182/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.8671875,\n              60.71484375\n            ],\n            [\n              101.00390625,\n              60.71484375\n            ],\n            [\n              101.00390625,\n              70.2861328125\n            ],\n            [\n              84.8671875,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            60.71484375,\n            101.00390625,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/182/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-183-0\\\"></span><b>17.8 Type-based dispatch</b></h4>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              85.95379638671875\n            ],\n            [\n              261.3251953125,\n              85.95379638671875\n            ],\n            [\n              261.3251953125,\n              100.29998779296875\n            ],\n            [\n              85.6142578125,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            85.95379638671875,\n            261.3251953125,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In the previous section we added two Time objects, but you also might want to add an integer to a Time object. The following is a version of __add__ that checks the type of other and invokes either add_time or increment:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              111.4716796875\n            ],\n            [\n              483.50390625,\n              111.4716796875\n            ],\n            [\n              483.50390625,\n              146.45294189453125\n            ],\n            [\n              85.3154296875,\n              146.45294189453125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            111.4716796875,\n            483.50390625,\n            146.45294189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># inside class Time:</pre>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              151.013671875\n            ],\n            [\n              191.00726318359375,\n              151.013671875\n            ],\n            [\n              191.00726318359375,\n              161.92535400390625\n            ],\n            [\n              85.53955078125,\n              161.92535400390625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            151.013671875,\n            191.00726318359375,\n            161.92535400390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def __add__(self, other):\\n    if isinstance(other, Time):\\n        return self.add_time(other)\\n    else:\\n        return self.increment(other)\\ndef add_time(self, other):\\n    seconds = self.time_to_int() + other.time_to_int()\\n    return int_to_time(seconds)\\ndef increment(self, seconds):\\n    seconds += self.time_to_int()\\n    return int_to_time(seconds)</pre>\",\n          \"polygon\": [\n            [\n              105.26220703125,\n              174.41015625\n            ],\n            [\n              395.6484375,\n              174.41015625\n            ],\n            [\n              395.6484375,\n              332.96484375\n            ],\n            [\n              105.26220703125,\n              332.96484375\n            ]\n          ],\n          \"bbox\": [\n            105.26220703125,\n            174.41015625,\n            395.6484375,\n            332.96484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The built-in function isinstance takes a value and a class object, and returns True if the value is an instance of the class.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              337.9921875\n            ],\n            [\n              482.3995056152344,\n              337.9921875\n            ],\n            [\n              482.3995056152344,\n              360.6119079589844\n            ],\n            [\n              86.0625,\n              360.6119079589844\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            337.9921875,\n            482.3995056152344,\n            360.6119079589844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If other is a Time object, __add__ invokes add_time. Otherwise it assumes that the parameter is a number and invokes increment. This operation is called a <b>type-based dispatch</b> because it dispatches the computation to different methods based on the type of the arguments.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              369.703125\n            ],\n            [\n              482.4048767089844,\n              369.703125\n            ],\n            [\n              482.4048767089844,\n              416.7889099121094\n            ],\n            [\n              85.6142578125,\n              416.7889099121094\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            369.703125,\n            482.4048767089844,\n            416.7889099121094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here are examples that use the + operator with different types:</p>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              425.390625\n            ],\n            [\n              361.880859375,\n              425.390625\n            ],\n            [\n              361.880859375,\n              436.38189697265625\n            ],\n            [\n              85.53955078125,\n              436.38189697265625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            425.390625,\n            361.880859375,\n            436.38189697265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; start = Time(9, 45)\\n&gt;&gt;&gt; duration = Time(1, 35)\\n&gt;&gt;&gt; print start + duration\\n11:20:00\\n&gt;&gt;&gt; print start + 1337\\n10:07:17</pre>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              441.89276123046875\n            ],\n            [\n              222.3993377685547,\n              441.89276123046875\n            ],\n            [\n              222.3993377685547,\n              512.8263549804688\n            ],\n            [\n              85.53955078125,\n              512.8263549804688\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            441.89276123046875,\n            222.3993377685547,\n            512.8263549804688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Unfortunately, this implementation of addition is not commutative. If the integer is the first operand, you get</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              518.58984375\n            ],\n            [\n              482.40325927734375,\n              518.58984375\n            ],\n            [\n              482.40325927734375,\n              540.7929382324219\n            ],\n            [\n              85.9130859375,\n              540.7929382324219\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            518.58984375,\n            482.40325927734375,\n            540.7929382324219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print 1337 + start</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              546.3027801513672\n            ],\n            [\n              201.46791076660156,\n              546.3027801513672\n            ],\n            [\n              201.46791076660156,\n              556.48828125\n            ],\n            [\n              85.3154296875,\n              556.48828125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            546.3027801513672,\n            201.46791076660156,\n            556.48828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">TypeError: unsupported operand type(s) for +: 'int' and 'instance'</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              558.4967803955078\n            ],\n            [\n              431.5223083496094,\n              558.4967803955078\n            ],\n            [\n              431.5223083496094,\n              568.4765625\n            ],\n            [\n              86.0625,\n              568.4765625\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            558.4967803955078,\n            431.5223083496094,\n            568.4765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The problem is, instead of asking the Time object to add an integer, Python is asking an integer to add a Time object, and it doesn't know how to do that. But there is a clever solution for this problem: the special method __radd__, which stands for \\\"right-side add.\\\" This method is invoked when a Time object appears on the right side of the + operator. Here's the definition:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              573.890625\n            ],\n            [\n              482.607421875,\n              573.890625\n            ],\n            [\n              482.607421875,\n              633.4453125\n            ],\n            [\n              85.46484375,\n              633.4453125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            573.890625,\n            482.607421875,\n            633.4453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># inside class Time:</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              638.5177764892578\n            ],\n            [\n              191.00721740722656,\n              638.5177764892578\n            ],\n            [\n              191.00721740722656,\n              648.4803771972656\n            ],\n            [\n              85.3154296875,\n              648.4803771972656\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            638.5177764892578,\n            191.00721740722656,\n            648.4803771972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def __radd__(self, other):\\n    return self.__add__(other)</pre>\",\n          \"polygon\": [\n            [\n              90.6943359375,\n              662.9067687988281\n            ],\n            [\n              264.2323913574219,\n              662.9067687988281\n            ],\n            [\n              264.2323913574219,\n              689.51953125\n            ],\n            [\n              90.6943359375,\n              689.51953125\n            ]\n          ],\n          \"bbox\": [\n            90.6943359375,\n            662.9067687988281,\n            264.2323913574219,\n            689.51953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/183/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And here's how it's used:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              690.8723373413086\n            ],\n            [\n              198.35963439941406,\n              690.8723373413086\n            ],\n            [\n              198.35963439941406,\n              701.5078125\n            ],\n            [\n              85.3154296875,\n              701.5078125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            690.8723373413086,\n            198.35963439941406,\n            701.5078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/178/SectionHeader/1\",\n        \"2\": \"/page/182/SectionHeader/1\",\n        \"4\": \"/page/183/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/184/Page/184\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/184/PageHeader/0'></content-ref><content-ref src='/page/184/PageHeader/15'></content-ref><content-ref src='/page/184/Code/182'></content-ref><content-ref src='/page/184/ListGroup/183'></content-ref><content-ref src='/page/184/SectionHeader/4'></content-ref><content-ref src='/page/184/Text/5'></content-ref><content-ref src='/page/184/Text/6'></content-ref><content-ref src='/page/184/Code/7'></content-ref><content-ref src='/page/184/Text/8'></content-ref><content-ref src='/page/184/Code/9'></content-ref><content-ref src='/page/184/Text/10'></content-ref><content-ref src='/page/184/Text/11'></content-ref><content-ref src='/page/184/Code/12'></content-ref><content-ref src='/page/184/Text/13'></content-ref><content-ref src='/page/184/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/184/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              61.0048828125\n            ],\n            [\n              525.6033935546875,\n              61.0048828125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.2431640625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            61.0048828125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              60.908203125\n            ],\n            [\n              525.638671875,\n              60.908203125\n            ],\n            [\n              525.638671875,\n              70.2861328125\n            ],\n            [\n              510.099609375,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            60.908203125,\n            525.638671875,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/Code/182\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; print 1337 + start\\n10:07:17\\nExercise 17.5. Write an add method for Points that works with either a Point object or a tuple:</pre>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              88.68572998046875\n            ],\n            [\n              512.6279907226562,\n              88.68572998046875\n            ],\n            [\n              512.6279907226562,\n              123.0897216796875\n            ],\n            [\n              129.5419921875,\n              123.0897216796875\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            88.68572998046875,\n            512.6279907226562,\n            123.0897216796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/ListGroup/183\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/184/ListItem/2'></content-ref><content-ref src='/page/184/ListItem/3'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.9892578125,\n              135.931640625\n            ],\n            [\n              525.6038818359375,\n              135.931640625\n            ],\n            [\n              525.6038818359375,\n              192.77020263671875\n            ],\n            [\n              142.9892578125,\n              192.77020263671875\n            ]\n          ],\n          \"bbox\": [\n            142.9892578125,\n            135.931640625,\n            525.6038818359375,\n            192.77020263671875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/184/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i> If the second operand is a Point, the method should return a new Point whose x coordinate is</i> <i>the sum of the x coordinates of the operands, and likewise for the y coordinates.</i></li>\",\n              \"polygon\": [\n                [\n                  142.9892578125,\n                  135.931640625\n                ],\n                [\n                  525.6034545898438,\n                  135.931640625\n                ],\n                [\n                  525.6034545898438,\n                  159.900146484375\n                ],\n                [\n                  142.9892578125,\n                  159.900146484375\n                ]\n              ],\n              \"bbox\": [\n                142.9892578125,\n                135.931640625,\n                525.6034545898438,\n                159.900146484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/182/SectionHeader/1\",\n                \"4\": \"/page/183/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/184/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i> If the second operand is a tuple, the method should add the first element of the tuple to the x</i> <i>coordinate and the second element to the y coordinate, and return a new Point with the result.</i></li>\",\n              \"polygon\": [\n                [\n                  143.736328125,\n                  169.6728515625\n                ],\n                [\n                  525.6038818359375,\n                  169.6728515625\n                ],\n                [\n                  525.6038818359375,\n                  192.77020263671875\n                ],\n                [\n                  143.736328125,\n                  192.77020263671875\n                ]\n              ],\n              \"bbox\": [\n                143.736328125,\n                169.6728515625,\n                525.6038818359375,\n                192.77020263671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/182/SectionHeader/1\",\n                \"4\": \"/page/183/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/183/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/184/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-184-0\\\"></span><b>17.9 Polymorphism</b></h4>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              223.13671875\n            ],\n            [\n              266.29058837890625,\n              223.13671875\n            ],\n            [\n              266.29058837890625,\n              237.53094482421875\n            ],\n            [\n              128.42138671875,\n              237.53094482421875\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            223.13671875,\n            266.29058837890625,\n            237.53094482421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Type-based dispatch is useful when it is necessary, but (fortunately) it is not always necessary. Often you can avoid it by writing functions that work correctly for arguments with different types.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              250.013671875\n            ],\n            [\n              525.6033935546875,\n              250.013671875\n            ],\n            [\n              525.6033935546875,\n              284.6479187011719\n            ],\n            [\n              128.49609375,\n              284.6479187011719\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            250.013671875,\n            525.6033935546875,\n            284.6479187011719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Many of the functions we wrote for strings will actually work for any kind of sequence. For example, in Section <a href=\\\"#page-123-0\\\">11.1</a> we used histogram to count the number of times each letter appears in a word.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              294.486328125\n            ],\n            [\n              525.6034545898438,\n              294.486328125\n            ],\n            [\n              525.6034545898438,\n              329.677734375\n            ],\n            [\n              129.09375,\n              329.677734375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            294.486328125,\n            525.6034545898438,\n            329.677734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def histogram(s):\\n    d = dict()\\n    for c in s:\\n        if c not in d:\\n             d[c] = 1\\n        else:\\n             d[c] = d[c]+1\\n    return d</pre>\",\n          \"polygon\": [\n            [\n              129.5999755859375,\n              335.8267822265625\n            ],\n            [\n              260.34375,\n              335.8267822265625\n            ],\n            [\n              260.34375,\n              431.150390625\n            ],\n            [\n              129.5999755859375,\n              431.150390625\n            ]\n          ],\n          \"bbox\": [\n            129.5999755859375,\n            335.8267822265625,\n            260.34375,\n            431.150390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This function also works for lists, tuples, and even dictionaries, as long as the elements of s are hashable, so they can be used as keys in d.</p>\",\n          \"polygon\": [\n            [\n              129.59999084472656,\n              436.60546875\n            ],\n            [\n              526.53515625,\n              436.60546875\n            ],\n            [\n              526.53515625,\n              459.9599609375\n            ],\n            [\n              129.59999084472656,\n              459.9599609375\n            ]\n          ],\n          \"bbox\": [\n            129.59999084472656,\n            436.60546875,\n            526.53515625,\n            459.9599609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t = ['spam', 'egg', 'spam', 'spam', 'bacon', 'spam']\\n&gt;&gt;&gt; histogram(t)\\n{'bacon': 1, 'egg': 1, 'spam': 4}</pre>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              466.3138122558594\n            ],\n            [\n              422.4314270019531,\n              466.3138122558594\n            ],\n            [\n              422.4314270019531,\n              501.1875\n            ],\n            [\n              128.86962890625,\n              501.1875\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            466.3138122558594,\n            422.4314270019531,\n            501.1875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Functions that can work with several types are called <b>polymorphic</b>. Polymorphism can facilitate code reuse. For example, the built-in function sum, which adds the elements of a sequence, works as long as the elements of the sequence support addition.</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              506.98828125\n            ],\n            [\n              525.9375,\n              506.98828125\n            ],\n            [\n              525.9375,\n              541.6689758300781\n            ],\n            [\n              129.5419921875,\n              541.6689758300781\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            506.98828125,\n            525.9375,\n            541.6689758300781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since Time objects provide an add method, they work with sum:</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              551.84765625\n            ],\n            [\n              409.095703125,\n              551.84765625\n            ],\n            [\n              409.095703125,\n              562.1059722900391\n            ],\n            [\n              128.57080078125,\n              562.1059722900391\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            551.84765625,\n            409.095703125,\n            562.1059722900391\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; t1 = Time(7, 43)\\n&gt;&gt;&gt; t2 = Time(7, 41)\\n&gt;&gt;&gt; t3 = Time(7, 37)\\n&gt;&gt;&gt; total = sum([t1, t2, t3])\\n&gt;&gt;&gt; print total\\n23:01:00</pre>\",\n          \"polygon\": [\n            [\n              129.09375,\n              568.4598236083984\n            ],\n            [\n              281.29058837890625,\n              568.4598236083984\n            ],\n            [\n              281.29058837890625,\n              639.6328125\n            ],\n            [\n              129.09375,\n              639.6328125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            568.4598236083984,\n            281.29058837890625,\n            639.6328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In general, if all of the operations inside a function work with a given type, then the function works with that type.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              646.04638671875\n            ],\n            [\n              525.6034545898438,\n              646.04638671875\n            ],\n            [\n              525.6034545898438,\n              668.2039947509766\n            ],\n            [\n              128.197265625,\n              668.2039947509766\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            646.04638671875,\n            525.6034545898438,\n            668.2039947509766\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/184/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The best kind of polymorphism is the unintentional kind, where you discover that a function you already wrote can be applied to a type you never planned for.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              678.3046875\n            ],\n            [\n              525.6034545898438,\n              678.3046875\n            ],\n            [\n              525.6034545898438,\n              700.8349990844727\n            ],\n            [\n              127.8984375,\n              700.8349990844727\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            678.3046875,\n            525.6034545898438,\n            700.8349990844727\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/178/SectionHeader/1\",\n        \"2\": \"/page/182/SectionHeader/1\",\n        \"4\": \"/page/184/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/185/Page/179\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/185/PageHeader/0'></content-ref><content-ref src='/page/185/PageHeader/18'></content-ref><content-ref src='/page/185/SectionHeader/1'></content-ref><content-ref src='/page/185/Text/2'></content-ref><content-ref src='/page/185/Text/3'></content-ref><content-ref src='/page/185/Text/4'></content-ref><content-ref src='/page/185/Code/5'></content-ref><content-ref src='/page/185/Text/6'></content-ref><content-ref src='/page/185/Code/7'></content-ref><content-ref src='/page/185/Text/8'></content-ref><content-ref src='/page/185/Text/9'></content-ref><content-ref src='/page/185/SectionHeader/10'></content-ref><content-ref src='/page/185/Text/11'></content-ref><content-ref src='/page/185/Text/12'></content-ref><content-ref src='/page/185/Text/13'></content-ref><content-ref src='/page/185/Text/14'></content-ref><content-ref src='/page/185/Text/15'></content-ref><content-ref src='/page/185/Text/16'></content-ref><content-ref src='/page/185/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/185/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.60302734375\n            ],\n            [\n              483.205078125,\n              59.60302734375\n            ],\n            [\n              483.205078125,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.60302734375,\n            483.205078125,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              59.5546875\n            ],\n            [\n              102.57275390625,\n              59.5546875\n            ],\n            [\n              102.57275390625,\n              70.4794921875\n            ],\n            [\n              85.83837890625,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            59.5546875,\n            102.57275390625,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/182/SectionHeader/1\",\n            \"4\": \"/page/184/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-185-0\\\"></span><b>17.10 Debugging</b></h2>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              84.83642578125\n            ],\n            [\n              207.984375,\n              84.83642578125\n            ],\n            [\n              207.984375,\n              101.3203125\n            ],\n            [\n              85.39013671875,\n              101.3203125\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            84.83642578125,\n            207.984375,\n            101.3203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is legal to add attributes to objects at any point in the execution of a program, but if you are a stickler for type theory, it is a dubious practice to have objects of the same type with different attribute sets. It is usually a good idea to initialize all of an object's attributes in the init method.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              110.1181640625\n            ],\n            [\n              484.1015625,\n              110.1181640625\n            ],\n            [\n              484.1015625,\n              158.32891845703125\n            ],\n            [\n              85.6142578125,\n              158.32891845703125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            110.1181640625,\n            484.1015625,\n            158.32891845703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are not sure whether an object has a particular attribute, you can use the built-in function hasattr (see Section <a href=\\\"#page-169-0\\\">15.7)</a>.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              165.2255859375\n            ],\n            [\n              483.205078125,\n              165.2255859375\n            ],\n            [\n              483.205078125,\n              189.79888916015625\n            ],\n            [\n              85.763671875,\n              189.79888916015625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            165.2255859375,\n            483.205078125,\n            189.79888916015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Another way to access the attributes of an object is through the special attribute __dict__, which is a dictionary that maps attribute names (as strings) and values:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              196.9365234375\n            ],\n            [\n              483.50390625,\n              196.9365234375\n            ],\n            [\n              483.50390625,\n              221.2689208984375\n            ],\n            [\n              85.6142578125,\n              221.2689208984375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            196.9365234375,\n            483.50390625,\n            221.2689208984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; p = Point(3, 4)\\n&gt;&gt;&gt; print p.__dict__\\n{'y': 4, 'x': 3}</pre>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              226.459716796875\n            ],\n            [\n              191.3994140625,\n              226.459716796875\n            ],\n            [\n              191.3994140625,\n              260.811279296875\n            ],\n            [\n              85.166015625,\n              260.811279296875\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            226.459716796875,\n            191.3994140625,\n            260.811279296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For purposes of debugging, you might find it useful to keep this function handy:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              264.515625\n            ],\n            [\n              442.564453125,\n              264.515625\n            ],\n            [\n              442.564453125,\n              276.264892578125\n            ],\n            [\n              85.763671875,\n              276.264892578125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            264.515625,\n            442.564453125,\n            276.264892578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def print_attributes(obj):\\n    for attr in obj.__dict__:\\n        print attr, getattr(obj, attr)</pre>\",\n          \"polygon\": [\n            [\n              86.4000473022461,\n              281.4557189941406\n            ],\n            [\n              285.1539306640625,\n              281.4557189941406\n            ],\n            [\n              285.1539306640625,\n              315.80731201171875\n            ],\n            [\n              86.4000473022461,\n              315.80731201171875\n            ]\n          ],\n          \"bbox\": [\n            86.4000473022461,\n            281.4557189941406,\n            285.1539306640625,\n            315.80731201171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">print_attributes traverses the items in the object's dictionary and prints each attribute name and its corresponding value.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              319.4296875\n            ],\n            [\n              482.3988952636719,\n              319.4296875\n            ],\n            [\n              482.3988952636719,\n              343.4548645019531\n            ],\n            [\n              85.46484375,\n              343.4548645019531\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            319.4296875,\n            482.3988952636719,\n            343.4548645019531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The built-in function getattr takes an object and an attribute name (as a string) and returns the attribute's value.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              351.140625\n            ],\n            [\n              483.50390625,\n              351.140625\n            ],\n            [\n              483.50390625,\n              374.92486572265625\n            ],\n            [\n              85.6142578125,\n              374.92486572265625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            351.140625,\n            483.50390625,\n            374.92486572265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-185-1\\\"></span><b>17.11 Interface and implementation</b></h2>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              400.640625\n            ],\n            [\n              328.26263427734375,\n              400.640625\n            ],\n            [\n              328.26263427734375,\n              417.40594482421875\n            ],\n            [\n              85.3154296875,\n              417.40594482421875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            400.640625,\n            328.26263427734375,\n            417.40594482421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One of the goals of object-oriented design is to make software more maintainable, which means that you can keep the program working when other parts of the system change, and modify the program to meet new requirements.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              426.55078125\n            ],\n            [\n              482.4035339355469,\n              426.55078125\n            ],\n            [\n              482.4035339355469,\n              463.2398681640625\n            ],\n            [\n              85.9130859375,\n              463.2398681640625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            426.55078125,\n            482.4035339355469,\n            463.2398681640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A design principle that helps achieve that goal is to keep interfaces separate from implementations. For objects, that means that the methods a class provides should not depend on how the attributes are represented.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              471.0234375\n            ],\n            [\n              482.4034118652344,\n              471.0234375\n            ],\n            [\n              482.4034118652344,\n              506.90386962890625\n            ],\n            [\n              85.763671875,\n              506.90386962890625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            471.0234375,\n            482.4034118652344,\n            506.90386962890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, in this chapter we developed a class that represents a time of day. Methods provided by this class include time_to_int, is_after, and add_time.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              514.3359375\n            ],\n            [\n              482.40338134765625,\n              514.3359375\n            ],\n            [\n              482.40338134765625,\n              538.3738708496094\n            ],\n            [\n              85.9130859375,\n              538.3738708496094\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            514.3359375,\n            482.40338134765625,\n            538.3738708496094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">We could implement those methods in several ways. The details of the implementation depend on how we represent time. In this chapter, the attributes of a Time object are hour, minute, and second.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              546.046875\n            ],\n            [\n              482.90625,\n              546.046875\n            ],\n            [\n              482.90625,\n              582.0378723144531\n            ],\n            [\n              85.763671875,\n              582.0378723144531\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            546.046875,\n            482.90625,\n            582.0378723144531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As an alternative, we could replace these attributes with a single integer representing the number of seconds since midnight. This implementation would make some methods, like is_after, easier to write, but it makes some methods harder.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              589.74609375\n            ],\n            [\n              483.50390625,\n              589.74609375\n            ],\n            [\n              483.50390625,\n              625.7018737792969\n            ],\n            [\n              85.763671875,\n              625.7018737792969\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            589.74609375,\n            483.50390625,\n            625.7018737792969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">After you deploy a new class, you might discover a better implementation. If other parts of the program are using your class, it might be time-consuming and error-prone to change the interface.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              633.05859375\n            ],\n            [\n              483.50390625,\n              633.05859375\n            ],\n            [\n              483.50390625,\n              669.41015625\n            ],\n            [\n              85.9130859375,\n              669.41015625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            633.05859375,\n            483.50390625,\n            669.41015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/185/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">But if you designed the interface carefully, you can change the implementation without changing the interface, which means that other parts of the program don't have to change.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              676.7578125\n            ],\n            [\n              483.802734375,\n              676.7578125\n            ],\n            [\n              483.802734375,\n              700.8348770141602\n            ],\n            [\n              85.763671875,\n              700.8348770141602\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            676.7578125,\n            483.802734375,\n            700.8348770141602\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/178/SectionHeader/1\",\n        \"2\": \"/page/185/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/186/Page/246\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/186/PageHeader/0'></content-ref><content-ref src='/page/186/PageHeader/18'></content-ref><content-ref src='/page/186/Text/1'></content-ref><content-ref src='/page/186/TextInlineMath/2'></content-ref><content-ref src='/page/186/SectionHeader/3'></content-ref><content-ref src='/page/186/ListGroup/225'></content-ref><content-ref src='/page/186/SectionHeader/12'></content-ref><content-ref src='/page/186/Text/13'></content-ref><content-ref src='/page/186/ListGroup/226'></content-ref><content-ref src='/page/186/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/186/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.09375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.09375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/186/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.501953125,\n              60.8115234375\n            ],\n            [\n              525.638671875,\n              60.8115234375\n            ],\n            [\n              525.638671875,\n              69.8994140625\n            ],\n            [\n              509.501953125,\n              69.8994140625\n            ]\n          ],\n          \"bbox\": [\n            509.501953125,\n            60.8115234375,\n            525.638671875,\n            69.8994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/186/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Keeping the interface separate from the implementation means that you have to hide the attributes. Code in other parts of the program (outside the class definition) should use methods to read and modify the state of the object. They should not access the attributes directly. This principle is called <b>information hiding</b>; see <a href=\\\"http://en.wikipedia.org/wiki/Information_hiding\\\">http://en.wikipedia.org/wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Information_hiding\\\">Information_hiding</a>.</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              88.171875\n            ],\n            [\n              525.9375,\n              88.171875\n            ],\n            [\n              525.9375,\n              147.57489013671875\n            ],\n            [\n              129.60000610351562,\n              147.57489013671875\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            88.171875,\n            525.9375,\n            147.57489013671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/186/TextInlineMath/2\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\"><b>Exercise 17.6.</b> <i>Download the code from this chapter (http://thinkpython.com/code/</i> <i>Time2.py). Change the attributes of</i> Time <i>to be a single integer representing seconds since mid</i> <i>night. Then modify the methods (and the function</i> int_to_time<i>) to work with the new implemen</i> <i>tation. You should not have to modify the test code in</i> main<i>. When you are done, the output should</i> <i>be the same as before. Solution:</i> http://thinkpython.com/code/Time2_soln.py</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              149.55389404296875\n            ],\n            [\n              525.6044921875,\n              149.55389404296875\n            ],\n            [\n              525.6044921875,\n              208.37420654296875\n            ],\n            [\n              129.2431640625,\n              208.37420654296875\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            149.55389404296875,\n            525.6044921875,\n            208.37420654296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/186/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-186-0\\\"></span><b>17.12 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              239.185791015625\n            ],\n            [\n              234.580078125,\n              239.185791015625\n            ],\n            [\n              234.580078125,\n              253.531982421875\n            ],\n            [\n              128.27197265625,\n              253.531982421875\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            239.185791015625,\n            234.580078125,\n            253.531982421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/186/ListGroup/225\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/186/ListItem/4'></content-ref><content-ref src='/page/186/ListItem/5'></content-ref><content-ref src='/page/186/ListItem/6'></content-ref><content-ref src='/page/186/ListItem/7'></content-ref><content-ref src='/page/186/ListItem/8'></content-ref><content-ref src='/page/186/ListItem/9'></content-ref><content-ref src='/page/186/ListItem/10'></content-ref><content-ref src='/page/186/ListItem/11'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              262.775390625\n            ],\n            [\n              525.6033935546875,\n              262.775390625\n            ],\n            [\n              525.6033935546875,\n              492.4809875488281\n            ],\n            [\n              127.97314453125,\n              492.4809875488281\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            262.775390625,\n            525.6033935546875,\n            492.4809875488281\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/186/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>object-oriented language:</b> A language that provides features, such as user-defined classes and method syntax, that facilitate object-oriented programming.</li>\",\n              \"polygon\": [\n                [\n                  129.392578125,\n                  262.775390625\n                ],\n                [\n                  525.603271484375,\n                  262.775390625\n                ],\n                [\n                  525.603271484375,\n                  285.1959228515625\n                ],\n                [\n                  129.392578125,\n                  285.1959228515625\n                ]\n              ],\n              \"bbox\": [\n                129.392578125,\n                262.775390625,\n                525.603271484375,\n                285.1959228515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/186/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>object-oriented programming:</b> A style of programming in which data and the operations that manipulate it are organized into classes and methods.</li>\",\n              \"polygon\": [\n                [\n                  129.5419921875,\n                  295.453125\n                ],\n                [\n                  525.602294921875,\n                  295.453125\n                ],\n                [\n                  525.602294921875,\n                  318.29193115234375\n                ],\n                [\n                  129.5419921875,\n                  318.29193115234375\n                ]\n              ],\n              \"bbox\": [\n                129.5419921875,\n                295.453125,\n                525.602294921875,\n                318.29193115234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/186/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>method:</b> A function that is defined inside a class definition and is invoked on instances of that class.</li>\",\n              \"polygon\": [\n                [\n                  129.2431640625,\n                  329.13421630859375\n                ],\n                [\n                  525.6033935546875,\n                  329.13421630859375\n                ],\n                [\n                  525.6033935546875,\n                  351.3889465332031\n                ],\n                [\n                  129.2431640625,\n                  351.3889465332031\n                ]\n              ],\n              \"bbox\": [\n                129.2431640625,\n                329.13421630859375,\n                525.6033935546875,\n                351.3889465332031\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/186/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>subject:</b> The object a method is invoked on.</li>\",\n              \"polygon\": [\n                [\n                  127.97314453125,\n                  362.2312316894531\n                ],\n                [\n                  323.19287109375,\n                  362.2312316894531\n                ],\n                [\n                  323.19287109375,\n                  372.29095458984375\n                ],\n                [\n                  127.97314453125,\n                  372.29095458984375\n                ]\n              ],\n              \"bbox\": [\n                127.97314453125,\n                362.2312316894531,\n                323.19287109375,\n                372.29095458984375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/186/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>operator overloading:</b> Changing the behavior of an operator like + so it works with a userdefined type.</li>\",\n              \"polygon\": [\n                [\n                  129.09375,\n                  383.080810546875\n                ],\n                [\n                  525.6030883789062,\n                  383.080810546875\n                ],\n                [\n                  525.6030883789062,\n                  405.386962890625\n                ],\n                [\n                  129.09375,\n                  405.386962890625\n                ]\n              ],\n              \"bbox\": [\n                129.09375,\n                383.080810546875,\n                525.6030883789062,\n                405.386962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/186/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>type-based dispatch:</b> A programming pattern that checks the type of an operand and invokes different functions for different types.</li>\",\n              \"polygon\": [\n                [\n                  129.2431640625,\n                  416.229248046875\n                ],\n                [\n                  525.6030883789062,\n                  416.229248046875\n                ],\n                [\n                  525.6030883789062,\n                  438.48297119140625\n                ],\n                [\n                  129.2431640625,\n                  438.48297119140625\n                ]\n              ],\n              \"bbox\": [\n                129.2431640625,\n                416.229248046875,\n                525.6030883789062,\n                438.48297119140625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/186/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>polymorphic:</b> Pertaining to a function that can work with more than one type.</li>\",\n              \"polygon\": [\n                [\n                  128.9443359375,\n                  449.32525634765625\n                ],\n                [\n                  476.33203125,\n                  449.32525634765625\n                ],\n                [\n                  476.33203125,\n                  459.3849792480469\n                ],\n                [\n                  128.9443359375,\n                  459.3849792480469\n                ]\n              ],\n              \"bbox\": [\n                128.9443359375,\n                449.32525634765625,\n                476.33203125,\n                459.3849792480469\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/3\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/186/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>information hiding:</b> The principle that the interface provided by an object should not depend on its implementation, in particular the representation of its attributes.</li>\",\n              \"polygon\": [\n                [\n                  128.3466796875,\n                  470.2272644042969\n                ],\n                [\n                  525.6028442382812,\n                  470.2272644042969\n                ],\n                [\n                  525.6028442382812,\n                  492.4809875488281\n                ],\n                [\n                  128.3466796875,\n                  492.4809875488281\n                ]\n              ],\n              \"bbox\": [\n                128.3466796875,\n                470.2272644042969,\n                525.6028442382812,\n                492.4809875488281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/3\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/3\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/186/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-186-1\\\"></span><b>17.13 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              523.1208190917969\n            ],\n            [\n              236.2236328125,\n              523.1208190917969\n            ],\n            [\n              236.2236328125,\n              537.4670257568359\n            ],\n            [\n              128.6455078125,\n              537.4670257568359\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            523.1208190917969,\n            236.2236328125,\n            537.4670257568359\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/186/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 17.7.</b> <i>This exercise is a cautionary tale about one of the most common, and difficult to</i> <i>find, errors in Python. Write a definition for a class named</i> Kangaroo <i>with the following methods:</i></p>\",\n          \"polygon\": [\n            [\n              127.1513671875,\n              549.9140625\n            ],\n            [\n              525.6008911132812,\n              549.9140625\n            ],\n            [\n              525.6008911132812,\n              572.4244232177734\n            ],\n            [\n              127.1513671875,\n              572.4244232177734\n            ]\n          ],\n          \"bbox\": [\n            127.1513671875,\n            549.9140625,\n            525.6008911132812,\n            572.4244232177734\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/186/ListGroup/226\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/186/ListItem/14'></content-ref><content-ref src='/page/186/ListItem/15'></content-ref><content-ref src='/page/186/ListItem/16'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              141.046875,\n              587.0390625\n            ],\n            [\n              525.9375,\n              587.0390625\n            ],\n            [\n              525.9375,\n              663.5312805175781\n            ],\n            [\n              141.046875,\n              663.5312805175781\n            ]\n          ],\n          \"bbox\": [\n            141.046875,\n            587.0390625,\n            525.9375,\n            663.5312805175781\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/186/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. An</i> __init__ <i>method that initializes an attribute named</i> pouch_contents <i>to an empty list.</i></li>\",\n              \"polygon\": [\n                [\n                  141.046875,\n                  587.0390625\n                ],\n                [\n                  525.603515625,\n                  587.0390625\n                ],\n                [\n                  525.603515625,\n                  597.3614196777344\n                ],\n                [\n                  141.046875,\n                  597.3614196777344\n                ]\n              ],\n              \"bbox\": [\n                141.046875,\n                587.0390625,\n                525.603515625,\n                597.3614196777344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/186/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. A method named</i> put_in_pouch <i>that takes an object of any type and adds it to</i> pouch_contents<i>.</i></li>\",\n              \"polygon\": [\n                [\n                  141.4951171875,\n                  608.2776641845703\n                ],\n                [\n                  525.9375,\n                  608.2776641845703\n                ],\n                [\n                  525.9375,\n                  630.73828125\n                ],\n                [\n                  141.4951171875,\n                  630.73828125\n                ]\n              ],\n              \"bbox\": [\n                141.4951171875,\n                608.2776641845703,\n                525.9375,\n                630.73828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/186/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. A</i> __str__ <i>method that returns a string representation of the Kangaroo object and the con</i><i>tents of the pouch.</i></li>\",\n              \"polygon\": [\n                [\n                  141.7939453125,\n                  640.79296875\n                ],\n                [\n                  525.9375,\n                  640.79296875\n                ],\n                [\n                  525.9375,\n                  663.5312805175781\n                ],\n                [\n                  141.7939453125,\n                  663.5312805175781\n                ]\n              ],\n              \"bbox\": [\n                141.7939453125,\n                640.79296875,\n                525.9375,\n                663.5312805175781\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/186/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Test your code by creating two</i> Kangaroo <i>objects, assigning them to variables named</i> kanga <i>and</i> roo<i>, and then adding</i> roo <i>to the contents of</i> kanga<i>'s pouch.</i></p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              678.5056838989258\n            ],\n            [\n              525.9375,\n              678.5056838989258\n            ],\n            [\n              525.9375,\n              700.685417175293\n            ],\n            [\n              127.8984375,\n              700.685417175293\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            678.5056838989258,\n            525.9375,\n            700.685417175293\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/178/SectionHeader/1\",\n        \"2\": \"/page/185/SectionHeader/10\",\n        \"4\": \"/page/186/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/187/Page/232\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/187/PageHeader/0'></content-ref><content-ref src='/page/187/PageHeader/16'></content-ref><content-ref src='/page/187/Text/1'></content-ref><content-ref src='/page/187/Text/2'></content-ref><content-ref src='/page/187/Text/3'></content-ref><content-ref src='/page/187/Text/4'></content-ref><content-ref src='/page/187/Text/5'></content-ref><content-ref src='/page/187/Text/6'></content-ref><content-ref src='/page/187/Text/7'></content-ref><content-ref src='/page/187/TextInlineMath/8'></content-ref><content-ref src='/page/187/Text/9'></content-ref><content-ref src='/page/187/Caption/10'></content-ref><content-ref src='/page/187/Code/11'></content-ref><content-ref src='/page/187/ListGroup/228'></content-ref><content-ref src='/page/187/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/187/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.85986328125\n            ],\n            [\n              482.4034423828125,\n              60.85986328125\n            ],\n            [\n              482.4034423828125,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.85986328125,\n            482.4034423828125,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.568359375,\n              60.66650390625\n            ],\n            [\n              101.00390625,\n              60.66650390625\n            ],\n            [\n              101.00390625,\n              69.65771484375\n            ],\n            [\n              84.568359375,\n              69.65771484375\n            ]\n          ],\n          \"bbox\": [\n            84.568359375,\n            60.66650390625,\n            101.00390625,\n            69.65771484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Download</i> <a href=\\\"http://thinkpython.com/code/BadKangaroo.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/BadKangaroo.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/BadKangaroo.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/BadKangaroo.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/BadKangaroo.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/BadKangaroo.py\\\">BadKangaroo.</a> <a href=\\\"http://thinkpython.com/code/BadKangaroo.py\\\">py</a> <i>. It contains a solution to the</i> <i>previous problem with one big, nasty bug. Find and fix the bug.</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              88.5819091796875\n            ],\n            [\n              483.205078125,\n              88.5819091796875\n            ],\n            [\n              483.205078125,\n              110.81915283203125\n            ],\n            [\n              85.46484375,\n              110.81915283203125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            88.5819091796875,\n            483.205078125,\n            110.81915283203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>If you get stuck, you can download</i> <a href=\\\"http://thinkpython.com/code/GoodKangaroo.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/GoodKangaroo.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/GoodKangaroo.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/GoodKangaroo.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/GoodKangaroo.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/GoodKangaroo.py\\\">GoodKangaroo.</a> <a href=\\\"http://thinkpython.com/code/GoodKangaroo.py\\\">py</a> <i>,</i> <i>which explains the problem and demonstrates a solution.</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              120.91387939453125\n            ],\n            [\n              482.3996276855469,\n              120.91387939453125\n            ],\n            [\n              482.3996276855469,\n              143.15118408203125\n            ],\n            [\n              85.3154296875,\n              143.15118408203125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            120.91387939453125,\n            482.3996276855469,\n            143.15118408203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 17.8.</b> <i>Visual is a Python module that provides 3-D graphics. It is not always included</i> <i>in a Python installation, so you might have to install it from your software repository or, if it's not</i> <i>there, from</i> <a href=\\\"http://vpython.org\\\">http:</a> <a href=\\\"http://vpython.org\\\">//</a> <a href=\\\"http://vpython.org\\\">vpython.</a> <a href=\\\"http://vpython.org\\\">org</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              145.382568359375\n            ],\n            [\n              482.4033508300781,\n              145.382568359375\n            ],\n            [\n              482.4033508300781,\n              179.73419189453125\n            ],\n            [\n              85.6142578125,\n              179.73419189453125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            145.382568359375,\n            482.4033508300781,\n            179.73419189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The following example creates a 3-D space that is 256 units wide, long and high, and sets the</i> <i>\\\"center\\\" to be the point</i> (128, 128, 128)<i>. Then it draws a blue sphere.</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              189.90863037109375\n            ],\n            [\n              482.4032897949219,\n              189.90863037109375\n            ],\n            [\n              482.4032897949219,\n              212.23895263671875\n            ],\n            [\n              85.3154296875,\n              212.23895263671875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            189.90863037109375,\n            482.4032897949219,\n            212.23895263671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">from visual import *</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              218.29278564453125\n            ],\n            [\n              191.0072784423828,\n              218.29278564453125\n            ],\n            [\n              191.0072784423828,\n              228.25537109375\n            ],\n            [\n              85.68896484375,\n              228.25537109375\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            218.29278564453125,\n            191.0072784423828,\n            228.25537109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">scene.range = (256, 256, 256) scene.center = (128, 128, 128)</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              242.666015625\n            ],\n            [\n              262.8193359375,\n              242.666015625\n            ],\n            [\n              262.8193359375,\n              265.095703125\n            ],\n            [\n              85.6142578125,\n              265.095703125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            242.666015625,\n            262.8193359375,\n            265.095703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">color = (0.1, 0.1, 0.9) # mostly blue sphere(pos=scene.center, radius=128, color=color)</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              278.630859375\n            ],\n            [\n              342.70770263671875,\n              278.630859375\n            ],\n            [\n              342.70770263671875,\n              301.42138671875\n            ],\n            [\n              85.763671875,\n              301.42138671875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            278.630859375,\n            342.70770263671875,\n            301.42138671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/TextInlineMath/8\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">color <i>is an RGB tuple; that is, the elements are Red-Green-Blue levels between 0.0 and 1.0 (see </i>http://en.wikipedia.org/wiki/RGB_color_model<i>). </i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              307.6006774902344\n            ],\n            [\n              482.90625,\n              307.6006774902344\n            ],\n            [\n              482.90625,\n              329.7582702636719\n            ],\n            [\n              85.6142578125,\n              329.7582702636719\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            307.6006774902344,\n            482.90625,\n            329.7582702636719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>If you run this code, you should see a window with a black background and a blue sphere. If you</i> <i>drag the middle button up and down, you can zoom in and out. You can also rotate the scene by</i> <i>dragging the right button, but with only one sphere in the world, it is hard to tell the difference.</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              339.93267822265625\n            ],\n            [\n              482.607421875,\n              339.93267822265625\n            ],\n            [\n              482.607421875,\n              374.2842712402344\n            ],\n            [\n              85.46484375,\n              374.2842712402344\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            339.93267822265625,\n            482.607421875,\n            374.2842712402344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/Caption/10\",\n          \"block_type\": \"Caption\",\n          \"html\": \"<p><i>The following loop creates a cube of spheres:</i></p>\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              384.01171875\n            ],\n            [\n              262.072265625,\n              384.01171875\n            ],\n            [\n              262.072265625,\n              394.4212646484375\n            ],\n            [\n              85.24072265625,\n              394.4212646484375\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            384.01171875,\n            262.072265625,\n            394.4212646484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>t = range(0, 256, 51)\\nfor x in t:\\n    for y in t:\\n        for z in t:\\n            pos = x, y, z\\n            sphere(pos=pos, radius=10, color=color)</pre>\",\n          \"polygon\": [\n            [\n              84.94189453125,\n              400.6478271484375\n            ],\n            [\n              353.153076171875,\n              400.6478271484375\n            ],\n            [\n              353.153076171875,\n              472.5703125\n            ],\n            [\n              84.94189453125,\n              472.5703125\n            ]\n          ],\n          \"bbox\": [\n            84.94189453125,\n            400.6478271484375,\n            353.153076171875,\n            472.5703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/187/ListGroup/228\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/187/ListItem/12'></content-ref><content-ref src='/page/187/ListItem/13'></content-ref><content-ref src='/page/187/ListItem/14'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.8662109375,\n              485.33203125\n            ],\n            [\n              482.4039001464844,\n              485.33203125\n            ],\n            [\n              482.4039001464844,\n              584.8013305664062\n            ],\n            [\n              97.8662109375,\n              584.8013305664062\n            ]\n          ],\n          \"bbox\": [\n            97.8662109375,\n            485.33203125,\n            482.4039001464844,\n            584.8013305664062\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/187/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Put this code in a script and make sure it works for you.</i></li>\",\n              \"polygon\": [\n                [\n                  98.4638671875,\n                  485.33203125\n                ],\n                [\n                  334.8072509765625,\n                  485.33203125\n                ],\n                [\n                  334.8072509765625,\n                  495.6953125\n                ],\n                [\n                  98.4638671875,\n                  495.6953125\n                ]\n              ],\n              \"bbox\": [\n                98.4638671875,\n                485.33203125,\n                334.8072509765625,\n                495.6953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/187/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Modify the program so that each sphere in the cube has the color that corresponds to its</i> <i>position in RGB space. Notice that the coordinates are in the range 0–255, but the RGB</i> <i>tuples are in the range 0.0–1.0.</i></li>\",\n              \"polygon\": [\n                [\n                  98.1650390625,\n                  505.44140625\n                ],\n                [\n                  482.40386962890625,\n                  505.44140625\n                ],\n                [\n                  482.40386962890625,\n                  540.2483215332031\n                ],\n                [\n                  98.1650390625,\n                  540.2483215332031\n                ]\n              ],\n              \"bbox\": [\n                98.1650390625,\n                505.44140625,\n                482.40386962890625,\n                540.2483215332031\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/187/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. Download</i> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">color_</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">list.</a> <a href=\\\"http://thinkpython.com/code/color_list.py\\\">py</a> <i>and use the function</i> read_colors <i>to generate a list of the available colors on your system, their names and RGB</i> <i>values. For each named color draw a sphere in the position that corresponds to its RGB values.</i></li>\",\n              \"polygon\": [\n                [\n                  97.8662109375,\n                  550.3690338134766\n                ],\n                [\n                  482.4039001464844,\n                  550.3690338134766\n                ],\n                [\n                  482.4039001464844,\n                  584.8013305664062\n                ],\n                [\n                  97.8662109375,\n                  584.8013305664062\n                ]\n              ],\n              \"bbox\": [\n                97.8662109375,\n                550.3690338134766,\n                482.4039001464844,\n                584.8013305664062\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/178/SectionHeader/1\",\n                \"2\": \"/page/185/SectionHeader/10\",\n                \"4\": \"/page/186/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/187/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>You can see my solution at</i> <a href=\\\"http://thinkpython.com/code/color_space.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/color_space.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/color_space.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/color_space.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/color_space.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/color_space.py\\\">color_</a> <a href=\\\"http://thinkpython.com/code/color_space.py\\\">space.</a> <a href=\\\"http://thinkpython.com/code/color_space.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              598.89404296875\n            ],\n            [\n              431.5656433105469,\n              598.89404296875\n            ],\n            [\n              431.5656433105469,\n              608.9373321533203\n            ],\n            [\n              85.9130859375,\n              608.9373321533203\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            598.89404296875,\n            431.5656433105469,\n            608.9373321533203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/185/SectionHeader/10\",\n            \"4\": \"/page/186/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/178/SectionHeader/1\",\n        \"2\": \"/page/185/SectionHeader/10\",\n        \"4\": \"/page/186/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/188/Page/163\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/188/SectionHeader/0'></content-ref><content-ref src='/page/188/SectionHeader/1'></content-ref><content-ref src='/page/188/Text/2'></content-ref><content-ref src='/page/188/Text/3'></content-ref><content-ref src='/page/188/SectionHeader/4'></content-ref><content-ref src='/page/188/Text/5'></content-ref><content-ref src='/page/188/Text/6'></content-ref><content-ref src='/page/188/Text/7'></content-ref><content-ref src='/page/188/Text/8'></content-ref><content-ref src='/page/188/Table/9'></content-ref><content-ref src='/page/188/Text/10'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/188/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-188-0\\\"></span><b>Chapter 18</b></h2>\",\n          \"polygon\": [\n            [\n              129.09375,\n              163.1953125\n            ],\n            [\n              233.68359375,\n              163.1953125\n            ],\n            [\n              233.68359375,\n              184.29296875\n            ],\n            [\n              129.09375,\n              184.29296875\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            163.1953125,\n            233.68359375,\n            184.29296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/178/SectionHeader/1\",\n            \"2\": \"/page/188/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/188/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Inheritance</b></h1>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              218.302734375\n            ],\n            [\n              259.8310546875,\n              218.302734375\n            ],\n            [\n              259.8310546875,\n              243.2823486328125\n            ],\n            [\n              128.9443359375,\n              243.2823486328125\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            218.302734375,\n            259.8310546875,\n            243.2823486328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/188/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this chapter I present classes to represent playing cards, decks of cards, and poker hands. If you don't play poker, you can read about it at <a href=\\\"http://en.wikipedia.org/wiki/Poker\\\">http://en.wikipedia.org/wiki/Poker</a>, but you don't have to; I'll tell you what you need to know for the exercises. Code examples from this chapter are available from <a href=\\\"http://thinkpython.com/code/Card.py\\\">http://thinkpython.com/code/Card.py</a>.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              288.8653259277344\n            ],\n            [\n              526.53515625,\n              288.8653259277344\n            ],\n            [\n              526.53515625,\n              335.4109191894531\n            ],\n            [\n              128.9443359375,\n              335.4109191894531\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            288.8653259277344,\n            526.53515625,\n            335.4109191894531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/188/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are not familiar with Anglo-American playing cards, you can read about them at <a href=\\\"http://en.wikipedia.org/wiki/Playing_cards\\\">http://en.wikipedia.org/wiki/Playing_cards</a>.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              345.0943298339844\n            ],\n            [\n              525.9375,\n              345.0943298339844\n            ],\n            [\n              525.9375,\n              367.576171875\n            ],\n            [\n              128.6455078125,\n              367.576171875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            345.0943298339844,\n            525.9375,\n            367.576171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/188/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-188-1\\\"></span><b>18.1 Card objects</b></h4>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              395.9047546386719\n            ],\n            [\n              250.8662109375,\n              395.9047546386719\n            ],\n            [\n              250.8662109375,\n              410.30859375\n            ],\n            [\n              128.6455078125,\n              410.30859375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            395.9047546386719,\n            250.8662109375,\n            410.30859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/188/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are fifty-two cards in a deck, each of which belongs to one of four suits and one of thirteen ranks. The suits are Spades, Hearts, Diamonds, and Clubs (in descending order in bridge). The ranks are Ace, 2, 3, 4, 5, 6, 7, 8, 9, 10, Jack, Queen, and King. Depending on the game that you are playing, an Ace may be higher than King or lower than 2.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              421.91015625\n            ],\n            [\n              526.53515625,\n              421.91015625\n            ],\n            [\n              526.53515625,\n              468.6509094238281\n            ],\n            [\n              129.2431640625,\n              468.6509094238281\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            421.91015625,\n            526.53515625,\n            468.6509094238281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/188/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If we want to define a new object to represent a playing card, it is obvious what the attributes should be: rank and suit. It is not as obvious what type the attributes should be. One possibility is to use strings containing words like 'Spade' for suits and 'Queen' for ranks. One problem with this implementation is that it would not be easy to compare cards to see which had a higher rank or suit.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              477.984375\n            ],\n            [\n              526.236328125,\n              477.984375\n            ],\n            [\n              526.236328125,\n              537.0749206542969\n            ],\n            [\n              129.392578125,\n              537.0749206542969\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            477.984375,\n            526.236328125,\n            537.0749206542969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/188/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An alternative is to use integers to <b>encode</b> the ranks and suits. In this context, \\\"encode\\\" means that we are going to define a mapping between numbers and suits, or between numbers and ranks. This kind of encoding is not meant to be a secret (that would be \\\"encryption\\\").</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              546.6612091064453\n            ],\n            [\n              525.9375,\n              546.6612091064453\n            ],\n            [\n              525.9375,\n              593.3039245605469\n            ],\n            [\n              129.5419921875,\n              593.3039245605469\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            546.6612091064453,\n            525.9375,\n            593.3039245605469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/188/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, this table shows the suits and the corresponding integer codes:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              602.89453125\n            ],\n            [\n              464.9765625,\n              602.89453125\n            ],\n            [\n              464.9765625,\n              612.9499206542969\n            ],\n            [\n              128.6455078125,\n              612.9499206542969\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            602.89453125,\n            464.9765625,\n            612.9499206542969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/188/Table/9\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Spades</th><th>→</th><th>3</th></tr><tr><th>Hearts</th><th>→</th><th>2</th></tr><tr><th>Diamonds</th><th>→</th><th>1</th></tr><tr><th>Clubs</th><th>→</th><th>0</th></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              134.3232421875,\n              621.6783294677734\n            ],\n            [\n              226.0634765625,\n              621.6783294677734\n            ],\n            [\n              226.0634765625,\n              669.41015625\n            ],\n            [\n              134.3232421875,\n              669.41015625\n            ]\n          ],\n          \"bbox\": [\n            134.3232421875,\n            621.6783294677734,\n            226.0634765625,\n            669.41015625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/188/TableCell/150\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Spades</th>\",\n              \"polygon\": [\n                [\n                  134.3232421875,\n                  621.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  621.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  622.6783294677734\n                ],\n                [\n                  134.3232421875,\n                  622.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                134.3232421875,\n                621.6783294677734,\n                135.3232421875,\n                622.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/188/TableCell/151\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>→</th>\",\n              \"polygon\": [\n                [\n                  135.3232421875,\n                  621.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  621.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  622.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  622.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                135.3232421875,\n                621.6783294677734,\n                136.3232421875,\n                622.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/188/TableCell/152\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>3</th>\",\n              \"polygon\": [\n                [\n                  136.3232421875,\n                  621.6783294677734\n                ],\n                [\n                  137.3232421875,\n                  621.6783294677734\n                ],\n                [\n                  137.3232421875,\n                  622.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  622.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                136.3232421875,\n                621.6783294677734,\n                137.3232421875,\n                622.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/188/TableCell/153\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Hearts</th>\",\n              \"polygon\": [\n                [\n                  134.3232421875,\n                  622.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  622.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  623.6783294677734\n                ],\n                [\n                  134.3232421875,\n                  623.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                134.3232421875,\n                622.6783294677734,\n                135.3232421875,\n                623.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/188/TableCell/154\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>→</th>\",\n              \"polygon\": [\n                [\n                  135.3232421875,\n                  622.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  622.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  623.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  623.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                135.3232421875,\n                622.6783294677734,\n                136.3232421875,\n                623.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/188/TableCell/155\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>2</th>\",\n              \"polygon\": [\n                [\n                  136.3232421875,\n                  622.6783294677734\n                ],\n                [\n                  137.3232421875,\n                  622.6783294677734\n                ],\n                [\n                  137.3232421875,\n                  623.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  623.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                136.3232421875,\n                622.6783294677734,\n                137.3232421875,\n                623.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/188/TableCell/156\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Diamonds</th>\",\n              \"polygon\": [\n                [\n                  134.3232421875,\n                  623.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  623.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  624.6783294677734\n                ],\n                [\n                  134.3232421875,\n                  624.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                134.3232421875,\n                623.6783294677734,\n                135.3232421875,\n                624.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/188/TableCell/157\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>→</th>\",\n              \"polygon\": [\n                [\n                  135.3232421875,\n                  623.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  623.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  624.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  624.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                135.3232421875,\n                623.6783294677734,\n                136.3232421875,\n                624.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/188/TableCell/158\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>1</th>\",\n              \"polygon\": [\n                [\n                  136.3232421875,\n                  623.6783294677734\n                ],\n                [\n                  137.3232421875,\n                  623.6783294677734\n                ],\n                [\n                  137.3232421875,\n                  624.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  624.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                136.3232421875,\n                623.6783294677734,\n                137.3232421875,\n                624.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/188/TableCell/159\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Clubs</th>\",\n              \"polygon\": [\n                [\n                  134.3232421875,\n                  624.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  624.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  625.6783294677734\n                ],\n                [\n                  134.3232421875,\n                  625.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                134.3232421875,\n                624.6783294677734,\n                135.3232421875,\n                625.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/188/TableCell/160\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>→</th>\",\n              \"polygon\": [\n                [\n                  135.3232421875,\n                  624.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  624.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  625.6783294677734\n                ],\n                [\n                  135.3232421875,\n                  625.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                135.3232421875,\n                624.6783294677734,\n                136.3232421875,\n                625.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/188/TableCell/161\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>0</th>\",\n              \"polygon\": [\n                [\n                  136.3232421875,\n                  624.6783294677734\n                ],\n                [\n                  137.3232421875,\n                  624.6783294677734\n                ],\n                [\n                  137.3232421875,\n                  625.6783294677734\n                ],\n                [\n                  136.3232421875,\n                  625.6783294677734\n                ]\n              ],\n              \"bbox\": [\n                136.3232421875,\n                624.6783294677734,\n                137.3232421875,\n                625.6783294677734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/188/SectionHeader/4\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/188/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This code makes it easy to compare cards; because higher suits map to higher numbers, we can compare suits by comparing their codes.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              677.91796875\n            ],\n            [\n              525.638671875,\n              677.91796875\n            ],\n            [\n              525.638671875,\n              700.8349380493164\n            ],\n            [\n              128.197265625,\n              700.8349380493164\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            677.91796875,\n            525.638671875,\n            700.8349380493164\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"4\": \"/page/188/SectionHeader/4\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/189/Page/240\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/189/PageHeader/0'></content-ref><content-ref src='/page/189/PageHeader/17'></content-ref><content-ref src='/page/189/Text/1'></content-ref><content-ref src='/page/189/Text/2'></content-ref><content-ref src='/page/189/Text/3'></content-ref><content-ref src='/page/189/Text/4'></content-ref><content-ref src='/page/189/Code/5'></content-ref><content-ref src='/page/189/Text/6'></content-ref><content-ref src='/page/189/Text/7'></content-ref><content-ref src='/page/189/Code/8'></content-ref><content-ref src='/page/189/SectionHeader/9'></content-ref><content-ref src='/page/189/Text/10'></content-ref><content-ref src='/page/189/Code/11'></content-ref><content-ref src='/page/189/Code/12'></content-ref><content-ref src='/page/189/Text/13'></content-ref><content-ref src='/page/189/Text/14'></content-ref><content-ref src='/page/189/Text/15'></content-ref><content-ref src='/page/189/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/189/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.171142578125\n            ],\n            [\n              482.40338134765625,\n              61.171142578125\n            ],\n            [\n              482.40338134765625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.171142578125,\n            482.40338134765625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.763671875,\n              60.908203125\n            ],\n            [\n              102.19921875,\n              60.908203125\n            ],\n            [\n              102.19921875,\n              70.2861328125\n            ],\n            [\n              85.763671875,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            60.908203125,\n            102.19921875,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The mapping for ranks is fairly obvious; each of the numerical ranks maps to the corresponding integer, and for face cards:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              88.80029296875\n            ],\n            [\n              483.50390625,\n              88.80029296875\n            ],\n            [\n              483.50390625,\n              110.99188232421875\n            ],\n            [\n              85.9130859375,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            88.80029296875,\n            483.50390625,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Jack 7→ 11 Queen 7→ 12 King 7→ 13</p>\",\n          \"polygon\": [\n            [\n              89.2001953125,\n              119.1822509765625\n            ],\n            [\n              171.52734375,\n              119.1822509765625\n            ],\n            [\n              171.52734375,\n              154.63690185546875\n            ],\n            [\n              89.2001953125,\n              154.63690185546875\n            ]\n          ],\n          \"bbox\": [\n            89.2001953125,\n            119.1822509765625,\n            171.52734375,\n            154.63690185546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I am using the 7→ symbol to make it clear that these mappings are not part of the Python program. They are part of the program design, but they don't appear explicitly in the code.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              162.3482666015625\n            ],\n            [\n              483.50390625,\n              162.3482666015625\n            ],\n            [\n              483.50390625,\n              185.818359375\n            ],\n            [\n              85.46484375,\n              185.818359375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            162.3482666015625,\n            483.50390625,\n            185.818359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The class definition for Card looks like this:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              205.541015625\n            ],\n            [\n              276.1513977050781,\n              205.541015625\n            ],\n            [\n              276.1513977050781,\n              216.91082763671875\n            ],\n            [\n              85.6142578125,\n              216.91082763671875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            205.541015625,\n            276.1513977050781,\n            216.91082763671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class Card(object):\\n    \\\"\\\"\\\"Represents a standard playing card.\\\"\\\"\\\"\\n    def __init__(self, suit=0, rank=2):\\n        self.suit = suit\\n        self.rank = rank</pre>\",\n          \"polygon\": [\n            [\n              86.39998626708984,\n              221.9366455078125\n            ],\n            [\n              321.837890625,\n              221.9366455078125\n            ],\n            [\n              321.837890625,\n              294.486328125\n            ],\n            [\n              86.39998626708984,\n              294.486328125\n            ]\n          ],\n          \"bbox\": [\n            86.39998626708984,\n            221.9366455078125,\n            321.837890625,\n            294.486328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As usual, the init method takes an optional parameter for each attribute. The default card is the 2 of Clubs.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              297.966796875\n            ],\n            [\n              482.4033203125,\n              297.966796875\n            ],\n            [\n              482.4033203125,\n              320.3518371582031\n            ],\n            [\n              85.9130859375,\n              320.3518371582031\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            297.966796875,\n            482.4033203125,\n            320.3518371582031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To create a Card, you call Card with the suit and rank of the card you want.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              328.7109375\n            ],\n            [\n              417.1640625,\n              328.7109375\n            ],\n            [\n              417.1640625,\n              339.4608459472656\n            ],\n            [\n              85.9130859375,\n              339.4608459472656\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            328.7109375,\n            417.1640625,\n            339.4608459472656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>queen_of_diamonds = Card(1, 12)</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              344.4856872558594\n            ],\n            [\n              248.5512237548828,\n              344.4856872558594\n            ],\n            [\n              248.5512237548828,\n              354.4482727050781\n            ],\n            [\n              85.763671875,\n              354.4482727050781\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            344.4856872558594,\n            248.5512237548828,\n            354.4482727050781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/188/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-189-0\\\"></span><b>18.2 Class attributes</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              382.49969482421875\n            ],\n            [\n              227.42312622070312,\n              382.49969482421875\n            ],\n            [\n              227.42312622070312,\n              396.8459167480469\n            ],\n            [\n              85.763671875,\n              396.8459167480469\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            382.49969482421875,\n            227.42312622070312,\n            396.8459167480469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In order to print Card objects in a way that people can easily read, we need a mapping from the integer codes to the corresponding ranks and suits. A natural way to do that is with lists of strings. We assign these lists to <b>class attributes</b>:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              407.6015625\n            ],\n            [\n              482.40338134765625,\n              407.6015625\n            ],\n            [\n              482.40338134765625,\n              442.51385498046875\n            ],\n            [\n              85.9130859375,\n              442.51385498046875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            407.6015625,\n            482.40338134765625,\n            442.51385498046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># inside class Card:</pre>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              447.5386962890625\n            ],\n            [\n              191.0072479248047,\n              447.5386962890625\n            ],\n            [\n              191.0072479248047,\n              457.50128173828125\n            ],\n            [\n              86.2119140625,\n              457.50128173828125\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            447.5386962890625,\n            191.0072479248047,\n            457.50128173828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>suit_names = ['Clubs', 'Diamonds', 'Hearts', 'Spades']\\nrank_names = [None, 'Ace', '2', '3', '4', '5', '6', '7',\\n          '8', '9', '10', 'Jack', 'Queen', 'King']\\ndef __str__(self):\\n    return '%s of %s' % (Card.rank_names[self.rank],\\n                         Card.suit_names[self.suit])</pre>\",\n          \"polygon\": [\n            [\n              107.31596374511719,\n              471.796875\n            ],\n            [\n              401.326171875,\n              471.796875\n            ],\n            [\n              401.326171875,\n              555.0563201904297\n            ],\n            [\n              107.31596374511719,\n              555.0563201904297\n            ]\n          ],\n          \"bbox\": [\n            107.31596374511719,\n            471.796875,\n            401.326171875,\n            555.0563201904297\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Variables like suit_names and rank_names, which are defined inside a class but outside of any method, are called class attributes because they are associated with the class object Card.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              560.230712890625\n            ],\n            [\n              482.40350341796875,\n              560.230712890625\n            ],\n            [\n              482.40350341796875,\n              594.7318725585938\n            ],\n            [\n              85.763671875,\n              594.7318725585938\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            560.230712890625,\n            482.40350341796875,\n            594.7318725585938\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This term distinguishes them from variables like suit and rank, which are called <b>instance</b> <b>attributes</b> because they are associated with a particular instance.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              603.66796875\n            ],\n            [\n              482.39996337890625,\n              603.66796875\n            ],\n            [\n              482.39996337890625,\n              626.0348815917969\n            ],\n            [\n              85.6142578125,\n              626.0348815917969\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            603.66796875,\n            482.39996337890625,\n            626.0348815917969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Both kinds of attribute are accessed using dot notation. For example, in __str__, self is a Card object, and self.rank is its rank. Similarly, Card is a class object, and Card.rank_names is a list of strings associated with the class.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              634.9921875\n            ],\n            [\n              482.40570068359375,\n              634.9921875\n            ],\n            [\n              482.40570068359375,\n              669.5318984985352\n            ],\n            [\n              85.6142578125,\n              669.5318984985352\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            634.9921875,\n            482.40570068359375,\n            669.5318984985352\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/189/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Every card has its own suit and rank, but there is only one copy of suit_names and rank_names.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              678.3046875\n            ],\n            [\n              482.607421875,\n              678.3046875\n            ],\n            [\n              482.607421875,\n              700.8348999023438\n            ],\n            [\n              85.46484375,\n              700.8348999023438\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            678.3046875,\n            482.607421875,\n            700.8348999023438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"4\": \"/page/189/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/190/Page/223\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/190/PageHeader/0'></content-ref><content-ref src='/page/190/PageHeader/14'></content-ref><content-ref src='/page/190/FigureGroup/221'></content-ref><content-ref src='/page/190/Text/3'></content-ref><content-ref src='/page/190/Text/4'></content-ref><content-ref src='/page/190/Text/5'></content-ref><content-ref src='/page/190/Code/6'></content-ref><content-ref src='/page/190/Text/7'></content-ref><content-ref src='/page/190/SectionHeader/8'></content-ref><content-ref src='/page/190/Text/9'></content-ref><content-ref src='/page/190/Text/10'></content-ref><content-ref src='/page/190/Text/11'></content-ref><content-ref src='/page/190/Text/12'></content-ref><content-ref src='/page/190/Text/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/190/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              127.8984375,\n              61.14990234375\n            ],\n            [\n              525.6033935546875,\n              61.14990234375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              127.8984375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            61.14990234375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              60.71484375\n            ],\n            [\n              525.638671875,\n              60.71484375\n            ],\n            [\n              525.638671875,\n              69.99609375\n            ],\n            [\n              510.099609375,\n              69.99609375\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            60.71484375,\n            525.638671875,\n            69.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/FigureGroup/221\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/190/Figure/1'></content-ref><content-ref src='/page/190/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              246.9814453125,\n              84.498046875\n            ],\n            [\n              408.19921875,\n              84.498046875\n            ],\n            [\n              408.19921875,\n              234.7529296875\n            ],\n            [\n              246.9814453125,\n              234.7529296875\n            ]\n          ],\n          \"bbox\": [\n            246.9814453125,\n            84.498046875,\n            408.19921875,\n            234.7529296875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/190/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  246.9814453125,\n                  84.498046875\n                ],\n                [\n                  408.19921875,\n                  84.498046875\n                ],\n                [\n                  408.19921875,\n                  211.1484375\n                ],\n                [\n                  246.9814453125,\n                  211.1484375\n                ]\n              ],\n              \"bbox\": [\n                246.9814453125,\n                84.498046875,\n                408.19921875,\n                211.1484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/189/SectionHeader/9\"\n              },\n              \"images\": {\n                \"/page/190/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/190/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-190-1\\\"></span>Figure 18.1: Object diagram.</p>\",\n              \"polygon\": [\n                [\n                  262.8193359375,\n                  224.296875\n                ],\n                [\n                  389.7672424316406,\n                  224.296875\n                ],\n                [\n                  389.7672424316406,\n                  234.7529296875\n                ],\n                [\n                  262.8193359375,\n                  234.7529296875\n                ]\n              ],\n              \"bbox\": [\n                262.8193359375,\n                224.296875,\n                389.7672424316406,\n                234.7529296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"4\": \"/page/189/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/190/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Putting it all together, the expression Card.rank_names[self.rank] means \\\"use the attribute rank from the object self as an index into the list rank_names from the class Card, and select the appropriate string.\\\"</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              256.974609375\n            ],\n            [\n              525.9375,\n              256.974609375\n            ],\n            [\n              525.9375,\n              292.284912109375\n            ],\n            [\n              128.9443359375,\n              292.284912109375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            256.974609375,\n            525.9375,\n            292.284912109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first element of rank_names is None because there is no card with rank zero. By including None as a place-keeper, we get a mapping with the nice property that the index 2 maps to the string '2', and so on. To avoid this tweak, we could have used a dictionary instead of a list.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              302.607421875\n            ],\n            [\n              525.9375,\n              302.607421875\n            ],\n            [\n              525.9375,\n              349.5279235839844\n            ],\n            [\n              128.3466796875,\n              349.5279235839844\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            302.607421875,\n            525.9375,\n            349.5279235839844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">With the methods we have so far, we can create and print cards:</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              359.6484375\n            ],\n            [\n              409.8777770996094,\n              359.6484375\n            ],\n            [\n              409.8777770996094,\n              370.1889343261719\n            ],\n            [\n              127.7490234375,\n              370.1889343261719\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            359.6484375,\n            409.8777770996094,\n            370.1889343261719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; card1 = Card(2, 11)\\n&gt;&gt;&gt; print card1\\nJack of Hearts</pre>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              376.6640625\n            ],\n            [\n              249.89834594726562,\n              376.6640625\n            ],\n            [\n              249.89834594726562,\n              411.1163635253906\n            ],\n            [\n              129.16845703125,\n              411.1163635253906\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            376.6640625,\n            249.89834594726562,\n            411.1163635253906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-190-1\\\">18.1</a> is a diagram of the Card class object and one Card instance. Card is a class object, so it has type type. card1 has type Card. (To save space, I didn't draw the contents of suit_names and rank_names).</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              417.65625\n            ],\n            [\n              525.9375,\n              417.65625\n            ],\n            [\n              525.9375,\n              452.3429260253906\n            ],\n            [\n              129.5419921875,\n              452.3429260253906\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            417.65625,\n            525.9375,\n            452.3429260253906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/189/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-190-0\\\"></span><b>18.3 Comparing cards</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              483.01171875\n            ],\n            [\n              281.0240783691406,\n              483.01171875\n            ],\n            [\n              281.0240783691406,\n              497.5999755859375\n            ],\n            [\n              128.3466796875,\n              497.5999755859375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            483.01171875,\n            281.0240783691406,\n            497.5999755859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For built-in types, there are relational operators (&lt;, &gt;, ==, etc.) that compare values and determine when one is greater than, less than, or equal to another. For user-defined types, we can override the behavior of the built-in operators by providing a method named __cmp__.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              509.6953125\n            ],\n            [\n              525.6034545898438,\n              509.6953125\n            ],\n            [\n              525.6034545898438,\n              545.0279235839844\n            ],\n            [\n              129.09375,\n              545.0279235839844\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            509.6953125,\n            525.6034545898438,\n            545.0279235839844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">__cmp__ takes two parameters, self and other, and returns a positive number if the first object is greater, a negative number if the second object is greater, and 0 if they are equal to each other.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              554.94140625\n            ],\n            [\n              525.638671875,\n              554.94140625\n            ],\n            [\n              525.638671875,\n              590.0769195556641\n            ],\n            [\n              128.794921875,\n              590.0769195556641\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            554.94140625,\n            525.638671875,\n            590.0769195556641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The correct ordering for cards is not obvious. For example, which is better, the 3 of Clubs or the 2 of Diamonds? One has a higher rank, but the other has a higher suit. In order to compare cards, you have to decide whether rank or suit is more important.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              600.1875\n            ],\n            [\n              525.9375,\n              600.1875\n            ],\n            [\n              525.9375,\n              635.1259155273438\n            ],\n            [\n              128.0478515625,\n              635.1259155273438\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            600.1875,\n            525.9375,\n            635.1259155273438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The answer might depend on what game you are playing, but to keep things simple, we'll make the arbitrary choice that suit is more important, so all of the Spades outrank all of the Diamonds, and so on.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              645.43359375\n            ],\n            [\n              525.9375,\n              645.43359375\n            ],\n            [\n              525.9375,\n              680.1749267578125\n            ],\n            [\n              128.0478515625,\n              680.1749267578125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            645.43359375,\n            525.9375,\n            680.1749267578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/190/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">With that decided, we can write __cmp__:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              690.6796875\n            ],\n            [\n              311.9765625,\n              690.6796875\n            ],\n            [\n              311.9765625,\n              700.8349227905273\n            ],\n            [\n              128.794921875,\n              700.8349227905273\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            690.6796875,\n            311.9765625,\n            700.8349227905273\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"4\": \"/page/190/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/191/Page/186\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/191/PageHeader/0'></content-ref><content-ref src='/page/191/PageHeader/14'></content-ref><content-ref src='/page/191/Code/1'></content-ref><content-ref src='/page/191/Text/2'></content-ref><content-ref src='/page/191/Code/3'></content-ref><content-ref src='/page/191/Code/4'></content-ref><content-ref src='/page/191/Text/5'></content-ref><content-ref src='/page/191/Text/6'></content-ref><content-ref src='/page/191/Text/7'></content-ref><content-ref src='/page/191/SectionHeader/8'></content-ref><content-ref src='/page/191/Text/9'></content-ref><content-ref src='/page/191/Text/10'></content-ref><content-ref src='/page/191/Code/185'></content-ref><content-ref src='/page/191/Code/12'></content-ref><content-ref src='/page/191/Text/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/191/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.71484375\n            ],\n            [\n              482.40338134765625,\n              60.71484375\n            ],\n            [\n              482.40338134765625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.71484375,\n            482.40338134765625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.763671875,\n              60.85986328125\n            ],\n            [\n              101.4521484375,\n              60.85986328125\n            ],\n            [\n              101.4521484375,\n              70.33447265625\n            ],\n            [\n              85.763671875,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            60.85986328125,\n            101.4521484375,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># inside class Card:\\n    def __cmp__(self, other):\\n        # check the suits\\n        if self.suit &gt; other.suit: return 1\\n        if self.suit &lt; other.suit: return -1\\n        # suits are the same... check ranks\\n        if self.rank &gt; other.rank: return 1\\n        if self.rank &lt; other.rank: return -1\\n        # ranks are the same... it's a tie\\n        return 0</pre>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              88.68572998046875\n            ],\n            [\n              321.240234375,\n              88.68572998046875\n            ],\n            [\n              321.240234375,\n              247.88671875\n            ],\n            [\n              86.4000015258789,\n              247.88671875\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            88.68572998046875,\n            321.240234375,\n            247.88671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can write this more concisely using tuple comparison:</p>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              251.173828125\n            ],\n            [\n              343.65234375,\n              251.173828125\n            ],\n            [\n              343.65234375,\n              261.324951171875\n            ],\n            [\n              86.28662109375,\n              261.324951171875\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            251.173828125,\n            343.65234375,\n            261.324951171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre># inside class Card:</pre>\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              267.40777587890625\n            ],\n            [\n              191.00729370117188,\n              267.40777587890625\n            ],\n            [\n              191.00729370117188,\n              277.370361328125\n            ],\n            [\n              85.83837890625,\n              277.370361328125\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            267.40777587890625,\n            191.00729370117188,\n            277.370361328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def __cmp__(self, other):\\n    t1 = self.suit, self.rank\\n    t2 = other.suit, other.rank\\n    return cmp(t1, t2)</pre>\",\n          \"polygon\": [\n            [\n              107.31600952148438,\n              291.779296875\n            ],\n            [\n              270.140625,\n              291.779296875\n            ],\n            [\n              270.140625,\n              338.34136962890625\n            ],\n            [\n              107.31600952148438,\n              338.34136962890625\n            ]\n          ],\n          \"bbox\": [\n            107.31600952148438,\n            291.779296875,\n            270.140625,\n            338.34136962890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The built-in function cmp has the same interface as the method __cmp__: it takes two values and returns a positive number if the first is larger, a negative number if the second is larger, and 0 if they are equal.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              343.79296875\n            ],\n            [\n              482.607421875,\n              343.79296875\n            ],\n            [\n              482.607421875,\n              379.074951171875\n            ],\n            [\n              85.763671875,\n              379.074951171875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            343.79296875,\n            482.607421875,\n            379.074951171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In Python 3, cmp no longer exists, and the __cmp__ method is not supported. Instead you should provide __lt__, which returns True if self is less than other. You can implement __lt__ using tuples and the &lt; operator.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              388.458984375\n            ],\n            [\n              482.4022521972656,\n              388.458984375\n            ],\n            [\n              482.4022521972656,\n              423.62994384765625\n            ],\n            [\n              85.763671875,\n              423.62994384765625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            388.458984375,\n            482.4022521972656,\n            423.62994384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 18.1.</b> <i>Write a</i> __cmp__ <i>method for Time objects. Hint: you can use tuple comparison, but</i> <i>you also might consider using integer subtraction.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              424.6171875\n            ],\n            [\n              482.4032287597656,\n              424.6171875\n            ],\n            [\n              482.4032287597656,\n              447.8452453613281\n            ],\n            [\n              85.6142578125,\n              447.8452453613281\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            424.6171875,\n            482.4032287597656,\n            447.8452453613281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/190/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-191-0\\\"></span><b>18.4 Decks</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              477.44677734375\n            ],\n            [\n              166.48049926757812,\n              477.44677734375\n            ],\n            [\n              166.48049926757812,\n              491.7929992675781\n            ],\n            [\n              85.763671875,\n              491.7929992675781\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            477.44677734375,\n            166.48049926757812,\n            491.7929992675781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/191/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now that we have Cards, the next step is to define Decks. Since a deck is made up of cards, it is natural for each Deck to contain a list of cards as an attribute.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              504.1793518066406\n            ],\n            [\n              482.40338134765625,\n              504.1793518066406\n            ],\n            [\n              482.40338134765625,\n              526.3359375\n            ],\n            [\n              85.763671875,\n              526.3359375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            504.1793518066406,\n            482.40338134765625,\n            526.3359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/191/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The following is a class definition for Deck. The init method creates the attribute cards and generates the standard set of fifty-two cards:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              535.9921875\n            ],\n            [\n              482.3996887207031,\n              535.9921875\n            ],\n            [\n              482.3996887207031,\n              558.6969299316406\n            ],\n            [\n              85.9130859375,\n              558.6969299316406\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            535.9921875,\n            482.3996887207031,\n            558.6969299316406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/191/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Code/185\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class Deck(object):</pre>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              564.77978515625\n            ],\n            [\n              185.87109375,\n              564.77978515625\n            ],\n            [\n              185.87109375,\n              575.05078125\n            ],\n            [\n              85.98779296875,\n              575.05078125\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            564.77978515625,\n            185.87109375,\n            575.05078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/191/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def __init__(self):\\n    self.cards = []\\n    for suit in range(4):\\n        for rank in range(1, 14):\\n            card = Card(suit, rank)\\n            self.cards.append(card)</pre>\",\n          \"polygon\": [\n            [\n              105.71044921875,\n              587.8125\n            ],\n            [\n              291.05859375,\n              587.8125\n            ],\n            [\n              291.05859375,\n              660.1024017333984\n            ],\n            [\n              105.71044921875,\n              660.1024017333984\n            ]\n          ],\n          \"bbox\": [\n            105.71044921875,\n            587.8125,\n            291.05859375,\n            660.1024017333984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/191/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/191/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The easiest way to populate the deck is with a nested loop. The outer loop enumerates the suits from 0 to 3. The inner loop enumerates the ranks from 1 to 13. Each iteration creates a new Card with the current suit and rank, and appends it to self.cards.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              665.54296875\n            ],\n            [\n              482.4033508300781,\n              665.54296875\n            ],\n            [\n              482.4033508300781,\n              700.8349609375\n            ],\n            [\n              85.763671875,\n              700.8349609375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            665.54296875,\n            482.4033508300781,\n            700.8349609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/191/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"4\": \"/page/191/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/192/Page/178\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/192/PageHeader/0'></content-ref><content-ref src='/page/192/PageHeader/15'></content-ref><content-ref src='/page/192/SectionHeader/1'></content-ref><content-ref src='/page/192/Text/2'></content-ref><content-ref src='/page/192/Text/3'></content-ref><content-ref src='/page/192/Text/4'></content-ref><content-ref src='/page/192/Code/5'></content-ref><content-ref src='/page/192/Text/6'></content-ref><content-ref src='/page/192/SectionHeader/7'></content-ref><content-ref src='/page/192/Text/8'></content-ref><content-ref src='/page/192/Text/9'></content-ref><content-ref src='/page/192/Code/10'></content-ref><content-ref src='/page/192/Text/11'></content-ref><content-ref src='/page/192/Text/12'></content-ref><content-ref src='/page/192/Text/13'></content-ref><content-ref src='/page/192/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/192/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              60.76318359375\n            ],\n            [\n              525.6033935546875,\n              60.76318359375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.72021484375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            60.76318359375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/191/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.3984375,\n              60.71484375\n            ],\n            [\n              525.9375,\n              60.71484375\n            ],\n            [\n              525.9375,\n              70.4794921875\n            ],\n            [\n              510.3984375,\n              70.4794921875\n            ]\n          ],\n          \"bbox\": [\n            510.3984375,\n            60.71484375,\n            525.9375,\n            70.4794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/191/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-192-0\\\"></span><b>18.5 Printing the deck</b></h4>\",\n          \"polygon\": [\n            [\n              127.82373046875,\n              85.95379638671875\n            ],\n            [\n              283.587890625,\n              85.95379638671875\n            ],\n            [\n              283.587890625,\n              100.29998779296875\n            ],\n            [\n              127.82373046875,\n              100.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            127.82373046875,\n            85.95379638671875,\n            283.587890625,\n            100.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is a __str__ method for Deck: #inside class Deck: def __str__(self): res = [] for card in self.cards: res.append(str(card)) return '\\\\n'.join(res)</p>\",\n          \"polygon\": [\n            [\n              129.16845703125,\n              111.955078125\n            ],\n            [\n              302.1966247558594,\n              111.955078125\n            ],\n            [\n              302.1966247558594,\n              211.97137451171875\n            ],\n            [\n              129.16845703125,\n              211.97137451171875\n            ]\n          ],\n          \"bbox\": [\n            129.16845703125,\n            111.955078125,\n            302.1966247558594,\n            211.97137451171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This method demonstrates an efficient way to accumulate a large string: building a list of strings and then using join. The built-in function str invokes the __str__ method on each card and returns the string representation.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              218.109375\n            ],\n            [\n              525.9375,\n              218.109375\n            ],\n            [\n              525.9375,\n              252.74993896484375\n            ],\n            [\n              128.9443359375,\n              252.74993896484375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            218.109375,\n            525.9375,\n            252.74993896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since we invoke join on a newline character, the cards are separated by newlines. Here's what the result looks like:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              262.1953125\n            ],\n            [\n              525.5950927734375,\n              262.1953125\n            ],\n            [\n              525.5950927734375,\n              285.15692138671875\n            ],\n            [\n              128.197265625,\n              285.15692138671875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            262.1953125,\n            525.5950927734375,\n            285.15692138671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; deck = Deck()\\n&gt;&gt;&gt; print deck\\nAce of Clubs\\n2 of Clubs\\n3 of Clubs\\n...\\n10 of Spades\\nJack of Spades\\nQueen of Spades\\nKing of Spades</pre>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              291.2857666015625\n            ],\n            [\n              218.51620483398438,\n              291.2857666015625\n            ],\n            [\n              218.51620483398438,\n              410.99737548828125\n            ],\n            [\n              129.60000610351562,\n              410.99737548828125\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            291.2857666015625,\n            218.51620483398438,\n            410.99737548828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Even though the result appears on 52 lines, it is one long string that contains newlines.</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              416.49609375\n            ],\n            [\n              509.60345458984375,\n              416.49609375\n            ],\n            [\n              509.60345458984375,\n              427.387939453125\n            ],\n            [\n              129.60000610351562,\n              427.387939453125\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            416.49609375,\n            509.60345458984375,\n            427.387939453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-192-1\\\"></span><b>18.6 Add, remove, shuffle and sort</b></h4>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              456.71484375\n            ],\n            [\n              362.4675598144531,\n              456.71484375\n            ],\n            [\n              362.4675598144531,\n              471.302001953125\n            ],\n            [\n              128.49609375,\n              471.302001953125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            456.71484375,\n            362.4675598144531,\n            471.302001953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To deal cards, we would like a method that removes a card from the deck and returns it. The list method pop provides a convenient way to do that:</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              483.3984375\n            ],\n            [\n              525.6033935546875,\n              483.3984375\n            ],\n            [\n              525.6033935546875,\n              505.9099426269531\n            ],\n            [\n              129.5419921875,\n              505.9099426269531\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            483.3984375,\n            525.6033935546875,\n            505.9099426269531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">#inside class Deck:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              512.015625\n            ],\n            [\n              228.9868927001953,\n              512.015625\n            ],\n            [\n              228.9868927001953,\n              522.0013732910156\n            ],\n            [\n              128.197265625,\n              522.0013732910156\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            512.015625,\n            228.9868927001953,\n            522.0013732910156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def pop_card(self):\\n    return self.cards.pop()</pre>\",\n          \"polygon\": [\n            [\n              150.51600646972656,\n              536.4267883300781\n            ],\n            [\n              291.7413635253906,\n              536.4267883300781\n            ],\n            [\n              291.7413635253906,\n              558.5843963623047\n            ],\n            [\n              150.51600646972656,\n              558.5843963623047\n            ]\n          ],\n          \"bbox\": [\n            150.51600646972656,\n            536.4267883300781,\n            291.7413635253906,\n            558.5843963623047\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since pop removes the <i>last</i> card in the list, we are dealing from the bottom of the deck. In real life \\\"bottom dealing\\\" is frowned upon, but in this context it's ok.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              564.609375\n            ],\n            [\n              525.638671875,\n              564.609375\n            ],\n            [\n              525.638671875,\n              587.1689453125\n            ],\n            [\n              128.197265625,\n              587.1689453125\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            564.609375,\n            525.638671875,\n            587.1689453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To add a card, we can use the list method append:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              597.09375\n            ],\n            [\n              347.8359375,\n              597.09375\n            ],\n            [\n              347.8359375,\n              607.3819427490234\n            ],\n            [\n              128.197265625,\n              607.3819427490234\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            597.09375,\n            347.8359375,\n            607.3819427490234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">#inside class Deck: def add_card(self, card): self.cards.append(card)</p>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              613.5107879638672\n            ],\n            [\n              291.74139404296875,\n              613.5107879638672\n            ],\n            [\n              291.74139404296875,\n              660.12890625\n            ],\n            [\n              129.60003662109375,\n              660.12890625\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            613.5107879638672,\n            291.74139404296875,\n            660.12890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/192/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A method like this that uses another function without doing much real work is sometimes called a <b>veneer</b>. The metaphor comes from woodworking, where it is common to glue a thin layer of good quality wood to the surface of a cheaper piece of wood.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              665.54296875\n            ],\n            [\n              525.9375,\n              665.54296875\n            ],\n            [\n              525.9375,\n              700.8349533081055\n            ],\n            [\n              129.2431640625,\n              700.8349533081055\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            665.54296875,\n            525.9375,\n            700.8349533081055\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"4\": \"/page/192/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/193/Page/213\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/193/PageHeader/0'></content-ref><content-ref src='/page/193/PageHeader/20'></content-ref><content-ref src='/page/193/Text/1'></content-ref><content-ref src='/page/193/Text/2'></content-ref><content-ref src='/page/193/Code/3'></content-ref><content-ref src='/page/193/Text/4'></content-ref><content-ref src='/page/193/Text/21'></content-ref><content-ref src='/page/193/Text/5'></content-ref><content-ref src='/page/193/SectionHeader/6'></content-ref><content-ref src='/page/193/Text/7'></content-ref><content-ref src='/page/193/Text/8'></content-ref><content-ref src='/page/193/Text/9'></content-ref><content-ref src='/page/193/Text/10'></content-ref><content-ref src='/page/193/Text/11'></content-ref><content-ref src='/page/193/Text/12'></content-ref><content-ref src='/page/193/Code/13'></content-ref><content-ref src='/page/193/Text/14'></content-ref><content-ref src='/page/193/Text/15'></content-ref><content-ref src='/page/193/Text/16'></content-ref><content-ref src='/page/193/Text/17'></content-ref><content-ref src='/page/193/Text/18'></content-ref><content-ref src='/page/193/Code/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/193/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.8115234375\n            ],\n            [\n              482.40338134765625,\n              60.8115234375\n            ],\n            [\n              482.40338134765625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.8115234375,\n            482.40338134765625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.763671875,\n              60.47314453125\n            ],\n            [\n              102.19921875,\n              60.47314453125\n            ],\n            [\n              102.19921875,\n              70.52783203125\n            ],\n            [\n              85.763671875,\n              70.52783203125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            60.47314453125,\n            102.19921875,\n            70.52783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this case we are defining a \\\"thin\\\" method that expresses a list operation in terms that are appropriate for decks.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              88.12353515625\n            ],\n            [\n              483.50390625,\n              88.12353515625\n            ],\n            [\n              483.50390625,\n              110.99188232421875\n            ],\n            [\n              85.3154296875,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            88.12353515625,\n            483.50390625,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As another example, we can write a Deck method named shuffle using the function shuffle from the random module:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              120.5595703125\n            ],\n            [\n              482.90625,\n              120.5595703125\n            ],\n            [\n              482.90625,\n              143.40692138671875\n            ],\n            [\n              85.46484375,\n              143.40692138671875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            120.5595703125,\n            482.90625,\n            143.40692138671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def shuffle(self):\\n    random.shuffle(self.cards)</pre>\",\n          \"polygon\": [\n            [\n              94.8779296875,\n              162.615234375\n            ],\n            [\n              264.2324523925781,\n              162.615234375\n            ],\n            [\n              264.2324523925781,\n              196.08935546875\n            ],\n            [\n              94.8779296875,\n              196.08935546875\n            ]\n          ],\n          \"bbox\": [\n            94.8779296875,\n            162.615234375,\n            264.2324523925781,\n            196.08935546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Don't forget to import random.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              201.287109375\n            ],\n            [\n              221.2822265625,\n              201.287109375\n            ],\n            [\n              221.2822265625,\n              212.48797607421875\n            ],\n            [\n              85.9130859375,\n              212.48797607421875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            201.287109375,\n            221.2822265625,\n            212.48797607421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/21\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"># inside class Deck:</p>\",\n          \"polygon\": [\n            [\n              86.39999389648438,\n              149.54376220703125\n            ],\n            [\n              191.0072784423828,\n              149.54376220703125\n            ],\n            [\n              191.0072784423828,\n              159.50634765625\n            ],\n            [\n              86.39999389648438,\n              159.50634765625\n            ]\n          ],\n          \"bbox\": [\n            86.39999389648438,\n            149.54376220703125,\n            191.0072784423828,\n            159.50634765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 18.2.</b> <i>Write a Deck method named</i> sort <i>that uses the list method</i> sort <i>to sort the cards</i> <i>in a</i> Deck<i>.</i> sort <i>uses the</i> __cmp__ <i>method we defined to determine sort order.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              213.85546875\n            ],\n            [\n              482.40118408203125,\n              213.85546875\n            ],\n            [\n              482.40118408203125,\n              236.7274169921875\n            ],\n            [\n              85.763671875,\n              236.7274169921875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            213.85546875,\n            482.40118408203125,\n            236.7274169921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"4\": \"/page/192/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-193-0\\\"></span><b>18.7 Inheritance</b></h3>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              265.482421875\n            ],\n            [\n              200.8125,\n              265.482421875\n            ],\n            [\n              200.8125,\n              280.8150634765625\n            ],\n            [\n              85.9130859375,\n              280.8150634765625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            265.482421875,\n            200.8125,\n            280.8150634765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The language feature most often associated with object-oriented programming is <b>inher</b><b>itance</b>. Inheritance is the ability to define a new class that is a modified version of an existing class.</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              292.939453125\n            ],\n            [\n              483.205078125,\n              292.939453125\n            ],\n            [\n              483.205078125,\n              327.62799072265625\n            ],\n            [\n              86.361328125,\n              327.62799072265625\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            292.939453125,\n            483.205078125,\n            327.62799072265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is called \\\"inheritance\\\" because the new class inherits the methods of the existing class. Extending this metaphor, the existing class is called the <b>parent</b> and the new class is called the <b>child</b>.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              337.21875\n            ],\n            [\n              482.4034118652344,\n              337.21875\n            ],\n            [\n              482.4034118652344,\n              372.2380065917969\n            ],\n            [\n              86.0625,\n              372.2380065917969\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            337.21875,\n            482.4034118652344,\n            372.2380065917969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As an example, let's say we want a class to represent a \\\"hand,\\\" that is, the set of cards held by one player. A hand is similar to a deck: both are made up of a set of cards, and both require operations like adding and removing cards.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              382.271484375\n            ],\n            [\n              482.90625,\n              382.271484375\n            ],\n            [\n              482.90625,\n              416.8828125\n            ],\n            [\n              85.9130859375,\n              416.8828125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            382.271484375,\n            482.90625,\n            416.8828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A hand is also different from a deck; there are operations we want for hands that don't make sense for a deck. For example, in poker we might compare two hands to see which one wins. In bridge, we might compute a score for a hand in order to make a bid.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              426.1640625\n            ],\n            [\n              483.802734375,\n              426.1640625\n            ],\n            [\n              483.802734375,\n              461.4560241699219\n            ],\n            [\n              85.763671875,\n              461.4560241699219\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            426.1640625,\n            483.802734375,\n            461.4560241699219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This relationship between classes—similar, but different—lends itself to inheritance.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              470.25\n            ],\n            [\n              455.49444580078125,\n              470.25\n            ],\n            [\n              455.49444580078125,\n              481.6770324707031\n            ],\n            [\n              86.0625,\n              481.6770324707031\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            470.25,\n            455.49444580078125,\n            481.6770324707031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The definition of a child class is like other class definitions, but the name of the parent class appears in parentheses:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              490.74609375\n            ],\n            [\n              483.205078125,\n              490.74609375\n            ],\n            [\n              483.205078125,\n              514.092041015625\n            ],\n            [\n              85.763671875,\n              514.092041015625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            490.74609375,\n            483.205078125,\n            514.092041015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class Hand(Deck):</pre>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              519.75\n            ],\n            [\n              175.32618713378906,\n              519.75\n            ],\n            [\n              175.32618713378906,\n              530.1914672851562\n            ],\n            [\n              85.98779296875,\n              530.1914672851562\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            519.75,\n            175.32618713378906,\n            530.1914672851562\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">\\\"\\\"\\\"Represents a hand of playing cards.\\\"\\\"\\\"</p>\",\n          \"polygon\": [\n            [\n              105.71044921875,\n              532.125\n            ],\n            [\n              322.435546875,\n              532.125\n            ],\n            [\n              322.435546875,\n              542.3854827880859\n            ],\n            [\n              105.71044921875,\n              542.3854827880859\n            ]\n          ],\n          \"bbox\": [\n            105.71044921875,\n            532.125,\n            322.435546875,\n            542.3854827880859\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This definition indicates that Hand inherits from Deck; that means we can use methods like pop_card and add_card for Hands as well as Decks.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              547.98046875\n            ],\n            [\n              484.1015625,\n              547.98046875\n            ],\n            [\n              484.1015625,\n              570.9790344238281\n            ],\n            [\n              85.3154296875,\n              570.9790344238281\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            547.98046875,\n            484.1015625,\n            570.9790344238281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Hand also inherits __init__ from Deck, but it doesn't really do what we want: instead of populating the hand with 52 new cards, the init method for Hands should initialize cards with an empty list.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              580.8515625\n            ],\n            [\n              483.205078125,\n              580.8515625\n            ],\n            [\n              483.205078125,\n              615.5880432128906\n            ],\n            [\n              85.166015625,\n              615.5880432128906\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            580.8515625,\n            483.205078125,\n            615.5880432128906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If we provide an init method in the Hand class, it overrides the one in the Deck class:</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              624.9375\n            ],\n            [\n              453.84783935546875,\n              624.9375\n            ],\n            [\n              453.84783935546875,\n              635.8090515136719\n            ],\n            [\n              85.166015625,\n              635.8090515136719\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            624.9375,\n            453.84783935546875,\n            635.8090515136719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"># inside class Hand:</p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              641.1796875\n            ],\n            [\n              192.146484375,\n              641.1796875\n            ],\n            [\n              192.146484375,\n              651.9085083007812\n            ],\n            [\n              85.39013671875,\n              651.9085083007812\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            641.1796875,\n            192.146484375,\n            651.9085083007812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/193/Code/19\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def __init__(self, label=''):\\n    self.cards = []\\n    self.label = label</pre>\",\n          \"polygon\": [\n            [\n              104.291015625,\n              665.54296875\n            ],\n            [\n              260.578125,\n              665.54296875\n            ],\n            [\n              260.578125,\n              700.6855010986328\n            ],\n            [\n              104.291015625,\n              700.6855010986328\n            ]\n          ],\n          \"bbox\": [\n            104.291015625,\n            665.54296875,\n            260.578125,\n            700.6855010986328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"3\": \"/page/193/SectionHeader/6\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/194/Page/188\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/194/PageHeader/0'></content-ref><content-ref src='/page/194/PageHeader/16'></content-ref><content-ref src='/page/194/Text/1'></content-ref><content-ref src='/page/194/Code/2'></content-ref><content-ref src='/page/194/Text/3'></content-ref><content-ref src='/page/194/Code/4'></content-ref><content-ref src='/page/194/Text/5'></content-ref><content-ref src='/page/194/Text/6'></content-ref><content-ref src='/page/194/Code/7'></content-ref><content-ref src='/page/194/Text/8'></content-ref><content-ref src='/page/194/Text/9'></content-ref><content-ref src='/page/194/Text/10'></content-ref><content-ref src='/page/194/Text/11'></content-ref><content-ref src='/page/194/Text/12'></content-ref><content-ref src='/page/194/SectionHeader/13'></content-ref><content-ref src='/page/194/Text/14'></content-ref><content-ref src='/page/194/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/194/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.49609375,\n              61.14990234375\n            ],\n            [\n              525.6033935546875,\n              61.14990234375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.49609375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            61.14990234375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              60.85986328125\n            ],\n            [\n              526.236328125,\n              60.85986328125\n            ],\n            [\n              526.236328125,\n              70.33447265625\n            ],\n            [\n              510.099609375,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            60.85986328125,\n            526.236328125,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So when you create a Hand, Python invokes this init method:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              88.171875\n            ],\n            [\n              400.4296875,\n              88.171875\n            ],\n            [\n              400.4296875,\n              98.79791259765625\n            ],\n            [\n              129.2431640625,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            88.171875,\n            400.4296875,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; hand = Hand('new hand')\\n&gt;&gt;&gt; print hand.cards\\n[]\\n&gt;&gt;&gt; print hand.label\\nnew hand</pre>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              104.220703125\n            ],\n            [\n              270.7873840332031,\n              104.220703125\n            ],\n            [\n              270.7873840332031,\n              163.00030517578125\n            ],\n            [\n              128.3466796875,\n              163.00030517578125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            104.220703125,\n            270.7873840332031,\n            163.00030517578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But the other methods are inherited from Deck, so we can use pop_card and add_card to deal a card:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              168.5126953125\n            ],\n            [\n              525.6004028320312,\n              168.5126953125\n            ],\n            [\n              525.6004028320312,\n              190.9423828125\n            ],\n            [\n              128.197265625,\n              190.9423828125\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            168.5126953125,\n            525.6004028320312,\n            190.9423828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; deck = Deck()\\n&gt;&gt;&gt; card = deck.pop_card()\\n&gt;&gt;&gt; hand.add_card(card)\\n&gt;&gt;&gt; print hand\\nKing of Spades</pre>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              196.259765625\n            ],\n            [\n              265.5994567871094,\n              196.259765625\n            ],\n            [\n              265.5994567871094,\n              255.120361328125\n            ],\n            [\n              129.01904296875,\n              255.120361328125\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            196.259765625,\n            265.5994567871094,\n            255.120361328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A natural next step is to encapsulate this code in a method called move_cards:</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              259.875\n            ],\n            [\n              473.34375,\n              259.875\n            ],\n            [\n              473.34375,\n              270.844970703125\n            ],\n            [\n              129.09375,\n              270.844970703125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            259.875,\n            473.34375,\n            270.844970703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">#inside class Deck:</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              276.3067626953125\n            ],\n            [\n              228.98692321777344,\n              276.3067626953125\n            ],\n            [\n              228.98692321777344,\n              286.2693786621094\n            ],\n            [\n              128.9443359375,\n              286.2693786621094\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            276.3067626953125,\n            228.98692321777344,\n            286.2693786621094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def move_cards(self, hand, num):\\n    for i in range(num):\\n        hand.add_card(self.pop_card())</pre>\",\n          \"polygon\": [\n            [\n              149.63818359375,\n              300.69580078125\n            ],\n            [\n              349.2699279785156,\n              300.69580078125\n            ],\n            [\n              349.2699279785156,\n              335.04638671875\n            ],\n            [\n              149.63818359375,\n              335.04638671875\n            ]\n          ],\n          \"bbox\": [\n            149.63818359375,\n            300.69580078125,\n            349.2699279785156,\n            335.04638671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">move_cards takes two arguments, a Hand object and the number of cards to deal. It modifies both self and hand, and returns None.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              339.92578125\n            ],\n            [\n              525.6010131835938,\n              339.92578125\n            ],\n            [\n              525.6010131835938,\n              362.9649658203125\n            ],\n            [\n              128.6455078125,\n              362.9649658203125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            339.92578125,\n            525.6010131835938,\n            362.9649658203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In some games, cards are moved from one hand to another, or from a hand back to the deck. You can use move_cards for any of these operations: self can be either a Deck or a Hand, and hand, despite the name, can also be a Deck.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              372.216796875\n            ],\n            [\n              525.9375,\n              372.216796875\n            ],\n            [\n              525.9375,\n              406.89996337890625\n            ],\n            [\n              128.0478515625,\n              406.89996337890625\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            372.216796875,\n            525.9375,\n            406.89996337890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 18.3.</b> <i>Write a Deck method called</i> deal_hands <i>that takes two parameters, the number of</i> <i>hands and the number of cards per hand, and that creates new Hand objects, deals the appropriate</i> <i>number of cards per hand, and returns a list of Hand objects.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              408.375\n            ],\n            [\n              525.9375,\n              408.375\n            ],\n            [\n              525.9375,\n              443.3102722167969\n            ],\n            [\n              128.6455078125,\n              443.3102722167969\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            408.375,\n            525.9375,\n            443.3102722167969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Inheritance is a useful feature. Some programs that would be repetitive without inheritance can be written more elegantly with it. Inheritance can facilitate code reuse, since you can customize the behavior of parent classes without having to modify them. In some cases, the inheritance structure reflects the natural structure of the problem, which makes the program easier to understand.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              452.07421875\n            ],\n            [\n              525.9375,\n              452.07421875\n            ],\n            [\n              525.9375,\n              511.80596923828125\n            ],\n            [\n              128.0478515625,\n              511.80596923828125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            452.07421875,\n            525.9375,\n            511.80596923828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">On the other hand, inheritance can make programs difficult to read. When a method is invoked, it is sometimes not clear where to find its definition. The relevant code may be scattered among several modules. Also, many of the things that can be done using inheritance can be done as well or better without it.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              520.91015625\n            ],\n            [\n              525.9375,\n              520.91015625\n            ],\n            [\n              525.9375,\n              567.9349670410156\n            ],\n            [\n              128.3466796875,\n              567.9349670410156\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            520.91015625,\n            525.9375,\n            567.9349670410156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-194-0\\\"></span><b>18.8 Class diagrams</b></h4>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              596.4488372802734\n            ],\n            [\n              268.25604248046875,\n              596.4488372802734\n            ],\n            [\n              268.25604248046875,\n              610.7950286865234\n            ],\n            [\n              127.4501953125,\n              610.7950286865234\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            596.4488372802734,\n            268.25604248046875,\n            610.7950286865234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So far we have seen stack diagrams, which show the state of a program, and object diagrams, which show the attributes of an object and their values. These diagrams represent a snapshot in the execution of a program, so they change as the program runs.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              622.5493774414062\n            ],\n            [\n              525.9375,\n              622.5493774414062\n            ],\n            [\n              525.9375,\n              656.9009857177734\n            ],\n            [\n              128.6455078125,\n              656.9009857177734\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            622.5493774414062,\n            525.9375,\n            656.9009857177734\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/194/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">They are also highly detailed; for some purposes, too detailed. A class diagram is a more abstract representation of the structure of a program. Instead of showing individual objects, it shows classes and the relationships between them.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              666.31640625\n            ],\n            [\n              525.638671875,\n              666.31640625\n            ],\n            [\n              525.638671875,\n              700.8349990844727\n            ],\n            [\n              128.197265625,\n              700.8349990844727\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            666.31640625,\n            525.638671875,\n            700.8349990844727\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"3\": \"/page/193/SectionHeader/6\",\n        \"4\": \"/page/194/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/195/Page/182\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/195/PageHeader/0'></content-ref><content-ref src='/page/195/PageHeader/17'></content-ref><content-ref src='/page/195/FigureGroup/179'></content-ref><content-ref src='/page/195/Text/3'></content-ref><content-ref src='/page/195/ListGroup/180'></content-ref><content-ref src='/page/195/Text/7'></content-ref><content-ref src='/page/195/Text/8'></content-ref><content-ref src='/page/195/Text/9'></content-ref><content-ref src='/page/195/Text/10'></content-ref><content-ref src='/page/195/Text/11'></content-ref><content-ref src='/page/195/Text/12'></content-ref><content-ref src='/page/195/SectionHeader/13'></content-ref><content-ref src='/page/195/Text/14'></content-ref><content-ref src='/page/195/Text/15'></content-ref><content-ref src='/page/195/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/195/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.328125\n            ],\n            [\n              482.90625,\n              60.328125\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.328125,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              59.79638671875\n            ],\n            [\n              102.19921875,\n              59.79638671875\n            ],\n            [\n              102.19921875,\n              70.91455078125\n            ],\n            [\n              85.3154296875,\n              70.91455078125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            59.79638671875,\n            102.19921875,\n            70.91455078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/FigureGroup/179\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/195/Figure/1'></content-ref><content-ref src='/page/195/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              223.224609375,\n              82.70947265625\n            ],\n            [\n              344.84765625,\n              82.70947265625\n            ],\n            [\n              344.84765625,\n              180.3529052734375\n            ],\n            [\n              223.224609375,\n              180.3529052734375\n            ]\n          ],\n          \"bbox\": [\n            223.224609375,\n            82.70947265625,\n            344.84765625,\n            180.3529052734375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/195/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  223.224609375,\n                  82.70947265625\n                ],\n                [\n                  343.951171875,\n                  82.70947265625\n                ],\n                [\n                  343.951171875,\n                  151.013671875\n                ],\n                [\n                  223.224609375,\n                  151.013671875\n                ]\n              ],\n              \"bbox\": [\n                223.224609375,\n                82.70947265625,\n                343.951171875,\n                151.013671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/193/SectionHeader/6\",\n                \"4\": \"/page/194/SectionHeader/13\"\n              },\n              \"images\": {\n                \"/page/195/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/195/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-195-1\\\"></span>Figure 18.2: Class diagram.</p>\",\n              \"polygon\": [\n                [\n                  224.59500122070312,\n                  168.7060546875\n                ],\n                [\n                  344.84765625,\n                  168.7060546875\n                ],\n                [\n                  344.84765625,\n                  180.3529052734375\n                ],\n                [\n                  224.59500122070312,\n                  180.3529052734375\n                ]\n              ],\n              \"bbox\": [\n                224.59500122070312,\n                168.7060546875,\n                344.84765625,\n                180.3529052734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/193/SectionHeader/6\",\n                \"4\": \"/page/194/SectionHeader/13\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/195/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are several kinds of relationship between classes:</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              200.513671875\n            ],\n            [\n              330.205078125,\n              200.513671875\n            ],\n            [\n              330.205078125,\n              212.34393310546875\n            ],\n            [\n              86.361328125,\n              212.34393310546875\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            200.513671875,\n            330.205078125,\n            212.34393310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/ListGroup/180\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/195/ListItem/4'></content-ref><content-ref src='/page/195/ListItem/5'></content-ref><content-ref src='/page/195/ListItem/6'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              100.28794860839844,\n              223.5234375\n            ],\n            [\n              484.400390625,\n              223.5234375\n            ],\n            [\n              484.400390625,\n              335.95294189453125\n            ],\n            [\n              100.28794860839844,\n              335.95294189453125\n            ]\n          ],\n          \"bbox\": [\n            100.28794860839844,\n            223.5234375,\n            484.400390625,\n            335.95294189453125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/195/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Objects in one class might contain references to objects in another class. For example, each Rectangle contains a reference to a Point, and each Deck contains references to many Cards. This kind of relationship is called <b>HAS-A</b>, as in, \\\"a Rectangle has a Point.\\\"</li>\",\n              \"polygon\": [\n                [\n                  100.28799438476562,\n                  223.5234375\n                ],\n                [\n                  483.802734375,\n                  223.5234375\n                ],\n                [\n                  483.802734375,\n                  271.94195556640625\n                ],\n                [\n                  100.28799438476562,\n                  271.94195556640625\n                ]\n              ],\n              \"bbox\": [\n                100.28799438476562,\n                223.5234375,\n                483.802734375,\n                271.94195556640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/193/SectionHeader/6\",\n                \"4\": \"/page/194/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/195/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> One class might inherit from another. This relationship is called <b>IS-A</b>, as in, \\\"a Hand is a kind of a Deck.\\\"</li>\",\n              \"polygon\": [\n                [\n                  100.28797912597656,\n                  279.404296875\n                ],\n                [\n                  484.400390625,\n                  279.404296875\n                ],\n                [\n                  484.400390625,\n                  303.9469299316406\n                ],\n                [\n                  100.28797912597656,\n                  303.9469299316406\n                ]\n              ],\n              \"bbox\": [\n                100.28797912597656,\n                279.404296875,\n                484.400390625,\n                303.9469299316406\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/193/SectionHeader/6\",\n                \"4\": \"/page/194/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/195/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> One class might depend on another in the sense that changes in one class would require changes in the other.</li>\",\n              \"polygon\": [\n                [\n                  100.28794860839844,\n                  311.30859375\n                ],\n                [\n                  484.1015625,\n                  311.30859375\n                ],\n                [\n                  484.1015625,\n                  335.95294189453125\n                ],\n                [\n                  100.28794860839844,\n                  335.95294189453125\n                ]\n              ],\n              \"bbox\": [\n                100.28794860839844,\n                311.30859375,\n                484.1015625,\n                335.95294189453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/193/SectionHeader/6\",\n                \"4\": \"/page/194/SectionHeader/13\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/195/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>class diagram</b> is a graphical representation of these relationships. For example, Figure <a href=\\\"#page-195-1\\\">18.2</a> shows the relationships between Card, Deck and Hand.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              347.2734375\n            ],\n            [\n              482.607421875,\n              347.2734375\n            ],\n            [\n              482.607421875,\n              371.16192626953125\n            ],\n            [\n              86.0625,\n              371.16192626953125\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            347.2734375,\n            482.607421875,\n            371.16192626953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The arrow with a hollow triangle head represents an IS-A relationship; in this case it indicates that Hand inherits from Deck.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              378.984375\n            ],\n            [\n              483.50390625,\n              378.984375\n            ],\n            [\n              483.50390625,\n              403.0799255371094\n            ],\n            [\n              85.763671875,\n              403.0799255371094\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            378.984375,\n            483.50390625,\n            403.0799255371094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The standard arrow head represents a HAS-A relationship; in this case a Deck has references to Card objects.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              411.08203125\n            ],\n            [\n              484.1015625,\n              411.08203125\n            ],\n            [\n              484.1015625,\n              434.9969177246094\n            ],\n            [\n              85.9130859375,\n              434.9969177246094\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            411.08203125,\n            484.1015625,\n            434.9969177246094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The star (*) near the arrow head is a <b>multiplicity</b>; it indicates how many Cards a Deck has. A multiplicity can be a simple number, like 52, a range, like 5..7 or a star, which indicates that a Deck can have any number of Cards.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              443.1796875\n            ],\n            [\n              484.400390625,\n              443.1796875\n            ],\n            [\n              484.400390625,\n              479.1089172363281\n            ],\n            [\n              86.0625,\n              479.1089172363281\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            443.1796875,\n            484.400390625,\n            479.1089172363281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A more detailed diagram might show that a Deck actually contains a <i>list</i> of Cards, but built-in types like list and dict are usually not included in class diagrams.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              486.87890625\n            ],\n            [\n              483.50390625,\n              486.87890625\n            ],\n            [\n              483.50390625,\n              511.02691650390625\n            ],\n            [\n              85.763671875,\n              511.02691650390625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            486.87890625,\n            483.50390625,\n            511.02691650390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 18.4.</b> <i>Read</i> TurtleWorld.py<i>,</i> World.py <i>and</i> Gui.py <i>and draw a class diagram that</i> <i>shows the relationships among the classes defined there.</i></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              511.62890625\n            ],\n            [\n              484.69921875,\n              511.62890625\n            ],\n            [\n              484.69921875,\n              535.2422180175781\n            ],\n            [\n              85.6142578125,\n              535.2422180175781\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            511.62890625,\n            484.69921875,\n            535.2422180175781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/193/SectionHeader/6\",\n            \"4\": \"/page/194/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-195-0\\\"></span><b>18.9 Debugging</b></h3>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              563.0625\n            ],\n            [\n              202.0078125,\n              563.0625\n            ],\n            [\n              202.0078125,\n              578.53125\n            ],\n            [\n              85.763671875,\n              578.53125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            563.0625,\n            202.0078125,\n            578.53125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Inheritance can make debugging a challenge because when you invoke a method on an object, you might not know which method will be invoked.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              588.97265625\n            ],\n            [\n              483.802734375,\n              588.97265625\n            ],\n            [\n              483.802734375,\n              612.6119232177734\n            ],\n            [\n              85.763671875,\n              612.6119232177734\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            588.97265625,\n            483.802734375,\n            612.6119232177734\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Suppose you are writing a function that works with Hand objects. You would like it to work with all kinds of Hands, like PokerHands, BridgeHands, etc. If you invoke a method like shuffle, you might get the one defined in Deck, but if any of the subclasses override this method, you'll get that version instead.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              620.68359375\n            ],\n            [\n              484.69921875,\n              620.68359375\n            ],\n            [\n              484.69921875,\n              668.9179382324219\n            ],\n            [\n              85.6142578125,\n              668.9179382324219\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            620.68359375,\n            484.69921875,\n            668.9179382324219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/195/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">Any time you are unsure about the flow of execution through your program, the simplest solution is to add print statements at the beginning of the relevant methods. If</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              677.14453125\n            ],\n            [\n              484.69921875,\n              677.14453125\n            ],\n            [\n              484.69921875,\n              700.8349380493164\n            ],\n            [\n              85.6142578125,\n              700.8349380493164\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            677.14453125,\n            484.69921875,\n            700.8349380493164\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"3\": \"/page/195/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/196/Page/192\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/196/PageHeader/0'></content-ref><content-ref src='/page/196/PageHeader/17'></content-ref><content-ref src='/page/196/Text/1'></content-ref><content-ref src='/page/196/Text/2'></content-ref><content-ref src='/page/196/TextInlineMath/3'></content-ref><content-ref src='/page/196/Text/4'></content-ref><content-ref src='/page/196/Code/5'></content-ref><content-ref src='/page/196/Text/6'></content-ref><content-ref src='/page/196/Text/7'></content-ref><content-ref src='/page/196/Text/8'></content-ref><content-ref src='/page/196/Text/9'></content-ref><content-ref src='/page/196/SectionHeader/10'></content-ref><content-ref src='/page/196/Text/11'></content-ref><content-ref src='/page/196/Text/12'></content-ref><content-ref src='/page/196/Text/13'></content-ref><content-ref src='/page/196/TextInlineMath/14'></content-ref><content-ref src='/page/196/Text/15'></content-ref><content-ref src='/page/196/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/196/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.794921875,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.794921875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            60.95654296875,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.501953125,\n              60.908203125\n            ],\n            [\n              525.638671875,\n              60.908203125\n            ],\n            [\n              525.638671875,\n              70.2861328125\n            ],\n            [\n              509.501953125,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            509.501953125,\n            60.908203125,\n            525.638671875,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Deck.shuffle prints a message that says something like Running Deck.shuffle, then as the program runs it traces the flow of execution.</p>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              88.0751953125\n            ],\n            [\n              525.6044311523438,\n              88.0751953125\n            ],\n            [\n              525.6044311523438,\n              110.99188232421875\n            ],\n            [\n              127.4501953125,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            88.0751953125,\n            525.6044311523438,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As an alternative, you could use this function, which takes an object and a method name (as a string) and returns the class that provides the definition of the method:</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              120.5595703125\n            ],\n            [\n              525.9375,\n              120.5595703125\n            ],\n            [\n              525.9375,\n              143.63482666015625\n            ],\n            [\n              127.8984375,\n              143.63482666015625\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            120.5595703125,\n            525.9375,\n            143.63482666015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/TextInlineMath/3\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">def find_defining_class(obj, meth_name):     for ty in type(obj).mro():         if meth_name in ty.__dict__: return ty</p>\",\n          \"polygon\": [\n            [\n              128.86962890625,\n              149.853515625\n            ],\n            [\n              338.83447265625,\n              149.853515625\n            ],\n            [\n              338.83447265625,\n              196.83984375\n            ],\n            [\n              128.86962890625,\n              196.83984375\n            ]\n          ],\n          \"bbox\": [\n            128.86962890625,\n            149.853515625,\n            338.83447265625,\n            196.83984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's an example:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              202.640625\n            ],\n            [\n              213.7839813232422,\n              202.640625\n            ],\n            [\n              213.7839813232422,\n              213.1728515625\n            ],\n            [\n              128.3466796875,\n              213.1728515625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            202.640625,\n            213.7839813232422,\n            213.1728515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; hand = Hand()\\n&gt;&gt;&gt; print find_defining_class(hand, 'shuffle')\\n&lt;class 'Card.Deck'&gt;</pre>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              219.5386962890625\n            ],\n            [\n              370.845703125,\n              219.5386962890625\n            ],\n            [\n              370.845703125,\n              254.07421875\n            ],\n            [\n              128.27197265625,\n              254.07421875\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            219.5386962890625,\n            370.845703125,\n            254.07421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So the shuffle method for this Hand is the one in Deck.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              260.26171875\n            ],\n            [\n              375.30267333984375,\n              260.26171875\n            ],\n            [\n              375.30267333984375,\n              270.51690673828125\n            ],\n            [\n              128.49609375,\n              270.51690673828125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            260.26171875,\n            375.30267333984375,\n            270.51690673828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">find_defining_class uses the mro method to get the list of class objects (types) that will be searched for methods. \\\"MRO\\\" stands for \\\"method resolution order.\\\"</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              280.564453125\n            ],\n            [\n              525.6015014648438,\n              280.564453125\n            ],\n            [\n              525.6015014648438,\n              303.1598815917969\n            ],\n            [\n              128.794921875,\n              303.1598815917969\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            280.564453125,\n            525.6015014648438,\n            303.1598815917969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's a program design suggestion: whenever you override a method, the interface of the new method should be the same as the old. It should take the same parameters, return the same type, and obey the same preconditions and postconditions. If you obey this rule, you will find that any function designed to work with an instance of a superclass, like a Deck, will also work with instances of subclasses like a Hand or PokerHand.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              313.62890625\n            ],\n            [\n              525.6034545898438,\n              313.62890625\n            ],\n            [\n              525.6034545898438,\n              372.41015625\n            ],\n            [\n              128.9443359375,\n              372.41015625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            313.62890625,\n            525.6034545898438,\n            372.41015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you violate this rule, your code will collapse like (sorry) a house of cards.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              382.8515625\n            ],\n            [\n              461.091796875,\n              382.8515625\n            ],\n            [\n              461.091796875,\n              392.83489990234375\n            ],\n            [\n              128.49609375,\n              392.83489990234375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            382.8515625,\n            461.091796875,\n            392.83489990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-196-0\\\"></span><b>18.10 Data encapsulation</b></h4>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              423.11175537109375\n            ],\n            [\n              302.5148010253906,\n              423.11175537109375\n            ],\n            [\n              302.5148010253906,\n              437.4579772949219\n            ],\n            [\n              129.01904296875,\n              437.4579772949219\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            423.11175537109375,\n            302.5148010253906,\n            437.4579772949219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Chapter <a href=\\\"#page-172-0\\\">16</a> demonstrates a development plan we might call \\\"object-oriented design.\\\" We identified objects we needed—Time, Point and Rectangle—and defined classes to represent them. In each case there is an obvious correspondence between the object and some entity in the real world (or at least a mathematical world).</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              449.75390625\n            ],\n            [\n              525.9375,\n              449.75390625\n            ],\n            [\n              525.9375,\n              496.784912109375\n            ],\n            [\n              128.6455078125,\n              496.784912109375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            449.75390625,\n            525.9375,\n            496.784912109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But sometimes it is less obvious what objects you need and how they should interact. In that case you need a different development plan. In the same way that we discovered function interfaces by encapsulation and generalization, we can discover class interfaces by <b>data encapsulation</b>.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              506.6015625\n            ],\n            [\n              525.9375,\n              506.6015625\n            ],\n            [\n              525.9375,\n              553.8169250488281\n            ],\n            [\n              128.9443359375,\n              553.8169250488281\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            506.6015625,\n            525.9375,\n            553.8169250488281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Markov analysis, from Section <a href=\\\"#page-149-0\\\">13.8,</a> provides a good example. If you download my code from <a href=\\\"http://thinkpython.com/code/markov.py\\\">http://thinkpython.com/code/markov.py</a>, you'll see that it uses two global variables—suffix_map and prefix—that are read and written from several functions.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              564.3033294677734\n            ],\n            [\n              526.53515625,\n              564.3033294677734\n            ],\n            [\n              526.53515625,\n              598.6539306640625\n            ],\n            [\n              128.6455078125,\n              598.6539306640625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            564.3033294677734,\n            526.53515625,\n            598.6539306640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/TextInlineMath/14\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">suffix_map = {} prefix = ()</p>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              605.019775390625\n            ],\n            [\n              208.05560302734375,\n              605.019775390625\n            ],\n            [\n              208.05560302734375,\n              627.1763763427734\n            ],\n            [\n              128.57080078125,\n              627.1763763427734\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            605.019775390625,\n            208.05560302734375,\n            627.1763763427734\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Because these variables are global we can only run one analysis at a time. If we read two texts, their prefixes and suffixes would be added to the same data structures (which makes for some interesting generated text).</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              633.4453125\n            ],\n            [\n              525.9375,\n              633.4453125\n            ],\n            [\n              525.9375,\n              668.1919479370117\n            ],\n            [\n              128.6455078125,\n              668.1919479370117\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            633.4453125,\n            525.9375,\n            668.1919479370117\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/196/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To run multiple analyses, and keep them separate, we can encapsulate the state of each analysis in an object. Here's what that looks like:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              678.678352355957\n            ],\n            [\n              525.6033935546875,\n              678.678352355957\n            ],\n            [\n              525.6033935546875,\n              700.8349533081055\n            ],\n            [\n              128.794921875,\n              700.8349533081055\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            678.678352355957,\n            525.6033935546875,\n            700.8349533081055\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"3\": \"/page/195/SectionHeader/13\",\n        \"4\": \"/page/196/SectionHeader/10\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/197/Page/183\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/197/PageHeader/0'></content-ref><content-ref src='/page/197/PageHeader/18'></content-ref><content-ref src='/page/197/Code/1'></content-ref><content-ref src='/page/197/Code/2'></content-ref><content-ref src='/page/197/Text/3'></content-ref><content-ref src='/page/197/Code/4'></content-ref><content-ref src='/page/197/Text/5'></content-ref><content-ref src='/page/197/Text/6'></content-ref><content-ref src='/page/197/ListGroup/181'></content-ref><content-ref src='/page/197/Text/11'></content-ref><content-ref src='/page/197/SectionHeader/12'></content-ref><content-ref src='/page/197/ListGroup/182'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/197/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              61.0048828125\n            ],\n            [\n              482.40338134765625,\n              61.0048828125\n            ],\n            [\n              482.40338134765625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            61.0048828125,\n            482.40338134765625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/197/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.73486328125,\n              61.63330078125\n            ],\n            [\n              103.02099609375,\n              61.63330078125\n            ],\n            [\n              103.02099609375,\n              71.20458984375\n            ],\n            [\n              86.73486328125,\n              71.20458984375\n            ]\n          ],\n          \"bbox\": [\n            86.73486328125,\n            61.63330078125,\n            103.02099609375,\n            71.20458984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/197/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class Markov(object):</pre>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              88.22021484375\n            ],\n            [\n              197.525390625,\n              88.22021484375\n            ],\n            [\n              197.525390625,\n              98.6483154296875\n            ],\n            [\n              86.4000015258789,\n              98.6483154296875\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            88.22021484375,\n            197.525390625,\n            98.6483154296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/197/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def __init__(self):\\n    self.suffix_map = {}\\n    self.prefix = ()</pre>\",\n          \"polygon\": [\n            [\n              107.31600189208984,\n              110.98828125\n            ],\n            [\n              232.85025024414062,\n              110.98828125\n            ],\n            [\n              232.85025024414062,\n              147.42529296875\n            ],\n            [\n              107.31600189208984,\n              147.42529296875\n            ]\n          ],\n          \"bbox\": [\n            107.31600189208984,\n            110.98828125,\n            232.85025024414062,\n            147.42529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/197/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Next, we transform the functions into methods. For example, here's process_word:</p>\",\n          \"polygon\": [\n            [\n              84.568359375,\n              152.2705078125\n            ],\n            [\n              453.0234375,\n              152.2705078125\n            ],\n            [\n              453.0234375,\n              163.534912109375\n            ],\n            [\n              84.568359375,\n              163.534912109375\n            ]\n          ],\n          \"bbox\": [\n            84.568359375,\n            152.2705078125,\n            453.0234375,\n            163.534912109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/197/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def process_word(self, word, order=2):\\n    if len(self.prefix) &lt; order:\\n        self.prefix += (word,)\\n        return\\n    try:\\n        self.suffix_map[self.prefix].append(word)\\n    except KeyError:\\n        # if there is no entry for this prefix, make one\\n        self.suffix_map[self.prefix] = [word]\\n    self.prefix = shift(self.prefix, word)</pre>\",\n          \"polygon\": [\n            [\n              107.3160400390625,\n              169.3817138671875\n            ],\n            [\n              410.291015625,\n              169.3817138671875\n            ],\n            [\n              410.291015625,\n              313.4813232421875\n            ],\n            [\n              107.3160400390625,\n              313.4813232421875\n            ]\n          ],\n          \"bbox\": [\n            107.3160400390625,\n            169.3817138671875,\n            410.291015625,\n            313.4813232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/197/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Transforming a program like this—changing the design without changing the function—is another example of refactoring (see Section <a href=\\\"#page-57-0\\\">4.7)</a>.</p>\",\n          \"polygon\": [\n            [\n              84.568359375,\n              318.65625\n            ],\n            [\n              482.4033508300781,\n              318.65625\n            ],\n            [\n              482.4033508300781,\n              341.7848815917969\n            ],\n            [\n              84.568359375,\n              341.7848815917969\n            ]\n          ],\n          \"bbox\": [\n            84.568359375,\n            318.65625,\n            482.4033508300781,\n            341.7848815917969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/197/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This example suggests a development plan for designing objects and methods:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              351.52734375\n            ],\n            [\n              432.703125,\n              351.52734375\n            ],\n            [\n              432.703125,\n              361.71588134765625\n            ],\n            [\n              85.9130859375,\n              361.71588134765625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            351.52734375,\n            432.703125,\n            361.71588134765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/197/ListGroup/181\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/197/ListItem/7'></content-ref><content-ref src='/page/197/ListItem/8'></content-ref><content-ref src='/page/197/ListItem/9'></content-ref><content-ref src='/page/197/ListItem/10'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.64208984375,\n              374.537109375\n            ],\n            [\n              482.90625,\n              374.537109375\n            ],\n            [\n              482.90625,\n              457.451904296875\n            ],\n            [\n              97.64208984375,\n              457.451904296875\n            ]\n          ],\n          \"bbox\": [\n            97.64208984375,\n            374.537109375,\n            482.90625,\n            457.451904296875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/197/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">1. Start by writing functions that read and write global variables (when necessary).</li>\",\n              \"polygon\": [\n                [\n                  98.85304260253906,\n                  374.537109375\n                ],\n                [\n                  464.677734375,\n                  374.537109375\n                ],\n                [\n                  464.677734375,\n                  385.2928771972656\n                ],\n                [\n                  98.85304260253906,\n                  385.2928771972656\n                ]\n              ],\n              \"bbox\": [\n                98.85304260253906,\n                374.537109375,\n                464.677734375,\n                385.2928771972656\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/196/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/197/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">2. Once you get the program working, look for associations between global variables and the functions that use them.</li>\",\n              \"polygon\": [\n                [\n                  98.4638671875,\n                  395.31829833984375\n                ],\n                [\n                  482.90625,\n                  395.31829833984375\n                ],\n                [\n                  482.90625,\n                  417.4748840332031\n                ],\n                [\n                  98.4638671875,\n                  417.4748840332031\n                ]\n              ],\n              \"bbox\": [\n                98.4638671875,\n                395.31829833984375,\n                482.90625,\n                417.4748840332031\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/196/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/197/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">3. Encapsulate related variables as attributes of an object.</li>\",\n              \"polygon\": [\n                [\n                  97.64208984375,\n                  427.5013122558594\n                ],\n                [\n                  351.5244140625,\n                  427.5013122558594\n                ],\n                [\n                  351.5244140625,\n                  437.4638977050781\n                ],\n                [\n                  97.64208984375,\n                  437.4638977050781\n                ]\n              ],\n              \"bbox\": [\n                97.64208984375,\n                427.5013122558594,\n                351.5244140625,\n                437.4638977050781\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/196/SectionHeader/10\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/197/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">4. Transform the associated functions into methods of the new class.</li>\",\n              \"polygon\": [\n                [\n                  98.38916015625,\n                  447.43359375\n                ],\n                [\n                  400.062255859375,\n                  447.43359375\n                ],\n                [\n                  400.062255859375,\n                  457.451904296875\n                ],\n                [\n                  98.38916015625,\n                  457.451904296875\n                ]\n              ],\n              \"bbox\": [\n                98.38916015625,\n                447.43359375,\n                400.062255859375,\n                457.451904296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/196/SectionHeader/10\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/197/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 18.5.</b> <i>Download my code from Section </i><i><a href=\\\"#page-149-0\\\">13.8</a></i><i> (</i><a href=\\\"http://thinkpython.com/code/markov.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/markov.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/markov.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/markov.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/markov.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/markov.py\\\">markov.</a> <a href=\\\"http://thinkpython.com/code/markov.py\\\">py</a> <i>), and follow the steps described above to encapsulate the global variables as attributes</i> <i>of a new class called</i> Markov<i>. Solution:</i> <a href=\\\"http://thinkpython.com/code/Markov.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/Markov.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/Markov.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/Markov.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/Markov.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/Markov.py\\\">Markov.</a> <a href=\\\"http://thinkpython.com/code/Markov.py\\\">py</a> <i>(note</i> <i>the capital M).</i></p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              463.0758972167969\n            ],\n            [\n              482.4031677246094,\n              463.0758972167969\n            ],\n            [\n              482.4031677246094,\n              509.70220947265625\n            ],\n            [\n              85.0166015625,\n              509.70220947265625\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            463.0758972167969,\n            482.4031677246094,\n            509.70220947265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/196/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/197/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-197-0\\\"></span><b>18.11 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              538.9277648925781\n            ],\n            [\n              191.19908142089844,\n              538.9277648925781\n            ],\n            [\n              191.19908142089844,\n              553.2739562988281\n            ],\n            [\n              85.46484375,\n              553.2739562988281\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            538.9277648925781,\n            191.19908142089844,\n            553.2739562988281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/197/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/197/ListGroup/182\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/197/ListItem/13'></content-ref><content-ref src='/page/197/ListItem/14'></content-ref><content-ref src='/page/197/ListItem/15'></content-ref><content-ref src='/page/197/ListItem/16'></content-ref><content-ref src='/page/197/ListItem/17'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              562.0451965332031\n            ],\n            [\n              482.40362548828125,\n              562.0451965332031\n            ],\n            [\n              482.40362548828125,\n              700.8349227905273\n            ],\n            [\n              85.6142578125,\n              700.8349227905273\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            562.0451965332031,\n            482.40362548828125,\n            700.8349227905273\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/197/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>encode:</b> To represent one set of values using another set of values by constructing a mapping between them.</li>\",\n              \"polygon\": [\n                [\n                  85.6142578125,\n                  562.0451965332031\n                ],\n                [\n                  482.4029846191406,\n                  562.0451965332031\n                ],\n                [\n                  482.4029846191406,\n                  584.2989044189453\n                ],\n                [\n                  85.6142578125,\n                  584.2989044189453\n                ]\n              ],\n              \"bbox\": [\n                85.6142578125,\n                562.0451965332031,\n                482.4029846191406,\n                584.2989044189453\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/197/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/197/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>class attribute:</b> An attribute associated with a class object. Class attributes are defined inside a class definition but outside any method.</li>\",\n              \"polygon\": [\n                [\n                  85.763671875,\n                  594.0\n                ],\n                [\n                  482.4033508300781,\n                  594.0\n                ],\n                [\n                  482.4033508300781,\n                  616.4819030761719\n                ],\n                [\n                  85.763671875,\n                  616.4819030761719\n                ]\n              ],\n              \"bbox\": [\n                85.763671875,\n                594.0,\n                482.4033508300781,\n                616.4819030761719\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/197/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/197/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>instance attribute:</b> An attribute associated with an instance of a class.</li>\",\n              \"polygon\": [\n                [\n                  85.9130859375,\n                  626.4102020263672\n                ],\n                [\n                  394.0252685546875,\n                  626.4102020263672\n                ],\n                [\n                  394.0252685546875,\n                  636.4699096679688\n                ],\n                [\n                  85.9130859375,\n                  636.4699096679688\n                ]\n              ],\n              \"bbox\": [\n                85.9130859375,\n                626.4102020263672,\n                394.0252685546875,\n                636.4699096679688\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/197/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/197/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>veneer:</b> A method or function that provides a different interface to another function without doing much computation.</li>\",\n              \"polygon\": [\n                [\n                  85.763671875,\n                  646.3982086181641\n                ],\n                [\n                  482.40362548828125,\n                  646.3982086181641\n                ],\n                [\n                  482.40362548828125,\n                  668.6529235839844\n                ],\n                [\n                  85.763671875,\n                  668.6529235839844\n                ]\n              ],\n              \"bbox\": [\n                85.763671875,\n                646.3982086181641,\n                482.40362548828125,\n                668.6529235839844\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/197/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/197/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>inheritance:</b> The ability to define a new class that is a modified version of a previously defined class.</li>\",\n              \"polygon\": [\n                [\n                  85.9130859375,\n                  678.5812072753906\n                ],\n                [\n                  482.4035949707031,\n                  678.5812072753906\n                ],\n                [\n                  482.4035949707031,\n                  700.8349227905273\n                ],\n                [\n                  85.9130859375,\n                  700.8349227905273\n                ]\n              ],\n              \"bbox\": [\n                85.9130859375,\n                678.5812072753906,\n                482.4035949707031,\n                700.8349227905273\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/197/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/197/SectionHeader/12\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"3\": \"/page/195/SectionHeader/13\",\n        \"4\": \"/page/197/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/198/Page/225\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/198/PageHeader/0'></content-ref><content-ref src='/page/198/PageHeader/24'></content-ref><content-ref src='/page/198/Text/1'></content-ref><content-ref src='/page/198/ListGroup/222'></content-ref><content-ref src='/page/198/SectionHeader/7'></content-ref><content-ref src='/page/198/Text/8'></content-ref><content-ref src='/page/198/Text/9'></content-ref><content-ref src='/page/198/Text/10'></content-ref><content-ref src='/page/198/Text/11'></content-ref><content-ref src='/page/198/Text/12'></content-ref><content-ref src='/page/198/Text/13'></content-ref><content-ref src='/page/198/Text/14'></content-ref><content-ref src='/page/198/Text/15'></content-ref><content-ref src='/page/198/Text/16'></content-ref><content-ref src='/page/198/Text/17'></content-ref><content-ref src='/page/198/ListItem/18'></content-ref><content-ref src='/page/198/Text/19'></content-ref><content-ref src='/page/198/ListGroup/223'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/198/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.9443359375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/197/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/PageHeader/24\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              61.34326171875\n            ],\n            [\n              525.638671875,\n              61.34326171875\n            ],\n            [\n              525.638671875,\n              70.14111328125\n            ],\n            [\n              510.099609375,\n              70.14111328125\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            61.34326171875,\n            525.638671875,\n            70.14111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/197/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>parent class:</b> The class from which a child class inherits.</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              88.7381591796875\n            ],\n            [\n              378.31640625,\n              88.7381591796875\n            ],\n            [\n              378.31640625,\n              98.79791259765625\n            ],\n            [\n              129.60000610351562,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            88.7381591796875,\n            378.31640625,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/197/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/ListGroup/222\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/198/ListItem/2'></content-ref><content-ref src='/page/198/ListItem/3'></content-ref><content-ref src='/page/198/ListItem/4'></content-ref><content-ref src='/page/198/ListItem/5'></content-ref><content-ref src='/page/198/ListItem/6'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              127.30078125,\n              108.87115478515625\n            ],\n            [\n              525.6031494140625,\n              108.87115478515625\n            ],\n            [\n              525.6031494140625,\n              248.23895263671875\n            ],\n            [\n              127.30078125,\n              248.23895263671875\n            ]\n          ],\n          \"bbox\": [\n            127.30078125,\n            108.87115478515625,\n            525.6031494140625,\n            248.23895263671875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/198/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>child class:</b> A new class created by inheriting from an existing class; also called a \\\"subclass.\\\"</li>\",\n              \"polygon\": [\n                [\n                  128.0478515625,\n                  108.87115478515625\n                ],\n                [\n                  525.6029663085938,\n                  108.87115478515625\n                ],\n                [\n                  525.6029663085938,\n                  131.12493896484375\n                ],\n                [\n                  128.0478515625,\n                  131.12493896484375\n                ]\n              ],\n              \"bbox\": [\n                128.0478515625,\n                108.87115478515625,\n                525.6029663085938,\n                131.12493896484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/197/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/198/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>IS-A relationship:</b> The relationship between a child class and its parent class.</li>\",\n              \"polygon\": [\n                [\n                  128.197265625,\n                  141.19818115234375\n                ],\n                [\n                  471.7654724121094,\n                  141.19818115234375\n                ],\n                [\n                  471.7654724121094,\n                  151.2579345703125\n                ],\n                [\n                  128.197265625,\n                  151.2579345703125\n                ]\n              ],\n              \"bbox\": [\n                128.197265625,\n                141.19818115234375,\n                471.7654724121094,\n                151.2579345703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/197/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/198/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>HAS-A relationship:</b> The relationship between two classes where instances of one class contain references to instances of the other.</li>\",\n              \"polygon\": [\n                [\n                  127.8984375,\n                  161.3302001953125\n                ],\n                [\n                  525.6031494140625,\n                  161.3302001953125\n                ],\n                [\n                  525.6031494140625,\n                  183.5849609375\n                ],\n                [\n                  127.8984375,\n                  183.5849609375\n                ]\n              ],\n              \"bbox\": [\n                127.8984375,\n                161.3302001953125,\n                525.6031494140625,\n                183.5849609375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/197/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/198/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>class diagram:</b> A diagram that shows the classes in a program and the relationships between them.</li>\",\n              \"polygon\": [\n                [\n                  127.7490234375,\n                  193.6572265625\n                ],\n                [\n                  525.6030883789062,\n                  193.6572265625\n                ],\n                [\n                  525.6030883789062,\n                  215.9119873046875\n                ],\n                [\n                  127.7490234375,\n                  215.9119873046875\n                ]\n              ],\n              \"bbox\": [\n                127.7490234375,\n                193.6572265625,\n                525.6030883789062,\n                215.9119873046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/197/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/198/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>multiplicity:</b> A notation in a class diagram that shows, for a HAS-A relationship, how many references there are to instances of another class.</li>\",\n              \"polygon\": [\n                [\n                  127.30078125,\n                  225.9852294921875\n                ],\n                [\n                  525.60302734375,\n                  225.9852294921875\n                ],\n                [\n                  525.60302734375,\n                  248.23895263671875\n                ],\n                [\n                  127.30078125,\n                  248.23895263671875\n                ]\n              ],\n              \"bbox\": [\n                127.30078125,\n                225.9852294921875,\n                525.60302734375,\n                248.23895263671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/197/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/197/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/198/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-198-0\\\"></span><b>18.12 Exercises</b></h4>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              277.52880859375\n            ],\n            [\n              235.97714233398438,\n              277.52880859375\n            ],\n            [\n              235.97714233398438,\n              291.875\n            ],\n            [\n              128.9443359375,\n              291.875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            277.52880859375,\n            235.97714233398438,\n            291.875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-198-1\\\"></span><b>Exercise 18.6.</b> <i>The following are the possible hands in poker, in increasing order of value (and</i> <i>decreasing order of probability):</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              304.0106506347656\n            ],\n            [\n              526.53515625,\n              304.0106506347656\n            ],\n            [\n              526.53515625,\n              326.167236328125\n            ],\n            [\n              128.6455078125,\n              326.167236328125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            304.0106506347656,\n            526.53515625,\n            326.167236328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>pair:</b> <i>two cards with the same rank</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              339.92578125\n            ],\n            [\n              272.5530090332031,\n              339.92578125\n            ],\n            [\n              272.5530090332031,\n              350.2788391113281\n            ],\n            [\n              128.6455078125,\n              350.2788391113281\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            339.92578125,\n            272.5530090332031,\n            350.2788391113281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>two pair:</b> <i>two pairs of cards with the same rank</i></p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              356.16796875\n            ],\n            [\n              324.52734375,\n              356.16796875\n            ],\n            [\n              324.52734375,\n              366.81085205078125\n            ],\n            [\n              128.3466796875,\n              366.81085205078125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            356.16796875,\n            324.52734375,\n            366.81085205078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>three of a kind:</b> <i>three cards with the same rank</i></p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              372.990234375\n            ],\n            [\n              325.79290771484375,\n              372.990234375\n            ],\n            [\n              325.79290771484375,\n              383.3438415527344\n            ],\n            [\n              128.3466796875,\n              383.3438415527344\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            372.990234375,\n            325.79290771484375,\n            383.3438415527344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>straight:</b> <i>five cards with ranks in sequence (aces can be high or low, so</i> Ace-2-3-4-5 <i>is a straight</i> <i>and so is</i> 10-Jack-Queen-King-Ace<i>, but</i> Queen-King-Ace-2-3 <i>is not.)</i></p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              389.8376770019531\n            ],\n            [\n              525.9375,\n              389.8376770019531\n            ],\n            [\n              525.9375,\n              412.01739501953125\n            ],\n            [\n              128.0478515625,\n              412.01739501953125\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            389.8376770019531,\n            525.9375,\n            412.01739501953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>flush:</b> <i>five cards with the same suit</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              418.5646667480469\n            ],\n            [\n              273.400390625,\n              418.5646667480469\n            ],\n            [\n              273.400390625,\n              428.60284423828125\n            ],\n            [\n              128.6455078125,\n              428.60284423828125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            418.5646667480469,\n            273.400390625,\n            428.60284423828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>full house:</b> <i>three cards with one rank, two cards with another</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              435.0966796875\n            ],\n            [\n              381.8525695800781,\n              435.0966796875\n            ],\n            [\n              381.8525695800781,\n              445.1348571777344\n            ],\n            [\n              128.794921875,\n              445.1348571777344\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            435.0966796875,\n            381.8525695800781,\n            445.1348571777344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>four of a kind:</b> <i>four cards with the same rank</i></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              451.6296691894531\n            ],\n            [\n              318.849609375,\n              451.6296691894531\n            ],\n            [\n              318.849609375,\n              461.6678466796875\n            ],\n            [\n              129.392578125,\n              461.6678466796875\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            451.6296691894531,\n            318.849609375,\n            461.6678466796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>straight flush:</b> <i>five cards in sequence (as defined above) and with the same suit</i></p>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              468.16168212890625\n            ],\n            [\n              449.9568176269531,\n              468.16168212890625\n            ],\n            [\n              449.9568176269531,\n              478.1998596191406\n            ],\n            [\n              129.60003662109375,\n              478.1998596191406\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            468.16168212890625,\n            449.9568176269531,\n            478.1998596191406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The goal of these exercises is to estimate the probability of drawing these various hands.</i></p>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              488.42578125\n            ],\n            [\n              478.1915283203125,\n              488.42578125\n            ],\n            [\n              478.1915283203125,\n              498.5602722167969\n            ],\n            [\n              129.60003662109375,\n              498.5602722167969\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            488.42578125,\n            478.1915283203125,\n            498.5602722167969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/ListItem/18\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Download the following files from</i> <a href=\\\"http://thinkpython.com/code\\\">http:</a> <a href=\\\"http://thinkpython.com/code\\\">//</a> <a href=\\\"http://thinkpython.com/code\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code\\\">com/</a> <a href=\\\"http://thinkpython.com/code\\\">code</a> <i>:</i></li>\",\n          \"polygon\": [\n            [\n              141.046875,\n              512.40234375\n            ],\n            [\n              445.8515625,\n              512.40234375\n            ],\n            [\n              445.8515625,\n              522.5952758789062\n            ],\n            [\n              141.046875,\n              522.5952758789062\n            ]\n          ],\n          \"bbox\": [\n            141.046875,\n            512.40234375,\n            445.8515625,\n            522.5952758789062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Card.py <i>: A complete version of the</i> Card<i>,</i> Deck <i>and</i> Hand <i>classes in this chapter.</i></p>\",\n          \"polygon\": [\n            [\n              151.9541015625,\n              528.7936706542969\n            ],\n            [\n              483.9549255371094,\n              528.7936706542969\n            ],\n            [\n              483.9549255371094,\n              538.7794189453125\n            ],\n            [\n              151.9541015625,\n              538.7794189453125\n            ]\n          ],\n          \"bbox\": [\n            151.9541015625,\n            528.7936706542969,\n            483.9549255371094,\n            538.7794189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/198/ListGroup/223\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/198/ListItem/20'></content-ref><content-ref src='/page/198/ListItem/21'></content-ref><content-ref src='/page/198/ListItem/22'></content-ref><content-ref src='/page/198/ListItem/23'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              139.4033203125,\n              544.5\n            ],\n            [\n              526.236328125,\n              544.5\n            ],\n            [\n              526.236328125,\n              700.6622772216797\n            ],\n            [\n              139.4033203125,\n              700.6622772216797\n            ]\n          ],\n          \"bbox\": [\n            139.4033203125,\n            544.5,\n            526.236328125,\n            700.6622772216797\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/198/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">PokerHand.py <i>: An incomplete implementation of a class that represents a poker hand, and</i> <i>some code that tests it.</i></li>\",\n              \"polygon\": [\n                [\n                  151.8046875,\n                  544.5\n                ],\n                [\n                  525.598388671875,\n                  544.5\n                ],\n                [\n                  525.598388671875,\n                  567.0982666015625\n                ],\n                [\n                  151.8046875,\n                  567.0982666015625\n                ]\n              ],\n              \"bbox\": [\n                151.8046875,\n                544.5,\n                525.598388671875,\n                567.0982666015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/198/ListItem/21\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. If you run</i> PokerHand.py<i>, it deals seven 7-card poker hands and checks to see if any of them</i> <i>contains a flush. Read this code carefully before you go on.</i></li>\",\n              \"polygon\": [\n                [\n                  139.4033203125,\n                  576.984375\n                ],\n                [\n                  525.9375,\n                  576.984375\n                ],\n                [\n                  525.9375,\n                  599.4252624511719\n                ],\n                [\n                  139.4033203125,\n                  599.4252624511719\n                ]\n              ],\n              \"bbox\": [\n                139.4033203125,\n                576.984375,\n                525.9375,\n                599.4252624511719\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/198/ListItem/22\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. Add methods to</i> PokerHand.py <i>named</i> has_pair<i>,</i> has_twopair<i>, etc. that return True or</i> <i>False according to whether or not the hand meets the relevant criteria. Your code should</i> <i>work correctly for \\\"hands\\\" that contain any number of cards (although 5 and 7 are the most</i> <i>common sizes).</i></li>\",\n              \"polygon\": [\n                [\n                  140.748046875,\n                  609.5956573486328\n                ],\n                [\n                  526.236328125,\n                  609.5956573486328\n                ],\n                [\n                  526.236328125,\n                  656.1412658691406\n                ],\n                [\n                  140.748046875,\n                  656.1412658691406\n                ]\n              ],\n              \"bbox\": [\n                140.748046875,\n                609.5956573486328,\n                526.236328125,\n                656.1412658691406\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/198/ListItem/23\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>4. Write a method named</i> classify <i>that figures out the highest-value classification for a hand</i> <i>and sets the</i> label <i>attribute accordingly. For example, a 7-card hand might contain a flush</i> <i>and a pair; it should be labeled \\\"flush\\\".</i></li>\",\n              \"polygon\": [\n                [\n                  140.44921875,\n                  666.3116760253906\n                ],\n                [\n                  525.9375,\n                  666.3116760253906\n                ],\n                [\n                  525.9375,\n                  700.6622772216797\n                ],\n                [\n                  140.44921875,\n                  700.6622772216797\n                ]\n              ],\n              \"bbox\": [\n                140.44921875,\n                666.3116760253906,\n                525.9375,\n                700.6622772216797\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"3\": \"/page/195/SectionHeader/13\",\n        \"4\": \"/page/198/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/199/Page/347\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/199/PageHeader/0'></content-ref><content-ref src='/page/199/PageHeader/15'></content-ref><content-ref src='/page/199/ListGroup/345'></content-ref><content-ref src='/page/199/Text/3'></content-ref><content-ref src='/page/199/Text/4'></content-ref><content-ref src='/page/199/ListGroup/346'></content-ref><content-ref src='/page/199/Text/7'></content-ref><content-ref src='/page/199/ListGroup/347'></content-ref><content-ref src='/page/199/Text/13'></content-ref><content-ref src='/page/199/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/199/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.37646484375\n            ],\n            [\n              482.90625,\n              60.37646484375\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.37646484375,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/199/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.46484375,\n              61.1015625\n            ],\n            [\n              102.3486328125,\n              61.1015625\n            ],\n            [\n              102.3486328125,\n              70.576171875\n            ],\n            [\n              85.46484375,\n              70.576171875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            61.1015625,\n            102.3486328125,\n            70.576171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/199/ListGroup/345\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/199/ListItem/1'></content-ref><content-ref src='/page/199/ListItem/2'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              98.015625,\n              88.171875\n            ],\n            [\n              483.50390625,\n              88.171875\n            ],\n            [\n              483.50390625,\n              191.95513916015625\n            ],\n            [\n              98.015625,\n              191.95513916015625\n            ]\n          ],\n          \"bbox\": [\n            98.015625,\n            88.171875,\n            483.50390625,\n            191.95513916015625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/199/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>5. When you are convinced that your classification methods are working, the next step is to esti</i><i>mate the probabilities of the various hands. Write a function in</i> PokerHand.py <i>that shuffles</i> <i>a deck of cards, divides it into hands, classifies the hands, and counts the number of times</i> <i>various classifications appear.</i></li>\",\n              \"polygon\": [\n                [\n                  98.61328125,\n                  88.171875\n                ],\n                [\n                  483.50390625,\n                  88.171875\n                ],\n                [\n                  483.50390625,\n                  135.20819091796875\n                ],\n                [\n                  98.61328125,\n                  135.20819091796875\n                ]\n              ],\n              \"bbox\": [\n                98.61328125,\n                88.171875,\n                483.50390625,\n                135.20819091796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/199/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>6. Print a table of the classifications and their probabilities. Run your program with larger and</i> <i>larger numbers of hands until the output values converge to a reasonable degree of accu</i><i>racy. Compare your results to the values at</i> <a href=\\\"http://en.wikipedia.org/wiki/Hand_rankings\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/Hand_rankings\\\">//</a> <a href=\\\"http://en.wikipedia.org/wiki/Hand_rankings\\\">en.</a> <a href=\\\"http://en.wikipedia.org/wiki/Hand_rankings\\\">wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Hand_rankings\\\">org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Hand_rankings\\\">wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Hand_rankings\\\">Hand_</a> <a href=\\\"http://en.wikipedia.org/wiki/Hand_rankings\\\">rankings</a> <i>.</i></li>\",\n              \"polygon\": [\n                [\n                  98.015625,\n                  144.9228515625\n                ],\n                [\n                  482.40399169921875,\n                  144.9228515625\n                ],\n                [\n                  482.40399169921875,\n                  191.95513916015625\n                ],\n                [\n                  98.015625,\n                  191.95513916015625\n                ]\n              ],\n              \"bbox\": [\n                98.015625,\n                144.9228515625,\n                482.40399169921875,\n                191.95513916015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/199/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/PokerHandSoln.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/PokerHandSoln.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/PokerHandSoln.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/PokerHandSoln.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/PokerHandSoln.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/PokerHandSoln.py\\\">PokerHandSoln.</a> <a href=\\\"http://thinkpython.com/code/PokerHandSoln.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              84.79248046875,\n              205.734375\n            ],\n            [\n              370.9757080078125,\n              205.734375\n            ],\n            [\n              370.9757080078125,\n              216.09112548828125\n            ],\n            [\n              84.79248046875,\n              216.09112548828125\n            ]\n          ],\n          \"bbox\": [\n            84.79248046875,\n            205.734375,\n            370.9757080078125,\n            216.09112548828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/199/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 18.7.</b> <i>This exercise uses TurtleWorld from Chapter </i><i><a href=\\\"#page-52-0\\\">4.</a></i><i> You will write code that makes</i> <i>Turtles play tag. If you are not familiar with the rules of tag, see</i> <a href=\\\"http://en.wikipedia.org/wiki/Tag_(game)\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/Tag_(game)\\\">//</a> <a href=\\\"http://en.wikipedia.org/wiki/Tag_(game)\\\">en.</a> <a href=\\\"http://en.wikipedia.org/wiki/Tag_(game)\\\">wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Tag_(game)\\\">org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Tag_(game)\\\">wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Tag_(game)\\\">Tag_</a> <a href=\\\"http://en.wikipedia.org/wiki/Tag_(game)\\\">(</a> <a href=\\\"http://en.wikipedia.org/wiki/Tag_(game)\\\">game)</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              218.302734375\n            ],\n            [\n              482.90625,\n              218.302734375\n            ],\n            [\n              482.90625,\n              252.67413330078125\n            ],\n            [\n              85.3154296875,\n              252.67413330078125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            218.302734375,\n            482.90625,\n            252.67413330078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/199/ListGroup/346\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/199/ListItem/5'></content-ref><content-ref src='/page/199/ListItem/6'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.5673828125,\n              266.44921875\n            ],\n            [\n              483.205078125,\n              266.44921875\n            ],\n            [\n              483.205078125,\n              321.3862609863281\n            ],\n            [\n              97.5673828125,\n              321.3862609863281\n            ]\n          ],\n          \"bbox\": [\n            97.5673828125,\n            266.44921875,\n            483.205078125,\n            321.3862609863281\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/199/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Download</i> <a href=\\\"http://thinkpython.com/code/Wobbler.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/Wobbler.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/Wobbler.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/Wobbler.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/Wobbler.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/Wobbler.py\\\">Wobbler.</a> <a href=\\\"http://thinkpython.com/code/Wobbler.py\\\">py</a> <i>and run it. You should see a</i> <i>TurtleWorld with three Turtles. If you press the</i> Run <i>button, the Turtles wander at random.</i></li>\",\n              \"polygon\": [\n                [\n                  98.314453125,\n                  266.44921875\n                ],\n                [\n                  483.205078125,\n                  266.44921875\n                ],\n                [\n                  483.205078125,\n                  289.005126953125\n                ],\n                [\n                  98.314453125,\n                  289.005126953125\n                ]\n              ],\n              \"bbox\": [\n                98.314453125,\n                266.44921875,\n                483.205078125,\n                289.005126953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/199/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. Read the code and make sure you understand how it works. The</i> Wobbler <i>class inherits from</i> Turtle<i>, which means that the</i> Turtle <i>methods</i> lt<i>,</i> rt<i>,</i> fd <i>and</i> bk <i>work on Wobblers.</i></li>\",\n              \"polygon\": [\n                [\n                  97.5673828125,\n                  298.93359375\n                ],\n                [\n                  482.90625,\n                  298.93359375\n                ],\n                [\n                  482.90625,\n                  321.3862609863281\n                ],\n                [\n                  97.5673828125,\n                  321.3862609863281\n                ]\n              ],\n              \"bbox\": [\n                97.5673828125,\n                298.93359375,\n                482.90625,\n                321.3862609863281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/199/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The</i> step <i>method gets invoked by TurtleWorld. It invokes</i> steer<i>, which turns the Turtle</i> <i>in the desired direction,</i> wobble<i>, which makes a random turn in proportion to the Turtle's</i> <i>clumsiness, and</i> move<i>, which moves forward a few pixels, depending on the Turtle's speed.</i></p>\",\n          \"polygon\": [\n            [\n              109.37109375,\n              327.55078125\n            ],\n            [\n              483.205078125,\n              327.55078125\n            ],\n            [\n              483.205078125,\n              361.9542541503906\n            ],\n            [\n              109.37109375,\n              361.9542541503906\n            ]\n          ],\n          \"bbox\": [\n            109.37109375,\n            327.55078125,\n            483.205078125,\n            361.9542541503906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/199/ListGroup/347\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/199/ListItem/8'></content-ref><content-ref src='/page/199/ListItem/9'></content-ref><content-ref src='/page/199/ListItem/10'></content-ref><content-ref src='/page/199/ListItem/11'></content-ref><content-ref src='/page/199/ListItem/12'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.41796875,\n              371.830078125\n            ],\n            [\n              483.50390625,\n              371.830078125\n            ],\n            [\n              483.50390625,\n              572.5252990722656\n            ],\n            [\n              97.41796875,\n              572.5252990722656\n            ]\n          ],\n          \"bbox\": [\n            97.41796875,\n            371.830078125,\n            483.50390625,\n            572.5252990722656\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/199/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. Create a file named</i> Tagger.py<i>. Import everything from</i> Wobbler<i>, then define a class named</i> Tagger <i>that inherits from</i> Wobbler<i>. Call</i> make_world <i>passing the</i> Tagger <i>class object as an</i> <i>argument.</i></li>\",\n              \"polygon\": [\n                [\n                  98.015625,\n                  371.830078125\n                ],\n                [\n                  483.205078125,\n                  371.830078125\n                ],\n                [\n                  483.205078125,\n                  406.484130859375\n                ],\n                [\n                  98.015625,\n                  406.484130859375\n                ]\n              ],\n              \"bbox\": [\n                98.015625,\n                371.830078125,\n                483.205078125,\n                406.484130859375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/199/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>4. Add a</i> steer <i>method to</i> Tagger <i>to override the one in</i> Wobbler<i>. As a starting place, write a</i> <i>version that always points the Turtle toward the origin. Hint: use the math function</i> atan2 <i>and the Turtle attributes</i> x<i>,</i> y <i>and</i> heading<i>.</i></li>\",\n              \"polygon\": [\n                [\n                  98.4638671875,\n                  416.109375\n                ],\n                [\n                  482.90625,\n                  416.109375\n                ],\n                [\n                  482.90625,\n                  451.061279296875\n                ],\n                [\n                  98.4638671875,\n                  451.061279296875\n                ]\n              ],\n              \"bbox\": [\n                98.4638671875,\n                416.109375,\n                482.90625,\n                451.061279296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/199/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>5. Modify</i> steer <i>so that the Turtles stay in bounds. For debugging, you might want to use the</i> Step <i>button, which invokes</i> step <i>once on each Turtle.</i></li>\",\n              \"polygon\": [\n                [\n                  97.8662109375,\n                  460.58203125\n                ],\n                [\n                  482.90625,\n                  460.58203125\n                ],\n                [\n                  482.90625,\n                  483.4192810058594\n                ],\n                [\n                  97.8662109375,\n                  483.4192810058594\n                ]\n              ],\n              \"bbox\": [\n                97.8662109375,\n                460.58203125,\n                482.90625,\n                483.4192810058594\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/199/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>6. Modify</i> steer <i>so that each Turtle points toward its nearest neighbor. Hint: Turtles have an</i> <i>attribute,</i> world<i>, that is a reference to the TurtleWorld they live in, and the TurtleWorld has</i> <i>an attribute,</i> animals<i>, that is a list of all Turtles in the world.</i></li>\",\n              \"polygon\": [\n                [\n                  97.716796875,\n                  493.453125\n                ],\n                [\n                  483.205078125,\n                  493.453125\n                ],\n                [\n                  483.205078125,\n                  527.9722900390625\n                ],\n                [\n                  97.716796875,\n                  527.9722900390625\n                ]\n              ],\n              \"bbox\": [\n                97.716796875,\n                493.453125,\n                483.205078125,\n                527.9722900390625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/199/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>7. Modify</i> steer <i>so the Turtles play tag. You can add methods to</i> Tagger <i>and you can override</i> steer <i>and</i> __init__<i>, but you may not modify or override</i> step<i>,</i> wobble <i>or</i> move<i>. Also,</i> steer <i>is allowed to change the heading of the Turtle but not the position.</i></li>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  537.5390625\n                ],\n                [\n                  483.50390625,\n                  537.5390625\n                ],\n                [\n                  483.50390625,\n                  572.5252990722656\n                ],\n                [\n                  97.41796875,\n                  572.5252990722656\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                537.5390625,\n                483.50390625,\n                572.5252990722656\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/188/SectionHeader/1\",\n                \"3\": \"/page/195/SectionHeader/13\",\n                \"4\": \"/page/198/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/199/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Adjust the rules and your</i> steer <i>method for good quality play; for example, it should be</i> <i>possible for the slow Turtle to tag the faster Turtles eventually.</i></p>\",\n          \"polygon\": [\n            [\n              110.4169921875,\n              578.14453125\n            ],\n            [\n              484.1015625,\n              578.14453125\n            ],\n            [\n              484.1015625,\n              600.8761596679688\n            ],\n            [\n              110.4169921875,\n              600.8761596679688\n            ]\n          ],\n          \"bbox\": [\n            110.4169921875,\n            578.14453125,\n            484.1015625,\n            600.8761596679688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/199/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/Tagger.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/Tagger.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/Tagger.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/Tagger.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/Tagger.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/Tagger.py\\\">Tagger.</a> <a href=\\\"http://thinkpython.com/code/Tagger.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              86.40000915527344,\n              614.9688720703125\n            ],\n            [\n              334.6875,\n              614.9688720703125\n            ],\n            [\n              334.6875,\n              625.32421875\n            ],\n            [\n              86.40000915527344,\n              625.32421875\n            ]\n          ],\n          \"bbox\": [\n            86.40000915527344,\n            614.9688720703125,\n            334.6875,\n            625.32421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"3\": \"/page/195/SectionHeader/13\",\n            \"4\": \"/page/198/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/188/SectionHeader/1\",\n        \"3\": \"/page/195/SectionHeader/13\",\n        \"4\": \"/page/198/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/200/Page/120\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/200/SectionHeader/0'></content-ref><content-ref src='/page/200/SectionHeader/1'></content-ref><content-ref src='/page/200/SectionHeader/2'></content-ref><content-ref src='/page/200/Text/3'></content-ref><content-ref src='/page/200/Text/4'></content-ref><content-ref src='/page/200/Text/5'></content-ref><content-ref src='/page/200/Text/6'></content-ref><content-ref src='/page/200/Text/7'></content-ref><content-ref src='/page/200/Text/8'></content-ref><content-ref src='/page/200/Text/9'></content-ref><content-ref src='/page/200/Text/10'></content-ref><content-ref src='/page/200/Text/11'></content-ref><content-ref src='/page/200/Text/12'></content-ref><content-ref src='/page/200/Text/13'></content-ref><content-ref src='/page/200/Code/14'></content-ref><content-ref src='/page/200/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/200/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-200-0\\\"></span><b>Chapter 19</b></h2>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              163.58203125\n            ],\n            [\n              232.0400390625,\n              163.58203125\n            ],\n            [\n              232.0400390625,\n              185.2369384765625\n            ],\n            [\n              128.9443359375,\n              185.2369384765625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            163.58203125,\n            232.0400390625,\n            185.2369384765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/188/SectionHeader/1\",\n            \"2\": \"/page/200/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Case study: Tkinter</b></h1>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              220.236328125\n            ],\n            [\n              352.318359375,\n              220.236328125\n            ],\n            [\n              352.318359375,\n              245.17132568359375\n            ],\n            [\n              128.27197265625,\n              245.17132568359375\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            220.236328125,\n            352.318359375,\n            245.17132568359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/SectionHeader/2\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-200-1\\\"></span><b>19.1 GUI</b></h4>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              294.5127258300781\n            ],\n            [\n              198.421875,\n              294.5127258300781\n            ],\n            [\n              198.421875,\n              308.85894775390625\n            ],\n            [\n              128.794921875,\n              308.85894775390625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            294.5127258300781,\n            198.421875,\n            308.85894775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Most of the programs we have seen so far are text-based, but many programs use <b>graphical</b> <b>user interfaces</b>, also known as <b>GUIs</b>.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              321.7421569824219\n            ],\n            [\n              526.53515625,\n              321.7421569824219\n            ],\n            [\n              526.53515625,\n              343.9958801269531\n            ],\n            [\n              128.9443359375,\n              343.9958801269531\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            321.7421569824219,\n            526.53515625,\n            343.9958801269531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Python provides several choices for writing GUI-based programs, including wxPython, Tkinter, and Qt. Each has pros and cons, which is why Python has not converged on a standard.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              354.041015625\n            ],\n            [\n              526.833984375,\n              354.041015625\n            ],\n            [\n              526.833984375,\n              388.97589111328125\n            ],\n            [\n              128.794921875,\n              388.97589111328125\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            354.041015625,\n            526.833984375,\n            388.97589111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The one I will present in this chapter is Tkinter because I think it is the easiest to get started with. Most of the concepts in this chapter apply to the other GUI modules, too.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              399.09375\n            ],\n            [\n              526.53515625,\n              399.09375\n            ],\n            [\n              526.53515625,\n              421.7608947753906\n            ],\n            [\n              128.49609375,\n              421.7608947753906\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            399.09375,\n            526.53515625,\n            421.7608947753906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are several books and web pages about Tkinter. One of the best online resources is <i>An Introduction to Tkinter</i> by Fredrik Lundh.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              431.578125\n            ],\n            [\n              526.53515625,\n              431.578125\n            ],\n            [\n              526.53515625,\n              454.5458984375\n            ],\n            [\n              127.8984375,\n              454.5458984375\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            431.578125,\n            526.53515625,\n            454.5458984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I have written a module called Gui.py that comes with Swampy. It provides a simplified interface to the functions and classes in Tkinter. The examples in this chapter are based on this module.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              464.8359375\n            ],\n            [\n              526.53515625,\n              464.8359375\n            ],\n            [\n              526.53515625,\n              499.52490234375\n            ],\n            [\n              128.49609375,\n              499.52490234375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            464.8359375,\n            526.53515625,\n            499.52490234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is a simple example that creates and displays a Gui:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              510.08203125\n            ],\n            [\n              381.603515625,\n              510.08203125\n            ],\n            [\n              381.603515625,\n              520.13671875\n            ],\n            [\n              128.197265625,\n              520.13671875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            510.08203125,\n            381.603515625,\n            520.13671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To create a GUI, you have to import Gui from Swampy:</p>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              530.19140625\n            ],\n            [\n              374.1328125,\n              530.19140625\n            ],\n            [\n              374.1328125,\n              540.7069091796875\n            ],\n            [\n              128.27197265625,\n              540.7069091796875\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            530.19140625,\n            374.1328125,\n            540.7069091796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">from swampy.Gui import *</p>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              551.1857604980469\n            ],\n            [\n              255.19921875,\n              551.1857604980469\n            ],\n            [\n              255.19921875,\n              561.1483612060547\n            ],\n            [\n              128.27197265625,\n              561.1483612060547\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            551.1857604980469,\n            255.19921875,\n            561.1483612060547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Or, depending on how you installed Swampy, like this:</p>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              571.18359375\n            ],\n            [\n              371.7421875,\n              571.18359375\n            ],\n            [\n              371.7421875,\n              581.888916015625\n            ],\n            [\n              128.12255859375,\n              581.888916015625\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            571.18359375,\n            371.7421875,\n            581.888916015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">from Gui import *</p>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              592.3677673339844\n            ],\n            [\n              218.51617431640625,\n              592.3677673339844\n            ],\n            [\n              218.51617431640625,\n              602.3303680419922\n            ],\n            [\n              128.42138671875,\n              602.3303680419922\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            592.3677673339844,\n            218.51617431640625,\n            602.3303680419922\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Then instantiate a Gui object:</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              612.5625\n            ],\n            [\n              259.681640625,\n              612.5625\n            ],\n            [\n              259.681640625,\n              623.0709228515625\n            ],\n            [\n              128.49609375,\n              623.0709228515625\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            612.5625,\n            259.681640625,\n            623.0709228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>g = Gui()\\ng.title('Gui')\\ng.mainloop()</pre>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              633.5487670898438\n            ],\n            [\n              202.80833435058594,\n              633.5487670898438\n            ],\n            [\n              202.80833435058594,\n              667.9003677368164\n            ],\n            [\n              128.6455078125,\n              667.9003677368164\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            633.5487670898438,\n            202.80833435058594,\n            667.9003677368164\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/200/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">When you run this code, a window should appear with an empty gray square and the title Gui. mainloop runs the <b>event loop</b>, which waits for the user to do something and</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              677.91796875\n            ],\n            [\n              526.833984375,\n              677.91796875\n            ],\n            [\n              526.833984375,\n              700.8349380493164\n            ],\n            [\n              128.197265625,\n              700.8349380493164\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            677.91796875,\n            526.833984375,\n            700.8349380493164\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"4\": \"/page/200/SectionHeader/2\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/201/Page/170\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/201/PageHeader/0'></content-ref><content-ref src='/page/201/PageHeader/22'></content-ref><content-ref src='/page/201/Text/1'></content-ref><content-ref src='/page/201/Text/2'></content-ref><content-ref src='/page/201/Text/3'></content-ref><content-ref src='/page/201/Text/4'></content-ref><content-ref src='/page/201/Text/5'></content-ref><content-ref src='/page/201/Text/6'></content-ref><content-ref src='/page/201/Text/7'></content-ref><content-ref src='/page/201/Text/8'></content-ref><content-ref src='/page/201/SectionHeader/9'></content-ref><content-ref src='/page/201/Text/10'></content-ref><content-ref src='/page/201/Text/11'></content-ref><content-ref src='/page/201/Text/12'></content-ref><content-ref src='/page/201/Text/13'></content-ref><content-ref src='/page/201/Text/14'></content-ref><content-ref src='/page/201/Text/15'></content-ref><content-ref src='/page/201/Text/16'></content-ref><content-ref src='/page/201/Text/17'></content-ref><content-ref src='/page/201/Text/18'></content-ref><content-ref src='/page/201/Text/19'></content-ref><content-ref src='/page/201/Code/20'></content-ref><content-ref src='/page/201/Text/21'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/201/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.18310546875\n            ],\n            [\n              482.607421875,\n              60.18310546875\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.18310546875,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/PageHeader/22\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              60.4248046875\n            ],\n            [\n              102.42333984375,\n              60.4248046875\n            ],\n            [\n              102.42333984375,\n              70.0927734375\n            ],\n            [\n              85.53955078125,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            60.4248046875,\n            102.42333984375,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">responds accordingly. It is an infinite loop; it runs until the user closes the window, or presses Control-C, or does something that causes the program to quit.</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              87.8818359375\n            ],\n            [\n              483.50390625,\n              87.8818359375\n            ],\n            [\n              483.50390625,\n              110.99188232421875\n            ],\n            [\n              85.0166015625,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            87.8818359375,\n            483.50390625,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This Gui doesn't do much because it doesn't have any <b>widgets</b>. Widgets are the elements that make up a GUI; they include:</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              119.8828125\n            ],\n            [\n              483.50390625,\n              119.8828125\n            ],\n            [\n              483.50390625,\n              143.5609130859375\n            ],\n            [\n              85.166015625,\n              143.5609130859375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            119.8828125,\n            483.50390625,\n            143.5609130859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Button:</b> A widget, containing text or an image, that performs an action when pressed.</p>\",\n          \"polygon\": [\n            [\n              84.7177734375,\n              156.7177734375\n            ],\n            [\n              464.9593200683594,\n              156.7177734375\n            ],\n            [\n              464.9593200683594,\n              168.13592529296875\n            ],\n            [\n              84.7177734375,\n              168.13592529296875\n            ]\n          ],\n          \"bbox\": [\n            84.7177734375,\n            156.7177734375,\n            464.9593200683594,\n            168.13592529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Canvas:</b> A region that can display lines, rectangles, circles and other shapes.</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              178.083984375\n            ],\n            [\n              423.140625,\n              178.083984375\n            ],\n            [\n              423.140625,\n              188.70391845703125\n            ],\n            [\n              85.0166015625,\n              188.70391845703125\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            178.083984375,\n            423.140625,\n            188.70391845703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Entry:</b> A region where users can type text.</p>\",\n          \"polygon\": [\n            [\n              85.09130859375,\n              198.193359375\n            ],\n            [\n              273.89569091796875,\n              198.193359375\n            ],\n            [\n              273.89569091796875,\n              209.27191162109375\n            ],\n            [\n              85.09130859375,\n              209.27191162109375\n            ]\n          ],\n          \"bbox\": [\n            85.09130859375,\n            198.193359375,\n            273.89569091796875,\n            209.27191162109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Scrollbar:</b> A widget that controls the visible part of another widget.</p>\",\n          \"polygon\": [\n            [\n              84.64306640625,\n              219.26953125\n            ],\n            [\n              385.787109375,\n              219.26953125\n            ],\n            [\n              385.787109375,\n              229.84088134765625\n            ],\n            [\n              84.64306640625,\n              229.84088134765625\n            ]\n          ],\n          \"bbox\": [\n            84.64306640625,\n            219.26953125,\n            385.787109375,\n            229.84088134765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Frame:</b> A container, often invisible, that contains other widgets.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              239.572265625\n            ],\n            [\n              367.7836608886719,\n              239.572265625\n            ],\n            [\n              367.7836608886719,\n              250.40887451171875\n            ],\n            [\n              85.166015625,\n              250.40887451171875\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            239.572265625,\n            367.7836608886719,\n            250.40887451171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The empty gray square you see when you create a Gui is a Frame. When you create a new widget, it is added to this Frame.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              264.12890625\n            ],\n            [\n              482.90625,\n              264.12890625\n            ],\n            [\n              482.90625,\n              287.1778564453125\n            ],\n            [\n              85.46484375,\n              287.1778564453125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            264.12890625,\n            482.90625,\n            287.1778564453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/200/SectionHeader/2\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-201-0\\\"></span><b>19.2 Buttons and callbacks</b></h4>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              316.916015625\n            ],\n            [\n              269.2710266113281,\n              316.916015625\n            ],\n            [\n              269.2710266113281,\n              331.5769348144531\n            ],\n            [\n              85.68896484375,\n              331.5769348144531\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            316.916015625,\n            269.2710266113281,\n            331.5769348144531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The method bu creates a Button widget:</p>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              343.986328125\n            ],\n            [\n              260.95184326171875,\n              343.986328125\n            ],\n            [\n              260.95184326171875,\n              354.21588134765625\n            ],\n            [\n              85.98779296875,\n              354.21588134765625\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            343.986328125,\n            260.95184326171875,\n            354.21588134765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">button = g.bu(text='Press me.')</p>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              360.228515625\n            ],\n            [\n              248.50340270996094,\n              360.228515625\n            ],\n            [\n              248.50340270996094,\n              370.46929931640625\n            ],\n            [\n              85.98779296875,\n              370.46929931640625\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            360.228515625,\n            248.50340270996094,\n            370.46929931640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The return value from bu is a Button object. The button that appears in the Frame is a graphical representation of this object; you can control the button by invoking methods on it.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              376.6640625\n            ],\n            [\n              483.50390625,\n              376.6640625\n            ],\n            [\n              483.50390625,\n              411.46875\n            ],\n            [\n              86.2119140625,\n              411.46875\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            376.6640625,\n            483.50390625,\n            411.46875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">bu takes up to 32 parameters that control the appearance and function of the button. These parameters are called <b>options</b>. Instead of providing values for all 32 options, you can use keyword arguments, like text='Press me.', to specify only the options you need and use the default values for the rest.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              420.75\n            ],\n            [\n              483.802734375,\n              420.75\n            ],\n            [\n              483.802734375,\n              468.36688232421875\n            ],\n            [\n              86.0625,\n              468.36688232421875\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            420.75,\n            483.802734375,\n            468.36688232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you add a widget to the Frame, it gets \\\"shrink-wrapped;\\\" that is, the Frame shrinks to the size of the Button. If you add more widgets, the Frame grows to accommodate them.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              478.37109375\n            ],\n            [\n              482.90625,\n              478.37109375\n            ],\n            [\n              482.90625,\n              500.9358825683594\n            ],\n            [\n              86.2119140625,\n              500.9358825683594\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            478.37109375,\n            482.90625,\n            500.9358825683594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The method la creates a Label widget:</p>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              522.84375\n            ],\n            [\n              256.693359375,\n              522.84375\n            ],\n            [\n              256.693359375,\n              533.5048828125\n            ],\n            [\n              86.28662109375,\n              533.5048828125\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            522.84375,\n            256.693359375,\n            533.5048828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">label = g.la(text='Press the button.')</p>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              539.47265625\n            ],\n            [\n              285.380859375,\n              539.47265625\n            ],\n            [\n              285.380859375,\n              549.7573394775391\n            ],\n            [\n              86.28662109375,\n              549.7573394775391\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            539.47265625,\n            285.380859375,\n            549.7573394775391\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">By default, Tkinter stacks the widgets top-to-bottom and centers them. We'll see how to override that behavior soon.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              555.71484375\n            ],\n            [\n              484.1015625,\n              555.71484375\n            ],\n            [\n              484.1015625,\n              578.5038909912109\n            ],\n            [\n              86.0625,\n              578.5038909912109\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            555.71484375,\n            484.1015625,\n            578.5038909912109\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you press the button, you will see that it doesn't do much. That's because you haven't \\\"wired it up;\\\" that is, you haven't told it what to do!</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              588.5859375\n            ],\n            [\n              483.50390625,\n              588.5859375\n            ],\n            [\n              483.50390625,\n              611.0728912353516\n            ],\n            [\n              85.6142578125,\n              611.0728912353516\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            588.5859375,\n            483.50390625,\n            611.0728912353516\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The option that controls the behavior of a button is command. The value of command is a function that gets executed when the button is pressed. For example, here is a function that creates a new Label:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              620.68359375\n            ],\n            [\n              483.802734375,\n              620.68359375\n            ],\n            [\n              483.802734375,\n              655.8358917236328\n            ],\n            [\n              86.0625,\n              655.8358917236328\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            620.68359375,\n            483.802734375,\n            655.8358917236328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Code/20\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def make_label():\\n    g.la(text='Thank you.')</pre>\",\n          \"polygon\": [\n            [\n              86.39999389648438,\n              662.125732421875\n            ],\n            [\n              227.58737182617188,\n              662.125732421875\n            ],\n            [\n              227.58737182617188,\n              684.283332824707\n            ],\n            [\n              86.39999389648438,\n              684.283332824707\n            ]\n          ],\n          \"bbox\": [\n            86.39999389648438,\n            662.125732421875,\n            227.58737182617188,\n            684.283332824707\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/201/Text/21\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now we can create a button with this function as its command:</p>\",\n          \"polygon\": [\n            [\n              86.40000915527344,\n              690.29296875\n            ],\n            [\n              364.5703125,\n              690.29296875\n            ],\n            [\n              364.5703125,\n              700.8348999023438\n            ],\n            [\n              86.40000915527344,\n              700.8348999023438\n            ]\n          ],\n          \"bbox\": [\n            86.40000915527344,\n            690.29296875,\n            364.5703125,\n            700.8348999023438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"4\": \"/page/201/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/202/Page/242\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/202/PageHeader/0'></content-ref><content-ref src='/page/202/PageHeader/23'></content-ref><content-ref src='/page/202/Text/1'></content-ref><content-ref src='/page/202/Text/2'></content-ref><content-ref src='/page/202/Text/3'></content-ref><content-ref src='/page/202/Text/4'></content-ref><content-ref src='/page/202/Text/5'></content-ref><content-ref src='/page/202/Text/6'></content-ref><content-ref src='/page/202/Text/7'></content-ref><content-ref src='/page/202/SectionHeader/8'></content-ref><content-ref src='/page/202/Text/9'></content-ref><content-ref src='/page/202/Text/10'></content-ref><content-ref src='/page/202/Code/241'></content-ref><content-ref src='/page/202/Text/12'></content-ref><content-ref src='/page/202/Text/13'></content-ref><content-ref src='/page/202/Code/14'></content-ref><content-ref src='/page/202/Text/15'></content-ref><content-ref src='/page/202/Text/16'></content-ref><content-ref src='/page/202/Text/17'></content-ref><content-ref src='/page/202/Text/18'></content-ref><content-ref src='/page/202/Text/19'></content-ref><content-ref src='/page/202/Text/20'></content-ref><content-ref src='/page/202/Text/21'></content-ref><content-ref src='/page/202/Text/22'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/202/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.392578125,\n              61.0048828125\n            ],\n            [\n              525.6033935546875,\n              61.0048828125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.392578125,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            61.0048828125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/PageHeader/23\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              61.0048828125\n            ],\n            [\n              525.638671875,\n              61.0048828125\n            ],\n            [\n              525.638671875,\n              70.189453125\n            ],\n            [\n              510.099609375,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            61.0048828125,\n            525.638671875,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">button2 = g.bu(text='No, press me!', command=make_label)</p>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              88.68572998046875\n            ],\n            [\n              428.818359375,\n              88.68572998046875\n            ],\n            [\n              428.818359375,\n              98.9033203125\n            ],\n            [\n              128.27197265625,\n              98.9033203125\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            88.68572998046875,\n            428.818359375,\n            98.9033203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you press this button, it should execute make_label and a new label should appear.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              103.060546875\n            ],\n            [\n              523.248046875,\n              103.060546875\n            ],\n            [\n              523.248046875,\n              113.2689208984375\n            ],\n            [\n              128.197265625,\n              113.2689208984375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            103.060546875,\n            523.248046875,\n            113.2689208984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The value of the command option is a function object, which is known as a <b>callback</b> because after you call bu to create the button, the flow of execution \\\"calls back\\\" when the user presses the button.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              121.5997314453125\n            ],\n            [\n              525.638671875,\n              121.5997314453125\n            ],\n            [\n              525.638671875,\n              156.09991455078125\n            ],\n            [\n              128.794921875,\n              156.09991455078125\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            121.5997314453125,\n            525.638671875,\n            156.09991455078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This kind of flow is characteristic of <b>event-driven programming</b>. User actions, like button presses and key strokes, are called <b>events</b>. In event-driven programming, the flow of execution is determined by user actions rather than by the programmer.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              164.4521484375\n            ],\n            [\n              525.602783203125,\n              164.4521484375\n            ],\n            [\n              525.602783203125,\n              198.93084716796875\n            ],\n            [\n              128.9443359375,\n              198.93084716796875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            164.4521484375,\n            525.602783203125,\n            198.93084716796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The challenge of event-driven programming is to construct a set of widgets and callbacks that work correctly (or at least generate appropriate error messages) for any sequence of user actions.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              207.28125\n            ],\n            [\n              525.9375,\n              207.28125\n            ],\n            [\n              525.9375,\n              241.7628173828125\n            ],\n            [\n              128.6455078125,\n              241.7628173828125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            207.28125,\n            525.9375,\n            241.7628173828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 19.1.</b> <i>Write a program that creates a GUI with a single button. When the button is</i> <i>pressed it should create a second button. When</i> that <i>button is pressed, it should create a label that</i> <i>says, \\\"Nice job!\\\".</i></p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              243.821533203125\n            ],\n            [\n              525.6007690429688,\n              243.821533203125\n            ],\n            [\n              525.6007690429688,\n              278.173095703125\n            ],\n            [\n              129.2431640625,\n              278.173095703125\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            243.821533203125,\n            525.6007690429688,\n            278.173095703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>What happens if you press the buttons more than once? Solution:</i> <a href=\\\"http://thinkpython.com/code/button_demo.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/button_demo.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/button_demo.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/button_demo.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/button_demo.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/button_demo.py\\\">button_</a> <a href=\\\"http://thinkpython.com/code/button_demo.py\\\">demo.</a> <a href=\\\"http://thinkpython.com/code/button_demo.py\\\">py</a></p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              286.5718078613281\n            ],\n            [\n              524.14453125,\n              286.5718078613281\n            ],\n            [\n              524.14453125,\n              308.72943115234375\n            ],\n            [\n              129.5419921875,\n              308.72943115234375\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            286.5718078613281,\n            524.14453125,\n            308.72943115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/201/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-202-0\\\"></span><b>19.3 Canvas widgets</b></h4>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              335.95166015625\n            ],\n            [\n              272.3818359375,\n              335.95166015625\n            ],\n            [\n              272.3818359375,\n              350.2978820800781\n            ],\n            [\n              128.6455078125,\n              350.2978820800781\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            335.95166015625,\n            272.3818359375,\n            350.2978820800781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One of the most versatile widgets is the Canvas, which creates a region for drawing lines, circles and other shapes. If you did Exercise <a href=\\\"#page-170-2\\\">15.4</a> you are already familiar with canvases.</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              360.9482421875\n            ],\n            [\n              525.6034545898438,\n              360.9482421875\n            ],\n            [\n              525.6034545898438,\n              383.1048278808594\n            ],\n            [\n              129.60000610351562,\n              383.1048278808594\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            360.9482421875,\n            525.6034545898438,\n            383.1048278808594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The method ca creates a new Canvas:</p>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              391.359375\n            ],\n            [\n              295.0260925292969,\n              391.359375\n            ],\n            [\n              295.0260925292969,\n              401.5478210449219\n            ],\n            [\n              128.72021484375,\n              401.5478210449219\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            391.359375,\n            295.0260925292969,\n            401.5478210449219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Code/241\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>canvas = g.ca(width=500, height=500)</pre>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              405.66796875\n            ],\n            [\n              319.447265625,\n              405.66796875\n            ],\n            [\n              319.447265625,\n              415.8692626953125\n            ],\n            [\n              129.01904296875,\n              415.8692626953125\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            405.66796875,\n            319.447265625,\n            415.8692626953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">width and height are the dimensions of the canvas in pixels.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              419.9765625\n            ],\n            [\n              397.44140625,\n              419.9765625\n            ],\n            [\n              397.44140625,\n              430.4898376464844\n            ],\n            [\n              128.0478515625,\n              430.4898376464844\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            419.9765625,\n            397.44140625,\n            430.4898376464844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">After you create a widget, you can still change the values of the options with the config method. For example, the bg option changes the background color:</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              438.8206787109375\n            ],\n            [\n              525.607177734375,\n              438.8206787109375\n            ],\n            [\n              525.607177734375,\n              461.1268310546875\n            ],\n            [\n              128.6455078125,\n              461.1268310546875\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            438.8206787109375,\n            525.607177734375,\n            461.1268310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Code/14\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>canvas.config(bg='white')</pre>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              465.22265625\n            ],\n            [\n              260.3293762207031,\n              465.22265625\n            ],\n            [\n              260.3293762207031,\n              475.4482727050781\n            ],\n            [\n              128.6455078125,\n              475.4482727050781\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            465.22265625,\n            260.3293762207031,\n            475.4482727050781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The value of bg is a string that names a color. The set of legal color names is different for different implementations of Python, but all implementations provide at least:</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              479.9566955566406\n            ],\n            [\n              525.5967407226562,\n              479.9566955566406\n            ],\n            [\n              525.5967407226562,\n              502.2628479003906\n            ],\n            [\n              129.60000610351562,\n              502.2628479003906\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            479.9566955566406,\n            525.5967407226562,\n            502.2628479003906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">white black red green blue cyan yellow magenta</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              506.6217041015625\n            ],\n            [\n              255.1287384033203,\n              506.6217041015625\n            ],\n            [\n              255.1287384033203,\n              540.9733123779297\n            ],\n            [\n              128.9443359375,\n              540.9733123779297\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            506.6217041015625,\n            255.1287384033203,\n            540.9733123779297\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Shapes on a Canvas are called <b>items</b>. For example, the Canvas method circle draws (you guessed it) a circle:</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              545.2734375\n            ],\n            [\n              525.638671875,\n              545.2734375\n            ],\n            [\n              525.638671875,\n              567.7878570556641\n            ],\n            [\n              129.392578125,\n              567.7878570556641\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            545.2734375,\n            525.638671875,\n            567.7878570556641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">item = canvas.circle([0,0], 100, fill='red')</p>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              572.1466979980469\n            ],\n            [\n              359.682373046875,\n              572.1466979980469\n            ],\n            [\n              359.682373046875,\n              582.1092987060547\n            ],\n            [\n              128.27197265625,\n              582.1092987060547\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            572.1466979980469,\n            359.682373046875,\n            582.1092987060547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first argument is a coordinate pair that specifies the center of the circle; the second is the radius.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              586.65234375\n            ],\n            [\n              525.6033325195312,\n              586.65234375\n            ],\n            [\n              525.6033325195312,\n              608.9248504638672\n            ],\n            [\n              128.9443359375,\n              608.9248504638672\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            586.65234375,\n            525.6033325195312,\n            608.9248504638672\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/20\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Gui.py provides a standard Cartesian coordinate system with the origin at the center of the Canvas and the positive <i>y</i> axis pointing up. This is different from some other graphics systems where the origin is in the upper left corner, with the <i>y</i> axis pointing down.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              617.2546997070312\n            ],\n            [\n              525.9375,\n              617.2546997070312\n            ],\n            [\n              525.9375,\n              651.755859375\n            ],\n            [\n              128.6455078125,\n              651.755859375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            617.2546997070312,\n            525.9375,\n            651.755859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/21\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The fill option specifies that the circle should be filled in with red.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              660.0867004394531\n            ],\n            [\n              426.9684143066406,\n              660.0867004394531\n            ],\n            [\n              426.9684143066406,\n              670.1988677978516\n            ],\n            [\n              128.3466796875,\n              670.1988677978516\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            660.0867004394531,\n            426.9684143066406,\n            670.1988677978516\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/202/Text/22\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">The return value from circle is an Item object that provides methods for modifying the item on the canvas. For example, you can use config to change any of the circle's options:</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              678.5287017822266\n            ],\n            [\n              525.9375,\n              678.5287017822266\n            ],\n            [\n              525.9375,\n              700.8348693847656\n            ],\n            [\n              128.0478515625,\n              700.8348693847656\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            678.5287017822266,\n            525.9375,\n            700.8348693847656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"4\": \"/page/202/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/203/Page/182\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/203/PageHeader/0'></content-ref><content-ref src='/page/203/PageHeader/24'></content-ref><content-ref src='/page/203/Text/1'></content-ref><content-ref src='/page/203/Text/2'></content-ref><content-ref src='/page/203/SectionHeader/3'></content-ref><content-ref src='/page/203/Text/4'></content-ref><content-ref src='/page/203/Code/5'></content-ref><content-ref src='/page/203/Text/6'></content-ref><content-ref src='/page/203/Text/7'></content-ref><content-ref src='/page/203/Text/8'></content-ref><content-ref src='/page/203/Text/9'></content-ref><content-ref src='/page/203/Text/10'></content-ref><content-ref src='/page/203/Text/11'></content-ref><content-ref src='/page/203/Text/12'></content-ref><content-ref src='/page/203/SectionHeader/13'></content-ref><content-ref src='/page/203/Text/14'></content-ref><content-ref src='/page/203/Text/15'></content-ref><content-ref src='/page/203/Text/16'></content-ref><content-ref src='/page/203/Text/17'></content-ref><content-ref src='/page/203/Code/18'></content-ref><content-ref src='/page/203/Text/19'></content-ref><content-ref src='/page/203/Text/20'></content-ref><content-ref src='/page/203/Text/21'></content-ref><content-ref src='/page/203/Text/22'></content-ref><content-ref src='/page/203/Code/23'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/203/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.71484375\n            ],\n            [\n              482.607421875,\n              60.71484375\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.71484375,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/PageHeader/24\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.09130859375,\n              60.6181640625\n            ],\n            [\n              101.37744140625,\n              60.6181640625\n            ],\n            [\n              101.37744140625,\n              70.0927734375\n            ],\n            [\n              85.09130859375,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            85.09130859375,\n            60.6181640625,\n            101.37744140625,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">item.config(fill='yellow', outline='orange', width=10)</p>\",\n          \"polygon\": [\n            [\n              84.49365234375,\n              88.55859375\n            ],\n            [\n              368.7860412597656,\n              88.55859375\n            ],\n            [\n              368.7860412597656,\n              98.6483154296875\n            ],\n            [\n              84.49365234375,\n              98.6483154296875\n            ]\n          ],\n          \"bbox\": [\n            84.49365234375,\n            88.55859375,\n            368.7860412597656,\n            98.6483154296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-203-2\\\"></span>width is the thickness of the outline in pixels; outline is the color. <b>Exercise 19.2.</b> <i>Write a program that creates a Canvas and a Button. When the user presses the</i> <i>Button, it should draw a circle on the canvas.</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              105.62774658203125\n            ],\n            [\n              484.998046875,\n              105.62774658203125\n            ],\n            [\n              484.998046875,\n              139.95623779296875\n            ],\n            [\n              85.46484375,\n              139.95623779296875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            105.62774658203125,\n            484.998046875,\n            139.95623779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/202/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-203-0\\\"></span><b>19.4 Coordinate sequences</b></h4>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              171.6064453125\n            ],\n            [\n              269.6870422363281,\n              171.6064453125\n            ],\n            [\n              269.6870422363281,\n              186.14697265625\n            ],\n            [\n              85.53955078125,\n              186.14697265625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            171.6064453125,\n            269.6870422363281,\n            186.14697265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The rectangle method takes a sequence of coordinates that specify opposite corners of the rectangle. This example draws a blue rectangle with the lower left corner at the origin and the upper right corner at (200, 100):</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              198.966796875\n            ],\n            [\n              482.4034118652344,\n              198.966796875\n            ],\n            [\n              482.4034118652344,\n              233.93096923828125\n            ],\n            [\n              85.3154296875,\n              233.93096923828125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            198.966796875,\n            482.4034118652344,\n            233.93096923828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>canvas.rectangle([[0, 0], [200, 100]],\\n                 fill='blue', outline='orange', width=10)</pre>\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              240.345703125\n            ],\n            [\n              384.4730529785156,\n              240.345703125\n            ],\n            [\n              384.4730529785156,\n              262.91839599609375\n            ],\n            [\n              85.24072265625,\n              262.91839599609375\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            240.345703125,\n            384.4730529785156,\n            262.91839599609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This way of specifying corners is called a <b>bounding box</b> because the two points bound the rectangle.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              269.9296875\n            ],\n            [\n              483.50390625,\n              269.9296875\n            ],\n            [\n              483.50390625,\n              292.2039794921875\n            ],\n            [\n              85.6142578125,\n              292.2039794921875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            269.9296875,\n            483.50390625,\n            292.2039794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">oval takes a bounding box and draws an oval within the specified rectangle:</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              302.80078125\n            ],\n            [\n              423.439453125,\n              302.80078125\n            ],\n            [\n              423.439453125,\n              313.11798095703125\n            ],\n            [\n              85.166015625,\n              313.11798095703125\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            302.80078125,\n            423.439453125,\n            313.11798095703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">canvas.oval([[0, 0], [200, 100]], outline='orange', width=10)</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              319.236328125\n            ],\n            [\n              405.80859375,\n              319.236328125\n            ],\n            [\n              405.80859375,\n              329.9114074707031\n            ],\n            [\n              85.3154296875,\n              329.9114074707031\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            319.236328125,\n            405.80859375,\n            329.9114074707031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">line takes a sequence of coordinates and draws a line that connects the points. This example draws two legs of a triangle:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              336.638671875\n            ],\n            [\n              482.3957824707031,\n              336.638671875\n            ],\n            [\n              482.3957824707031,\n              359.1979675292969\n            ],\n            [\n              85.46484375,\n              359.1979675292969\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            336.638671875,\n            482.3957824707031,\n            359.1979675292969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">canvas.line([[0, 100], [100, 200], [200, 100]], width=10)</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              366.02783203125\n            ],\n            [\n              384.5508117675781,\n              366.02783203125\n            ],\n            [\n              384.5508117675781,\n              375.99041748046875\n            ],\n            [\n              85.68896484375,\n              375.99041748046875\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            366.02783203125,\n            384.5508117675781,\n            375.99041748046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">polygon takes the same arguments, but it draws the last leg of the polygon (if necessary) and fills it in:</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              382.658203125\n            ],\n            [\n              482.3980407714844,\n              382.658203125\n            ],\n            [\n              482.3980407714844,\n              405.2769775390625\n            ],\n            [\n              85.3154296875,\n              405.2769775390625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            382.658203125,\n            482.3980407714844,\n            405.2769775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">canvas.polygon([[0, 100], [100, 200], [200, 100]], fill='red', outline='orange', width=10)</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              411.85546875\n            ],\n            [\n              369.94921875,\n              411.85546875\n            ],\n            [\n              369.94921875,\n              434.264404296875\n            ],\n            [\n              85.763671875,\n              434.264404296875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            411.85546875,\n            369.94921875,\n            434.264404296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-203-1\\\"></span><b>19.5 More widgets</b></h4>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              465.609375\n            ],\n            [\n              216.30496215820312,\n              465.609375\n            ],\n            [\n              216.30496215820312,\n              480.4320373535156\n            ],\n            [\n              85.6142578125,\n              480.4320373535156\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            465.609375,\n            216.30496215820312,\n            480.4320373535156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Tkinter provides two widgets that let users type text: an Entry, which is a single line, and a Text widget, which has multiple lines.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              493.06640625\n            ],\n            [\n              482.40350341796875,\n              493.06640625\n            ],\n            [\n              482.40350341796875,\n              516.0209655761719\n            ],\n            [\n              85.763671875,\n              516.0209655761719\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            493.06640625,\n            482.40350341796875,\n            516.0209655761719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">en creates a new Entry:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              526.7109375\n            ],\n            [\n              190.5029296875,\n              526.7109375\n            ],\n            [\n              190.5029296875,\n              536.9349670410156\n            ],\n            [\n              86.0625,\n              536.9349670410156\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            526.7109375,\n            190.5029296875,\n            536.9349670410156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">entry = g.en(text='Default text.')</p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              543.7658081054688\n            ],\n            [\n              264.1914978027344,\n              543.7658081054688\n            ],\n            [\n              264.1914978027344,\n              553.78125\n            ],\n            [\n              85.39013671875,\n              553.78125\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            543.7658081054688,\n            264.1914978027344,\n            553.78125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The text option allows you to put text into the entry when it is created. The get method returns the contents of the Entry (which may have been changed by the user):</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              560.35546875\n            ],\n            [\n              482.90625,\n              560.35546875\n            ],\n            [\n              482.90625,\n              583.0149688720703\n            ],\n            [\n              85.6142578125,\n              583.0149688720703\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            560.35546875,\n            482.90625,\n            583.0149688720703\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Code/18\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; entry.get()\\n'Default text.'</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              589.359375\n            ],\n            [\n              168.6884765625,\n              589.359375\n            ],\n            [\n              168.6884765625,\n              612.0014190673828\n            ],\n            [\n              85.9130859375,\n              612.0014190673828\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            589.359375,\n            168.6884765625,\n            612.0014190673828\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">te creates a Text widget:</p>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              618.36328125\n            ],\n            [\n              195.43359375,\n              618.36328125\n            ],\n            [\n              195.43359375,\n              629.0939636230469\n            ],\n            [\n              85.68896484375,\n              629.0939636230469\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            618.36328125,\n            195.43359375,\n            629.0939636230469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/20\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">text = g.te(width=100, height=5)</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              635.9238128662109\n            ],\n            [\n              253.78172302246094,\n              635.9238128662109\n            ],\n            [\n              253.78172302246094,\n              645.8864135742188\n            ],\n            [\n              85.763671875,\n              645.8864135742188\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            635.9238128662109,\n            253.78172302246094,\n            645.8864135742188\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/21\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">width and height are the dimensions of the widget in characters and lines.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              652.39453125\n            ],\n            [\n              415.96875,\n              652.39453125\n            ],\n            [\n              415.96875,\n              662.9789733886719\n            ],\n            [\n              85.9130859375,\n              662.9789733886719\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            652.39453125,\n            415.96875,\n            662.9789733886719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Text/22\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">insert puts text into the Text widget:</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              673.27734375\n            ],\n            [\n              253.5556640625,\n              673.27734375\n            ],\n            [\n              253.5556640625,\n              683.8929824829102\n            ],\n            [\n              86.2119140625,\n              683.8929824829102\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            673.27734375,\n            253.5556640625,\n            683.8929824829102\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/203/Code/23\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>text.insert(END, 'A line of text.')</pre>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              690.6796875\n            ],\n            [\n              269.4205017089844,\n              690.6796875\n            ],\n            [\n              269.4205017089844,\n              700.734375\n            ],\n            [\n              86.361328125,\n              700.734375\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            690.6796875,\n            269.4205017089844,\n            700.734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"4\": \"/page/203/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/204/Page/202\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/204/PageHeader/0'></content-ref><content-ref src='/page/204/PageHeader/19'></content-ref><content-ref src='/page/204/Text/1'></content-ref><content-ref src='/page/204/Text/2'></content-ref><content-ref src='/page/204/Text/3'></content-ref><content-ref src='/page/204/Text/4'></content-ref><content-ref src='/page/204/Code/5'></content-ref><content-ref src='/page/204/Text/6'></content-ref><content-ref src='/page/204/Code/7'></content-ref><content-ref src='/page/204/Text/8'></content-ref><content-ref src='/page/204/Text/9'></content-ref><content-ref src='/page/204/Text/10'></content-ref><content-ref src='/page/204/SectionHeader/11'></content-ref><content-ref src='/page/204/Text/12'></content-ref><content-ref src='/page/204/Text/13'></content-ref><content-ref src='/page/204/Text/14'></content-ref><content-ref src='/page/204/Code/15'></content-ref><content-ref src='/page/204/Text/16'></content-ref><content-ref src='/page/204/Text/17'></content-ref><content-ref src='/page/204/Text/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/204/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.794921875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.794921875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.80078125,\n              60.76318359375\n            ],\n            [\n              525.9375,\n              60.76318359375\n            ],\n            [\n              525.9375,\n              69.94775390625\n            ],\n            [\n              509.80078125,\n              69.94775390625\n            ]\n          ],\n          \"bbox\": [\n            509.80078125,\n            60.76318359375,\n            525.9375,\n            69.94775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">END is a special index that indicates the last character in the Text widget.</p>\",\n          \"polygon\": [\n            [\n              127.599609375,\n              88.68572998046875\n            ],\n            [\n              445.552734375,\n              88.68572998046875\n            ],\n            [\n              445.552734375,\n              98.79791259765625\n            ],\n            [\n              127.599609375,\n              98.79791259765625\n            ]\n          ],\n          \"bbox\": [\n            127.599609375,\n            88.68572998046875,\n            445.552734375,\n            98.79791259765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can also specify a character using a dotted index, like 1.1, which has the line number before the dot and the column number after. The following example adds the letters 'nother' after the first character of the first line.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              107.314453125\n            ],\n            [\n              525.6033935546875,\n              107.314453125\n            ],\n            [\n              525.6033935546875,\n              141.92486572265625\n            ],\n            [\n              127.8984375,\n              141.92486572265625\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            107.314453125,\n            525.6033935546875,\n            141.92486572265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">&gt;&gt;&gt; text.insert(1.1, 'nother')</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              146.1796875\n            ],\n            [\n              286.4743957519531,\n              146.1796875\n            ],\n            [\n              286.4743957519531,\n              156.54229736328125\n            ],\n            [\n              127.8984375,\n              156.54229736328125\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            146.1796875,\n            286.4743957519531,\n            156.54229736328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The get method reads the text in the widget; it takes a start and end index as arguments. The following example returns all the text in the widget, including the newline character:</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              160.48828125\n            ],\n            [\n              525.5955200195312,\n              160.48828125\n            ],\n            [\n              525.5955200195312,\n              183.6539306640625\n            ],\n            [\n              127.7490234375,\n              183.6539306640625\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            160.48828125,\n            525.5955200195312,\n            183.6539306640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; text.get(0.0, END)\\n'Another line of text.\\\\n'</pre>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              188.30877685546875\n            ],\n            [\n              260.32940673828125,\n              188.30877685546875\n            ],\n            [\n              260.32940673828125,\n              210.46533203125\n            ],\n            [\n              128.794921875,\n              210.46533203125\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            188.30877685546875,\n            260.32940673828125,\n            210.46533203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The delete method removes text from the widget; the following example deletes all but the first two characters:</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              214.62890625\n            ],\n            [\n              525.603515625,\n              214.62890625\n            ],\n            [\n              525.603515625,\n              237.57696533203125\n            ],\n            [\n              128.3466796875,\n              237.57696533203125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            214.62890625,\n            525.603515625,\n            237.57696533203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>&gt;&gt;&gt; text.delete(1.2, END)\\n&gt;&gt;&gt; text.get(0.0, END)\\n'An\\\\n'</pre>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              242.2318115234375\n            ],\n            [\n              260.36907958984375,\n              242.2318115234375\n            ],\n            [\n              260.36907958984375,\n              276.5823974609375\n            ],\n            [\n              128.49609375,\n              276.5823974609375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            242.2318115234375,\n            260.36907958984375,\n            276.5823974609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-204-1\\\"></span><b>Exercise 19.3.</b> <i>Modify your solution to Exercise </i><i><a href=\\\"#page-203-2\\\">19.2</a></i><i> by adding an Entry widget and a second</i> <i>button. When the user presses the second button, it should read a color name from the Entry and</i> <i>use it to change the fill color of the circle. Use</i> config <i>to modify the existing circle; don't create a</i> <i>new one.</i></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              278.79168701171875\n            ],\n            [\n              525.6036376953125,\n              278.79168701171875\n            ],\n            [\n              525.6036376953125,\n              325.3372802734375\n            ],\n            [\n              128.6455078125,\n              325.3372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            278.79168701171875,\n            525.6036376953125,\n            325.3372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Your program should handle the case where the user tries to change the color of a circle that hasn't</i> <i>been created, and the case where the color name is invalid.</i></p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              333.73828125\n            ],\n            [\n              525.6034545898438,\n              333.73828125\n            ],\n            [\n              525.6034545898438,\n              356.2702941894531\n            ],\n            [\n              128.794921875,\n              356.2702941894531\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            333.73828125,\n            525.6034545898438,\n            356.2702941894531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>You can see my solution at</i> <a href=\\\"http://thinkpython.com/code/circle_demo.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/circle_demo.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/circle_demo.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/circle_demo.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/circle_demo.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/circle_demo.py\\\">circle_</a> <a href=\\\"http://thinkpython.com/code/circle_demo.py\\\">demo.</a> <a href=\\\"http://thinkpython.com/code/circle_demo.py\\\">py</a> <i>.</i></p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              364.9649963378906\n            ],\n            [\n              474.76568603515625,\n              364.9649963378906\n            ],\n            [\n              474.76568603515625,\n              375.00830078125\n            ],\n            [\n              127.8984375,\n              375.00830078125\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            364.9649963378906,\n            474.76568603515625,\n            375.00830078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/203/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-204-0\\\"></span><b>19.6 Packing widgets</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              402.5648498535156\n            ],\n            [\n              277.02154541015625,\n              402.5648498535156\n            ],\n            [\n              277.02154541015625,\n              416.91107177734375\n            ],\n            [\n              128.3466796875,\n              416.91107177734375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            402.5648498535156,\n            277.02154541015625,\n            416.91107177734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">So far we have been stacking widgets in a single column, but in most GUIs the layout is more complicated. For example, Figure <a href=\\\"#page-205-0\\\">19.1</a> shows a simplified version of TurtleWorld (see Chapter <a href=\\\"#page-52-0\\\">4)</a>.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              427.32421875\n            ],\n            [\n              525.6033935546875,\n              427.32421875\n            ],\n            [\n              525.6033935546875,\n              462.2090148925781\n            ],\n            [\n              128.9443359375,\n              462.2090148925781\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            427.32421875,\n            525.6033935546875,\n            462.2090148925781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This section presents the code that creates this GUI, broken into a series of steps. You can download the complete example from <a href=\\\"http://thinkpython.com/code/SimpleTurtleWorld.py\\\">http://thinkpython.com/code/</a> <a href=\\\"http://thinkpython.com/code/SimpleTurtleWorld.py\\\">SimpleTurtleWorld.py</a>.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              470.9854431152344\n            ],\n            [\n              526.53515625,\n              470.9854431152344\n            ],\n            [\n              526.53515625,\n              505.3360290527344\n            ],\n            [\n              129.09375,\n              505.3360290527344\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            470.9854431152344,\n            526.53515625,\n            505.3360290527344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">At the top level, this GUI contains two widgets—a Canvas and a Frame—arranged in a row. So the first step is to create the row.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              513.94921875\n            ],\n            [\n              525.638671875,\n              513.94921875\n            ],\n            [\n              525.638671875,\n              536.26904296875\n            ],\n            [\n              128.794921875,\n              536.26904296875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            513.94921875,\n            525.638671875,\n            536.26904296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class SimpleTurtleWorld(TurtleWorld):\\n    \\\"\\\"\\\"This class is identical to TurtleWorld, but the code that\\n    lays out the GUI is simplified for explanatory purposes.\\\"\\\"\\\"\\n    def setup(self):\\n        self.row()\\n        ...</pre>\",\n          \"polygon\": [\n            [\n              129.59999084472656,\n              540.9238891601562\n            ],\n            [\n              467.96484375,\n              540.9238891601562\n            ],\n            [\n              467.96484375,\n              624.0525054931641\n            ],\n            [\n              129.59999084472656,\n              624.0525054931641\n            ]\n          ],\n          \"bbox\": [\n            129.59999084472656,\n            540.9238891601562,\n            467.96484375,\n            624.0525054931641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">setup is the function that creates and arranges the widgets. Arranging widgets in a GUI is called <b>packing</b>.</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              628.8569030761719\n            ],\n            [\n              525.6046752929688,\n              628.8569030761719\n            ],\n            [\n              525.6046752929688,\n              651.62109375\n            ],\n            [\n              127.7490234375,\n              651.62109375\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            628.8569030761719,\n            525.6046752929688,\n            651.62109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">row creates a row Frame and makes it the \\\"current Frame.\\\" Until this Frame is closed or another Frame is created, all subsequent widgets are packed in a row.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              659.7421875\n            ],\n            [\n              525.638671875,\n              659.7421875\n            ],\n            [\n              525.638671875,\n              682.171875\n            ],\n            [\n              128.197265625,\n              682.171875\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            659.7421875,\n            525.638671875,\n            682.171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/204/Text/18\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is the code that creates the Canvas and the column Frame that hold the other widgets:</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              690.8724670410156\n            ],\n            [\n              525.9375,\n              690.8724670410156\n            ],\n            [\n              525.9375,\n              700.8350677490234\n            ],\n            [\n              127.7490234375,\n              700.8350677490234\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            690.8724670410156,\n            525.9375,\n            700.8350677490234\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"4\": \"/page/204/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/205/Page/123\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/205/PageHeader/0'></content-ref><content-ref src='/page/205/PageHeader/12'></content-ref><content-ref src='/page/205/FigureGroup/122'></content-ref><content-ref src='/page/205/Code/3'></content-ref><content-ref src='/page/205/Text/4'></content-ref><content-ref src='/page/205/Code/5'></content-ref><content-ref src='/page/205/Text/6'></content-ref><content-ref src='/page/205/Text/7'></content-ref><content-ref src='/page/205/Text/8'></content-ref><content-ref src='/page/205/Code/9'></content-ref><content-ref src='/page/205/Text/10'></content-ref><content-ref src='/page/205/Text/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/205/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.71484375\n            ],\n            [\n              482.4034118652344,\n              60.71484375\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.71484375,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/205/PageHeader/12\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              61.24658203125\n            ],\n            [\n              100.92919921875,\n              61.24658203125\n            ],\n            [\n              100.92919921875,\n              70.72119140625\n            ],\n            [\n              85.83837890625,\n              70.72119140625\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            61.24658203125,\n            100.92919921875,\n            70.72119140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/205/FigureGroup/122\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/205/Figure/1'></content-ref><content-ref src='/page/205/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              134.24853515625,\n              82.0810546875\n            ],\n            [\n              434.49609375,\n              82.0810546875\n            ],\n            [\n              434.49609375,\n              326.2528991699219\n            ],\n            [\n              134.24853515625,\n              326.2528991699219\n            ]\n          ],\n          \"bbox\": [\n            134.24853515625,\n            82.0810546875,\n            434.49609375,\n            326.2528991699219\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/205/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  134.24853515625,\n                  82.0810546875\n                ],\n                [\n                  434.49609375,\n                  82.0810546875\n                ],\n                [\n                  434.49609375,\n                  302.80078125\n                ],\n                [\n                  134.24853515625,\n                  302.80078125\n                ]\n              ],\n              \"bbox\": [\n                134.24853515625,\n                82.0810546875,\n                434.49609375,\n                302.80078125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/204/SectionHeader/11\"\n              },\n              \"images\": {\n                \"/page/205/Figure/1\": \"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5jxT/wAhbQ/+vg/+y1qVl+Kf+Qtof/Xwf/Za1KACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAs2/wDqJP8APauY1L/kdfDH/Xaf/wBESV09v/qJP89q5jUv+R18Mf8AXaf/ANESUAdjRRRQBzEn/JQL3/sE2/8A6Olro4P9Sv0rnJP+SgXv/YJt/wD0dLXRwf6lfpQBJRRRQAUUUUAFFFFABRRXN+M7rxHZ6bbTeHBA85uY4pUlt2l+R2ClgFYYC5LH2FAG9Ld28NxBbyzIk05IiRmwXIGTgd8Dmuc8SyeLBrWmW+gTWUVpcB1nkuLRpfKZVLBiQwwDwMetZl54L1/UZhq1zrVoniGDZHaXMFsyxRRhtzAoWJJYFlJz0NaunaJr0ur2t9r+qWdwLPe1ullbtCNzKVO/LNuGDx05oAk8I+GJPD1vdzXt81/qd/MZ7u5K7QzYAAUdQoUKMZPSujoooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAZNEk8LxSKGR1KsCM5Fed2Fj4g8FahpOiWer2t9pc13sitJbcm5itu53hsbV452/wAVej1keINHfV7SE20ywXtrMs9tKy7lDjOAwGCV55AIoA0bi7t7XyvtEyRebIIo97Y3Oeij3OKmrg77wZr/AIkkWDxPrVnPp6I22GxtmhIl42yZLNyvOPqasaVf+J7bxjBo+o3um31r9meSY2lq0bQEY8veS5+982PXaaAO0ooooAKKKKACiiigAooooA5jxT/yFtD/AOvg/wDstalZfin/AJC2h/8AXwf/AGWtSgAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKALNv/qJP89q5jUv+R18Mf9dp/wD0RJXT2/8AqJP89q5jUv8AkdfDH/Xaf/0RJQB2NFFFAHMSf8lAvf8AsE2//o6Wujg/1K/Suck/5KBe/wDYJt//AEdLXRwf6lfpQBJRRRQAUUUUAFFFFABXN+MtD1bxBptta6XqFvZNHcxzu80TPu2MGUDDDHI59RXSVz/i3xHceGdPt7uH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XdpFLMjzyWri3jwjjzEfGCxPy9SMHpXolABWMfDGmt4hGtGI/aQd+M/L5m3Z5n+9s+X0x2rZooAKKKKAOa1Txxpula0+ky2mqTXaRiXbbWMkoKccggcjJx9aseEbee30EfaLGKyaWeaZYYwR8ryMykgkkMQQSOxJrE1nxRb6L43kludHv3t4dPKPfQWMsmCWDbdw4245PuKuy/EPQQlm1sby/F3B9oj+w2zz4TODu2g4IPBB70AdXRWR4e8S6X4osXutMmLrHI0UsbqUkjcEghlPIPHetegAooooAKKKKACiiigAooooAKKKKACmyKXjZQxUsCNy9R7ild1jRndgqqMkk8AVxv8AwtDw6ySSxLqM1rHKYjdw2UjwZDbeJANuM980AU9O8QQeCrS40/WbG/Vkunc3UNo8kciu/wAsjuBt3NkFumCegrv6878aeKrDUYbrRdNjvdRvbWaPzoba2aWBjn/Vyso4xycZByteiUAFZ2taLa65Zrb3JdTG4kiljOGjbBGR26Ej8a0aKAILKyttNsYLKziWG2gQRxRr0VRwBU9FFAGF4g8V2HhqS0jvYb6RrptkX2a1eXLf3flHU84Hsah8OXLalqmq6ounPa21wIUieeFoppSgYNvVugGRjgdTVXxrq66bcaIDpN1f4vVmdobWSbyUVWBcbejfMMA+pp6/ETw2dDu9We8eKG0l8iaKWMpMknZfLPzZODgd8GgDqqK5/RPGWka9qE+n27XEF9Aodra7haGQqf4grYJHv7iugoAK4qW/PhTxJqt1fWV9dQXwjeG4trZ53wu7KNtGFVcjbkZ5PJqxqnxH8PaTfXlpNJdStZY+1SW1s0scBPZ2UYU8d6i8R+NdEWAaXb3t1Pd31s0sP9lxGdwnGG+UHAORyaAOm0nVLbWtJtdTsmZra6jEsRZdpKnpkdquVheDBIPBejiayFjILVN1qFKiI4+7huRj3rdoAz9Y0e31uyFtcF0KOJIpYzhonHRlzxnk9fWp7CwttLsILGziEVtAgSOMdFA7VZooAKKKKACiiigAooooAKKKKACiiigDmPFP/IW0P/r4P/stalZfin/kLaH/ANfB/wDZa1KACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAs2/8AqJP89q5jUv8AkdfD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\"\n              }\n            },\n            {\n              \"id\": \"/page/205/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-205-0\\\"></span>Figure 19.1: TurtleWorld after running the snowflake code.</p>\",\n              \"polygon\": [\n                [\n                  154.1953125,\n                  315.369140625\n                ],\n                [\n                  413.578125,\n                  315.369140625\n                ],\n                [\n                  413.578125,\n                  326.2528991699219\n                ],\n                [\n                  154.1953125,\n                  326.2528991699219\n                ]\n              ],\n              \"bbox\": [\n                154.1953125,\n                315.369140625,\n                413.578125,\n                326.2528991699219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/204/SectionHeader/11\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/205/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>self.canvas = self.ca(width=400, height=400, bg='white')\\nself.col()</pre>\",\n          \"polygon\": [\n            [\n              128.23300170898438,\n              347.66015625\n            ],\n            [\n              421.06439208984375,\n              347.66015625\n            ],\n            [\n              421.06439208984375,\n              369.8243408203125\n            ],\n            [\n              128.23300170898438,\n              369.8243408203125\n            ]\n          ],\n          \"bbox\": [\n            128.23300170898438,\n            347.66015625,\n            421.06439208984375,\n            369.8243408203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/205/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first widget in the column is a grid Frame, which contains four buttons arranged twoby-two:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              374.73046875\n            ],\n            [\n              482.4033508300781,\n              374.73046875\n            ],\n            [\n              482.4033508300781,\n              397.6479187011719\n            ],\n            [\n              85.9130859375,\n              397.6479187011719\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            374.73046875,\n            482.4033508300781,\n            397.6479187011719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/205/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>self.gr(cols=2)\\nself.bu(text='Print canvas', command=self.canvas.dump)\\nself.bu(text='Quit', command=self.quit)\\nself.bu(text='Make Turtle', command=self.make_turtle)\\nself.bu(text='Clear', command=self.clear)\\nself.endgr()</pre>\",\n          \"polygon\": [\n            [\n              126.703125,\n              402.57421875\n            ],\n            [\n              410.6488037109375,\n              402.57421875\n            ],\n            [\n              410.6488037109375,\n              473.9493713378906\n            ],\n            [\n              126.703125,\n              473.9493713378906\n            ]\n          ],\n          \"bbox\": [\n            126.703125,\n            402.57421875,\n            410.6488037109375,\n            473.9493713378906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/205/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">gr creates the grid; the argument is the number of columns. Widgets in the grid are laid out left-to-right, top-to-bottom.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              478.7578125\n            ],\n            [\n              482.404296875,\n              478.7578125\n            ],\n            [\n              482.404296875,\n              501.77294921875\n            ],\n            [\n              85.46484375,\n              501.77294921875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            478.7578125,\n            482.404296875,\n            501.77294921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/205/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first button uses self.canvas.dump as a callback; the second uses self.quit. These are <b>bound methods</b>, which means they are associated with a particular object. When they are invoked, they are invoked on the object.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              510.08203125\n            ],\n            [\n              482.3975830078125,\n              510.08203125\n            ],\n            [\n              482.3975830078125,\n              545.6129455566406\n            ],\n            [\n              85.763671875,\n              545.6129455566406\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            510.08203125,\n            482.3975830078125,\n            545.6129455566406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/205/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The next widget in the column is a row Frame that contains a Button and an Entry:</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              554.94140625\n            ],\n            [\n              450.333984375,\n              554.94140625\n            ],\n            [\n              450.333984375,\n              565.0639495849609\n            ],\n            [\n              86.0625,\n              565.0639495849609\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            554.94140625,\n            450.333984375,\n            565.0639495849609\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/205/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>self.row([0,1], pady=30)\\nself.bu(text='Run file', command=self.run_file)\\nself.en_file = self.en(text='snowflake.py', width=5)\\nself.endrow()</pre>\",\n          \"polygon\": [\n            [\n              124.91015625,\n              570.4317932128906\n            ],\n            [\n              400.1586608886719,\n              570.4317932128906\n            ],\n            [\n              400.1586608886719,\n              616.9774017333984\n            ],\n            [\n              124.91015625,\n              616.9774017333984\n            ]\n          ],\n          \"bbox\": [\n            124.91015625,\n            570.4317932128906,\n            400.1586608886719,\n            616.9774017333984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/205/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first argument to row is a list of weights that determines how extra space is allocated between widgets. The list [0,1] means that all extra space is allocated to the second widget, which is the Entry. If you run this code and resize the window, you will see that the Entry grows and the Button doesn't.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              621.84375\n            ],\n            [\n              482.40338134765625,\n              621.84375\n            ],\n            [\n              482.40338134765625,\n              669.1899566650391\n            ],\n            [\n              85.166015625,\n              669.1899566650391\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            621.84375,\n            482.40338134765625,\n            669.1899566650391\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/205/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The option pady \\\"pads\\\" this row in the <i>y</i> direction, adding 30 pixels of space above and below.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              677.91796875\n            ],\n            [\n              482.40386962890625,\n              677.91796875\n            ],\n            [\n              482.40386962890625,\n              700.8349533081055\n            ],\n            [\n              85.6142578125,\n              700.8349533081055\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            677.91796875,\n            482.40386962890625,\n            700.8349533081055\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"4\": \"/page/204/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/206/Page/196\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/206/PageHeader/0'></content-ref><content-ref src='/page/206/PageHeader/17'></content-ref><content-ref src='/page/206/Text/1'></content-ref><content-ref src='/page/206/ListGroup/195'></content-ref><content-ref src='/page/206/Text/4'></content-ref><content-ref src='/page/206/Code/5'></content-ref><content-ref src='/page/206/Text/6'></content-ref><content-ref src='/page/206/Code/7'></content-ref><content-ref src='/page/206/Code/8'></content-ref><content-ref src='/page/206/Text/9'></content-ref><content-ref src='/page/206/Code/10'></content-ref><content-ref src='/page/206/Text/11'></content-ref><content-ref src='/page/206/Text/12'></content-ref><content-ref src='/page/206/SectionHeader/13'></content-ref><content-ref src='/page/206/Text/14'></content-ref><content-ref src='/page/206/Text/15'></content-ref><content-ref src='/page/206/Code/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/206/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              60.8115234375\n            ],\n            [\n              525.6033935546875,\n              60.8115234375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.3466796875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            60.8115234375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.80078125,\n              60.85986328125\n            ],\n            [\n              525.33984375,\n              60.85986328125\n            ],\n            [\n              525.33984375,\n              69.85107421875\n            ],\n            [\n              509.80078125,\n              69.85107421875\n            ]\n          ],\n          \"bbox\": [\n            509.80078125,\n            60.85986328125,\n            525.33984375,\n            69.85107421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">endrow ends this row of widgets, so subsequent widgets are packed in the column Frame. Gui.py keeps a stack of Frames:</p>\",\n          \"polygon\": [\n            [\n              126.8525390625,\n              88.41357421875\n            ],\n            [\n              525.59814453125,\n              88.41357421875\n            ],\n            [\n              525.59814453125,\n              110.99188232421875\n            ],\n            [\n              126.8525390625,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            126.8525390625,\n            88.41357421875,\n            525.59814453125,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/ListGroup/195\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/206/ListItem/2'></content-ref><content-ref src='/page/206/ListItem/3'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              141.4951171875,\n              125.7802734375\n            ],\n            [\n              525.9375,\n              125.7802734375\n            ],\n            [\n              525.9375,\n              181.44287109375\n            ],\n            [\n              141.4951171875,\n              181.44287109375\n            ]\n          ],\n          \"bbox\": [\n            141.4951171875,\n            125.7802734375,\n            525.9375,\n            181.44287109375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/206/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> When you use row, col or gr to create a Frame, it goes on top of the stack and becomes the current Frame.</li>\",\n              \"polygon\": [\n                [\n                  142.83984375,\n                  125.7802734375\n                ],\n                [\n                  525.9375,\n                  125.7802734375\n                ],\n                [\n                  525.9375,\n                  148.2398681640625\n                ],\n                [\n                  142.83984375,\n                  148.2398681640625\n                ]\n              ],\n              \"bbox\": [\n                142.83984375,\n                125.7802734375,\n                525.9375,\n                148.2398681640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/204/SectionHeader/11\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/206/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> When you use endrow, endcol or endgr to close a Frame, it gets popped off the stack and the previous Frame on the stack becomes the current Frame.</li>\",\n              \"polygon\": [\n                [\n                  141.4951171875,\n                  158.94140625\n                ],\n                [\n                  525.598388671875,\n                  158.94140625\n                ],\n                [\n                  525.598388671875,\n                  181.44287109375\n                ],\n                [\n                  141.4951171875,\n                  181.44287109375\n                ]\n              ],\n              \"bbox\": [\n                141.4951171875,\n                158.94140625,\n                525.598388671875,\n                181.44287109375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/204/SectionHeader/11\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/206/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The method run_file reads the contents of the Entry, uses it as a filename, reads the contents and passes it to run_code. self.inter is an Interpreter object that knows how to take a string and execute it as Python code.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              196.259765625\n            ],\n            [\n              525.9375,\n              196.259765625\n            ],\n            [\n              525.9375,\n              230.88385009765625\n            ],\n            [\n              128.0478515625,\n              230.88385009765625\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            196.259765625,\n            525.9375,\n            230.88385009765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def run_file(self):\\n    filename = self.en_file.get()\\n    fp = open(filename)\\n    source = fp.read()\\n    self.inter.run_code(source, filename)</pre>\",\n          \"polygon\": [\n            [\n              150.5159912109375,\n              237.43267822265625\n            ],\n            [\n              364.9763488769531,\n              237.43267822265625\n            ],\n            [\n              364.9763488769531,\n              296.2265625\n            ],\n            [\n              150.5159912109375,\n              296.2265625\n            ]\n          ],\n          \"bbox\": [\n            150.5159912109375,\n            237.43267822265625,\n            364.9763488769531,\n            296.2265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The last two widgets are a Text widget and a Button:</p>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              302.607421875\n            ],\n            [\n              360.47320556640625,\n              302.607421875\n            ],\n            [\n              360.47320556640625,\n              312.9828796386719\n            ],\n            [\n              128.72021484375,\n              312.9828796386719\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            302.607421875,\n            360.47320556640625,\n            312.9828796386719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>self.te_code = self.te(width=25, height=10)\\nself.te_code.insert(END, 'world.clear()\\\\n')\\nself.te_code.insert(END, 'bob = Turtle(world)\\\\n')</pre>\",\n          \"polygon\": [\n            [\n              170.33203125,\n              319.53173828125\n            ],\n            [\n              428.51953125,\n              319.53173828125\n            ],\n            [\n              428.51953125,\n              362.7421875\n            ],\n            [\n              170.33203125,\n              362.7421875\n            ]\n          ],\n          \"bbox\": [\n            170.33203125,\n            319.53173828125,\n            428.51953125,\n            362.7421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>self.bu(text='Run code', command=self.run_text)</pre>\",\n          \"polygon\": [\n            [\n              169.734375,\n              368.3087463378906\n            ],\n            [\n              417.2407531738281,\n              368.3087463378906\n            ],\n            [\n              417.2407531738281,\n              378.2713317871094\n            ],\n            [\n              169.734375,\n              378.2713317871094\n            ]\n          ],\n          \"bbox\": [\n            169.734375,\n            368.3087463378906,\n            417.2407531738281,\n            378.2713317871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">run_text is similar to run_file except that it takes the code from the Text widget instead of from a file:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              384.9697570800781\n            ],\n            [\n              525.595458984375,\n              384.9697570800781\n            ],\n            [\n              525.595458984375,\n              407.27691650390625\n            ],\n            [\n              128.197265625,\n              407.27691650390625\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            384.9697570800781,\n            525.595458984375,\n            407.27691650390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def run_text(self):\\n    source = self.te_code.get(1.0, END)\\n    self.inter.run_code(source, '&lt;user-provided code&gt;')</pre>\",\n          \"polygon\": [\n            [\n              150.5159912109375,\n              413.7890625\n            ],\n            [\n              438.11834716796875,\n              413.7890625\n            ],\n            [\n              438.11834716796875,\n              448.1763610839844\n            ],\n            [\n              150.5159912109375,\n              448.1763610839844\n            ]\n          ],\n          \"bbox\": [\n            150.5159912109375,\n            413.7890625,\n            438.11834716796875,\n            448.1763610839844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Unfortunately, the details of widget layout are different in other languages, and in different Python modules. Tkinter alone provides three different mechanisms for arranging widgets. These mechanisms are called <b>geometry managers</b>. The one I demonstrated in this section is the \\\"grid\\\" geometry manager; the others are called \\\"pack\\\" and \\\"place\\\".</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              454.39453125\n            ],\n            [\n              525.6044311523438,\n              454.39453125\n            ],\n            [\n              525.6044311523438,\n              501.5699462890625\n            ],\n            [\n              128.794921875,\n              501.5699462890625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            454.39453125,\n            525.6044311523438,\n            501.5699462890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Fortunately, most of the concepts in this section apply to other GUI modules and other languages.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              512.2393493652344\n            ],\n            [\n              525.6034545898438,\n              512.2393493652344\n            ],\n            [\n              525.6034545898438,\n              534.83203125\n            ],\n            [\n              128.3466796875,\n              534.83203125\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            512.2393493652344,\n            525.6034545898438,\n            534.83203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/204/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-206-0\\\"></span><b>19.7 Menus and Callables</b></h4>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              565.2227935791016\n            ],\n            [\n              308.091796875,\n              565.2227935791016\n            ],\n            [\n              308.091796875,\n              579.5689849853516\n            ],\n            [\n              128.27197265625,\n              579.5689849853516\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            565.2227935791016,\n            308.091796875,\n            579.5689849853516\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A Menubutton is a widget that looks like a button, but when pressed it pops up a menu. After the user selects an item, the menu disappears.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              592.453125\n            ],\n            [\n              525.6033325195312,\n              592.453125\n            ],\n            [\n              525.6033325195312,\n              614.7649383544922\n            ],\n            [\n              128.0478515625,\n              614.7649383544922\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            592.453125,\n            525.6033325195312,\n            614.7649383544922\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is code that creates a color selection Menubutton (you can download it from <a href=\\\"http://thinkpython.com/code/menubutton_demo.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/menubutton_demo.py\\\">//thinkpython.com/code/menubutton_demo.py</a>):</p>\",\n          \"polygon\": [\n            [\n              127.1513671875,\n              624.55078125\n            ],\n            [\n              525.605712890625,\n              624.55078125\n            ],\n            [\n              525.605712890625,\n              647.5909423828125\n            ],\n            [\n              127.1513671875,\n              647.5909423828125\n            ]\n          ],\n          \"bbox\": [\n            127.1513671875,\n            624.55078125,\n            525.605712890625,\n            647.5909423828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/206/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>g = Gui()\\ng.la('Select a color:')\\ncolors = ['red', 'green', 'blue']\\nmb = g.mb(text=colors[0])</pre>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              653.16796875\n            ],\n            [\n              302.162353515625,\n              653.16796875\n            ],\n            [\n              302.162353515625,\n              700.6853790283203\n            ],\n            [\n              128.12255859375,\n              700.6853790283203\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            653.16796875,\n            302.162353515625,\n            700.6853790283203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"4\": \"/page/206/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/207/Page/195\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/207/PageHeader/0'></content-ref><content-ref src='/page/207/PageHeader/17'></content-ref><content-ref src='/page/207/Text/1'></content-ref><content-ref src='/page/207/Code/2'></content-ref><content-ref src='/page/207/Text/3'></content-ref><content-ref src='/page/207/Text/4'></content-ref><content-ref src='/page/207/Text/5'></content-ref><content-ref src='/page/207/Text/6'></content-ref><content-ref src='/page/207/Code/7'></content-ref><content-ref src='/page/207/Text/8'></content-ref><content-ref src='/page/207/SectionHeader/9'></content-ref><content-ref src='/page/207/Text/10'></content-ref><content-ref src='/page/207/Text/11'></content-ref><content-ref src='/page/207/Text/12'></content-ref><content-ref src='/page/207/Code/13'></content-ref><content-ref src='/page/207/Text/14'></content-ref><content-ref src='/page/207/Text/15'></content-ref><content-ref src='/page/207/Code/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/207/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.6181640625\n            ],\n            [\n              482.4034118652344,\n              60.6181640625\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.6181640625,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              60.56982421875\n            ],\n            [\n              102.6474609375,\n              60.56982421875\n            ],\n            [\n              102.6474609375,\n              69.75439453125\n            ],\n            [\n              85.6142578125,\n              69.75439453125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            60.56982421875,\n            102.6474609375,\n            69.75439453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">mb creates the Menubutton. Initially, the text on the button is the name of the default color. The following loop creates one menu item for each color:</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              88.6552734375\n            ],\n            [\n              482.40081787109375,\n              88.6552734375\n            ],\n            [\n              482.40081787109375,\n              110.99188232421875\n            ],\n            [\n              85.166015625,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            88.6552734375,\n            482.40081787109375,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>for color in colors:\\n    g.mi(mb, text=color, command=Callable(set_color, color))</pre>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              117.585693359375\n            ],\n            [\n              400.2363586425781,\n              117.585693359375\n            ],\n            [\n              400.2363586425781,\n              141.92578125\n            ],\n            [\n              85.3154296875,\n              141.92578125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            117.585693359375,\n            400.2363586425781,\n            141.92578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first argument of mi is the Menubutton these items are associated with.</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              145.986328125\n            ],\n            [\n              416.99591064453125,\n              145.986328125\n            ],\n            [\n              416.99591064453125,\n              156.597900390625\n            ],\n            [\n              85.0166015625,\n              156.597900390625\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            145.986328125,\n            416.99591064453125,\n            156.597900390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The command option is a Callable object, which is something new. So far we have seen functions and bound methods used as callbacks, which works fine if you don't have to pass any arguments to the function. Otherwise you have to construct a Callable object that contains a function, like set_color, and its arguments, like color.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              166.869140625\n            ],\n            [\n              482.4034118652344,\n              166.869140625\n            ],\n            [\n              482.4034118652344,\n              213.85797119140625\n            ],\n            [\n              85.3154296875,\n              213.85797119140625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            166.869140625,\n            482.4034118652344,\n            213.85797119140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The Callable object stores a reference to the function and the arguments as attributes. Later, when the user clicks on a menu item, the callback calls the function and passes the stored arguments.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              224.490234375\n            ],\n            [\n              482.90625,\n              224.490234375\n            ],\n            [\n              482.90625,\n              258.9239501953125\n            ],\n            [\n              85.6142578125,\n              258.9239501953125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            224.490234375,\n            482.90625,\n            258.9239501953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is what set_color might look like:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              268.76953125\n            ],\n            [\n              263.6532897949219,\n              268.76953125\n            ],\n            [\n              263.6532897949219,\n              279.6009521484375\n            ],\n            [\n              85.6142578125,\n              279.6009521484375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            268.76953125,\n            263.6532897949219,\n            279.6009521484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def set_color(color):\\n    mb.config(text=color)\\n    print color</pre>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              286.19476318359375\n            ],\n            [\n              217.16360473632812,\n              286.19476318359375\n            ],\n            [\n              217.16360473632812,\n              321.169921875\n            ],\n            [\n              85.763671875,\n              321.169921875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            286.19476318359375,\n            217.16360473632812,\n            321.169921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When the user selects a menu item and set_color is called, it configures the Menubutton to display the newly-selected color. It also print the color; if you try this example, you can confirm that set_color is called when you select an item (and <i>not</i> called when you create the Callable object).</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              326.77734375\n            ],\n            [\n              482.4033203125,\n              326.77734375\n            ],\n            [\n              482.4033203125,\n              373.9839172363281\n            ],\n            [\n              85.3154296875,\n              373.9839172363281\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            326.77734375,\n            482.4033203125,\n            373.9839172363281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/206/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-207-0\\\"></span><b>19.8 Binding</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              404.94476318359375\n            ],\n            [\n              179.89453125,\n              404.94476318359375\n            ],\n            [\n              179.89453125,\n              419.2909851074219\n            ],\n            [\n              85.763671875,\n              419.2909851074219\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            404.94476318359375,\n            179.89453125,\n            419.2909851074219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>binding</b> is an association between a widget, an event and a callback: when an event (like a button press) happens on a widget, the callback is invoked.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              431.96484375\n            ],\n            [\n              482.4049072265625,\n              431.96484375\n            ],\n            [\n              482.4049072265625,\n              454.5489196777344\n            ],\n            [\n              85.6142578125,\n              454.5489196777344\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            431.96484375,\n            482.4049072265625,\n            454.5489196777344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Many widgets have default bindings. For example, when you press a button, the default binding changes the relief of the button to make it look depressed. When you release the button, the binding restores the appearance of the button and invokes the callback specified with the command option.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              464.8359375\n            ],\n            [\n              482.4034423828125,\n              464.8359375\n            ],\n            [\n              482.4034423828125,\n              511.8089294433594\n            ],\n            [\n              85.46484375,\n              511.8089294433594\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            464.8359375,\n            482.4034423828125,\n            511.8089294433594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can use the bind method to override these default bindings or to add new ones. For example, this code creates a binding for a canvas (you can download the code in this section from <a href=\\\"http://thinkpython.com/code/draggable_demo.py\\\">http://thinkpython.com/code/draggable_demo.py</a>):</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              521.68359375\n            ],\n            [\n              482.40423583984375,\n              521.68359375\n            ],\n            [\n              482.40423583984375,\n              556.8749389648438\n            ],\n            [\n              85.763671875,\n              556.8749389648438\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            521.68359375,\n            482.40423583984375,\n            556.8749389648438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Code/13\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>ca.bind('&lt;ButtonPress-1&gt;', make_circle)</pre>\",\n          \"polygon\": [\n            [\n              86.28662109375,\n              563.44921875\n            ],\n            [\n              290.35308837890625,\n              563.44921875\n            ],\n            [\n              290.35308837890625,\n              573.4313812255859\n            ],\n            [\n              86.28662109375,\n              573.4313812255859\n            ]\n          ],\n          \"bbox\": [\n            86.28662109375,\n            563.44921875,\n            290.35308837890625,\n            573.4313812255859\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first argument is an event string; this event is triggered when the user presses the left mouse button. Other mouse events include ButtonMotion, ButtonRelease and Double-Button.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              580.078125\n            ],\n            [\n              482.607421875,\n              580.078125\n            ],\n            [\n              482.607421875,\n              614.8828125\n            ],\n            [\n              85.763671875,\n              614.8828125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            580.078125,\n            482.607421875,\n            614.8828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The second argument is an event handler. An event handler is a function or bound method, like a callback, but an important difference is that an event handler takes an Event object as a parameter. Here is an example:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              624.55078125\n            ],\n            [\n              482.607421875,\n              624.55078125\n            ],\n            [\n              482.607421875,\n              659.7409362792969\n            ],\n            [\n              85.763671875,\n              659.7409362792969\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            624.55078125,\n            482.607421875,\n            659.7409362792969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/207/Code/16\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def make_circle(event):\\n    pos = ca.canvas_coords([event.x, event.y])\\n    item = ca.circle(pos, 5, fill='red')</pre>\",\n          \"polygon\": [\n            [\n              86.39995574951172,\n              666.3347778320312\n            ],\n            [\n              328.412109375,\n              666.3347778320312\n            ],\n            [\n              328.412109375,\n              700.6853790283203\n            ],\n            [\n              86.39995574951172,\n              700.6853790283203\n            ]\n          ],\n          \"bbox\": [\n            86.39995574951172,\n            666.3347778320312,\n            328.412109375,\n            700.6853790283203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"4\": \"/page/207/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/208/Page/187\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/208/PageHeader/0'></content-ref><content-ref src='/page/208/PageHeader/16'></content-ref><content-ref src='/page/208/Text/1'></content-ref><content-ref src='/page/208/Text/2'></content-ref><content-ref src='/page/208/Code/3'></content-ref><content-ref src='/page/208/Text/4'></content-ref><content-ref src='/page/208/Code/5'></content-ref><content-ref src='/page/208/Text/6'></content-ref><content-ref src='/page/208/Text/7'></content-ref><content-ref src='/page/208/Code/8'></content-ref><content-ref src='/page/208/Code/9'></content-ref><content-ref src='/page/208/Text/10'></content-ref><content-ref src='/page/208/Text/11'></content-ref><content-ref src='/page/208/Code/12'></content-ref><content-ref src='/page/208/Text/13'></content-ref><content-ref src='/page/208/Text/14'></content-ref><content-ref src='/page/208/Code/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/208/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.31787109375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.31787109375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.31787109375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.501953125,\n              60.76318359375\n            ],\n            [\n              525.638671875,\n              60.76318359375\n            ],\n            [\n              525.638671875,\n              69.94775390625\n            ],\n            [\n              509.501953125,\n              69.94775390625\n            ]\n          ],\n          \"bbox\": [\n            509.501953125,\n            60.76318359375,\n            525.638671875,\n            69.94775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The Event object contains information about the type of event and details like the coordinates of the mouse pointer. In this example the information we need is the location of the mouse click. These values are in \\\"pixel coordinates,\\\" which are defined by the underlying graphical system. The method canvas_coords translates them to \\\"Canvas coordinates,\\\" which are compatible with Canvas methods like circle.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              88.0751953125\n            ],\n            [\n              525.638671875,\n              88.0751953125\n            ],\n            [\n              525.638671875,\n              147.57489013671875\n            ],\n            [\n              129.392578125,\n              147.57489013671875\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            88.0751953125,\n            525.638671875,\n            147.57489013671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For Entry widgets, it is common to bind the &lt;Return&gt; event, which is triggered when the user presses the Return or Enter key. For example, the following code creates a Button and an Entry.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              157.201171875\n            ],\n            [\n              525.6021118164062,\n              157.201171875\n            ],\n            [\n              525.6021118164062,\n              191.94488525390625\n            ],\n            [\n              129.09375,\n              191.94488525390625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            157.201171875,\n            525.6021118164062,\n            191.94488525390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>bu = g.bu('Make text item:', make_text)\\nen = g.en()\\nen.bind('&lt;Return&gt;', make_text)</pre>\",\n          \"polygon\": [\n            [\n              129.59999084472656,\n              197.806640625\n            ],\n            [\n              333.5504150390625,\n              197.806640625\n            ],\n            [\n              333.5504150390625,\n              232.19427490234375\n            ],\n            [\n              129.59999084472656,\n              232.19427490234375\n            ]\n          ],\n          \"bbox\": [\n            129.59999084472656,\n            197.806640625,\n            333.5504150390625,\n            232.19427490234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">make_text is called when the Button is pressed or when the user hits Return while typing in the Entry. To make this work, we need a function that can be called as a command (with no arguments) or as an event handler (with an Event as an argument):</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              237.4453125\n            ],\n            [\n              525.6033935546875,\n              237.4453125\n            ],\n            [\n              525.6033935546875,\n              272.74188232421875\n            ],\n            [\n              128.9443359375,\n              272.74188232421875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            237.4453125,\n            525.6033935546875,\n            272.74188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def make_text(event=None):\\n    text = en.get()\\n    item = ca.text([0,0], text)</pre>\",\n          \"polygon\": [\n            [\n              129.60003662109375,\n              277.6640625\n            ],\n            [\n              291.7458190917969,\n              277.6640625\n            ],\n            [\n              291.7458190917969,\n              312.9913024902344\n            ],\n            [\n              129.60003662109375,\n              312.9913024902344\n            ]\n          ],\n          \"bbox\": [\n            129.60003662109375,\n            277.6640625,\n            291.7458190917969,\n            312.9913024902344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">make_text gets the contents of the Entry and displays it as a Text item in the Canvas.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              318.462890625\n            ],\n            [\n              502.04083251953125,\n              318.462890625\n            ],\n            [\n              502.04083251953125,\n              329.1498718261719\n            ],\n            [\n              128.9443359375,\n              329.1498718261719\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            318.462890625,\n            502.04083251953125,\n            329.1498718261719\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It is also possible to create bindings for Canvas items. The following is a class definition for Draggable, which is a child class of Item that provides bindings that implement dragand-drop capability.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              338.765625\n            ],\n            [\n              525.6033325195312,\n              338.765625\n            ],\n            [\n              525.6033325195312,\n              373.5198669433594\n            ],\n            [\n              128.6455078125,\n              373.5198669433594\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            338.765625,\n            525.6033325195312,\n            373.5198669433594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class Draggable(Item):</pre>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              379.417724609375\n            ],\n            [\n              253.705078125,\n              379.417724609375\n            ],\n            [\n              253.705078125,\n              395.033203125\n            ],\n            [\n              129.46728515625,\n              395.033203125\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            379.417724609375,\n            253.705078125,\n            395.033203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Code/9\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def __init__(self, item):\\n    self.canvas = item.canvas\\n    self.tag = item.tag\\n    self.bind('&lt;Button-3&gt;', self.select)\\n    self.bind('&lt;B3-Motion&gt;', self.drag)\\n    self.bind('&lt;Release-3&gt;', self.drop)</pre>\",\n          \"polygon\": [\n            [\n              150.51602172851562,\n              403.8067321777344\n            ],\n            [\n              359.7080993652344,\n              403.8067321777344\n            ],\n            [\n              359.7080993652344,\n              474.7403259277344\n            ],\n            [\n              150.51602172851562,\n              474.7403259277344\n            ]\n          ],\n          \"bbox\": [\n            150.51602172851562,\n            403.8067321777344,\n            359.7080993652344,\n            474.7403259277344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The init method takes an Item as a parameter. It copies the attributes of the Item and then creates bindings for three events: a button press, button motion, and button release.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              480.3046875\n            ],\n            [\n              525.603271484375,\n              480.3046875\n            ],\n            [\n              525.603271484375,\n              503.0939025878906\n            ],\n            [\n              128.794921875,\n              503.0939025878906\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            480.3046875,\n            525.603271484375,\n            503.0939025878906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The event handler select stores the coordinates of the current event and the original color of the item, then changes the color to yellow:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              512.7890625\n            ],\n            [\n              525.5986938476562,\n              512.7890625\n            ],\n            [\n              525.5986938476562,\n              535.2698974609375\n            ],\n            [\n              128.197265625,\n              535.2698974609375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            512.7890625,\n            525.5986938476562,\n            535.2698974609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def select(self, event):\\n    self.dragx = event.x\\n    self.dragy = event.y\\n    self.fill = self.cget('fill')\\n    self.config(fill='yellow')</pre>\",\n          \"polygon\": [\n            [\n              150.5160369873047,\n              541.1677398681641\n            ],\n            [\n              323.07843017578125,\n              541.1677398681641\n            ],\n            [\n              323.07843017578125,\n              612.5625\n            ],\n            [\n              150.5160369873047,\n              612.5625\n            ]\n          ],\n          \"bbox\": [\n            150.5160369873047,\n            541.1677398681641,\n            323.07843017578125,\n            612.5625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">cget stands for \\\"get configuration;\\\" it takes the name of an option as a string and returns the current value of that option.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              617.9765625\n            ],\n            [\n              525.5963134765625,\n              617.9765625\n            ],\n            [\n              525.5963134765625,\n              640.4559020996094\n            ],\n            [\n              128.49609375,\n              640.4559020996094\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            617.9765625,\n            525.5963134765625,\n            640.4559020996094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">drag computes how far the object has moved relative to the starting place, updates the stored coordinates, and then moves the item.</p>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              650.07421875\n            ],\n            [\n              525.6035766601562,\n              650.07421875\n            ],\n            [\n              525.6035766601562,\n              672.6309127807617\n            ],\n            [\n              127.4501953125,\n              672.6309127807617\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            650.07421875,\n            525.6035766601562,\n            672.6309127807617\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/208/Code/15\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def drag(self, event):\\n    dx = event.x - self.dragx</pre>\",\n          \"polygon\": [\n            [\n              150.5160675048828,\n              678.5287475585938\n            ],\n            [\n              302.1921691894531,\n              678.5287475585938\n            ],\n            [\n              302.1921691894531,\n              700.734375\n            ],\n            [\n              150.5160675048828,\n              700.734375\n            ]\n          ],\n          \"bbox\": [\n            150.5160675048828,\n            678.5287475585938,\n            302.1921691894531,\n            700.734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"4\": \"/page/207/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/209/Page/167\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/209/PageHeader/0'></content-ref><content-ref src='/page/209/PageHeader/16'></content-ref><content-ref src='/page/209/Code/1'></content-ref><content-ref src='/page/209/Text/2'></content-ref><content-ref src='/page/209/Text/3'></content-ref><content-ref src='/page/209/Code/4'></content-ref><content-ref src='/page/209/Text/5'></content-ref><content-ref src='/page/209/Code/6'></content-ref><content-ref src='/page/209/Text/7'></content-ref><content-ref src='/page/209/SectionHeader/8'></content-ref><content-ref src='/page/209/Text/9'></content-ref><content-ref src='/page/209/Text/10'></content-ref><content-ref src='/page/209/Code/11'></content-ref><content-ref src='/page/209/Text/12'></content-ref><content-ref src='/page/209/Text/13'></content-ref><content-ref src='/page/209/Text/14'></content-ref><content-ref src='/page/209/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/209/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.56982421875\n            ],\n            [\n              482.4034118652344,\n              60.56982421875\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.56982421875,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              61.0048828125\n            ],\n            [\n              101.82568359375,\n              61.0048828125\n            ],\n            [\n              101.82568359375,\n              70.189453125\n            ],\n            [\n              85.68896484375,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            61.0048828125,\n            101.82568359375,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>dy = event.y - self.dragy\\nself.dragx = event.x\\nself.dragy = event.y\\nself.move(dx, dy)</pre>\",\n          \"polygon\": [\n            [\n              125.58251953125,\n              86.57666015625\n            ],\n            [\n              258.9920959472656,\n              86.57666015625\n            ],\n            [\n              258.9920959472656,\n              159.62030029296875\n            ],\n            [\n              125.58251953125,\n              159.62030029296875\n            ]\n          ],\n          \"bbox\": [\n            125.58251953125,\n            86.57666015625,\n            258.9920959472656,\n            159.62030029296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This computation is done in pixel coordinates; there is no need to convert to Canvas coordinates.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              164.2587890625\n            ],\n            [\n              482.4033508300781,\n              164.2587890625\n            ],\n            [\n              482.4033508300781,\n              188.18792724609375\n            ],\n            [\n              85.763671875,\n              188.18792724609375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            164.2587890625,\n            482.4033508300781,\n            188.18792724609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Finally, drop restores the original color of the item:</p>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              197.419921875\n            ],\n            [\n              308.5013427734375,\n              197.419921875\n            ],\n            [\n              308.5013427734375,\n              208.3829345703125\n            ],\n            [\n              85.53955078125,\n              208.3829345703125\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            197.419921875,\n            308.5013427734375,\n            208.3829345703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def drop(self, event):\\n    self.config(fill=self.fill)</pre>\",\n          \"polygon\": [\n            [\n              107.31600952148438,\n              214.4937744140625\n            ],\n            [\n              269.4627990722656,\n              214.4937744140625\n            ],\n            [\n              269.4627990722656,\n              236.6513671875\n            ],\n            [\n              107.31600952148438,\n              236.6513671875\n            ]\n          ],\n          \"bbox\": [\n            107.31600952148438,\n            214.4937744140625,\n            269.4627990722656,\n            236.6513671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can use the Draggable class to add drag-and-drop capability to an existing item. For example, here is a modified version of make_circle that uses circle to create an Item and Draggable to make it draggable:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              242.47265625\n            ],\n            [\n              482.4048767089844,\n              242.47265625\n            ],\n            [\n              482.4048767089844,\n              277.41302490234375\n            ],\n            [\n              85.46484375,\n              277.41302490234375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            242.47265625,\n            482.4048767089844,\n            277.41302490234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def make_circle(event):\\n    pos = ca.canvas_coords([event.x, event.y])\\n    item = ca.circle(pos, 5, fill='red')\\n    item = Draggable(item)</pre>\",\n          \"polygon\": [\n            [\n              86.39999389648438,\n              283.52484130859375\n            ],\n            [\n              327.814453125,\n              283.52484130859375\n            ],\n            [\n              327.814453125,\n              330.0704345703125\n            ],\n            [\n              86.39999389648438,\n              330.0704345703125\n            ]\n          ],\n          \"bbox\": [\n            86.39999389648438,\n            283.52484130859375,\n            327.814453125,\n            330.0704345703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This example demonstrates one of the benefits of inheritance: you can modify the capabilities of a parent class without modifying its definition. This is particularly useful if you want to change behavior defined in a module you did not write.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              335.671875\n            ],\n            [\n              482.4033508300781,\n              335.671875\n            ],\n            [\n              482.4033508300781,\n              370.8320007324219\n            ],\n            [\n              85.46484375,\n              370.8320007324219\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            335.671875,\n            482.4033508300781,\n            370.8320007324219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/207/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-209-0\\\"></span><b>19.9 Debugging</b></h4>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              400.25390625\n            ],\n            [\n              200.6630859375,\n              400.25390625\n            ],\n            [\n              200.6630859375,\n              414.94921875\n            ],\n            [\n              85.6142578125,\n              414.94921875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            400.25390625,\n            200.6630859375,\n            414.94921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One of the challenges of GUI programming is keeping track of which things happen while the GUI is being built and which things happen later in response to user events.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              426.55078125\n            ],\n            [\n              482.40325927734375,\n              426.55078125\n            ],\n            [\n              482.40325927734375,\n              449.2760009765625\n            ],\n            [\n              85.6142578125,\n              449.2760009765625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            426.55078125,\n            482.40325927734375,\n            449.2760009765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, when you are setting up a callback, it is a common error to call the function rather than passing a reference to it:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              459.03515625\n            ],\n            [\n              482.4033203125,\n              459.03515625\n            ],\n            [\n              482.4033203125,\n              481.666015625\n            ],\n            [\n              85.46484375,\n              481.666015625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            459.03515625,\n            482.4033203125,\n            481.666015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def the_callback():\\n    print 'Called.'</pre>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              487.7778625488281\n            ],\n            [\n              254.6015625,\n              487.7778625488281\n            ],\n            [\n              254.6015625,\n              512.015625\n            ],\n            [\n              85.166015625,\n              512.015625\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            487.7778625488281,\n            254.6015625,\n            512.015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">g.bu(text='This is wrong!', command=the_callback())</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              524.3608703613281\n            ],\n            [\n              353.1261291503906,\n              524.3608703613281\n            ],\n            [\n              353.1261291503906,\n              534.3234558105469\n            ],\n            [\n              85.46484375,\n              534.3234558105469\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            524.3608703613281,\n            353.1261291503906,\n            534.3234558105469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you run this code, you will see that it calls the_callback immediately, and <i>then</i> creates the button. When you press the button, it does nothing because the return value from the_callback is None. Usually you do not want to invoke a callback while you are setting up the GUI; it should only be invoked later in response to a user event.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              540.5607299804688\n            ],\n            [\n              482.4034729003906,\n              540.5607299804688\n            ],\n            [\n              482.4034729003906,\n              587.2790374755859\n            ],\n            [\n              85.166015625,\n              587.2790374755859\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            540.5607299804688,\n            482.4034729003906,\n            587.2790374755859\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Another challenge of GUI programming is that you don't have control of the flow of execution. Which parts of the program execute and their order are determined by user actions. That means that you have to design your program to work correctly for any possible sequence of events.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              597.09375\n            ],\n            [\n              482.4035339355469,\n              597.09375\n            ],\n            [\n              482.4035339355469,\n              644.0570373535156\n            ],\n            [\n              85.46484375,\n              644.0570373535156\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            597.09375,\n            482.4035339355469,\n            644.0570373535156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/209/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example, the GUI in Exercise <a href=\\\"#page-204-1\\\">19.3</a> has two widgets: one creates a Circle item and the other changes the color of the Circle. If the user creates the circle and then changes its color, there's no problem. But what if the user changes the color of a circle that doesn't exist yet? Or creates more than one circle?</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              654.2894439697266\n            ],\n            [\n              482.4035339355469,\n              654.2894439697266\n            ],\n            [\n              482.4035339355469,\n              700.8350524902344\n            ],\n            [\n              85.46484375,\n              700.8350524902344\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            654.2894439697266,\n            482.4035339355469,\n            700.8350524902344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"4\": \"/page/209/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/210/Page/162\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/210/PageHeader/0'></content-ref><content-ref src='/page/210/PageHeader/23'></content-ref><content-ref src='/page/210/Text/1'></content-ref><content-ref src='/page/210/ListGroup/160'></content-ref><content-ref src='/page/210/Text/6'></content-ref><content-ref src='/page/210/Text/7'></content-ref><content-ref src='/page/210/SectionHeader/8'></content-ref><content-ref src='/page/210/Text/9'></content-ref><content-ref src='/page/210/ListGroup/161'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/210/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.9443359375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/210/PageHeader/23\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.80078125,\n              61.34326171875\n            ],\n            [\n              525.9375,\n              61.34326171875\n            ],\n            [\n              525.9375,\n              70.14111328125\n            ],\n            [\n              509.80078125,\n              70.14111328125\n            ]\n          ],\n          \"bbox\": [\n            509.80078125,\n            61.34326171875,\n            525.9375,\n            70.14111328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/210/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As the number of widgets grows, it is increasingly difficult to imagine all possible sequences of events. One way to manage this complexity is to encapsulate the state of the system in an object and then consider:</p>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              88.51025390625\n            ],\n            [\n              525.9375,\n              88.51025390625\n            ],\n            [\n              525.9375,\n              123.1868896484375\n            ],\n            [\n              127.4501953125,\n              123.1868896484375\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            88.51025390625,\n            525.9375,\n            123.1868896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/210/ListGroup/160\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/210/ListItem/2'></content-ref><content-ref src='/page/210/ListItem/3'></content-ref><content-ref src='/page/210/ListItem/4'></content-ref><content-ref src='/page/210/ListItem/5'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.2421875,\n              133.998046875\n            ],\n            [\n              525.9375,\n              133.998046875\n            ],\n            [\n              525.9375,\n              250.67193603515625\n            ],\n            [\n              142.2421875,\n              250.67193603515625\n            ]\n          ],\n          \"bbox\": [\n            142.2421875,\n            133.998046875,\n            525.9375,\n            250.67193603515625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/210/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> What are the possible states? In the Circle example, we might consider two states: before and after the user creates the first circle.</li>\",\n              \"polygon\": [\n                [\n                  143.2880859375,\n                  133.998046875\n                ],\n                [\n                  525.9375,\n                  133.998046875\n                ],\n                [\n                  525.9375,\n                  156.473876953125\n                ],\n                [\n                  143.2880859375,\n                  156.473876953125\n                ]\n              ],\n              \"bbox\": [\n                143.2880859375,\n                133.998046875,\n                525.9375,\n                156.473876953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/209/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> In each state, what events can occur? In the example, the user can press either of the buttons, or quit.</li>\",\n              \"polygon\": [\n                [\n                  143.138671875,\n                  164.935546875\n                ],\n                [\n                  525.638671875,\n                  164.935546875\n                ],\n                [\n                  525.638671875,\n                  187.87286376953125\n                ],\n                [\n                  143.138671875,\n                  187.87286376953125\n                ]\n              ],\n              \"bbox\": [\n                143.138671875,\n                164.935546875,\n                525.638671875,\n                187.87286376953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/209/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> For each state-event pair, what is the desired outcome? Since there are two states and two buttons, there are four state-event pairs to consider.</li>\",\n              \"polygon\": [\n                [\n                  142.2421875,\n                  195.873046875\n                ],\n                [\n                  525.9375,\n                  195.873046875\n                ],\n                [\n                  525.9375,\n                  219.27288818359375\n                ],\n                [\n                  142.2421875,\n                  219.27288818359375\n                ]\n              ],\n              \"bbox\": [\n                142.2421875,\n                195.873046875,\n                525.9375,\n                219.27288818359375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/209/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> What can cause a transition from one state to another? In this case, there is a transition when the user creates the first circle.</li>\",\n              \"polygon\": [\n                [\n                  143.48800659179688,\n                  227.583984375\n                ],\n                [\n                  525.638671875,\n                  227.583984375\n                ],\n                [\n                  525.638671875,\n                  250.67193603515625\n                ],\n                [\n                  143.48800659179688,\n                  250.67193603515625\n                ]\n              ],\n              \"bbox\": [\n                143.48800659179688,\n                227.583984375,\n                525.638671875,\n                250.67193603515625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/209/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/210/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You might also find it useful to define, and check, invariants that should hold regardless of the sequence of events.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              261.80230712890625\n            ],\n            [\n              526.236328125,\n              261.80230712890625\n            ],\n            [\n              526.236328125,\n              283.95892333984375\n            ],\n            [\n              129.392578125,\n              283.95892333984375\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            261.80230712890625,\n            526.236328125,\n            283.95892333984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/210/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This approach to GUI programming can help you write correct code without taking the time to test every possible sequence of user events!</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              292.552734375\n            ],\n            [\n              525.9375,\n              292.552734375\n            ],\n            [\n              525.9375,\n              315.1659240722656\n            ],\n            [\n              128.9443359375,\n              315.1659240722656\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            292.552734375,\n            525.9375,\n            315.1659240722656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/209/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/210/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-210-0\\\"></span><b>19.10 Glossary</b></h4>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              342.93377685546875\n            ],\n            [\n              234.7294921875,\n              342.93377685546875\n            ],\n            [\n              234.7294921875,\n              357.2799987792969\n            ],\n            [\n              128.6455078125,\n              357.2799987792969\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            342.93377685546875,\n            234.7294921875,\n            357.2799987792969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/210/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/210/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>GUI:</b> A graphical user interface.</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              365.1332092285156\n            ],\n            [\n              273.2406311035156,\n              365.1332092285156\n            ],\n            [\n              273.2406311035156,\n              375.19293212890625\n            ],\n            [\n              129.60000610351562,\n              375.19293212890625\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            365.1332092285156,\n            273.2406311035156,\n            375.19293212890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/210/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/210/ListGroup/161\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/210/ListItem/10'></content-ref><content-ref src='/page/210/ListItem/11'></content-ref><content-ref src='/page/210/ListItem/12'></content-ref><content-ref src='/page/210/ListItem/13'></content-ref><content-ref src='/page/210/ListItem/14'></content-ref><content-ref src='/page/210/ListItem/15'></content-ref><content-ref src='/page/210/ListItem/16'></content-ref><content-ref src='/page/210/ListItem/17'></content-ref><content-ref src='/page/210/ListItem/18'></content-ref><content-ref src='/page/210/ListItem/19'></content-ref><content-ref src='/page/210/ListItem/20'></content-ref><content-ref src='/page/210/ListItem/21'></content-ref><content-ref src='/page/210/ListItem/22'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              384.33819580078125\n            ],\n            [\n              526.236328125,\n              384.33819580078125\n            ],\n            [\n              526.236328125,\n              698.02587890625\n            ],\n            [\n              127.7490234375,\n              698.02587890625\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            384.33819580078125,\n            526.236328125,\n            698.02587890625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/210/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>widget:</b> One of the elements that makes up a GUI, including buttons, menus, text entry fields, etc.</li>\",\n              \"polygon\": [\n                [\n                  129.392578125,\n                  384.33819580078125\n                ],\n                [\n                  526.236328125,\n                  384.33819580078125\n                ],\n                [\n                  526.236328125,\n                  406.5919189453125\n                ],\n                [\n                  129.392578125,\n                  406.5919189453125\n                ]\n              ],\n              \"bbox\": [\n                129.392578125,\n                384.33819580078125,\n                526.236328125,\n                406.5919189453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>option:</b> A value that controls the appearance or function of a widget.</li>\",\n              \"polygon\": [\n                [\n                  128.794921875,\n                  415.7371826171875\n                ],\n                [\n                  434.23663330078125,\n                  415.7371826171875\n                ],\n                [\n                  434.23663330078125,\n                  425.7969055175781\n                ],\n                [\n                  128.794921875,\n                  425.7969055175781\n                ]\n              ],\n              \"bbox\": [\n                128.794921875,\n                415.7371826171875,\n                434.23663330078125,\n                425.7969055175781\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>keyword argument:</b> An argument that indicates the parameter name as part of the function call.</li>\",\n              \"polygon\": [\n                [\n                  128.6455078125,\n                  434.9421691894531\n                ],\n                [\n                  525.6025390625,\n                  434.9421691894531\n                ],\n                [\n                  525.6025390625,\n                  457.1968994140625\n                ],\n                [\n                  128.6455078125,\n                  457.1968994140625\n                ]\n              ],\n              \"bbox\": [\n                128.6455078125,\n                434.9421691894531,\n                525.6025390625,\n                457.1968994140625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>callback:</b> A function associated with a widget that is called when the user performs an action.</li>\",\n              \"polygon\": [\n                [\n                  128.9443359375,\n                  466.3421630859375\n                ],\n                [\n                  525.6036376953125,\n                  466.3421630859375\n                ],\n                [\n                  525.6036376953125,\n                  488.59588623046875\n                ],\n                [\n                  128.9443359375,\n                  488.59588623046875\n                ]\n              ],\n              \"bbox\": [\n                128.9443359375,\n                466.3421630859375,\n                525.6036376953125,\n                488.59588623046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>bound method:</b> A method associated with a particular instance.</li>\",\n              \"polygon\": [\n                [\n                  128.86962890625,\n                  497.3203125\n                ],\n                [\n                  413.876953125,\n                  497.3203125\n                ],\n                [\n                  413.876953125,\n                  507.8008728027344\n                ],\n                [\n                  128.86962890625,\n                  507.8008728027344\n                ]\n              ],\n              \"bbox\": [\n                128.86962890625,\n                497.3203125,\n                413.876953125,\n                507.8008728027344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>event-driven programming:</b> A style of programming in which the flow of execution is determined by user actions.</li>\",\n              \"polygon\": [\n                [\n                  129.392578125,\n                  516.9471435546875\n                ],\n                [\n                  525.602783203125,\n                  516.9471435546875\n                ],\n                [\n                  525.602783203125,\n                  539.2008666992188\n                ],\n                [\n                  129.392578125,\n                  539.2008666992188\n                ]\n              ],\n              \"bbox\": [\n                129.392578125,\n                516.9471435546875,\n                525.602783203125,\n                539.2008666992188\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>event:</b> A user action, like a mouse click or key press, that causes a GUI to respond.</li>\",\n              \"polygon\": [\n                [\n                  128.794921875,\n                  548.3461608886719\n                ],\n                [\n                  493.962890625,\n                  548.3461608886719\n                ],\n                [\n                  493.962890625,\n                  558.4058685302734\n                ],\n                [\n                  128.794921875,\n                  558.4058685302734\n                ]\n              ],\n              \"bbox\": [\n                128.794921875,\n                548.3461608886719,\n                493.962890625,\n                558.4058685302734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>event loop:</b> An infinite loop that waits for user actions and responds.</li>\",\n              \"polygon\": [\n                [\n                  128.72021484375,\n                  567.31640625\n                ],\n                [\n                  435.3519287109375,\n                  567.31640625\n                ],\n                [\n                  435.3519287109375,\n                  577.6108703613281\n                ],\n                [\n                  128.72021484375,\n                  577.6108703613281\n                ]\n              ],\n              \"bbox\": [\n                128.72021484375,\n                567.31640625,\n                435.3519287109375,\n                577.6108703613281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>item:</b> A graphical element on a Canvas widget.</li>\",\n              \"polygon\": [\n                [\n                  127.7490234375,\n                  586.7571563720703\n                ],\n                [\n                  339.46875,\n                  586.7571563720703\n                ],\n                [\n                  339.46875,\n                  596.8168640136719\n                ],\n                [\n                  127.7490234375,\n                  596.8168640136719\n                ]\n              ],\n              \"bbox\": [\n                127.7490234375,\n                586.7571563720703,\n                339.46875,\n                596.8168640136719\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/19\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>bounding box:</b> A rectangle that encloses a set of items, usually specified by two opposing corners.</li>\",\n              \"polygon\": [\n                [\n                  129.09375,\n                  605.962158203125\n                ],\n                [\n                  525.9375,\n                  605.962158203125\n                ],\n                [\n                  525.9375,\n                  628.2158660888672\n                ],\n                [\n                  129.09375,\n                  628.2158660888672\n                ]\n              ],\n              \"bbox\": [\n                129.09375,\n                605.962158203125,\n                525.9375,\n                628.2158660888672\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/20\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>pack:</b> To arrange and display the elements of a GUI.</li>\",\n              \"polygon\": [\n                [\n                  128.57080078125,\n                  637.3611602783203\n                ],\n                [\n                  360.984375,\n                  637.3611602783203\n                ],\n                [\n                  360.984375,\n                  647.4208679199219\n                ],\n                [\n                  128.57080078125,\n                  647.4208679199219\n                ]\n              ],\n              \"bbox\": [\n                128.57080078125,\n                637.3611602783203,\n                360.984375,\n                647.4208679199219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/21\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>geometry manager:</b> A system for packing widgets.</li>\",\n              \"polygon\": [\n                [\n                  128.49609375,\n                  656.566162109375\n                ],\n                [\n                  355.4422302246094,\n                  656.566162109375\n                ],\n                [\n                  355.4422302246094,\n                  666.6258773803711\n                ],\n                [\n                  128.49609375,\n                  666.6258773803711\n                ]\n              ],\n              \"bbox\": [\n                128.49609375,\n                656.566162109375,\n                355.4422302246094,\n                666.6258773803711\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/210/ListItem/22\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>binding:</b> An association between a widget, an event, and an event handler. The event handler is called when the event occurs in the widget.</li>\",\n              \"polygon\": [\n                [\n                  128.49609375,\n                  675.7721633911133\n                ],\n                [\n                  525.9375,\n                  675.7721633911133\n                ],\n                [\n                  525.9375,\n                  698.02587890625\n                ],\n                [\n                  128.49609375,\n                  698.02587890625\n                ]\n              ],\n              \"bbox\": [\n                128.49609375,\n                675.7721633911133,\n                525.9375,\n                698.02587890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"4\": \"/page/210/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/210/SectionHeader/8\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"4\": \"/page/210/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/211/Page/232\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/211/PageHeader/0'></content-ref><content-ref src='/page/211/PageHeader/18'></content-ref><content-ref src='/page/211/SectionHeader/1'></content-ref><content-ref src='/page/211/Text/2'></content-ref><content-ref src='/page/211/Code/3'></content-ref><content-ref src='/page/211/Text/4'></content-ref><content-ref src='/page/211/Code/5'></content-ref><content-ref src='/page/211/Text/6'></content-ref><content-ref src='/page/211/Text/7'></content-ref><content-ref src='/page/211/Text/8'></content-ref><content-ref src='/page/211/Text/9'></content-ref><content-ref src='/page/211/Code/10'></content-ref><content-ref src='/page/211/ListGroup/231'></content-ref><content-ref src='/page/211/Text/13'></content-ref><content-ref src='/page/211/Text/14'></content-ref><content-ref src='/page/211/Text/15'></content-ref><content-ref src='/page/211/ListItem/16'></content-ref><content-ref src='/page/211/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/211/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.94140625\n            ],\n            [\n              482.607421875,\n              59.94140625\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.94140625,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/210/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.763671875,\n              60.37646484375\n            ],\n            [\n              102.0498046875,\n              60.37646484375\n            ],\n            [\n              102.0498046875,\n              70.62451171875\n            ],\n            [\n              85.763671875,\n              70.62451171875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            60.37646484375,\n            102.0498046875,\n            70.62451171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"4\": \"/page/210/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-211-0\\\"></span><b>19.11 Exercises</b></h3>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              84.4013671875\n            ],\n            [\n              194.0888671875,\n              84.4013671875\n            ],\n            [\n              194.0888671875,\n              99.97796630859375\n            ],\n            [\n              85.0166015625,\n              99.97796630859375\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            84.4013671875,\n            194.0888671875,\n            99.97796630859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise 19.4.</b> <i>For this exercise, you will write an image viewer. Here is a simple example:</i></p>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              113.0185546875\n            ],\n            [\n              452.42578125,\n              113.0185546875\n            ],\n            [\n              452.42578125,\n              124.00079345703125\n            ],\n            [\n              84.8671875,\n              124.00079345703125\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            113.0185546875,\n            452.42578125,\n            124.00079345703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>g = Gui()\\ncanvas = g.ca(width=300)\\nphoto = PhotoImage(file='danger.gif')\\ncanvas.image([0,0], image=photo)\\ng.mainloop()</pre>\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              131.44677734375\n            ],\n            [\n              279.8783874511719,\n              131.44677734375\n            ],\n            [\n              279.8783874511719,\n              190.1864013671875\n            ],\n            [\n              85.24072265625,\n              190.1864013671875\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            131.44677734375,\n            279.8783874511719,\n            190.1864013671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">PhotoImage <i>reads a file and returns a</i> PhotoImage <i>object that Tkinter can display.</i> Canvas.image <i>puts the image on the canvas, centered on the given coordinates. You can also put images on labels,</i> <i>buttons, and some other widgets:</i></p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              196.1630859375\n            ],\n            [\n              482.607421875,\n              196.1630859375\n            ],\n            [\n              482.607421875,\n              232.03125\n            ],\n            [\n              85.166015625,\n              232.03125\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            196.1630859375,\n            482.607421875,\n            232.03125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>g.la(image=photo)\\ng.bu(image=photo)</pre>\",\n          \"polygon\": [\n            [\n              84.49365234375,\n              238.9921875\n            ],\n            [\n              177.802734375,\n              238.9921875\n            ],\n            [\n              177.802734375,\n              261.69146728515625\n            ],\n            [\n              84.49365234375,\n              261.69146728515625\n            ]\n          ],\n          \"bbox\": [\n            84.49365234375,\n            238.9921875,\n            177.802734375,\n            261.69146728515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>PhotoImage can only handle a few image formats, like GIF and PPM, but we can use the Python</i> <i>Imaging Library (PIL) to read other files.</i></p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              267.99609375\n            ],\n            [\n              482.90625,\n              267.99609375\n            ],\n            [\n              482.90625,\n              291.3233642578125\n            ],\n            [\n              85.763671875,\n              291.3233642578125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            267.99609375,\n            482.90625,\n            291.3233642578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The name of the PIL module is</i> Image<i>, but Tkinter defines an object with the same name. To avoid</i> <i>the conflict, you can use</i> import...as <i>like this:</i></p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              301.25390625\n            ],\n            [\n              483.802734375,\n              301.25390625\n            ],\n            [\n              483.802734375,\n              324.9725036621094\n            ],\n            [\n              85.46484375,\n              324.9725036621094\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            301.25390625,\n            483.802734375,\n            324.9725036621094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">import Image as PIL import ImageTk</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              332.4709167480469\n            ],\n            [\n              186.46875,\n              332.4709167480469\n            ],\n            [\n              186.46875,\n              354.62750244140625\n            ],\n            [\n              85.763671875,\n              354.62750244140625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            332.4709167480469,\n            186.46875,\n            354.62750244140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The first line imports</i> Image <i>and gives it the local name</i> PIL<i>. The second line imports</i> ImageTk<i>,</i> <i>which can translate a PIL image into a Tkinter PhotoImage. Here's an example:</i></p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              361.775390625\n            ],\n            [\n              482.39971923828125,\n              361.775390625\n            ],\n            [\n              482.39971923828125,\n              384.2593688964844\n            ],\n            [\n              86.2119140625,\n              384.2593688964844\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            361.775390625,\n            482.39971923828125,\n            384.2593688964844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Code/10\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>image = PIL.open('allen.png')\\nphoto2 = ImageTk.PhotoImage(image)\\ng.la(image=photo2)</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              391.74609375\n            ],\n            [\n              264.2424011230469,\n              391.74609375\n            ],\n            [\n              264.2424011230469,\n              426.13250732421875\n            ],\n            [\n              85.46484375,\n              426.13250732421875\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            391.74609375,\n            264.2424011230469,\n            426.13250732421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/ListGroup/231\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/211/ListItem/11'></content-ref><content-ref src='/page/211/ListItem/12'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.2685546875,\n              442.01953125\n            ],\n            [\n              482.90625,\n              442.01953125\n            ],\n            [\n              482.90625,\n              523.7943725585938\n            ],\n            [\n              97.2685546875,\n              523.7943725585938\n            ]\n          ],\n          \"bbox\": [\n            97.2685546875,\n            442.01953125,\n            482.90625,\n            523.7943725585938\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/211/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. Download</i> image_demo.py<i>,</i> danger.gif <i>and</i> allen.png <i>from</i> <a href=\\\"http://thinkpython.com/code\\\">http:</a> <a href=\\\"http://thinkpython.com/code\\\">//</a> <a href=\\\"http://thinkpython.com/code\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code\\\">com/</a> <a href=\\\"http://thinkpython.com/code\\\">code</a> <i>. Run</i> image_demo.py<i>. You might have to install</i> PIL <i>and</i> ImageTk<i>. They</i> <i>are probably in your software repository, but if not you can get them from</i> <a href=\\\"http://pythonware.com/products/pil\\\">http:</a> <a href=\\\"http://pythonware.com/products/pil\\\">//</a> <a href=\\\"http://pythonware.com/products/pil\\\">pythonware.</a> <a href=\\\"http://pythonware.com/products/pil\\\">com/</a> <a href=\\\"http://pythonware.com/products/pil\\\">products/</a> <a href=\\\"http://pythonware.com/products/pil\\\">pil</a> <i>.</i></li>\",\n              \"polygon\": [\n                [\n                  97.8662109375,\n                  442.01953125\n                ],\n                [\n                  482.90625,\n                  442.01953125\n                ],\n                [\n                  482.90625,\n                  489.2273864746094\n                ],\n                [\n                  97.8662109375,\n                  489.2273864746094\n                ]\n              ],\n              \"bbox\": [\n                97.8662109375,\n                442.01953125,\n                482.90625,\n                489.2273864746094\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"3\": \"/page/211/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/211/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. In</i> image_demo.py <i>change the name of the second PhotoImage from</i> photo2 <i>to</i> photo <i>and</i> <i>run the program again. You should see the second PhotoImage but not the first.</i></li>\",\n              \"polygon\": [\n                [\n                  97.2685546875,\n                  500.4140625\n                ],\n                [\n                  482.90625,\n                  500.4140625\n                ],\n                [\n                  482.90625,\n                  523.7943725585938\n                ],\n                [\n                  97.2685546875,\n                  523.7943725585938\n                ]\n              ],\n              \"bbox\": [\n                97.2685546875,\n                500.4140625,\n                482.90625,\n                523.7943725585938\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/200/SectionHeader/1\",\n                \"3\": \"/page/211/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/211/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>The problem is that when you reassign</i> photo <i>it overwrites the reference to the first PhotoIm</i><i>age, which then disappears. The same thing happens if you assign a PhotoImage to a local</i> <i>variable; it disappears when the function ends.</i></p>\",\n          \"polygon\": [\n            [\n              111.30706787109375,\n              530.19140625\n            ],\n            [\n              482.90625,\n              530.19140625\n            ],\n            [\n              482.90625,\n              565.4663696289062\n            ],\n            [\n              111.30706787109375,\n              565.4663696289062\n            ]\n          ],\n          \"bbox\": [\n            111.30706787109375,\n            530.19140625,\n            482.90625,\n            565.4663696289062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>To avoid this problem, you have to store a reference to each PhotoImage you want to keep. You</i> <i>can use a global variable, or store PhotoImages in a data structure or as an attribute of an</i> <i>object.</i></p>\",\n          \"polygon\": [\n            [\n              111.30706787109375,\n              571.95703125\n            ],\n            [\n              483.50390625,\n              571.95703125\n            ],\n            [\n              483.50390625,\n              607.1393737792969\n            ],\n            [\n              111.30706787109375,\n              607.1393737792969\n            ]\n          ],\n          \"bbox\": [\n            111.30706787109375,\n            571.95703125,\n            483.50390625,\n            607.1393737792969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>This behavior can be frustrating, which is why I am warning you (and why the example image</i> <i>says \\\"Danger!\\\").</i></p>\",\n          \"polygon\": [\n            [\n              111.30706787109375,\n              613.3359375\n            ],\n            [\n              482.90625,\n              613.3359375\n            ],\n            [\n              482.90625,\n              636.6173706054688\n            ],\n            [\n              111.30706787109375,\n              636.6173706054688\n            ]\n          ],\n          \"bbox\": [\n            111.30706787109375,\n            613.3359375,\n            482.90625,\n            636.6173706054688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/ListItem/16\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. Starting with this example, write a program that takes the name of a directory and loops</i> <i>through all the files, displaying any files that PIL recognizes as images. You can use a</i> try <i>statement to catch the files PIL doesn't recognize.</i></li>\",\n          \"polygon\": [\n            [\n              98.1650390625,\n              647.3671875\n            ],\n            [\n              483.50390625,\n              647.3671875\n            ],\n            [\n              483.50390625,\n              683.3793792724609\n            ],\n            [\n              98.1650390625,\n              683.3793792724609\n            ]\n          ],\n          \"bbox\": [\n            98.1650390625,\n            647.3671875,\n            483.50390625,\n            683.3793792724609\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/211/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>When the user clicks on the image, the program should display the next one.</i></p>\",\n          \"polygon\": [\n            [\n              110.865234375,\n              689.51953125\n            ],\n            [\n              415.07672119140625,\n              689.51953125\n            ],\n            [\n              415.07672119140625,\n              700.6623764038086\n            ],\n            [\n              110.865234375,\n              700.6623764038086\n            ]\n          ],\n          \"bbox\": [\n            110.865234375,\n            689.51953125,\n            415.07672119140625,\n            700.6623764038086\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"3\": \"/page/211/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/212/Page/125\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/212/PageHeader/0'></content-ref><content-ref src='/page/212/PageHeader/7'></content-ref><content-ref src='/page/212/ListItem/1'></content-ref><content-ref src='/page/212/Text/2'></content-ref><content-ref src='/page/212/Text/3'></content-ref><content-ref src='/page/212/Text/4'></content-ref><content-ref src='/page/212/Text/5'></content-ref><content-ref src='/page/212/Text/6'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/212/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.9443359375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/212/PageHeader/7\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.80078125,\n              60.908203125\n            ],\n            [\n              525.9375,\n              60.908203125\n            ],\n            [\n              525.9375,\n              70.2861328125\n            ],\n            [\n              509.80078125,\n              70.2861328125\n            ]\n          ],\n          \"bbox\": [\n            509.80078125,\n            60.908203125,\n            525.9375,\n            70.2861328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/212/ListItem/1\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><i>4. PIL provides a variety of methods for manipulating images. You can read about them at</i> <a href=\\\"http://pythonware.com/library/pil/handbook\\\">http:</a> <a href=\\\"http://pythonware.com/library/pil/handbook\\\">//</a> <a href=\\\"http://pythonware.com/library/pil/handbook\\\">pythonware.</a> <a href=\\\"http://pythonware.com/library/pil/handbook\\\">com/</a> <a href=\\\"http://pythonware.com/library/pil/handbook\\\">library/</a> <a href=\\\"http://pythonware.com/library/pil/handbook\\\">pil/</a> <a href=\\\"http://pythonware.com/library/pil/handbook\\\">handbook</a> <i>. As a challenge, choose a few of</i> <i>these methods and provide a GUI for applying them to images.</i></li>\",\n          \"polygon\": [\n            [\n              141.046875,\n              88.6552734375\n            ],\n            [\n              526.53515625,\n              88.6552734375\n            ],\n            [\n              526.53515625,\n              123.01416015625\n            ],\n            [\n              141.046875,\n              123.01416015625\n            ]\n          ],\n          \"bbox\": [\n            141.046875,\n            88.6552734375,\n            526.53515625,\n            123.01416015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/212/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Solution:</i> <a href=\\\"http://thinkpython.com/code/ImageBrowser.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/ImageBrowser.py\\\">//</a> <a href=\\\"http://thinkpython.com/code/ImageBrowser.py\\\">thinkpython.</a> <a href=\\\"http://thinkpython.com/code/ImageBrowser.py\\\">com/</a> <a href=\\\"http://thinkpython.com/code/ImageBrowser.py\\\">code/</a> <a href=\\\"http://thinkpython.com/code/ImageBrowser.py\\\">ImageBrowser.</a> <a href=\\\"http://thinkpython.com/code/ImageBrowser.py\\\">py</a> <i>.</i> <b>Exercise 19.5.</b> <i>A vector graphics editor is a program that allows users to draw and edit shapes on</i> <i>the screen and generate output files in vector graphics formats like Postscript and SVG.</i></p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              137.10687255859375\n            ],\n            [\n              525.638671875,\n              137.10687255859375\n            ],\n            [\n              525.638671875,\n              171.53814697265625\n            ],\n            [\n              128.197265625,\n              171.53814697265625\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            137.10687255859375,\n            525.638671875,\n            171.53814697265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/212/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Write a simple vector graphics editor using Tkinter. At a minimum, it should allow users to draw</i> <i>lines, circles and rectangles, and it should use</i> Canvas.dump <i>to generate a Postscript description of</i> <i>the contents of the Canvas.</i></p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              180.984375\n            ],\n            [\n              526.53515625,\n              180.984375\n            ],\n            [\n              526.53515625,\n              216.06414794921875\n            ],\n            [\n              128.9443359375,\n              216.06414794921875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            180.984375,\n            526.53515625,\n            216.06414794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/212/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>As a challenge, you could allow users to select and resize items on the Canvas.</i> <b>Exercise 19.6.</b> <i>Use Tkinter to write a basic web browser. It should have a Text widget where the</i> <i>user can enter a URL and a Canvas to display the contents of the page.</i></p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              226.23956298828125\n            ],\n            [\n              525.5978393554688,\n              226.23956298828125\n            ],\n            [\n              525.5978393554688,\n              260.59014892578125\n            ],\n            [\n              129.09375,\n              260.59014892578125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            226.23956298828125,\n            525.5978393554688,\n            260.59014892578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/212/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>You can use the</i> urllib <i>module to download files (see Exercise </i><i><a href=\\\"#page-162-2\\\">14.6)</a></i><i> and the</i> HTMLParser <i>module</i> <i>to parse the HTML tags (see</i> <a href=\\\"http://docs.python.org/2/library/htmlparser.html\\\">http:</a> <a href=\\\"http://docs.python.org/2/library/htmlparser.html\\\">//</a> <a href=\\\"http://docs.python.org/2/library/htmlparser.html\\\">docs.</a> <a href=\\\"http://docs.python.org/2/library/htmlparser.html\\\">python.</a> <a href=\\\"http://docs.python.org/2/library/htmlparser.html\\\">org/</a> <a href=\\\"http://docs.python.org/2/library/htmlparser.html\\\">2/</a> <a href=\\\"http://docs.python.org/2/library/htmlparser.html\\\">library/</a> <a href=\\\"http://docs.python.org/2/library/htmlparser.html\\\">htmlparser.</a> <a href=\\\"http://docs.python.org/2/library/htmlparser.html\\\">html</a> <i>).</i></p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              270.703125\n            ],\n            [\n              525.9375,\n              270.703125\n            ],\n            [\n              525.9375,\n              292.9221496582031\n            ],\n            [\n              128.0478515625,\n              292.9221496582031\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            270.703125,\n            525.9375,\n            292.9221496582031\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/212/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>At a minimum your browser should handle plain text and hyperlinks. As a challenge you could</i> <i>handle background colors, text formatting tags and images.</i></p>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              303.0975646972656\n            ],\n            [\n              526.53515625,\n              303.0975646972656\n            ],\n            [\n              526.53515625,\n              325.254150390625\n            ],\n            [\n              127.4501953125,\n              325.254150390625\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            303.0975646972656,\n            526.53515625,\n            325.254150390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"3\": \"/page/211/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/213/Page/3\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/213/PageHeader/1'></content-ref><content-ref src='/page/213/Text/0'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/213/PageHeader/1\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              60.66650390625\n            ],\n            [\n              100.705078125,\n              60.66650390625\n            ],\n            [\n              100.705078125,\n              70.52783203125\n            ],\n            [\n              85.0166015625,\n              70.52783203125\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            60.66650390625,\n            100.705078125,\n            70.52783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/213/Text/0\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>192 Chapter 19. Case study: Tkinter</b></p>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.5546875\n            ],\n            [\n              482.4034118652344,\n              59.5546875\n            ],\n            [\n              482.4034118652344,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.5546875,\n            482.4034118652344,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"3\": \"/page/211/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/200/SectionHeader/1\",\n        \"3\": \"/page/211/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/214/Page/102\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/214/SectionHeader/0'></content-ref><content-ref src='/page/214/SectionHeader/1'></content-ref><content-ref src='/page/214/Text/2'></content-ref><content-ref src='/page/214/ListGroup/100'></content-ref><content-ref src='/page/214/Text/6'></content-ref><content-ref src='/page/214/SectionHeader/7'></content-ref><content-ref src='/page/214/Text/8'></content-ref><content-ref src='/page/214/Text/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/214/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-214-0\\\"></span><b>Appendix A</b></h2>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              163.58203125\n            ],\n            [\n              246.533203125,\n              163.58203125\n            ],\n            [\n              246.533203125,\n              185.823974609375\n            ],\n            [\n              128.49609375,\n              185.823974609375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            163.58203125,\n            246.533203125,\n            185.823974609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/200/SectionHeader/1\",\n            \"2\": \"/page/214/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/214/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Debugging</b></h1>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              220.04296875\n            ],\n            [\n              259.083984375,\n              220.04296875\n            ],\n            [\n              259.083984375,\n              246.34539794921875\n            ],\n            [\n              128.794921875,\n              246.34539794921875\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            220.04296875,\n            259.083984375,\n            246.34539794921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/214/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Different kinds of errors can occur in a program, and it is useful to distinguish among them in order to track them down more quickly:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              294.6796875\n            ],\n            [\n              527.431640625,\n              294.6796875\n            ],\n            [\n              527.431640625,\n              317.970947265625\n            ],\n            [\n              128.794921875,\n              317.970947265625\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            294.6796875,\n            527.431640625,\n            317.970947265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/214/ListGroup/100\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/214/ListItem/3'></content-ref><content-ref src='/page/214/ListItem/4'></content-ref><content-ref src='/page/214/ListItem/5'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.0927734375,\n              332.96484375\n            ],\n            [\n              527.1328125,\n              332.96484375\n            ],\n            [\n              527.1328125,\n              485.4669494628906\n            ],\n            [\n              142.0927734375,\n              485.4669494628906\n            ]\n          ],\n          \"bbox\": [\n            142.0927734375,\n            332.96484375,\n            527.1328125,\n            485.4669494628906\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/214/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Syntax errors are produced by Python when it is translating the source code into byte code. They usually indicate that there is something wrong with the syntax of the program. Example: Omitting the colon at the end of a def statement yields the somewhat redundant message SyntaxError: invalid syntax.</li>\",\n              \"polygon\": [\n                [\n                  142.9892578125,\n                  332.96484375\n                ],\n                [\n                  526.53515625,\n                  332.96484375\n                ],\n                [\n                  526.53515625,\n                  380.6179504394531\n                ],\n                [\n                  142.9892578125,\n                  380.6179504394531\n                ]\n              ],\n              \"bbox\": [\n                142.9892578125,\n                332.96484375,\n                526.53515625,\n                380.6179504394531\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/214/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Runtime errors are produced by the interpreter if something goes wrong while the program is running. Most runtime error messages include information about where the error occurred and what functions were executing. Example: An infinite recursion eventually causes the runtime error \\\"maximum recursion depth exceeded.\\\"</li>\",\n              \"polygon\": [\n                [\n                  143.48800659179688,\n                  391.166015625\n                ],\n                [\n                  527.1328125,\n                  391.166015625\n                ],\n                [\n                  527.1328125,\n                  439.1389465332031\n                ],\n                [\n                  143.48800659179688,\n                  439.1389465332031\n                ]\n              ],\n              \"bbox\": [\n                143.48800659179688,\n                391.166015625,\n                527.1328125,\n                439.1389465332031\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/214/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Semantic errors are problems with a program that runs without producing error messages but doesn't do the right thing. Example: An expression may not be evaluated in the order you expect, yielding an incorrect result.</li>\",\n              \"polygon\": [\n                [\n                  142.0927734375,\n                  449.75390625\n                ],\n                [\n                  527.1328125,\n                  449.75390625\n                ],\n                [\n                  527.1328125,\n                  485.4669494628906\n                ],\n                [\n                  142.0927734375,\n                  485.4669494628906\n                ]\n              ],\n              \"bbox\": [\n                142.0927734375,\n                449.75390625,\n                527.1328125,\n                485.4669494628906\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/214/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first step in debugging is to figure out which kind of error you are dealing with. Although the following sections are organized by error type, some techniques are applicable in more than one situation.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              500.80078125\n            ],\n            [\n              527.1328125,\n              500.80078125\n            ],\n            [\n              527.1328125,\n              535.9189453125\n            ],\n            [\n              128.6455078125,\n              535.9189453125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            500.80078125,\n            527.1328125,\n            535.9189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/214/SectionHeader/7\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-214-1\\\"></span><b>A.1 Syntax errors</b></h4>\",\n          \"polygon\": [\n            [\n              129.46728515625,\n              568.3808135986328\n            ],\n            [\n              252.509765625,\n              568.3808135986328\n            ],\n            [\n              252.509765625,\n              582.7270050048828\n            ],\n            [\n              129.46728515625,\n              582.7270050048828\n            ]\n          ],\n          \"bbox\": [\n            129.46728515625,\n            568.3808135986328,\n            252.509765625,\n            582.7270050048828\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/214/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/214/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Syntax errors are usually easy to fix once you figure out what they are. Unfortunately, the error messages are often not helpful. The most common messages are SyntaxError: invalid syntax and SyntaxError: invalid token, neither of which is very informative.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              596.3203125\n            ],\n            [\n              526.53515625,\n              596.3203125\n            ],\n            [\n              526.53515625,\n              643.074951171875\n            ],\n            [\n              129.09375,\n              643.074951171875\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            596.3203125,\n            526.53515625,\n            643.074951171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/214/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/214/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">On the other hand, the message does tell you where in the program the problem occurred. Actually, it tells you where Python noticed a problem, which is not necessarily where the error is. Sometimes the error is prior to the location of the error message, often on the preceding line.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              653.5546875\n            ],\n            [\n              527.1328125,\n              653.5546875\n            ],\n            [\n              527.1328125,\n              700.8349609375\n            ],\n            [\n              128.6455078125,\n              700.8349609375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            653.5546875,\n            527.1328125,\n            700.8349609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/214/SectionHeader/7\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/214/SectionHeader/1\",\n        \"4\": \"/page/214/SectionHeader/7\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/215/Page/164\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/215/PageHeader/0'></content-ref><content-ref src='/page/215/PageHeader/19'></content-ref><content-ref src='/page/215/Text/1'></content-ref><content-ref src='/page/215/Text/2'></content-ref><content-ref src='/page/215/Text/3'></content-ref><content-ref src='/page/215/ListGroup/163'></content-ref><content-ref src='/page/215/Text/11'></content-ref><content-ref src='/page/215/SectionHeader/12'></content-ref><content-ref src='/page/215/Text/13'></content-ref><content-ref src='/page/215/Text/14'></content-ref><content-ref src='/page/215/Text/15'></content-ref><content-ref src='/page/215/ListGroup/164'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/215/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.89306640625\n            ],\n            [\n              482.90625,\n              59.89306640625\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.89306640625,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/214/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/215/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              60.2314453125\n            ],\n            [\n              102.72216796875,\n              60.2314453125\n            ],\n            [\n              102.72216796875,\n              70.0927734375\n            ],\n            [\n              85.68896484375,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            60.2314453125,\n            102.72216796875,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/214/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/215/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are building the program incrementally, you should have a good idea about where the error is. It will be in the last line you added.</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              87.3984375\n            ],\n            [\n              484.69921875,\n              87.3984375\n            ],\n            [\n              484.69921875,\n              110.99188232421875\n            ],\n            [\n              85.0166015625,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            87.3984375,\n            484.69921875,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/214/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/215/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are copying code from a book, start by comparing your code to the book's code very carefully. Check every character. At the same time, remember that the book might be wrong, so if you see something that looks like a syntax error, it might be.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              120.5595703125\n            ],\n            [\n              484.1015625,\n              120.5595703125\n            ],\n            [\n              484.1015625,\n              155.85791015625\n            ],\n            [\n              85.3154296875,\n              155.85791015625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            120.5595703125,\n            484.1015625,\n            155.85791015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/214/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/215/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here are some ways to avoid the most common syntax errors:</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              165.2255859375\n            ],\n            [\n              358.11993408203125,\n              165.2255859375\n            ],\n            [\n              358.11993408203125,\n              176.33489990234375\n            ],\n            [\n              85.166015625,\n              176.33489990234375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            165.2255859375,\n            358.11993408203125,\n            176.33489990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/214/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/215/ListGroup/163\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/215/ListItem/4'></content-ref><content-ref src='/page/215/ListItem/5'></content-ref><content-ref src='/page/215/ListItem/6'></content-ref><content-ref src='/page/215/ListItem/7'></content-ref><content-ref src='/page/215/ListItem/8'></content-ref><content-ref src='/page/215/ListItem/9'></content-ref><content-ref src='/page/215/ListItem/10'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              97.41796875,\n              189.3955078125\n            ],\n            [\n              484.1015625,\n              189.3955078125\n            ],\n            [\n              484.1015625,\n              447.5038757324219\n            ],\n            [\n              97.41796875,\n              447.5038757324219\n            ]\n          ],\n          \"bbox\": [\n            97.41796875,\n            189.3955078125,\n            484.1015625,\n            447.5038757324219\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/215/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">1. Make sure you are not using a Python keyword for a variable name.</li>\",\n              \"polygon\": [\n                [\n                  98.8530044555664,\n                  189.3955078125\n                ],\n                [\n                  410.888671875,\n                  189.3955078125\n                ],\n                [\n                  410.888671875,\n                  201.09991455078125\n                ],\n                [\n                  98.8530044555664,\n                  201.09991455078125\n                ]\n              ],\n              \"bbox\": [\n                98.8530044555664,\n                189.3955078125,\n                410.888671875,\n                201.09991455078125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/214/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/215/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">2. Check that you have a colon at the end of the header of every compound statement, including for, while, if, and def statements.</li>\",\n              \"polygon\": [\n                [\n                  98.015625,\n                  210.568359375\n                ],\n                [\n                  483.802734375,\n                  210.568359375\n                ],\n                [\n                  483.802734375,\n                  234.03790283203125\n                ],\n                [\n                  98.015625,\n                  234.03790283203125\n                ]\n              ],\n              \"bbox\": [\n                98.015625,\n                210.568359375,\n                483.802734375,\n                234.03790283203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/214/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/215/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">3. Make sure that any strings in the code have matching quotation marks.</li>\",\n              \"polygon\": [\n                [\n                  97.8662109375,\n                  244.01953125\n                ],\n                [\n                  424.93359375,\n                  244.01953125\n                ],\n                [\n                  424.93359375,\n                  254.7808837890625\n                ],\n                [\n                  97.8662109375,\n                  254.7808837890625\n                ]\n              ],\n              \"bbox\": [\n                97.8662109375,\n                244.01953125,\n                424.93359375,\n                254.7808837890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/214/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/215/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">4. If you have multiline strings with triple quotes (single or double), make sure you have terminated the string properly. An unterminated string may cause an invalid token error at the end of your program, or it may treat the following part of the program as a string until it comes to the next string. In the second case, it might not produce an error message at all!</li>\",\n              \"polygon\": [\n                [\n                  98.1650390625,\n                  265.095703125\n                ],\n                [\n                  483.50390625,\n                  265.095703125\n                ],\n                [\n                  483.50390625,\n                  324.3018798828125\n                ],\n                [\n                  98.1650390625,\n                  324.3018798828125\n                ]\n              ],\n              \"bbox\": [\n                98.1650390625,\n                265.095703125,\n                483.50390625,\n                324.3018798828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/214/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/215/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">5. An unclosed opening operator—(, {, or [—makes Python continue with the next line as part of the current statement. Generally, an error occurs almost immediately in the next line.</li>\",\n              \"polygon\": [\n                [\n                  97.41796875,\n                  333.931640625\n                ],\n                [\n                  484.1015625,\n                  333.931640625\n                ],\n                [\n                  484.1015625,\n                  369.4338684082031\n                ],\n                [\n                  97.41796875,\n                  369.4338684082031\n                ]\n              ],\n              \"bbox\": [\n                97.41796875,\n                333.931640625,\n                484.1015625,\n                369.4338684082031\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/214/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/215/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">6. Check for the classic = instead of == inside a conditional.</li>\",\n              \"polygon\": [\n                [\n                  97.94091796875,\n                  379.177734375\n                ],\n                [\n                  359.490234375,\n                  379.177734375\n                ],\n                [\n                  359.490234375,\n                  390.1778564453125\n                ],\n                [\n                  97.94091796875,\n                  390.1778564453125\n                ]\n              ],\n              \"bbox\": [\n                97.94091796875,\n                379.177734375,\n                359.490234375,\n                390.1778564453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/214/SectionHeader/7\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/215/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">7. Check the indentation to make sure it lines up the way it is supposed to. Python can handle space and tabs, but if you mix them it can cause problems. The best way to avoid this problem is to use a text editor that knows about Python and generates consistent indentation.</li>\",\n              \"polygon\": [\n                [\n                  97.716796875,\n                  399.8671875\n                ],\n                [\n                  484.1015625,\n                  399.8671875\n                ],\n                [\n                  484.1015625,\n                  447.5038757324219\n                ],\n                [\n                  97.716796875,\n                  447.5038757324219\n                ]\n              ],\n              \"bbox\": [\n                97.716796875,\n                399.8671875,\n                484.1015625,\n                447.5038757324219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/214/SectionHeader/7\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/214/SectionHeader/7\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/215/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If nothing works, move on to the next section...</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              460.96875\n            ],\n            [\n              294.046875,\n              460.96875\n            ],\n            [\n              294.046875,\n              472.2688903808594\n            ],\n            [\n              86.0625,\n              472.2688903808594\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            460.96875,\n            294.046875,\n            472.2688903808594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/214/SectionHeader/7\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/215/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>A.1.1 I keep making changes and it makes no difference.</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              498.48046875\n            ],\n            [\n              403.41796875,\n              498.48046875\n            ],\n            [\n              403.41796875,\n              511.0899658203125\n            ],\n            [\n              85.763671875,\n              511.0899658203125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            498.48046875,\n            403.41796875,\n            511.0899658203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/215/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/215/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the interpreter says there is an error and you don't see it, that might be because you and the interpreter are not looking at the same code. Check your programming environment to make sure that the program you are editing is the one Python is trying to run.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              521.296875\n            ],\n            [\n              484.1015625,\n              521.296875\n            ],\n            [\n              484.1015625,\n              557.0458679199219\n            ],\n            [\n              85.763671875,\n              557.0458679199219\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            521.296875,\n            484.1015625,\n            557.0458679199219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/215/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/215/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are not sure, try putting an obvious and deliberate syntax error at the beginning of the program. Now run it again. If the interpreter doesn't find the new error, you are not running the new code.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              566.9296875\n            ],\n            [\n              484.1015625,\n              566.9296875\n            ],\n            [\n              484.1015625,\n              601.9118804931641\n            ],\n            [\n              85.9130859375,\n              601.9118804931641\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            566.9296875,\n            484.1015625,\n            601.9118804931641\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/215/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/215/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There are a few likely culprits:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              611.7890625\n            ],\n            [\n              220.236328125,\n              611.7890625\n            ],\n            [\n              220.236328125,\n              622.3888854980469\n            ],\n            [\n              85.763671875,\n              622.3888854980469\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            611.7890625,\n            220.236328125,\n            622.3888854980469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/215/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/215/ListGroup/164\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup' class='has-continuation'><ul><content-ref src='/page/215/ListItem/16'></content-ref><content-ref src='/page/215/ListItem/17'></content-ref><content-ref src='/page/215/ListItem/18'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              100.2879867553711,\n              635.765625\n            ],\n            [\n              484.1015625,\n              635.765625\n            ],\n            [\n              484.1015625,\n              700.8348999023438\n            ],\n            [\n              100.2879867553711,\n              700.8348999023438\n            ]\n          ],\n          \"bbox\": [\n            100.2879867553711,\n            635.765625,\n            484.1015625,\n            700.8348999023438\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/215/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> You edited the file and forgot to save the changes before running it again. Some programming environments do this for you, but some don't.</li>\",\n              \"polygon\": [\n                [\n                  100.2879867553711,\n                  635.765625\n                ],\n                [\n                  484.1015625,\n                  635.765625\n                ],\n                [\n                  484.1015625,\n                  659.3478851318359\n                ],\n                [\n                  100.2879867553711,\n                  659.3478851318359\n                ]\n              ],\n              \"bbox\": [\n                100.2879867553711,\n                635.765625,\n                484.1015625,\n                659.3478851318359\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/215/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/215/ListItem/17\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> You changed the name of the file, but you are still running the old name.</li>\",\n              \"polygon\": [\n                [\n                  100.2879867553711,\n                  668.63671875\n                ],\n                [\n                  431.5078125,\n                  668.63671875\n                ],\n                [\n                  431.5078125,\n                  680.0918960571289\n                ],\n                [\n                  100.2879867553711,\n                  680.0918960571289\n                ]\n              ],\n              \"bbox\": [\n                100.2879867553711,\n                668.63671875,\n                431.5078125,\n                680.0918960571289\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/215/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/215/ListItem/18\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Something in your development environment is configured incorrectly.</li>\",\n              \"polygon\": [\n                [\n                  100.2879867553711,\n                  689.51953125\n                ],\n                [\n                  425.232421875,\n                  689.51953125\n                ],\n                [\n                  425.232421875,\n                  700.8348999023438\n                ],\n                [\n                  100.2879867553711,\n                  700.8348999023438\n                ]\n              ],\n              \"bbox\": [\n                100.2879867553711,\n                689.51953125,\n                425.232421875,\n                700.8348999023438\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/215/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/215/SectionHeader/12\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/214/SectionHeader/1\",\n        \"4\": \"/page/215/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/216/Page/140\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/216/PageHeader/0'></content-ref><content-ref src='/page/216/PageHeader/17'></content-ref><content-ref src='/page/216/ListGroup/138'></content-ref><content-ref src='/page/216/Text/3'></content-ref><content-ref src='/page/216/SectionHeader/4'></content-ref><content-ref src='/page/216/Text/5'></content-ref><content-ref src='/page/216/SectionHeader/6'></content-ref><content-ref src='/page/216/Text/7'></content-ref><content-ref src='/page/216/Text/8'></content-ref><content-ref src='/page/216/SectionHeader/9'></content-ref><content-ref src='/page/216/Text/10'></content-ref><content-ref src='/page/216/ListItem/11'></content-ref><content-ref src='/page/216/Text/12'></content-ref><content-ref src='/page/216/ListItem/13'></content-ref><content-ref src='/page/216/Text/14'></content-ref><content-ref src='/page/216/ListGroup/139'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/216/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              60.521484375\n            ],\n            [\n              525.6033935546875,\n              60.521484375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.9443359375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            60.521484375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/215/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              60.47314453125\n            ],\n            [\n              526.236328125,\n              60.47314453125\n            ],\n            [\n              526.236328125,\n              70.23779296875\n            ],\n            [\n              510.099609375,\n              70.23779296875\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            60.47314453125,\n            526.236328125,\n            70.23779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/215/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/ListGroup/138\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/216/ListItem/1'></content-ref><content-ref src='/page/216/ListItem/2'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.6904296875,\n              88.0751953125\n            ],\n            [\n              526.53515625,\n              88.0751953125\n            ],\n            [\n              526.53515625,\n              155.69488525390625\n            ],\n            [\n              142.6904296875,\n              155.69488525390625\n            ]\n          ],\n          \"bbox\": [\n            142.6904296875,\n            88.0751953125,\n            526.53515625,\n            155.69488525390625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/216/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> If you are writing a module and using import, make sure you don't give your module the same name as one of the standard Python modules.</li>\",\n              \"polygon\": [\n                [\n                  142.6904296875,\n                  88.0751953125\n                ],\n                [\n                  525.595458984375,\n                  88.0751953125\n                ],\n                [\n                  525.595458984375,\n                  110.99188232421875\n                ],\n                [\n                  142.6904296875,\n                  110.99188232421875\n                ]\n              ],\n              \"bbox\": [\n                142.6904296875,\n                88.0751953125,\n                525.595458984375,\n                110.99188232421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/215/SectionHeader/12\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/216/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> If you are using import to read a module, remember that you have to restart the interpreter or use reload to read a modified file. If you import the module again, it doesn't do anything.</li>\",\n              \"polygon\": [\n                [\n                  142.83984375,\n                  120.076171875\n                ],\n                [\n                  526.53515625,\n                  120.076171875\n                ],\n                [\n                  526.53515625,\n                  155.69488525390625\n                ],\n                [\n                  142.83984375,\n                  155.69488525390625\n                ]\n              ],\n              \"bbox\": [\n                142.83984375,\n                120.076171875,\n                526.53515625,\n                155.69488525390625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/215/SectionHeader/12\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/215/SectionHeader/12\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/216/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you get stuck and you can't figure out what is going on, one approach is to start again with a new program like \\\"Hello, World!,\\\" and make sure you can get a known program to run. Then gradually add the pieces of the original program to the new one.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              169.0927734375\n            ],\n            [\n              526.53515625,\n              169.0927734375\n            ],\n            [\n              526.53515625,\n              204.38287353515625\n            ],\n            [\n              128.0478515625,\n              204.38287353515625\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            169.0927734375,\n            526.53515625,\n            204.38287353515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/215/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/SectionHeader/4\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-216-0\\\"></span><b>A.2 Runtime errors</b></h4>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              233.96484375\n            ],\n            [\n              265.0855407714844,\n              233.96484375\n            ],\n            [\n              265.0855407714844,\n              248.33489990234375\n            ],\n            [\n              128.27197265625,\n              248.33489990234375\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            233.96484375,\n            265.0855407714844,\n            248.33489990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Once your program is syntactically correct, Python can compile it and at least start running it. What could possibly go wrong?</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              259.48828125\n            ],\n            [\n              526.53515625,\n              259.48828125\n            ],\n            [\n              526.53515625,\n              283.078125\n            ],\n            [\n              128.49609375,\n              283.078125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            259.48828125,\n            526.53515625,\n            283.078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/4\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>A.2.1 My program does absolutely nothing.</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              308.794921875\n            ],\n            [\n              374.3588562011719,\n              308.794921875\n            ],\n            [\n              374.3588562011719,\n              321.02691650390625\n            ],\n            [\n              128.3466796875,\n              321.02691650390625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            308.794921875,\n            374.3588562011719,\n            321.02691650390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This problem is most common when your file consists of functions and classes but does not actually invoke anything to start execution. This may be intentional if you only plan to import this module to supply classes and functions.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              331.998046875\n            ],\n            [\n              526.236328125,\n              331.998046875\n            ],\n            [\n              526.236328125,\n              366.62982177734375\n            ],\n            [\n              128.197265625,\n              366.62982177734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            331.998046875,\n            526.236328125,\n            366.62982177734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If it is not intentional, make sure that you are invoking a function to start execution, or execute one from the interactive prompt. Also see the \\\"Flow of Execution\\\" section below.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              376.27734375\n            ],\n            [\n              526.236328125,\n              376.27734375\n            ],\n            [\n              526.236328125,\n              399.0498352050781\n            ],\n            [\n              128.794921875,\n              399.0498352050781\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            376.27734375,\n            526.236328125,\n            399.0498352050781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>A.2.2 My program hangs.</b></h4>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              424.6171875\n            ],\n            [\n              276.1171875,\n              424.6171875\n            ],\n            [\n              276.1171875,\n              437.11590576171875\n            ],\n            [\n              129.01904296875,\n              437.11590576171875\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            424.6171875,\n            276.1171875,\n            437.11590576171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If a program stops and seems to be doing nothing, it is \\\"hanging.\\\" Often that means that it is caught in an infinite loop or infinite recursion.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              447.43359375\n            ],\n            [\n              526.53515625,\n              447.43359375\n            ],\n            [\n              526.53515625,\n              470.52581787109375\n            ],\n            [\n              129.2431640625,\n              470.52581787109375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            447.43359375,\n            526.53515625,\n            470.52581787109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/ListItem/11\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"> If there is a particular loop that you suspect is the problem, add a print statement immediately before the loop that says \\\"entering the loop\\\" and another immediately after that says \\\"exiting the loop.\\\"</li>\",\n          \"polygon\": [\n            [\n              142.0927734375,\n              483.78515625\n            ],\n            [\n              526.53515625,\n              483.78515625\n            ],\n            [\n              526.53515625,\n              519.2128295898438\n            ],\n            [\n              142.0927734375,\n              519.2128295898438\n            ]\n          ],\n          \"bbox\": [\n            142.0927734375,\n            483.78515625,\n            526.53515625,\n            519.2128295898438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Run the program. If you get the first message and not the second, you've got an infinite loop. Go to the \\\"Infinite Loop\\\" section below.</p>\",\n          \"polygon\": [\n            [\n              154.50701904296875,\n              524.390625\n            ],\n            [\n              526.53515625,\n              524.390625\n            ],\n            [\n              526.53515625,\n              547.6618347167969\n            ],\n            [\n              154.50701904296875,\n              547.6618347167969\n            ]\n          ],\n          \"bbox\": [\n            154.50701904296875,\n            524.390625,\n            526.53515625,\n            547.6618347167969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/ListItem/13\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"> Most of the time, an infinite recursion will cause the program to run for a while and then produce a \\\"RuntimeError: Maximum recursion depth exceeded\\\" error. If that happens, go to the \\\"Infinite Recursion\\\" section below.</li>\",\n          \"polygon\": [\n            [\n              141.943359375,\n              557.26171875\n            ],\n            [\n              526.833984375,\n              557.26171875\n            ],\n            [\n              526.833984375,\n              592.3648376464844\n            ],\n            [\n              141.943359375,\n              592.3648376464844\n            ]\n          ],\n          \"bbox\": [\n            141.943359375,\n            557.26171875,\n            526.833984375,\n            592.3648376464844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are not getting this error but you suspect there is a problem with a recursive method or function, you can still use the techniques in the \\\"Infinite Recursion\\\" section.</p>\",\n          \"polygon\": [\n            [\n              153.59765625,\n              598.25390625\n            ],\n            [\n              526.53515625,\n              598.25390625\n            ],\n            [\n              526.53515625,\n              633.05859375\n            ],\n            [\n              153.59765625,\n              633.05859375\n            ]\n          ],\n          \"bbox\": [\n            153.59765625,\n            598.25390625,\n            526.53515625,\n            633.05859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/216/ListGroup/139\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/216/ListItem/15'></content-ref><content-ref src='/page/216/ListItem/16'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              143.2880859375,\n              642.33984375\n            ],\n            [\n              526.53515625,\n              642.33984375\n            ],\n            [\n              526.53515625,\n              698.02734375\n            ],\n            [\n              143.2880859375,\n              698.02734375\n            ]\n          ],\n          \"bbox\": [\n            143.2880859375,\n            642.33984375,\n            526.53515625,\n            698.02734375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/216/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> If neither of those steps works, start testing other loops and other recursive functions and methods.</li>\",\n              \"polygon\": [\n                [\n                  143.48802185058594,\n                  642.33984375\n                ],\n                [\n                  526.53515625,\n                  642.33984375\n                ],\n                [\n                  526.53515625,\n                  665.54296875\n                ],\n                [\n                  143.48802185058594,\n                  665.54296875\n                ]\n              ],\n              \"bbox\": [\n                143.48802185058594,\n                642.33984375,\n                526.53515625,\n                665.54296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/216/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/216/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> If that doesn't work, then it is possible that you don't understand the flow of execution in your program. Go to the \\\"Flow of Execution\\\" section below.</li>\",\n              \"polygon\": [\n                [\n                  143.2880859375,\n                  674.82421875\n                ],\n                [\n                  525.9375,\n                  674.82421875\n                ],\n                [\n                  525.9375,\n                  698.02734375\n                ],\n                [\n                  143.2880859375,\n                  698.02734375\n                ]\n              ],\n              \"bbox\": [\n                143.2880859375,\n                674.82421875,\n                525.9375,\n                698.02734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/216/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/9\"\n          },\n          \"images\": null\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/214/SectionHeader/1\",\n        \"4\": \"/page/216/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/217/Page/163\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/217/PageHeader/0'></content-ref><content-ref src='/page/217/PageHeader/16'></content-ref><content-ref src='/page/217/SectionHeader/1'></content-ref><content-ref src='/page/217/Text/2'></content-ref><content-ref src='/page/217/Text/3'></content-ref><content-ref src='/page/217/Code/4'></content-ref><content-ref src='/page/217/Text/5'></content-ref><content-ref src='/page/217/SectionHeader/6'></content-ref><content-ref src='/page/217/Text/7'></content-ref><content-ref src='/page/217/Text/8'></content-ref><content-ref src='/page/217/Text/9'></content-ref><content-ref src='/page/217/SectionHeader/10'></content-ref><content-ref src='/page/217/Text/11'></content-ref><content-ref src='/page/217/Text/12'></content-ref><content-ref src='/page/217/SectionHeader/13'></content-ref><content-ref src='/page/217/Text/14'></content-ref><content-ref src='/page/217/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/217/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.27978515625\n            ],\n            [\n              482.90625,\n              60.27978515625\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.27978515625,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.83837890625,\n              60.328125\n            ],\n            [\n              102.57275390625,\n              60.328125\n            ],\n            [\n              102.57275390625,\n              70.189453125\n            ],\n            [\n              85.83837890625,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            85.83837890625,\n            60.328125,\n            102.57275390625,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/216/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>Infinite Loop</b></h4>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              87.35009765625\n            ],\n            [\n              148.0693359375,\n              87.35009765625\n            ],\n            [\n              148.0693359375,\n              98.70074462890625\n            ],\n            [\n              85.166015625,\n              98.70074462890625\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            87.35009765625,\n            148.0693359375,\n            98.70074462890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you think you have an infinite loop and you think you know what loop is causing the problem, add a print statement at the end of the loop that prints the values of the variables in the condition and the value of the condition.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              108.28125\n            ],\n            [\n              483.802734375,\n              108.28125\n            ],\n            [\n              483.802734375,\n              144.35693359375\n            ],\n            [\n              85.46484375,\n              144.35693359375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            108.28125,\n            483.802734375,\n            144.35693359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example:</p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              152.6572265625\n            ],\n            [\n              145.15576171875,\n              152.6572265625\n            ],\n            [\n              145.15576171875,\n              164.12493896484375\n            ],\n            [\n              85.39013671875,\n              164.12493896484375\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            152.6572265625,\n            145.15576171875,\n            164.12493896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>while x &gt; 0 and y &lt; 0 :\\n    # do something to x\\n    # do something to y\\n    print \\\"x: \\\", x\\n    print \\\"y: \\\", y\\n    print \\\"condition: \\\", (x &gt; 0 and y &lt; 0)</pre>\",\n          \"polygon\": [\n            [\n              86.40000915527344,\n              169.576171875\n            ],\n            [\n              306.298828125,\n              169.576171875\n            ],\n            [\n              306.298828125,\n              252.9383544921875\n            ],\n            [\n              86.40000915527344,\n              252.9383544921875\n            ]\n          ],\n          \"bbox\": [\n            86.40000915527344,\n            169.576171875,\n            306.298828125,\n            252.9383544921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now when you run the program, you will see three lines of output for each time through the loop. The last time through the loop, the condition should be false. If the loop keeps going, you will be able to see the values of x and y, and you might figure out why they are not being updated correctly.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              256.587890625\n            ],\n            [\n              483.50390625,\n              256.587890625\n            ],\n            [\n              483.50390625,\n              305.4678955078125\n            ],\n            [\n              85.46484375,\n              305.4678955078125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            256.587890625,\n            483.50390625,\n            305.4678955078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/SectionHeader/6\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>Infinite Recursion</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              328.904296875\n            ],\n            [\n              169.2861328125,\n              328.904296875\n            ],\n            [\n              169.2861328125,\n              340.1767883300781\n            ],\n            [\n              85.763671875,\n              340.1767883300781\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            328.904296875,\n            169.2861328125,\n            340.1767883300781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Most of the time, an infinite recursion will cause the program to run for a while and then produce a Maximum recursion depth exceeded error.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              350.173828125\n            ],\n            [\n              483.50390625,\n              350.173828125\n            ],\n            [\n              483.50390625,\n              373.638916015625\n            ],\n            [\n              85.9130859375,\n              373.638916015625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            350.173828125,\n            483.50390625,\n            373.638916015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you suspect that a function or method is causing an infinite recursion, start by checking to make sure that there is a base case. In other words, there should be some condition that will cause the function or method to return without making a recursive invocation. If not, then you need to rethink the algorithm and identify a base case.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              381.884765625\n            ],\n            [\n              483.50390625,\n              381.884765625\n            ],\n            [\n              483.50390625,\n              429.98992919921875\n            ],\n            [\n              85.763671875,\n              429.98992919921875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            381.884765625,\n            483.50390625,\n            429.98992919921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If there is a base case but the program doesn't seem to be reaching it, add a print statement at the beginning of the function or method that prints the parameters. Now when you run the program, you will see a few lines of output every time the function or method is invoked, and you will see the parameters. If the parameters are not moving toward the base case, you will get some ideas about why not.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              438.5390625\n            ],\n            [\n              484.1015625,\n              438.5390625\n            ],\n            [\n              484.1015625,\n              498.53594970703125\n            ],\n            [\n              85.763671875,\n              498.53594970703125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            438.5390625,\n            484.1015625,\n            498.53594970703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/6\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/SectionHeader/10\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>Flow of Execution</b></h4>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              521.68359375\n            ],\n            [\n              168.3896484375,\n              521.68359375\n            ],\n            [\n              168.3896484375,\n              533.2448425292969\n            ],\n            [\n              85.763671875,\n              533.2448425292969\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            521.68359375,\n            168.3896484375,\n            533.2448425292969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you are not sure how the flow of execution is moving through your program, add print statements to the beginning of each function with a message like \\\"entering function foo,\\\" where foo is the name of the function.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              543.7265625\n            ],\n            [\n              483.205078125,\n              543.7265625\n            ],\n            [\n              483.205078125,\n              578.9009552001953\n            ],\n            [\n              86.0625,\n              578.9009552001953\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            543.7265625,\n            483.205078125,\n            578.9009552001953\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now when you run the program, it will print a trace of each function as it is invoked.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              587.42578125\n            ],\n            [\n              460.9937744140625,\n              587.42578125\n            ],\n            [\n              460.9937744140625,\n              598.6689605712891\n            ],\n            [\n              85.763671875,\n              598.6689605712891\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            587.42578125,\n            460.9937744140625,\n            598.6689605712891\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/10\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>A.2.3 When I run the program I get an exception.</b></h4>\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              623.9998321533203\n            ],\n            [\n              359.7890625,\n              623.9998321533203\n            ],\n            [\n              359.7890625,\n              635.9550323486328\n            ],\n            [\n              85.53955078125,\n              635.9550323486328\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            623.9998321533203,\n            359.7890625,\n            635.9550323486328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If something goes wrong during runtime, Python prints a message that includes the name of the exception, the line of the program where the problem occurred, and a traceback.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              645.8203125\n            ],\n            [\n              483.50390625,\n              645.8203125\n            ],\n            [\n              483.50390625,\n              668.8729705810547\n            ],\n            [\n              85.763671875,\n              668.8729705810547\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            645.8203125,\n            483.50390625,\n            668.8729705810547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/217/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">The traceback identifies the function that is currently running, and then the function that invoked it, and then the function that invoked <i>that</i>, and so on. In other words, it traces the</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              677.53125\n            ],\n            [\n              484.1015625,\n              677.53125\n            ],\n            [\n              484.1015625,\n              700.8349685668945\n            ],\n            [\n              85.9130859375,\n              700.8349685668945\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            677.53125,\n            484.1015625,\n            700.8349685668945\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/214/SectionHeader/1\",\n        \"4\": \"/page/217/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/218/Page/190\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/218/PageHeader/0'></content-ref><content-ref src='/page/218/PageHeader/16'></content-ref><content-ref src='/page/218/Text/1'></content-ref><content-ref src='/page/218/Text/2'></content-ref><content-ref src='/page/218/ListItem/3'></content-ref><content-ref src='/page/218/Text/4'></content-ref><content-ref src='/page/218/ListGroup/190'></content-ref><content-ref src='/page/218/Text/10'></content-ref><content-ref src='/page/218/ListItem/11'></content-ref><content-ref src='/page/218/Text/12'></content-ref><content-ref src='/page/218/SectionHeader/13'></content-ref><content-ref src='/page/218/Text/14'></content-ref><content-ref src='/page/218/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/218/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              60.71484375\n            ],\n            [\n              525.6033935546875,\n              60.71484375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.9443359375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            60.71484375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/218/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              60.6181640625\n            ],\n            [\n              525.638671875,\n              60.6181640625\n            ],\n            [\n              525.638671875,\n              69.8994140625\n            ],\n            [\n              510.099609375,\n              69.8994140625\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            60.6181640625,\n            525.638671875,\n            69.8994140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/218/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">sequence of function invocations that got you to where you are. It also includes the line number in your file where each of these calls occurs.</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              88.70361328125\n            ],\n            [\n              525.6033935546875,\n              88.70361328125\n            ],\n            [\n              525.6033935546875,\n              110.99188232421875\n            ],\n            [\n              127.7490234375,\n              110.99188232421875\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            88.70361328125,\n            525.6033935546875,\n            110.99188232421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/218/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first step is to examine the place in the program where the error occurred and see if you can figure out what happened. These are some of the most common runtime errors:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              121.4296875\n            ],\n            [\n              526.236328125,\n              121.4296875\n            ],\n            [\n              526.236328125,\n              144.1048583984375\n            ],\n            [\n              128.197265625,\n              144.1048583984375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            121.4296875,\n            526.236328125,\n            144.1048583984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/218/ListItem/3\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>NameError:</b> You are trying to use a variable that doesn't exist in the current environment. Remember that local variables are local. You cannot refer to them from outside the function where they are defined.</li>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              159.4248046875\n            ],\n            [\n              525.9375,\n              159.4248046875\n            ],\n            [\n              525.9375,\n              194.0758056640625\n            ],\n            [\n              128.9443359375,\n              194.0758056640625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            159.4248046875,\n            525.9375,\n            194.0758056640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/218/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>TypeError:</b> There are several possible causes:</p>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              205.34765625\n            ],\n            [\n              329.6492919921875,\n              205.34765625\n            ],\n            [\n              329.6492919921875,\n              215.57177734375\n            ],\n            [\n              128.72021484375,\n              215.57177734375\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            205.34765625,\n            329.6492919921875,\n            215.57177734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/218/ListGroup/190\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/218/ListItem/5'></content-ref><content-ref src='/page/218/ListItem/6'></content-ref><content-ref src='/page/218/ListItem/7'></content-ref><content-ref src='/page/218/ListItem/8'></content-ref><content-ref src='/page/218/ListItem/9'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              222.75\n            ],\n            [\n              525.9375,\n              222.75\n            ],\n            [\n              525.9375,\n              419.5267639160156\n            ],\n            [\n              129.60000610351562,\n              419.5267639160156\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            222.75,\n            525.9375,\n            419.5267639160156\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/218/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> You are trying to use a value improperly. Example: indexing a string, list, or tuple with something other than an integer.</li>\",\n              \"polygon\": [\n                [\n                  165.406005859375,\n                  222.75\n                ],\n                [\n                  525.638671875,\n                  222.75\n                ],\n                [\n                  525.638671875,\n                  245.28973388671875\n                ],\n                [\n                  165.406005859375,\n                  245.28973388671875\n                ]\n              ],\n              \"bbox\": [\n                165.406005859375,\n                222.75,\n                525.638671875,\n                245.28973388671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/217/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/218/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> There is a mismatch between the items in a format string and the items passed for conversion. This can happen if either the number of items does not match or an invalid conversion is called for.</li>\",\n              \"polygon\": [\n                [\n                  165.406005859375,\n                  251.560546875\n                ],\n                [\n                  525.9375,\n                  251.560546875\n                ],\n                [\n                  525.9375,\n                  286.52374267578125\n                ],\n                [\n                  165.406005859375,\n                  286.52374267578125\n                ]\n              ],\n              \"bbox\": [\n                165.406005859375,\n                251.560546875,\n                525.9375,\n                286.52374267578125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/217/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/218/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> You are passing the wrong number of arguments to a function or method. For methods, look at the method definition and check that the first parameter is self. Then look at the method invocation; make sure you are invoking the method on an object with the right type and providing the other arguments correctly.</li>\",\n              \"polygon\": [\n                [\n                  164.35546875,\n                  292.939453125\n                ],\n                [\n                  525.9375,\n                  292.939453125\n                ],\n                [\n                  525.9375,\n                  352.1467590332031\n                ],\n                [\n                  164.35546875,\n                  352.1467590332031\n                ]\n              ],\n              \"bbox\": [\n                164.35546875,\n                292.939453125,\n                525.9375,\n                352.1467590332031\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/217/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/218/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>KeyError:</b> You are trying to access an element of a dictionary using a key that the dictionary does not contain.</li>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  363.322265625\n                ],\n                [\n                  525.603271484375,\n                  363.322265625\n                ],\n                [\n                  525.603271484375,\n                  385.8367614746094\n                ],\n                [\n                  129.60000610351562,\n                  385.8367614746094\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                363.322265625,\n                525.603271484375,\n                385.8367614746094\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/217/SectionHeader/13\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/218/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><b>AttributeError:</b> You are trying to access an attribute or method that does not exist. Check the spelling! You can use dir to list the attributes that do exist.</li>\",\n              \"polygon\": [\n                [\n                  129.60000610351562,\n                  396.7734375\n                ],\n                [\n                  525.6025390625,\n                  396.7734375\n                ],\n                [\n                  525.6025390625,\n                  419.5267639160156\n                ],\n                [\n                  129.60000610351562,\n                  419.5267639160156\n                ]\n              ],\n              \"bbox\": [\n                129.60000610351562,\n                396.7734375,\n                525.6025390625,\n                419.5267639160156\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"4\": \"/page/217/SectionHeader/13\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/218/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If an AttributeError indicates that an object has NoneType, that means that it is None. One common cause is forgetting to return a value from a function; if you get to the end of a function without hitting a return statement, it returns None. Another common cause is using the result from a list method, like sort, that returns None.</p>\",\n          \"polygon\": [\n            [\n              153.59765625,\n              426.1640625\n            ],\n            [\n              525.6049194335938,\n              426.1640625\n            ],\n            [\n              525.6049194335938,\n              472.95477294921875\n            ],\n            [\n              153.59765625,\n              472.95477294921875\n            ]\n          ],\n          \"bbox\": [\n            153.59765625,\n            426.1640625,\n            525.6049194335938,\n            472.95477294921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/218/ListItem/11\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"><b>IndexError:</b> The index you are using to access a list, string, or tuple is greater than its length minus one. Immediately before the site of the error, add a print statement to display the value of the index and the length of the array. Is the array the right size? Is the index the right value?</li>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              484.39105224609375\n            ],\n            [\n              525.9375,\n              484.39105224609375\n            ],\n            [\n              525.9375,\n              531.0337829589844\n            ],\n            [\n              128.49609375,\n              531.0337829589844\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            484.39105224609375,\n            525.9375,\n            531.0337829589844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/218/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The Python debugger (pdb) is useful for tracking down Exceptions because it allows you to examine the state of the program immediately before the error. You can read about pdb at <a href=\\\"http://docs.python.org/2/library/pdb.html\\\">http://docs.python.org/2/library/pdb.html</a>.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              546.046875\n            ],\n            [\n              525.9375,\n              546.046875\n            ],\n            [\n              525.9375,\n              581.0047912597656\n            ],\n            [\n              128.0478515625,\n              581.0047912597656\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            546.046875,\n            525.9375,\n            581.0047912597656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/217/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/218/SectionHeader/13\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>A.2.4 I added so many</b> print <b>statements I get inundated with output.</b></h4>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              609.0523681640625\n            ],\n            [\n              511.3203430175781,\n              609.0523681640625\n            ],\n            [\n              511.3203430175781,\n              621.1488494873047\n            ],\n            [\n              128.0478515625,\n              621.1488494873047\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            609.0523681640625,\n            511.3203430175781,\n            621.1488494873047\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/218/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/218/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One of the problems with using print statements for debugging is that you can end up buried in output. There are two ways to proceed: simplify the output or simplify the program.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              633.2216339111328\n            ],\n            [\n              525.9375,\n              633.2216339111328\n            ],\n            [\n              525.9375,\n              668.25\n            ],\n            [\n              128.49609375,\n              668.25\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            633.2216339111328,\n            525.9375,\n            668.25\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/218/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/218/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To simplify the output, you can remove or comment out print statements that aren't helping, or combine them, or format the output so it is easier to understand.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              678.3046875\n            ],\n            [\n              525.6024780273438,\n              678.3046875\n            ],\n            [\n              525.6024780273438,\n              700.8348007202148\n            ],\n            [\n              128.3466796875,\n              700.8348007202148\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            678.3046875,\n            525.6024780273438,\n            700.8348007202148\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/218/SectionHeader/13\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/214/SectionHeader/1\",\n        \"4\": \"/page/218/SectionHeader/13\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/219/Page/135\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/219/PageHeader/0'></content-ref><content-ref src='/page/219/PageHeader/15'></content-ref><content-ref src='/page/219/Text/1'></content-ref><content-ref src='/page/219/Text/2'></content-ref><content-ref src='/page/219/Text/3'></content-ref><content-ref src='/page/219/Text/4'></content-ref><content-ref src='/page/219/SectionHeader/5'></content-ref><content-ref src='/page/219/Text/6'></content-ref><content-ref src='/page/219/Text/7'></content-ref><content-ref src='/page/219/Text/8'></content-ref><content-ref src='/page/219/SectionHeader/9'></content-ref><content-ref src='/page/219/Text/10'></content-ref><content-ref src='/page/219/ListGroup/134'></content-ref><content-ref src='/page/219/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/219/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.89306640625\n            ],\n            [\n              482.90625,\n              59.89306640625\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.89306640625,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/218/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.53955078125,\n              60.08642578125\n            ],\n            [\n              102.87158203125,\n              60.08642578125\n            ],\n            [\n              102.87158203125,\n              69.94775390625\n            ],\n            [\n              85.53955078125,\n              69.94775390625\n            ]\n          ],\n          \"bbox\": [\n            85.53955078125,\n            60.08642578125,\n            102.87158203125,\n            69.94775390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/218/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To simplify the program, there are several things you can do. First, scale down the problem the program is working on. For example, if you are searching a list, search a <i>small</i> list. If the program takes input from the user, give it the simplest input that causes the problem.</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              87.25341796875\n            ],\n            [\n              484.1015625,\n              87.25341796875\n            ],\n            [\n              484.1015625,\n              123.1868896484375\n            ],\n            [\n              85.0166015625,\n              123.1868896484375\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            87.25341796875,\n            484.1015625,\n            123.1868896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/218/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Second, clean up the program. Remove dead code and reorganize the program to make it as easy to read as possible. For example, if you suspect that the problem is in a deeply nested part of the program, try rewriting that part with simpler structure. If you suspect a large function, try splitting it into smaller functions and testing them separately.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              133.3212890625\n            ],\n            [\n              482.90625,\n              133.3212890625\n            ],\n            [\n              482.90625,\n              180.84283447265625\n            ],\n            [\n              85.3154296875,\n              180.84283447265625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            133.3212890625,\n            482.90625,\n            180.84283447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/218/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Often the process of finding the minimal test case leads you to the bug. If you find that a program works in one situation but not in another, that gives you a clue about what is going on.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              191.232421875\n            ],\n            [\n              483.205078125,\n              191.232421875\n            ],\n            [\n              483.205078125,\n              226.423828125\n            ],\n            [\n              85.46484375,\n              226.423828125\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            191.232421875,\n            483.205078125,\n            226.423828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/218/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Similarly, rewriting a piece of code can help you find subtle bugs. If you make a change that you think shouldn't affect the program, and it does, that can tip you off.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              236.28515625\n            ],\n            [\n              482.90625,\n              236.28515625\n            ],\n            [\n              482.90625,\n              259.57379150390625\n            ],\n            [\n              85.3154296875,\n              259.57379150390625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            236.28515625,\n            482.90625,\n            259.57379150390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"4\": \"/page/218/SectionHeader/13\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-219-0\\\"></span><b>A.3 Semantic errors</b></h3>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              290.8125\n            ],\n            [\n              225.7646484375,\n              290.8125\n            ],\n            [\n              225.7646484375,\n              306.06982421875\n            ],\n            [\n              86.2119140625,\n              306.06982421875\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            290.8125,\n            225.7646484375,\n            306.06982421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In some ways, semantic errors are the hardest to debug, because the interpreter provides no information about what is wrong. Only you know what the program is supposed to do.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              319.236328125\n            ],\n            [\n              483.50390625,\n              319.236328125\n            ],\n            [\n              483.50390625,\n              342.052734375\n            ],\n            [\n              85.9130859375,\n              342.052734375\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            319.236328125,\n            483.50390625,\n            342.052734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first step is to make a connection between the program text and the behavior you are seeing. You need a hypothesis about what the program is actually doing. One of the things that makes that hard is that computers run so fast.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              351.52734375\n            ],\n            [\n              483.50390625,\n              351.52734375\n            ],\n            [\n              483.50390625,\n              387.34576416015625\n            ],\n            [\n              85.763671875,\n              387.34576416015625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            351.52734375,\n            483.50390625,\n            387.34576416015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You will often wish that you could slow the program down to human speed, and with some debuggers you can. But the time it takes to insert a few well-placed print statements is often short compared to setting up the debugger, inserting and removing breakpoints, and \\\"stepping\\\" the program to where the error is occurring.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              397.546875\n            ],\n            [\n              483.50390625,\n              397.546875\n            ],\n            [\n              483.50390625,\n              445.00177001953125\n            ],\n            [\n              85.9130859375,\n              445.00177001953125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            397.546875,\n            483.50390625,\n            445.00177001953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>A.3.1 My program doesn't work.</b></h4>\",\n          \"polygon\": [\n            [\n              85.68896484375,\n              472.18359375\n            ],\n            [\n              270.8448791503906,\n              472.18359375\n            ],\n            [\n              270.8448791503906,\n              485.61285400390625\n            ],\n            [\n              85.68896484375,\n              485.61285400390625\n            ]\n          ],\n          \"bbox\": [\n            85.68896484375,\n            472.18359375,\n            270.8448791503906,\n            485.61285400390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/219/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You should ask yourself these questions:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              497.3203125\n            ],\n            [\n              264.86004638671875,\n              497.3203125\n            ],\n            [\n              264.86004638671875,\n              508.1484375\n            ],\n            [\n              85.763671875,\n              508.1484375\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            497.3203125,\n            264.86004638671875,\n            508.1484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/219/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/219/ListGroup/134\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/219/ListItem/11'></content-ref><content-ref src='/page/219/ListItem/12'></content-ref><content-ref src='/page/219/ListItem/13'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              100.28802490234375,\n              522.45703125\n            ],\n            [\n              484.400390625,\n              522.45703125\n            ],\n            [\n              484.400390625,\n              650.5758056640625\n            ],\n            [\n              100.28802490234375,\n              650.5758056640625\n            ]\n          ],\n          \"bbox\": [\n            100.28802490234375,\n            522.45703125,\n            484.400390625,\n            650.5758056640625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/219/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Is there something the program was supposed to do but which doesn't seem to be happening? Find the section of the code that performs that function and make sure it is executing when you think it should.</li>\",\n              \"polygon\": [\n                [\n                  100.28802490234375,\n                  522.45703125\n                ],\n                [\n                  484.400390625,\n                  522.45703125\n                ],\n                [\n                  484.400390625,\n                  558.2757873535156\n                ],\n                [\n                  100.28802490234375,\n                  558.2757873535156\n                ]\n              ],\n              \"bbox\": [\n                100.28802490234375,\n                522.45703125,\n                484.400390625,\n                558.2757873535156\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"3\": \"/page/219/SectionHeader/5\",\n                \"4\": \"/page/219/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/219/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Is something happening that shouldn't? Find code in your program that performs that function and see if it is executing when it shouldn't.</li>\",\n              \"polygon\": [\n                [\n                  100.28802490234375,\n                  569.25\n                ],\n                [\n                  483.802734375,\n                  569.25\n                ],\n                [\n                  483.802734375,\n                  592.453125\n                ],\n                [\n                  100.28802490234375,\n                  592.453125\n                ]\n              ],\n              \"bbox\": [\n                100.28802490234375,\n                569.25,\n                483.802734375,\n                592.453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"3\": \"/page/219/SectionHeader/5\",\n                \"4\": \"/page/219/SectionHeader/9\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/219/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Is a section of code producing an effect that is not what you expected? Make sure that you understand the code in question, especially if it involves invocations to functions or methods in other Python modules. Read the documentation for the functions you invoke. Try them out by writing simple test cases and checking the results.</li>\",\n              \"polygon\": [\n                [\n                  100.28802490234375,\n                  602.5078125\n                ],\n                [\n                  483.802734375,\n                  602.5078125\n                ],\n                [\n                  483.802734375,\n                  650.5758056640625\n                ],\n                [\n                  100.28802490234375,\n                  650.5758056640625\n                ]\n              ],\n              \"bbox\": [\n                100.28802490234375,\n                602.5078125,\n                483.802734375,\n                650.5758056640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"3\": \"/page/219/SectionHeader/5\",\n                \"4\": \"/page/219/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/219/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/219/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In order to program, you need to have a mental model of how programs work. If you write a program that doesn't do what you expect, very often the problem is not in the program; it's in your mental model.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              665.15625\n            ],\n            [\n              483.50390625,\n              665.15625\n            ],\n            [\n              483.50390625,\n              700.8348159790039\n            ],\n            [\n              85.166015625,\n              700.8348159790039\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            665.15625,\n            483.50390625,\n            700.8348159790039\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/219/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/214/SectionHeader/1\",\n        \"3\": \"/page/219/SectionHeader/5\",\n        \"4\": \"/page/219/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/220/Page/168\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/220/PageHeader/0'></content-ref><content-ref src='/page/220/PageHeader/20'></content-ref><content-ref src='/page/220/Text/1'></content-ref><content-ref src='/page/220/Text/2'></content-ref><content-ref src='/page/220/SectionHeader/3'></content-ref><content-ref src='/page/220/Text/4'></content-ref><content-ref src='/page/220/Text/5'></content-ref><content-ref src='/page/220/Code/6'></content-ref><content-ref src='/page/220/Text/7'></content-ref><content-ref src='/page/220/Code/8'></content-ref><content-ref src='/page/220/Text/9'></content-ref><content-ref src='/page/220/Text/10'></content-ref><content-ref src='/page/220/TextInlineMath/11'></content-ref><content-ref src='/page/220/Text/12'></content-ref><content-ref src='/page/220/Text/13'></content-ref><content-ref src='/page/220/TextInlineMath/14'></content-ref><content-ref src='/page/220/Text/15'></content-ref><content-ref src='/page/220/SectionHeader/16'></content-ref><content-ref src='/page/220/Text/17'></content-ref><content-ref src='/page/220/Code/18'></content-ref><content-ref src='/page/220/Text/19'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/220/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.09375,\n              60.76318359375\n            ],\n            [\n              525.6033935546875,\n              60.76318359375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.09375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            60.76318359375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/219/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/PageHeader/20\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              60.6181640625\n            ],\n            [\n              525.638671875,\n              60.6181640625\n            ],\n            [\n              525.638671875,\n              70.0927734375\n            ],\n            [\n              510.099609375,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            60.6181640625,\n            525.638671875,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/219/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The best way to correct your mental model is to break the program into its components (usually the functions and methods) and test each component independently. Once you find the discrepancy between your model and reality, you can solve the problem.</p>\",\n          \"polygon\": [\n            [\n              128.0478515625,\n              87.83349609375\n            ],\n            [\n              525.9375,\n              87.83349609375\n            ],\n            [\n              525.9375,\n              123.1868896484375\n            ],\n            [\n              128.0478515625,\n              123.1868896484375\n            ]\n          ],\n          \"bbox\": [\n            128.0478515625,\n            87.83349609375,\n            525.9375,\n            123.1868896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/219/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Of course, you should be building and testing components as you develop the program. If you encounter a problem, there should be only a small amount of new code that is not known to be correct.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              131.9677734375\n            ],\n            [\n              525.9375,\n              131.9677734375\n            ],\n            [\n              525.9375,\n              166.6558837890625\n            ],\n            [\n              129.09375,\n              166.6558837890625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            131.9677734375,\n            525.9375,\n            166.6558837890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/219/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/SectionHeader/3\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>A.3.2 I've got a big hairy expression and it doesn't do what I expect.</b></h4>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              190.3623046875\n            ],\n            [\n              504.9574279785156,\n              190.3623046875\n            ],\n            [\n              504.9574279785156,\n              202.9779052734375\n            ],\n            [\n              129.392578125,\n              202.9779052734375\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            190.3623046875,\n            504.9574279785156,\n            202.9779052734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Writing complex expressions is fine as long as they are readable, but they can be hard to debug. It is often a good idea to break a complex expression into a series of assignments to temporary variables.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              212.30859375\n            ],\n            [\n              525.6033935546875,\n              212.30859375\n            ],\n            [\n              525.6033935546875,\n              247.40191650390625\n            ],\n            [\n              129.392578125,\n              247.40191650390625\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            212.30859375,\n            525.6033935546875,\n            247.40191650390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For example:</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              255.814453125\n            ],\n            [\n              188.560546875,\n              255.814453125\n            ],\n            [\n              188.560546875,\n              266.48291015625\n            ],\n            [\n              129.60000610351562,\n              266.48291015625\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            255.814453125,\n            188.560546875,\n            266.48291015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>self.hands[i].addCard(self.hands[self.findNeighbor(i)].popCard())</pre>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              271.4765625\n            ],\n            [\n              469.60369873046875,\n              271.4765625\n            ],\n            [\n              469.60369873046875,\n              281.44232177734375\n            ],\n            [\n              128.9443359375,\n              281.44232177734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            271.4765625,\n            469.60369873046875,\n            281.44232177734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This can be rewritten as:</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              285.78515625\n            ],\n            [\n              236.50868225097656,\n              285.78515625\n            ],\n            [\n              236.50868225097656,\n              296.7008972167969\n            ],\n            [\n              129.2431640625,\n              296.7008972167969\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            285.78515625,\n            236.50868225097656,\n            296.7008972167969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>neighbor = self.findNeighbor(i)\\npickedCard = self.hands[neighbor].popCard()\\nself.hands[i].addCard(pickedCard)</pre>\",\n          \"polygon\": [\n            [\n              129.09375,\n              301.69775390625\n            ],\n            [\n              354.5255432128906,\n              301.69775390625\n            ],\n            [\n              354.5255432128906,\n              336.04833984375\n            ],\n            [\n              129.09375,\n              336.04833984375\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            301.69775390625,\n            354.5255432128906,\n            336.04833984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The explicit version is easier to read because the variable names provide additional documentation, and it is easier to debug because you can check the types of the intermediate variables and display their values.</p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              341.0859375\n            ],\n            [\n              525.6034545898438,\n              341.0859375\n            ],\n            [\n              525.6034545898438,\n              375.6959228515625\n            ],\n            [\n              129.60000610351562,\n              375.6959228515625\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            341.0859375,\n            525.6034545898438,\n            375.6959228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Another problem that can occur with big expressions is that the order of evaluation may not be what you expect. For example, if you are translating the expression <i>x</i> 2<i>π</i> into Python, you might write:</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              384.01171875\n            ],\n            [\n              525.638671875,\n              384.01171875\n            ],\n            [\n              525.638671875,\n              419.1648864746094\n            ],\n            [\n              129.392578125,\n              419.1648864746094\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            384.01171875,\n            525.638671875,\n            419.1648864746094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/TextInlineMath/11\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">y = x / 2 * math.pi</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              424.1617431640625\n            ],\n            [\n              228.9769287109375,\n              424.1617431640625\n            ],\n            [\n              228.9769287109375,\n              434.28515625\n            ],\n            [\n              128.9443359375,\n              434.28515625\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            424.1617431640625,\n            228.9769287109375,\n            434.28515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">That is not correct because multiplication and division have the same precedence and are evaluated from left to right. So this expression computes <i>x</i><i>π</i>/2.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              438.5390625\n            ],\n            [\n              525.638671875,\n              438.5390625\n            ],\n            [\n              525.638671875,\n              462.38653564453125\n            ],\n            [\n              129.392578125,\n              462.38653564453125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            438.5390625,\n            525.638671875,\n            462.38653564453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A good way to debug expressions is to add parentheses to make the order of evaluation explicit:</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              469.86328125\n            ],\n            [\n              525.638671875,\n              469.86328125\n            ],\n            [\n              525.638671875,\n              492.8518981933594\n            ],\n            [\n              129.392578125,\n              492.8518981933594\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            469.86328125,\n            525.638671875,\n            492.8518981933594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/TextInlineMath/14\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">y = x / (2 * math.pi)</p>\",\n          \"polygon\": [\n            [\n              131.3349609375,\n              497.8487548828125\n            ],\n            [\n              244.6666259765625,\n              497.8487548828125\n            ],\n            [\n              244.6666259765625,\n              508.1484375\n            ],\n            [\n              131.3349609375,\n              508.1484375\n            ]\n          ],\n          \"bbox\": [\n            131.3349609375,\n            497.8487548828125,\n            244.6666259765625,\n            508.1484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Whenever you are not sure of the order of evaluation, use parentheses. Not only will the program be correct (in the sense of doing what you intended), it will also be more readable for other people who haven't memorized the rules of precedence.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              513.1073303222656\n            ],\n            [\n              525.9375,\n              513.1073303222656\n            ],\n            [\n              525.9375,\n              547.4589233398438\n            ],\n            [\n              129.2431640625,\n              547.4589233398438\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            513.1073303222656,\n            525.9375,\n            547.4589233398438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/3\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/SectionHeader/16\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>A.3.3 I've got a function or method that doesn't return what I expect.</b></h4>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              571.5703125\n            ],\n            [\n              509.2732238769531,\n              571.5703125\n            ],\n            [\n              509.2732238769531,\n              583.7809906005859\n            ],\n            [\n              128.3466796875,\n              583.7809906005859\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            571.5703125,\n            509.2732238769531,\n            583.7809906005859\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you have a return statement with a complex expression, you don't have a chance to print the return value before returning. Again, you can use a temporary variable. For example, instead of:</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              593.61328125\n            ],\n            [\n              525.638671875,\n              593.61328125\n            ],\n            [\n              525.638671875,\n              628.2049255371094\n            ],\n            [\n              128.197265625,\n              628.2049255371094\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            593.61328125,\n            525.638671875,\n            628.2049255371094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Code/18\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>return self.hands[i].removeMatches()\\nyou could write:\\ncount = self.hands[i].removeMatches()\\nreturn count</pre>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              633.2017669677734\n            ],\n            [\n              328.412109375,\n              633.2017669677734\n            ],\n            [\n              328.412109375,\n              686.8125\n            ],\n            [\n              128.27197265625,\n              686.8125\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            633.2017669677734,\n            328.412109375,\n            686.8125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/220/Text/19\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Now you have the opportunity to display the value of count before returning.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              690.6796875\n            ],\n            [\n              473.15203857421875,\n              690.6796875\n            ],\n            [\n              473.15203857421875,\n              700.8349227905273\n            ],\n            [\n              128.794921875,\n              700.8349227905273\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            690.6796875,\n            473.15203857421875,\n            700.8349227905273\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/16\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/214/SectionHeader/1\",\n        \"3\": \"/page/219/SectionHeader/5\",\n        \"4\": \"/page/220/SectionHeader/16\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/221/Page/120\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/221/PageHeader/0'></content-ref><content-ref src='/page/221/PageHeader/17'></content-ref><content-ref src='/page/221/SectionHeader/1'></content-ref><content-ref src='/page/221/Text/2'></content-ref><content-ref src='/page/221/ListGroup/119'></content-ref><content-ref src='/page/221/Text/6'></content-ref><content-ref src='/page/221/Text/7'></content-ref><content-ref src='/page/221/SectionHeader/8'></content-ref><content-ref src='/page/221/Text/9'></content-ref><content-ref src='/page/221/Text/10'></content-ref><content-ref src='/page/221/Text/11'></content-ref><content-ref src='/page/221/ListGroup/120'></content-ref><content-ref src='/page/221/Text/15'></content-ref><content-ref src='/page/221/Text/16'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/221/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.79638671875\n            ],\n            [\n              483.50390625,\n              59.79638671875\n            ],\n            [\n              483.50390625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.79638671875,\n            483.50390625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/221/PageHeader/17\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.24072265625,\n              59.69970703125\n            ],\n            [\n              102.57275390625,\n              59.69970703125\n            ],\n            [\n              102.57275390625,\n              70.33447265625\n            ],\n            [\n              85.24072265625,\n              70.33447265625\n            ]\n          ],\n          \"bbox\": [\n            85.24072265625,\n            59.69970703125,\n            102.57275390625,\n            70.33447265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/220/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/221/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>A.3.4 I'm really, really stuck and I need help.</b></h4>\",\n          \"polygon\": [\n            [\n              84.79248046875,\n              85.80322265625\n            ],\n            [\n              339.767578125,\n              85.80322265625\n            ],\n            [\n              339.767578125,\n              99.24493408203125\n            ],\n            [\n              84.79248046875,\n              99.24493408203125\n            ]\n          ],\n          \"bbox\": [\n            84.79248046875,\n            85.80322265625,\n            339.767578125,\n            99.24493408203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/221/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">First, try getting away from the computer for a few minutes. Computers emit waves that affect the brain, causing these symptoms:</p>\",\n          \"polygon\": [\n            [\n              84.8671875,\n              108.66796875\n            ],\n            [\n              484.69921875,\n              108.66796875\n            ],\n            [\n              484.69921875,\n              132.53094482421875\n            ],\n            [\n              84.8671875,\n              132.53094482421875\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            108.66796875,\n            484.69921875,\n            132.53094482421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/221/ListGroup/119\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/221/ListItem/3'></content-ref><content-ref src='/page/221/ListItem/4'></content-ref><content-ref src='/page/221/ListItem/5'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              99.9580078125,\n              144.1494140625\n            ],\n            [\n              484.1015625,\n              144.1494140625\n            ],\n            [\n              484.1015625,\n              221.38494873046875\n            ],\n            [\n              99.9580078125,\n              221.38494873046875\n            ]\n          ],\n          \"bbox\": [\n            99.9580078125,\n            144.1494140625,\n            484.1015625,\n            221.38494873046875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/221/ListItem/3\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Frustration and rage.</li>\",\n              \"polygon\": [\n                [\n                  100.03271484375,\n                  144.1494140625\n                ],\n                [\n                  204.697265625,\n                  144.1494140625\n                ],\n                [\n                  204.697265625,\n                  156.66693115234375\n                ],\n                [\n                  100.03271484375,\n                  156.66693115234375\n                ]\n              ],\n              \"bbox\": [\n                100.03271484375,\n                144.1494140625,\n                204.697265625,\n                156.66693115234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"3\": \"/page/219/SectionHeader/5\",\n                \"4\": \"/page/221/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/221/ListItem/4\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Superstitious beliefs (\\\"the computer hates me\\\") and magical thinking (\\\"the program only works when I wear my hat backward\\\").</li>\",\n              \"polygon\": [\n                [\n                  99.9580078125,\n                  164.935546875\n                ],\n                [\n                  483.50390625,\n                  164.935546875\n                ],\n                [\n                  483.50390625,\n                  189.02593994140625\n                ],\n                [\n                  99.9580078125,\n                  189.02593994140625\n                ]\n              ],\n              \"bbox\": [\n                99.9580078125,\n                164.935546875,\n                483.50390625,\n                189.02593994140625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"3\": \"/page/219/SectionHeader/5\",\n                \"4\": \"/page/221/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/221/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Random walk programming (the attempt to program by writing every possible program and choosing the one that does the right thing).</li>\",\n              \"polygon\": [\n                [\n                  100.28800201416016,\n                  196.83984375\n                ],\n                [\n                  484.1015625,\n                  196.83984375\n                ],\n                [\n                  484.1015625,\n                  221.38494873046875\n                ],\n                [\n                  100.28800201416016,\n                  221.38494873046875\n                ]\n              ],\n              \"bbox\": [\n                100.28800201416016,\n                196.83984375,\n                484.1015625,\n                221.38494873046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"3\": \"/page/219/SectionHeader/5\",\n                \"4\": \"/page/221/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/221/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you find yourself suffering from any of these symptoms, get up and go for a walk. When you are calm, think about the program. What is it doing? What are some possible causes of that behavior? When was the last time you had a working program, and what did you do next?</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              233.96484375\n            ],\n            [\n              484.400390625,\n              233.96484375\n            ],\n            [\n              484.400390625,\n              282.1039123535156\n            ],\n            [\n              85.763671875,\n              282.1039123535156\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            233.96484375,\n            484.400390625,\n            282.1039123535156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/221/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Sometimes it just takes time to find a bug. I often find bugs when I am away from the computer and let my mind wander. Some of the best places to find bugs are trains, showers, and in bed, just before you fall asleep.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              290.0390625\n            ],\n            [\n              484.69921875,\n              290.0390625\n            ],\n            [\n              484.69921875,\n              326.6299133300781\n            ],\n            [\n              85.9130859375,\n              326.6299133300781\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            290.0390625,\n            484.69921875,\n            326.6299133300781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/221/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><b>A.3.5 No, I really need help.</b></h4>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              351.333984375\n            ],\n            [\n              249.0732421875,\n              351.333984375\n            ],\n            [\n              249.0732421875,\n              364.482421875\n            ],\n            [\n              85.9130859375,\n              364.482421875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            351.333984375,\n            249.0732421875,\n            364.482421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/221/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">It happens. Even the best programmers occasionally get stuck. Sometimes you work on a program so long that you can't see the error. A fresh pair of eyes is just the thing.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              373.5703125\n            ],\n            [\n              483.802734375,\n              373.5703125\n            ],\n            [\n              483.802734375,\n              397.71893310546875\n            ],\n            [\n              85.763671875,\n              397.71893310546875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            373.5703125,\n            483.802734375,\n            397.71893310546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/221/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Before you bring someone else in, make sure you are prepared. Your program should be as simple as possible, and you should be working on the smallest input that causes the error. You should have print statements in the appropriate places (and the output they produce should be comprehensible). You should understand the problem well enough to describe it concisely.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              406.0546875\n            ],\n            [\n              484.1015625,\n              406.0546875\n            ],\n            [\n              484.1015625,\n              466.6329345703125\n            ],\n            [\n              85.9130859375,\n              466.6329345703125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            406.0546875,\n            484.1015625,\n            466.6329345703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/221/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you bring someone in to help, be sure to give them the information they need:</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              474.50390625\n            ],\n            [\n              459.0,\n              474.50390625\n            ],\n            [\n              459.0,\n              486.77093505859375\n            ],\n            [\n              85.9130859375,\n              486.77093505859375\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            474.50390625,\n            459.0,\n            486.77093505859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/221/ListGroup/120\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/221/ListItem/12'></content-ref><content-ref src='/page/221/ListItem/13'></content-ref><content-ref src='/page/221/ListItem/14'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              99.80859375,\n              498.48046875\n            ],\n            [\n              484.998046875,\n              498.48046875\n            ],\n            [\n              484.998046875,\n              563.4299468994141\n            ],\n            [\n              99.80859375,\n              563.4299468994141\n            ]\n          ],\n          \"bbox\": [\n            99.80859375,\n            498.48046875,\n            484.998046875,\n            563.4299468994141\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/221/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> If there is an error message, what is it and what part of the program does it indicate?</li>\",\n              \"polygon\": [\n                [\n                  100.2568359375,\n                  498.48046875\n                ],\n                [\n                  482.38360595703125,\n                  498.48046875\n                ],\n                [\n                  482.38360595703125,\n                  510.9069519042969\n                ],\n                [\n                  100.2568359375,\n                  510.9069519042969\n                ]\n              ],\n              \"bbox\": [\n                100.2568359375,\n                498.48046875,\n                482.38360595703125,\n                510.9069519042969\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"3\": \"/page/219/SectionHeader/5\",\n                \"4\": \"/page/221/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/221/ListItem/13\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> What was the last thing you did before this error occurred? What were the last lines of code that you wrote, or what is the new test case that fails?</li>\",\n              \"polygon\": [\n                [\n                  99.80859375,\n                  518.9765625\n                ],\n                [\n                  484.998046875,\n                  518.9765625\n                ],\n                [\n                  484.998046875,\n                  543.2649536132812\n                ],\n                [\n                  99.80859375,\n                  543.2649536132812\n                ]\n              ],\n              \"bbox\": [\n                99.80859375,\n                518.9765625,\n                484.998046875,\n                543.2649536132812\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"3\": \"/page/219/SectionHeader/5\",\n                \"4\": \"/page/221/SectionHeader/8\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/221/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> What have you tried so far, and what have you learned?</li>\",\n              \"polygon\": [\n                [\n                  100.28800964355469,\n                  551.07421875\n                ],\n                [\n                  359.490234375,\n                  551.07421875\n                ],\n                [\n                  359.490234375,\n                  563.4299468994141\n                ],\n                [\n                  100.28800964355469,\n                  563.4299468994141\n                ]\n              ],\n              \"bbox\": [\n                100.28800964355469,\n                551.07421875,\n                359.490234375,\n                563.4299468994141\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/214/SectionHeader/1\",\n                \"3\": \"/page/219/SectionHeader/5\",\n                \"4\": \"/page/221/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/221/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When you find the bug, take a second to think about what you could have done to find it faster. Next time you see something similar, you will be able to find the bug more quickly.</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              575.4375\n            ],\n            [\n              484.400390625,\n              575.4375\n            ],\n            [\n              484.400390625,\n              599.7599487304688\n            ],\n            [\n              86.361328125,\n              599.7599487304688\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            575.4375,\n            484.400390625,\n            599.7599487304688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/221/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Remember, the goal is not just to make the program work. The goal is to learn how to make the program work.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              608.30859375\n            ],\n            [\n              484.69921875,\n              608.30859375\n            ],\n            [\n              484.69921875,\n              632.0919494628906\n            ],\n            [\n              85.763671875,\n              632.0919494628906\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            608.30859375,\n            484.69921875,\n            632.0919494628906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"3\": \"/page/219/SectionHeader/5\",\n            \"4\": \"/page/221/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/214/SectionHeader/1\",\n        \"3\": \"/page/219/SectionHeader/5\",\n        \"4\": \"/page/221/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/222/Page/128\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/222/SectionHeader/0'></content-ref><content-ref src='/page/222/SectionHeader/1'></content-ref><content-ref src='/page/222/Text/2'></content-ref><content-ref src='/page/222/Text/3'></content-ref><content-ref src='/page/222/Text/4'></content-ref><content-ref src='/page/222/Text/5'></content-ref><content-ref src='/page/222/Text/6'></content-ref><content-ref src='/page/222/Text/7'></content-ref><content-ref src='/page/222/ListGroup/126'></content-ref><content-ref src='/page/222/Footnote/10'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/222/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-222-0\\\"></span><b>Appendix B</b></h2>\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              163.388671875\n            ],\n            [\n              243.544921875,\n              163.388671875\n            ],\n            [\n              243.544921875,\n              184.8819580078125\n            ],\n            [\n              128.12255859375,\n              184.8819580078125\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            163.388671875,\n            243.544921875,\n            184.8819580078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/214/SectionHeader/1\",\n            \"2\": \"/page/222/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/222/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Analysis of Algorithms</b></h1>\",\n          \"polygon\": [\n            [\n              127.97314453125,\n              218.689453125\n            ],\n            [\n              393.9792175292969,\n              218.689453125\n            ],\n            [\n              393.9792175292969,\n              244.46136474609375\n            ],\n            [\n              127.97314453125,\n              244.46136474609375\n            ]\n          ],\n          \"bbox\": [\n            127.97314453125,\n            218.689453125,\n            393.9792175292969,\n            244.46136474609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/222/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This appendix is an edited excerpt from <i>Think Complexity</i>, by Allen B. Downey, also published by O'Reilly Media (2011). When you are done with this book, you might want to move on to that one.</p>\",\n          \"polygon\": [\n            [\n              153.7470703125,\n              288.10546875\n            ],\n            [\n              503.82421875,\n              288.10546875\n            ],\n            [\n              503.82421875,\n              323.3669128417969\n            ],\n            [\n              153.7470703125,\n              323.3669128417969\n            ]\n          ],\n          \"bbox\": [\n            153.7470703125,\n            288.10546875,\n            503.82421875,\n            323.3669128417969\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/222/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Analysis of algorithms</b> is a branch of computer science that studies the performance of algorithms, especially their run time and space requirements. See <a href=\\\"http://en.wikipedia.org/wiki/Analysis_of_algorithms\\\">http://en.wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Analysis_of_algorithms\\\">org/wiki/Analysis_of_algorithms</a>.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              337.21875\n            ],\n            [\n              526.833984375,\n              337.21875\n            ],\n            [\n              526.833984375,\n              372.07391357421875\n            ],\n            [\n              129.392578125,\n              372.07391357421875\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            337.21875,\n            526.833984375,\n            372.07391357421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/222/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The practical goal of algorithm analysis is to predict the performance of different algorithms in order to guide design decisions.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              381.498046875\n            ],\n            [\n              526.833984375,\n              381.498046875\n            ],\n            [\n              526.833984375,\n              404.5078125\n            ],\n            [\n              129.392578125,\n              404.5078125\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            381.498046875,\n            526.833984375,\n            404.5078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/222/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">During the 2008 United States Presidential Campaign, candidate Barack Obama was asked to perform an impromptu analysis when he visited Google. Chief executive Eric Schmidt jokingly asked him for \\\"the most efficient way to sort a million 32-bit integers.\\\" Obama had apparently been tipped off, because he quickly replied, \\\"I think the bubble sort would be the wrong way to go.\\\" See <a href=\\\"http://www.youtube.com/watch?v=k4RRi_ntQc8\\\">http://www.youtube.com/watch?v=k4RRi_ntQc8</a>.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              414.5625\n            ],\n            [\n              527.1328125,\n              414.5625\n            ],\n            [\n              527.1328125,\n              473.51690673828125\n            ],\n            [\n              129.09375,\n              473.51690673828125\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            414.5625,\n            527.1328125,\n            473.51690673828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/222/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This is true: bubble sort is conceptually simple but slow for large datasets. The answer Schmidt was probably looking for is \\\"radix sort\\\" (<a href=\\\"http://en.wikipedia.org/wiki/Radix_sort\\\">http://en.wikipedia.org/wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Radix_sort\\\">Radix_sort</a>) <a href=\\\"#page-222-1\\\">1</a> .</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              483.3984375\n            ],\n            [\n              527.1328125,\n              483.3984375\n            ],\n            [\n              527.1328125,\n              518.203125\n            ],\n            [\n              128.49609375,\n              518.203125\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            483.3984375,\n            527.1328125,\n            518.203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/222/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The goal of algorithm analysis is to make meaningful comparisons between algorithms, but there are some problems:</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              527.484375\n            ],\n            [\n              526.833984375,\n              527.484375\n            ],\n            [\n              526.833984375,\n              550.5708923339844\n            ],\n            [\n              128.794921875,\n              550.5708923339844\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            527.484375,\n            526.833984375,\n            550.5708923339844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/222/ListGroup/126\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/222/ListItem/8'></content-ref><content-ref src='/page/222/ListItem/9'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              141.345703125,\n              563.44921875\n            ],\n            [\n              526.833984375,\n              563.44921875\n            ],\n            [\n              526.833984375,\n              644.2734375\n            ],\n            [\n              141.345703125,\n              644.2734375\n            ]\n          ],\n          \"bbox\": [\n            141.345703125,\n            563.44921875,\n            526.833984375,\n            644.2734375\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/222/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> The relative performance of the algorithms might depend on characteristics of the hardware, so one algorithm might be faster on Machine A, another on Machine B. The general solution to this problem is to specify a <b>machine model</b> and analyze the number of steps, or operations, an algorithm requires under a given model.</li>\",\n              \"polygon\": [\n                [\n                  143.138671875,\n                  563.44921875\n                ],\n                [\n                  526.833984375,\n                  563.44921875\n                ],\n                [\n                  526.833984375,\n                  611.4718933105469\n                ],\n                [\n                  143.138671875,\n                  611.4718933105469\n                ]\n              ],\n              \"bbox\": [\n                143.138671875,\n                563.44921875,\n                526.833984375,\n                611.4718933105469\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/222/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Relative performance might depend on the details of the dataset. For example, some sorting algorithms run faster if the data are already partially sorted; other algorithms</li>\",\n              \"polygon\": [\n                [\n                  141.345703125,\n                  621.0703125\n                ],\n                [\n                  526.833984375,\n                  621.0703125\n                ],\n                [\n                  526.833984375,\n                  644.2734375\n                ],\n                [\n                  141.345703125,\n                  644.2734375\n                ]\n              ],\n              \"bbox\": [\n                141.345703125,\n                621.0703125,\n                526.833984375,\n                644.2734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/222/Footnote/10\",\n          \"block_type\": \"Footnote\",\n          \"html\": \"<p><span id=\\\"page-222-1\\\"></span><sup>1</sup> But if you get a question like this in an interview, I think a better answer is, \\\"The fastest way to sort a million integers is to use whatever sort function is provided by the language I'm using. Its performance is good enough for the vast majority of applications, but if it turned out that my application was too slow, I would use a profiler to see where the time was being spent. If it looked like a faster sort algorithm would have a significant effect on performance, then I would look around for a good implementation of radix sort.\\\"</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              652.9791564941406\n            ],\n            [\n              526.53515625,\n              652.9791564941406\n            ],\n            [\n              526.53515625,\n              700.2713394165039\n            ],\n            [\n              129.09375,\n              700.2713394165039\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            652.9791564941406,\n            526.53515625,\n            700.2713394165039\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/222/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/223/Page/297\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/223/PageHeader/0'></content-ref><content-ref src='/page/223/PageHeader/15'></content-ref><content-ref src='/page/223/Text/1'></content-ref><content-ref src='/page/223/ListItem/2'></content-ref><content-ref src='/page/223/Text/3'></content-ref><content-ref src='/page/223/Text/4'></content-ref><content-ref src='/page/223/SectionHeader/5'></content-ref><content-ref src='/page/223/Text/6'></content-ref><content-ref src='/page/223/Text/7'></content-ref><content-ref src='/page/223/Table/8'></content-ref><content-ref src='/page/223/Text/9'></content-ref><content-ref src='/page/223/Text/10'></content-ref><content-ref src='/page/223/Text/11'></content-ref><content-ref src='/page/223/Text/12'></content-ref><content-ref src='/page/223/Text/13'></content-ref><content-ref src='/page/223/Text/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/223/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.66650390625\n            ],\n            [\n              482.90625,\n              60.66650390625\n            ],\n            [\n              482.90625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.66650390625,\n            482.90625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.8671875,\n              60.76318359375\n            ],\n            [\n              101.900390625,\n              60.76318359375\n            ],\n            [\n              101.900390625,\n              70.43115234375\n            ],\n            [\n              84.8671875,\n              70.43115234375\n            ]\n          ],\n          \"bbox\": [\n            84.8671875,\n            60.76318359375,\n            101.900390625,\n            70.43115234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">run slower in this case. A common way to avoid this problem is to analyze the <b>worst</b> <b>case</b> scenario. It is sometimes useful to analyze average case performance, but that's usually harder, and it might not be obvious what set of cases to average over.</p>\",\n          \"polygon\": [\n            [\n              111.0146484375,\n              88.41357421875\n            ],\n            [\n              482.90625,\n              88.41357421875\n            ],\n            [\n              482.90625,\n              123.1868896484375\n            ],\n            [\n              111.0146484375,\n              123.1868896484375\n            ]\n          ],\n          \"bbox\": [\n            111.0146484375,\n            88.41357421875,\n            482.90625,\n            123.1868896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/ListItem/2\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"> Relative performance also depends on the size of the problem. A sorting algorithm that is fast for small lists might be slow for long lists. The usual solution to this problem is to express run time (or number of operations) as a function of problem size, and to compare the functions <b>asymptotically</b> as the problem size increases.</li>\",\n          \"polygon\": [\n            [\n              100.28800964355469,\n              131.09765625\n            ],\n            [\n              482.4037780761719,\n              131.09765625\n            ],\n            [\n              482.4037780761719,\n              178.78692626953125\n            ],\n            [\n              100.28800964355469,\n              178.78692626953125\n            ]\n          ],\n          \"bbox\": [\n            100.28800964355469,\n            131.09765625,\n            482.4037780761719,\n            178.78692626953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The good thing about this kind of comparison that it lends itself to simple classification of algorithms. For example, if I know that the run time of Algorithm A tends to be proportional to the size of the input, <i>n</i>, and Algorithm B tends to be proportional to <i>n</i> 2 , then I expect A to be faster than B for large values of <i>n</i>.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              188.4287109375\n            ],\n            [\n              483.205078125,\n              188.4287109375\n            ],\n            [\n              483.205078125,\n              235.866943359375\n            ],\n            [\n              85.166015625,\n              235.866943359375\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            188.4287109375,\n            483.205078125,\n            235.866943359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This kind of analysis comes with some caveats, but we'll get to that later.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              243.826171875\n            ],\n            [\n              405.8507080078125,\n              243.826171875\n            ],\n            [\n              405.8507080078125,\n              254.658935546875\n            ],\n            [\n              85.3154296875,\n              254.658935546875\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            243.826171875,\n            405.8507080078125,\n            254.658935546875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h3><span id=\\\"page-223-0\\\"></span><b>B.1 Order of growth</b></h3>\",\n          \"polygon\": [\n            [\n              85.09130859375,\n              281.337890625\n            ],\n            [\n              228.603515625,\n              281.337890625\n            ],\n            [\n              228.603515625,\n              296.4639892578125\n            ],\n            [\n              85.09130859375,\n              296.4639892578125\n            ]\n          ],\n          \"bbox\": [\n            85.09130859375,\n            281.337890625,\n            228.603515625,\n            296.4639892578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Suppose you have analyzed two algorithms and expressed their run times in terms of the size of the input: Algorithm A takes 100<i>n</i> + 1 steps to solve a problem with size <i>n</i>; Algorithm B takes <i>n</i> 2 + <i>n</i> + 1 steps.</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              306.474609375\n            ],\n            [\n              482.90625,\n              306.474609375\n            ],\n            [\n              482.90625,\n              341.81591796875\n            ],\n            [\n              85.0166015625,\n              341.81591796875\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            306.474609375,\n            482.90625,\n            341.81591796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The following table shows the run time of these algorithms for different problem sizes:</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              349.98046875\n            ],\n            [\n              467.16064453125,\n              349.98046875\n            ],\n            [\n              467.16064453125,\n              360.60791015625\n            ],\n            [\n              85.46484375,\n              360.60791015625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            349.98046875,\n            467.16064453125,\n            360.60791015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/Table/8\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Input<br/>size</th><th>Run time of<br/>Algorithm A</th><th>Run time of<br/>Algorithm B</th></tr><tr><td>10</td><td>1 001</td><td>111</td></tr><tr><td>100</td><td>10 001</td><td>10 101</td></tr><tr><td>1 000</td><td>100 001</td><td>1 001 001</td></tr><tr><td>10 000</td><td>1 000 001</td><td>&gt; 1010</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              84.64306640625,\n              367.962890625\n            ],\n            [\n              262.669921875,\n              367.962890625\n            ],\n            [\n              262.669921875,\n              442.40625\n            ],\n            [\n              84.64306640625,\n              442.40625\n            ]\n          ],\n          \"bbox\": [\n            84.64306640625,\n            367.962890625,\n            262.669921875,\n            442.40625\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/223/TableCell/282\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Input<br/>size</th>\",\n              \"polygon\": [\n                [\n                  84.64306640625,\n                  367.962890625\n                ],\n                [\n                  85.64306640625,\n                  367.962890625\n                ],\n                [\n                  85.64306640625,\n                  368.962890625\n                ],\n                [\n                  84.64306640625,\n                  368.962890625\n                ]\n              ],\n              \"bbox\": [\n                84.64306640625,\n                367.962890625,\n                85.64306640625,\n                368.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/283\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Run time of<br/>Algorithm A</th>\",\n              \"polygon\": [\n                [\n                  85.64306640625,\n                  367.962890625\n                ],\n                [\n                  86.64306640625,\n                  367.962890625\n                ],\n                [\n                  86.64306640625,\n                  368.962890625\n                ],\n                [\n                  85.64306640625,\n                  368.962890625\n                ]\n              ],\n              \"bbox\": [\n                85.64306640625,\n                367.962890625,\n                86.64306640625,\n                368.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/284\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Run time of<br/>Algorithm B</th>\",\n              \"polygon\": [\n                [\n                  86.64306640625,\n                  367.962890625\n                ],\n                [\n                  87.64306640625,\n                  367.962890625\n                ],\n                [\n                  87.64306640625,\n                  368.962890625\n                ],\n                [\n                  86.64306640625,\n                  368.962890625\n                ]\n              ],\n              \"bbox\": [\n                86.64306640625,\n                367.962890625,\n                87.64306640625,\n                368.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/285\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10</td>\",\n              \"polygon\": [\n                [\n                  84.64306640625,\n                  368.962890625\n                ],\n                [\n                  85.64306640625,\n                  368.962890625\n                ],\n                [\n                  85.64306640625,\n                  369.962890625\n                ],\n                [\n                  84.64306640625,\n                  369.962890625\n                ]\n              ],\n              \"bbox\": [\n                84.64306640625,\n                368.962890625,\n                85.64306640625,\n                369.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/286\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1 001</td>\",\n              \"polygon\": [\n                [\n                  85.64306640625,\n                  368.962890625\n                ],\n                [\n                  86.64306640625,\n                  368.962890625\n                ],\n                [\n                  86.64306640625,\n                  369.962890625\n                ],\n                [\n                  85.64306640625,\n                  369.962890625\n                ]\n              ],\n              \"bbox\": [\n                85.64306640625,\n                368.962890625,\n                86.64306640625,\n                369.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/287\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>111</td>\",\n              \"polygon\": [\n                [\n                  86.64306640625,\n                  368.962890625\n                ],\n                [\n                  87.64306640625,\n                  368.962890625\n                ],\n                [\n                  87.64306640625,\n                  369.962890625\n                ],\n                [\n                  86.64306640625,\n                  369.962890625\n                ]\n              ],\n              \"bbox\": [\n                86.64306640625,\n                368.962890625,\n                87.64306640625,\n                369.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/288\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>100</td>\",\n              \"polygon\": [\n                [\n                  84.64306640625,\n                  369.962890625\n                ],\n                [\n                  85.64306640625,\n                  369.962890625\n                ],\n                [\n                  85.64306640625,\n                  370.962890625\n                ],\n                [\n                  84.64306640625,\n                  370.962890625\n                ]\n              ],\n              \"bbox\": [\n                84.64306640625,\n                369.962890625,\n                85.64306640625,\n                370.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/289\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10 001</td>\",\n              \"polygon\": [\n                [\n                  85.64306640625,\n                  369.962890625\n                ],\n                [\n                  86.64306640625,\n                  369.962890625\n                ],\n                [\n                  86.64306640625,\n                  370.962890625\n                ],\n                [\n                  85.64306640625,\n                  370.962890625\n                ]\n              ],\n              \"bbox\": [\n                85.64306640625,\n                369.962890625,\n                86.64306640625,\n                370.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/290\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10 101</td>\",\n              \"polygon\": [\n                [\n                  86.64306640625,\n                  369.962890625\n                ],\n                [\n                  87.64306640625,\n                  369.962890625\n                ],\n                [\n                  87.64306640625,\n                  370.962890625\n                ],\n                [\n                  86.64306640625,\n                  370.962890625\n                ]\n              ],\n              \"bbox\": [\n                86.64306640625,\n                369.962890625,\n                87.64306640625,\n                370.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/291\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1 000</td>\",\n              \"polygon\": [\n                [\n                  84.64306640625,\n                  370.962890625\n                ],\n                [\n                  85.64306640625,\n                  370.962890625\n                ],\n                [\n                  85.64306640625,\n                  371.962890625\n                ],\n                [\n                  84.64306640625,\n                  371.962890625\n                ]\n              ],\n              \"bbox\": [\n                84.64306640625,\n                370.962890625,\n                85.64306640625,\n                371.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/292\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>100 001</td>\",\n              \"polygon\": [\n                [\n                  85.64306640625,\n                  370.962890625\n                ],\n                [\n                  86.64306640625,\n                  370.962890625\n                ],\n                [\n                  86.64306640625,\n                  371.962890625\n                ],\n                [\n                  85.64306640625,\n                  371.962890625\n                ]\n              ],\n              \"bbox\": [\n                85.64306640625,\n                370.962890625,\n                86.64306640625,\n                371.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/293\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1 001 001</td>\",\n              \"polygon\": [\n                [\n                  86.64306640625,\n                  370.962890625\n                ],\n                [\n                  87.64306640625,\n                  370.962890625\n                ],\n                [\n                  87.64306640625,\n                  371.962890625\n                ],\n                [\n                  86.64306640625,\n                  371.962890625\n                ]\n              ],\n              \"bbox\": [\n                86.64306640625,\n                370.962890625,\n                87.64306640625,\n                371.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/294\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>10 000</td>\",\n              \"polygon\": [\n                [\n                  84.64306640625,\n                  371.962890625\n                ],\n                [\n                  85.64306640625,\n                  371.962890625\n                ],\n                [\n                  85.64306640625,\n                  372.962890625\n                ],\n                [\n                  84.64306640625,\n                  372.962890625\n                ]\n              ],\n              \"bbox\": [\n                84.64306640625,\n                371.962890625,\n                85.64306640625,\n                372.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/295\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>1 000 001</td>\",\n              \"polygon\": [\n                [\n                  85.64306640625,\n                  371.962890625\n                ],\n                [\n                  86.64306640625,\n                  371.962890625\n                ],\n                [\n                  86.64306640625,\n                  372.962890625\n                ],\n                [\n                  85.64306640625,\n                  372.962890625\n                ]\n              ],\n              \"bbox\": [\n                85.64306640625,\n                371.962890625,\n                86.64306640625,\n                372.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/223/TableCell/296\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>&gt; 1010</td>\",\n              \"polygon\": [\n                [\n                  86.64306640625,\n                  371.962890625\n                ],\n                [\n                  87.64306640625,\n                  371.962890625\n                ],\n                [\n                  87.64306640625,\n                  372.962890625\n                ],\n                [\n                  86.64306640625,\n                  372.962890625\n                ]\n              ],\n              \"bbox\": [\n                86.64306640625,\n                371.962890625,\n                87.64306640625,\n                372.962890625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/223/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">At <i>n</i> = 10, Algorithm A looks pretty bad; it takes almost 10 times longer than Algorithm B. But for <i>n</i> = 100 they are about the same, and for larger values A is much better.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              449.6098327636719\n            ],\n            [\n              482.90625,\n              449.6098327636719\n            ],\n            [\n              482.90625,\n              472.7348937988281\n            ],\n            [\n              85.6142578125,\n              472.7348937988281\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            449.6098327636719,\n            482.90625,\n            472.7348937988281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The fundamental reason is that for large values of <i>n</i>, any function that contains an <i>n</i> 2 term will grow faster than a function whose leading term is <i>n</i>. The <b>leading term</b> is the term with the highest exponent.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              479.66400146484375\n            ],\n            [\n              482.607421875,\n              479.66400146484375\n            ],\n            [\n              482.607421875,\n              515.9169006347656\n            ],\n            [\n              85.763671875,\n              515.9169006347656\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            479.66400146484375,\n            482.607421875,\n            515.9169006347656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For Algorithm A, the leading term has a large coefficient, 100, which is why B does better than A for small <i>n</i>. But regardless of the coefficients, there will always be some value of <i>n</i> where <i>an</i>2 &gt; <i>bn</i>.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              524.00390625\n            ],\n            [\n              482.4032897949219,\n              524.00390625\n            ],\n            [\n              482.4032897949219,\n              559.097900390625\n            ],\n            [\n              85.6142578125,\n              559.097900390625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            524.00390625,\n            482.4032897949219,\n            559.097900390625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The same argument applies to the non-leading terms. Even if the run time of Algorithm A were <i>n</i> + 1000000, it would still be better than Algorithm B for sufficiently large <i>n</i>.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              567.9273071289062\n            ],\n            [\n              482.90625,\n              567.9273071289062\n            ],\n            [\n              482.90625,\n              590.0839080810547\n            ],\n            [\n              85.6142578125,\n              590.0839080810547\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            567.9273071289062,\n            482.90625,\n            590.0839080810547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In general, we expect an algorithm with a smaller leading term to be a better algorithm for large problems, but for smaller problems, there may be a <b>crossover point</b> where another algorithm is better. The location of the crossover point depends on the details of the algorithms, the inputs, and the hardware, so it is usually ignored for purposes of algorithmic analysis. But that doesn't mean you can forget about it.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              598.25390625\n            ],\n            [\n              482.90625,\n              598.25390625\n            ],\n            [\n              482.90625,\n              657.6539154052734\n            ],\n            [\n              85.3154296875,\n              657.6539154052734\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            598.25390625,\n            482.90625,\n            657.6539154052734\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/223/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If two algorithms have the same leading order term, it is hard to say which is better; again, the answer depends on the details. So for algorithmic analysis, functions with the same leading term are considered equivalent, even if they have different coefficients.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              665.54296875\n            ],\n            [\n              482.90625,\n              665.54296875\n            ],\n            [\n              482.90625,\n              700.8349227905273\n            ],\n            [\n              85.6142578125,\n              700.8349227905273\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            665.54296875,\n            482.90625,\n            700.8349227905273\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/222/SectionHeader/1\",\n        \"3\": \"/page/223/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/224/Page/479\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/224/PageHeader/0'></content-ref><content-ref src='/page/224/PageHeader/15'></content-ref><content-ref src='/page/224/Text/1'></content-ref><content-ref src='/page/224/TextInlineMath/2'></content-ref><content-ref src='/page/224/Text/3'></content-ref><content-ref src='/page/224/Table/4'></content-ref><content-ref src='/page/224/Text/5'></content-ref><content-ref src='/page/224/TextInlineMath/6'></content-ref><content-ref src='/page/224/ListGroup/415'></content-ref><content-ref src='/page/224/Text/13'></content-ref><content-ref src='/page/224/TextInlineMath/14'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/224/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              60.908203125\n            ],\n            [\n              525.6033935546875,\n              60.908203125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.72021484375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            60.908203125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/224/PageHeader/15\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.80078125,\n              60.521484375\n            ],\n            [\n              525.9375,\n              60.521484375\n            ],\n            [\n              525.9375,\n              69.99609375\n            ],\n            [\n              509.80078125,\n              69.99609375\n            ]\n          ],\n          \"bbox\": [\n            509.80078125,\n            60.521484375,\n            525.9375,\n            69.99609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/224/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An <b>order of growth</b> is a set of functions whose asymptotic growth behavior is considered equivalent. For example, 2<i>n</i>, 100<i>n</i> and <i>n</i> + 1 belong to the same order of growth, which is written <i>O</i>(<i>n</i>) in <b>Big-Oh notation</b> and often called <b>linear</b> because every function in the set grows linearly with <i>n</i>.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              88.60693359375\n            ],\n            [\n              526.53515625,\n              88.60693359375\n            ],\n            [\n              526.53515625,\n              135.38092041015625\n            ],\n            [\n              128.6455078125,\n              135.38092041015625\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            88.60693359375,\n            526.53515625,\n            135.38092041015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/224/TextInlineMath/2\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">All functions with the leading term <i>n</i>2 belong to <i>O</i>(<i>n</i>2) ; they are <b>quadratic</b>, which is a fancy word for functions with the leading term <i>n</i>2. </p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              144.1939697265625\n            ],\n            [\n              525.638671875,\n              144.1939697265625\n            ],\n            [\n              525.638671875,\n              168.25189208984375\n            ],\n            [\n              129.392578125,\n              168.25189208984375\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            144.1939697265625,\n            525.638671875,\n            168.25189208984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/224/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The following table shows some of the orders of growth that appear most commonly in algorithmic analysis, in increasing order of badness.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              178.1806640625\n            ],\n            [\n              525.6033935546875,\n              178.1806640625\n            ],\n            [\n              525.6033935546875,\n              201.1239013671875\n            ],\n            [\n              128.9443359375,\n              201.1239013671875\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            178.1806640625,\n            525.6033935546875,\n            201.1239013671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/224/Table/4\",\n          \"block_type\": \"Table\",\n          \"html\": \"<table><tbody><tr><th>Order of<br/>growth</th><th>Name</th></tr><tr><td>O(1)</td><td>constant</td></tr><tr><td>O(logbn)</td><td>logarithmic (for any b)</td></tr><tr><td>O(n)</td><td>linear</td></tr><tr><td>O(nlogbn)</td><td>\\\"en log en\\\"</td></tr><tr><td>O(n2)</td><td>quadratic</td></tr><tr><td>O(n3)</td><td>cubic</td></tr><tr><td>O(cn)</td><td>exponential (for any c)</td></tr></tbody></table>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              208.634765625\n            ],\n            [\n              300.322265625,\n              208.634765625\n            ],\n            [\n              300.322265625,\n              321.169921875\n            ],\n            [\n              128.72021484375,\n              321.169921875\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            208.634765625,\n            300.322265625,\n            321.169921875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/224/TableCell/436\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Order of<br/>growth</th>\",\n              \"polygon\": [\n                [\n                  128.72021484375,\n                  208.634765625\n                ],\n                [\n                  129.72021484375,\n                  208.634765625\n                ],\n                [\n                  129.72021484375,\n                  209.634765625\n                ],\n                [\n                  128.72021484375,\n                  209.634765625\n                ]\n              ],\n              \"bbox\": [\n                128.72021484375,\n                208.634765625,\n                129.72021484375,\n                209.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/437\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<th>Name</th>\",\n              \"polygon\": [\n                [\n                  129.72021484375,\n                  208.634765625\n                ],\n                [\n                  130.72021484375,\n                  208.634765625\n                ],\n                [\n                  130.72021484375,\n                  209.634765625\n                ],\n                [\n                  129.72021484375,\n                  209.634765625\n                ]\n              ],\n              \"bbox\": [\n                129.72021484375,\n                208.634765625,\n                130.72021484375,\n                209.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/438\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>O(1)</td>\",\n              \"polygon\": [\n                [\n                  128.72021484375,\n                  209.634765625\n                ],\n                [\n                  129.72021484375,\n                  209.634765625\n                ],\n                [\n                  129.72021484375,\n                  210.634765625\n                ],\n                [\n                  128.72021484375,\n                  210.634765625\n                ]\n              ],\n              \"bbox\": [\n                128.72021484375,\n                209.634765625,\n                129.72021484375,\n                210.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/439\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>constant</td>\",\n              \"polygon\": [\n                [\n                  129.72021484375,\n                  209.634765625\n                ],\n                [\n                  130.72021484375,\n                  209.634765625\n                ],\n                [\n                  130.72021484375,\n                  210.634765625\n                ],\n                [\n                  129.72021484375,\n                  210.634765625\n                ]\n              ],\n              \"bbox\": [\n                129.72021484375,\n                209.634765625,\n                130.72021484375,\n                210.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/440\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>O(logbn)</td>\",\n              \"polygon\": [\n                [\n                  128.72021484375,\n                  210.634765625\n                ],\n                [\n                  129.72021484375,\n                  210.634765625\n                ],\n                [\n                  129.72021484375,\n                  211.634765625\n                ],\n                [\n                  128.72021484375,\n                  211.634765625\n                ]\n              ],\n              \"bbox\": [\n                128.72021484375,\n                210.634765625,\n                129.72021484375,\n                211.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/441\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>logarithmic (for any b)</td>\",\n              \"polygon\": [\n                [\n                  129.72021484375,\n                  210.634765625\n                ],\n                [\n                  130.72021484375,\n                  210.634765625\n                ],\n                [\n                  130.72021484375,\n                  211.634765625\n                ],\n                [\n                  129.72021484375,\n                  211.634765625\n                ]\n              ],\n              \"bbox\": [\n                129.72021484375,\n                210.634765625,\n                130.72021484375,\n                211.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/442\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>O(n)</td>\",\n              \"polygon\": [\n                [\n                  128.72021484375,\n                  211.634765625\n                ],\n                [\n                  129.72021484375,\n                  211.634765625\n                ],\n                [\n                  129.72021484375,\n                  212.634765625\n                ],\n                [\n                  128.72021484375,\n                  212.634765625\n                ]\n              ],\n              \"bbox\": [\n                128.72021484375,\n                211.634765625,\n                129.72021484375,\n                212.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/443\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>linear</td>\",\n              \"polygon\": [\n                [\n                  129.72021484375,\n                  211.634765625\n                ],\n                [\n                  130.72021484375,\n                  211.634765625\n                ],\n                [\n                  130.72021484375,\n                  212.634765625\n                ],\n                [\n                  129.72021484375,\n                  212.634765625\n                ]\n              ],\n              \"bbox\": [\n                129.72021484375,\n                211.634765625,\n                130.72021484375,\n                212.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/444\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>O(nlogbn)</td>\",\n              \"polygon\": [\n                [\n                  128.72021484375,\n                  212.634765625\n                ],\n                [\n                  129.72021484375,\n                  212.634765625\n                ],\n                [\n                  129.72021484375,\n                  213.634765625\n                ],\n                [\n                  128.72021484375,\n                  213.634765625\n                ]\n              ],\n              \"bbox\": [\n                128.72021484375,\n                212.634765625,\n                129.72021484375,\n                213.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/445\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>\\\"en log en\\\"</td>\",\n              \"polygon\": [\n                [\n                  129.72021484375,\n                  212.634765625\n                ],\n                [\n                  130.72021484375,\n                  212.634765625\n                ],\n                [\n                  130.72021484375,\n                  213.634765625\n                ],\n                [\n                  129.72021484375,\n                  213.634765625\n                ]\n              ],\n              \"bbox\": [\n                129.72021484375,\n                212.634765625,\n                130.72021484375,\n                213.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/446\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>O(n2)</td>\",\n              \"polygon\": [\n                [\n                  128.72021484375,\n                  213.634765625\n                ],\n                [\n                  129.72021484375,\n                  213.634765625\n                ],\n                [\n                  129.72021484375,\n                  214.634765625\n                ],\n                [\n                  128.72021484375,\n                  214.634765625\n                ]\n              ],\n              \"bbox\": [\n                128.72021484375,\n                213.634765625,\n                129.72021484375,\n                214.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/447\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>quadratic</td>\",\n              \"polygon\": [\n                [\n                  129.72021484375,\n                  213.634765625\n                ],\n                [\n                  130.72021484375,\n                  213.634765625\n                ],\n                [\n                  130.72021484375,\n                  214.634765625\n                ],\n                [\n                  129.72021484375,\n                  214.634765625\n                ]\n              ],\n              \"bbox\": [\n                129.72021484375,\n                213.634765625,\n                130.72021484375,\n                214.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/448\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>O(n3)</td>\",\n              \"polygon\": [\n                [\n                  128.72021484375,\n                  214.634765625\n                ],\n                [\n                  129.72021484375,\n                  214.634765625\n                ],\n                [\n                  129.72021484375,\n                  215.634765625\n                ],\n                [\n                  128.72021484375,\n                  215.634765625\n                ]\n              ],\n              \"bbox\": [\n                128.72021484375,\n                214.634765625,\n                129.72021484375,\n                215.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/449\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>cubic</td>\",\n              \"polygon\": [\n                [\n                  129.72021484375,\n                  214.634765625\n                ],\n                [\n                  130.72021484375,\n                  214.634765625\n                ],\n                [\n                  130.72021484375,\n                  215.634765625\n                ],\n                [\n                  129.72021484375,\n                  215.634765625\n                ]\n              ],\n              \"bbox\": [\n                129.72021484375,\n                214.634765625,\n                130.72021484375,\n                215.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/450\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>O(cn)</td>\",\n              \"polygon\": [\n                [\n                  128.72021484375,\n                  215.634765625\n                ],\n                [\n                  129.72021484375,\n                  215.634765625\n                ],\n                [\n                  129.72021484375,\n                  216.634765625\n                ],\n                [\n                  128.72021484375,\n                  216.634765625\n                ]\n              ],\n              \"bbox\": [\n                128.72021484375,\n                215.634765625,\n                129.72021484375,\n                216.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/TableCell/451\",\n              \"block_type\": \"TableCell\",\n              \"html\": \"<td>exponential (for any c)</td>\",\n              \"polygon\": [\n                [\n                  129.72021484375,\n                  215.634765625\n                ],\n                [\n                  130.72021484375,\n                  215.634765625\n                ],\n                [\n                  130.72021484375,\n                  216.634765625\n                ],\n                [\n                  129.72021484375,\n                  216.634765625\n                ]\n              ],\n              \"bbox\": [\n                129.72021484375,\n                215.634765625,\n                130.72021484375,\n                216.634765625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/224/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For the logarithmic terms, the base of the logarithm doesn't matter; changing bases is the equivalent of multiplying by a constant, which doesn't change the order of growth. Similarly, all exponential functions belong to the same order of growth regardless of the base of the exponent. Exponential functions grow very quickly, so exponential algorithms are only useful for small problems.</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              331.224609375\n            ],\n            [\n              525.6034545898438,\n              331.224609375\n            ],\n            [\n              525.6034545898438,\n              390.3238830566406\n            ],\n            [\n              127.7490234375,\n              390.3238830566406\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            331.224609375,\n            525.6034545898438,\n            390.3238830566406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/224/TextInlineMath/6\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\"><b>Exercise B.1.</b> <i>Read the Wikipedia page on Big-Oh notation at</i> http://en.wikipedia.org/ wiki/Big_O_notation <i>and answer the following questions: </i></p>\",\n          \"polygon\": [\n            [\n              129.60000610351562,\n              391.939453125\n            ],\n            [\n              524.14453125,\n              391.939453125\n            ],\n            [\n              524.14453125,\n              414.5401916503906\n            ],\n            [\n              129.60000610351562,\n              414.5401916503906\n            ]\n          ],\n          \"bbox\": [\n            129.60000610351562,\n            391.939453125,\n            524.14453125,\n            414.5401916503906\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/224/ListGroup/415\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/224/ListItem/7'></content-ref><content-ref src='/page/224/ListItem/8'></content-ref><content-ref src='/page/224/ListItem/9'></content-ref><content-ref src='/page/224/ListItem/10'></content-ref><content-ref src='/page/224/ListItem/11'></content-ref><content-ref src='/page/224/ListItem/12'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              141.4951171875,\n              427.9840087890625\n            ],\n            [\n              525.6023559570312,\n              427.9840087890625\n            ],\n            [\n              525.6023559570312,\n              570.8435821533203\n            ],\n            [\n              141.4951171875,\n              570.8435821533203\n            ]\n          ],\n          \"bbox\": [\n            141.4951171875,\n            427.9840087890625,\n            525.6023559570312,\n            570.8435821533203\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/224/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. What is the order of growth of n</i>3 + <i>n</i> 2<i>? What about</i> 1000000<i>n</i> 3 + <i>n</i> 2<i>? What about n</i>3 + 1000000<i>n</i> 2<i>?</i></li>\",\n              \"polygon\": [\n                [\n                  141.4951171875,\n                  427.9840087890625\n                ],\n                [\n                  525.47216796875,\n                  427.9840087890625\n                ],\n                [\n                  525.47216796875,\n                  452.04290771484375\n                ],\n                [\n                  141.4951171875,\n                  452.04290771484375\n                ]\n              ],\n              \"bbox\": [\n                141.4951171875,\n                427.9840087890625,\n                525.47216796875,\n                452.04290771484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. What is the order of growth of</i> (<i>n</i> 2 + <i>n</i>) · (<i>n</i> + 1)<i>? Before you start multiplying, remember</i> <i>that you only need the leading term.</i></li>\",\n              \"polygon\": [\n                [\n                  141.943359375,\n                  461.2640075683594\n                ],\n                [\n                  525.6023559570312,\n                  461.2640075683594\n                ],\n                [\n                  525.6023559570312,\n                  485.1492004394531\n                ],\n                [\n                  141.943359375,\n                  485.1492004394531\n                ]\n              ],\n              \"bbox\": [\n                141.943359375,\n                461.2640075683594,\n                525.6023559570312,\n                485.1492004394531\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. If f is in O</i>(<i>g</i>)<i>, for some unspecified function g, what can we say about a f</i> + <i>b?</i></li>\",\n              \"polygon\": [\n                [\n                  142.05311584472656,\n                  495.0\n                ],\n                [\n                  473.5506591796875,\n                  495.0\n                ],\n                [\n                  473.5506591796875,\n                  506.23419189453125\n                ],\n                [\n                  142.05311584472656,\n                  506.23419189453125\n                ]\n              ],\n              \"bbox\": [\n                142.05311584472656,\n                495.0,\n                473.5506591796875,\n                506.23419189453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>4. If f</i>1 <i>and f</i>2 <i>are in O</i>(<i>g</i>)<i>, what can we say about f</i>1 + <i>f</i>2<i>?</i></li>\",\n              \"polygon\": [\n                [\n                  141.86865234375,\n                  516.5608215332031\n                ],\n                [\n                  383.12640380859375,\n                  516.5608215332031\n                ],\n                [\n                  383.12640380859375,\n                  528.673583984375\n                ],\n                [\n                  141.86865234375,\n                  528.673583984375\n                ]\n              ],\n              \"bbox\": [\n                141.86865234375,\n                516.5608215332031,\n                383.12640380859375,\n                528.673583984375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>5. If f</i>1 <i>is in O</i>(<i>g</i>) <i>and f</i>2 <i>is in O</i>(<i>h</i>)<i>, what can we say about f</i>1 + <i>f</i>2<i>?</i></li>\",\n              \"polygon\": [\n                [\n                  142.01806640625,\n                  537.6458129882812\n                ],\n                [\n                  421.9453125,\n                  537.6458129882812\n                ],\n                [\n                  421.9453125,\n                  549.7585906982422\n                ],\n                [\n                  142.01806640625,\n                  549.7585906982422\n                ]\n              ],\n              \"bbox\": [\n                142.01806640625,\n                537.6458129882812,\n                421.9453125,\n                549.7585906982422\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/224/ListItem/12\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>6. If f</i>1 <i>is in O</i>(<i>g</i>) <i>and f</i>2 <i>is O</i>(<i>h</i>)<i>, what can we say about f</i>1 · <i>f</i>2<i>?</i></li>\",\n              \"polygon\": [\n                [\n                  142.05307006835938,\n                  558.5962677001953\n                ],\n                [\n                  406.40625,\n                  558.5962677001953\n                ],\n                [\n                  406.40625,\n                  570.8435821533203\n                ],\n                [\n                  142.05307006835938,\n                  570.8435821533203\n                ]\n              ],\n              \"bbox\": [\n                142.05307006835938,\n                558.5962677001953,\n                406.40625,\n                570.8435821533203\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"3\": \"/page/223/SectionHeader/5\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/224/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Programmers who care about performance often find this kind of analysis hard to swallow. They have a point: sometimes the coefficients and the non-leading terms make a real difference. Sometimes the details of the hardware, the programming language, and the characteristics of the input make a big difference. And for small problems asymptotic behavior is irrelevant.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              584.71875\n            ],\n            [\n              525.9375,\n              584.71875\n            ],\n            [\n              525.9375,\n              643.5748748779297\n            ],\n            [\n              128.6455078125,\n              643.5748748779297\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            584.71875,\n            525.9375,\n            643.5748748779297\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/224/TextInlineMath/14\",\n          \"block_type\": \"TextInlineMath\",\n          \"html\": \"<p block-type=\\\"TextInlineMath\\\">But if you keep those caveats in mind, algorithmic analysis is a useful tool. At least for large problems, the “better” algorithms is usually better, and sometimes it is <i>much</i> better. The difference between two algorithms with the same order of growth is usually a constant factor, but the difference between a good algorithm and a bad algorithm is unbounded!</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              653.94140625\n            ],\n            [\n              526.53515625,\n              653.94140625\n            ],\n            [\n              526.53515625,\n              700.8348846435547\n            ],\n            [\n              129.2431640625,\n              700.8348846435547\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            653.94140625,\n            526.53515625,\n            700.8348846435547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/222/SectionHeader/1\",\n        \"3\": \"/page/223/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/225/Page/271\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/225/PageHeader/0'></content-ref><content-ref src='/page/225/PageHeader/19'></content-ref><content-ref src='/page/225/SectionHeader/1'></content-ref><content-ref src='/page/225/Text/2'></content-ref><content-ref src='/page/225/Text/3'></content-ref><content-ref src='/page/225/Text/4'></content-ref><content-ref src='/page/225/Code/5'></content-ref><content-ref src='/page/225/Text/6'></content-ref><content-ref src='/page/225/Text/7'></content-ref><content-ref src='/page/225/Text/8'></content-ref><content-ref src='/page/225/Text/9'></content-ref><content-ref src='/page/225/Text/10'></content-ref><content-ref src='/page/225/Text/11'></content-ref><content-ref src='/page/225/Text/12'></content-ref><content-ref src='/page/225/Text/13'></content-ref><content-ref src='/page/225/ListGroup/270'></content-ref><content-ref src='/page/225/Text/17'></content-ref><content-ref src='/page/225/ListItem/18'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/225/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.8447265625\n            ],\n            [\n              483.50390625,\n              59.8447265625\n            ],\n            [\n              483.50390625,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.8447265625,\n            483.50390625,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/PageHeader/19\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.94189453125,\n              59.11962890625\n            ],\n            [\n              102.12451171875,\n              59.11962890625\n            ],\n            [\n              102.12451171875,\n              70.04443359375\n            ],\n            [\n              84.94189453125,\n              70.04443359375\n            ]\n          ],\n          \"bbox\": [\n            84.94189453125,\n            59.11962890625,\n            102.12451171875,\n            70.04443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"3\": \"/page/223/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-225-0\\\"></span><b>B.2 Analysis of basic Python operations</b></h2>\",\n          \"polygon\": [\n            [\n              84.568359375,\n              84.54638671875\n            ],\n            [\n              357.99609375,\n              84.54638671875\n            ],\n            [\n              357.99609375,\n              100.353515625\n            ],\n            [\n              84.568359375,\n              100.353515625\n            ]\n          ],\n          \"bbox\": [\n            84.568359375,\n            84.54638671875,\n            357.99609375,\n            100.353515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Most arithmetic operations are constant time; multiplication usually takes longer than addition and subtraction, and division takes even longer, but these run times don't depend on the magnitude of the operands. Very large integers are an exception; in that case the run time increases with the number of digits.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              109.634765625\n            ],\n            [\n              484.998046875,\n              109.634765625\n            ],\n            [\n              484.998046875,\n              159.00103759765625\n            ],\n            [\n              85.46484375,\n              159.00103759765625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            109.634765625,\n            484.998046875,\n            159.00103759765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Indexing operations—reading or writing elements in a sequence or dictionary—are also constant time, regardless of the size of the data structure.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              166.482421875\n            ],\n            [\n              483.802734375,\n              166.482421875\n            ],\n            [\n              483.802734375,\n              191.14202880859375\n            ],\n            [\n              85.46484375,\n              191.14202880859375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            166.482421875,\n            483.802734375,\n            191.14202880859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A for loop that traverses a sequence or dictionary is usually linear, as long as all of the operations in the body of the loop are constant time. For example, adding up the elements of a list is linear:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              199.16015625\n            ],\n            [\n              484.1015625,\n              199.16015625\n            ],\n            [\n              484.1015625,\n              235.47802734375\n            ],\n            [\n              85.6142578125,\n              235.47802734375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            199.16015625,\n            484.1015625,\n            235.47802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>total = 0\\nfor x in t:\\n    total += x</pre>\",\n          \"polygon\": [\n            [\n              107.31600189208984,\n              240.345703125\n            ],\n            [\n              180.53665161132812,\n              240.345703125\n            ],\n            [\n              180.53665161132812,\n              275.69140625\n            ],\n            [\n              107.31600189208984,\n              275.69140625\n            ]\n          ],\n          \"bbox\": [\n            107.31600189208984,\n            240.345703125,\n            180.53665161132812,\n            275.69140625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The built-in function sum is also linear because it does the same thing, but it tends to be faster because it is a more efficient implementation; in the language of algorithmic analysis, it has a smaller leading coefficient.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              279.791015625\n            ],\n            [\n              483.50390625,\n              279.791015625\n            ],\n            [\n              483.50390625,\n              316.2049865722656\n            ],\n            [\n              85.9130859375,\n              316.2049865722656\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            279.791015625,\n            483.50390625,\n            316.2049865722656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If you use the same loop to \\\"add\\\" a list of strings, the run time is quadratic because string concatenation is linear.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              323.876953125\n            ],\n            [\n              483.802734375,\n              323.876953125\n            ],\n            [\n              483.802734375,\n              348.34698486328125\n            ],\n            [\n              85.763671875,\n              348.34698486328125\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            323.876953125,\n            483.802734375,\n            348.34698486328125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The string method join is usually faster because it is linear in the total length of the strings.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              355.78125\n            ],\n            [\n              482.39666748046875,\n              355.78125\n            ],\n            [\n              482.39666748046875,\n              368.2929992675781\n            ],\n            [\n              85.763671875,\n              368.2929992675781\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            355.78125,\n            482.39666748046875,\n            368.2929992675781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">As a rule of thumb, if the body of a loop is in <i>O</i>(<i>n</i> <i>a</i> ) then the whole loop is in <i>O</i>(<i>n</i> <i>a</i>+1 ). The exception is if you can show that the loop exits after a constant number of iterations. If a loop runs <i>k</i> times regardless of <i>n</i>, then the loop is in <i>O</i>(<i>n</i> <i>a</i> ), even for large <i>k</i>.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              387.10546875\n            ],\n            [\n              483.205078125,\n              387.10546875\n            ],\n            [\n              483.205078125,\n              424.822998046875\n            ],\n            [\n              85.763671875,\n              424.822998046875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            387.10546875,\n            483.205078125,\n            424.822998046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Multiplying by <i>k</i> doesn't change the order of growth, but neither does dividing. So if the body of a loop is in <i>O</i>(<i>n</i> <i>a</i> ) and it runs <i>n</i>/<i>k</i> times, the loop is in <i>O</i>(<i>n</i> <i>a</i>+1 ), even for large <i>k</i>.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              432.3515625\n            ],\n            [\n              484.400390625,\n              432.3515625\n            ],\n            [\n              484.400390625,\n              457.1015625\n            ],\n            [\n              85.763671875,\n              457.1015625\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            432.3515625,\n            484.400390625,\n            457.1015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Most string and tuple operations are linear, except indexing and len, which are constant time. The built-in functions min and max are linear. The run-time of a slice operation is proportional to the length of the output, but independent of the size of the input.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              464.8359375\n            ],\n            [\n              483.50390625,\n              464.8359375\n            ],\n            [\n              483.50390625,\n              501.29998779296875\n            ],\n            [\n              85.9130859375,\n              501.29998779296875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            464.8359375,\n            483.50390625,\n            501.29998779296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">All string methods are linear, but if the lengths of the strings are bounded by a constant for example, operations on single characters—they are considered constant time.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              508.1484375\n            ],\n            [\n              482.607421875,\n              508.1484375\n            ],\n            [\n              482.607421875,\n              533.4409790039062\n            ],\n            [\n              85.763671875,\n              533.4409790039062\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            508.1484375,\n            482.607421875,\n            533.4409790039062\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Most list methods are linear, but there are some exceptions:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              541.79296875\n            ],\n            [\n              347.23828125,\n              541.79296875\n            ],\n            [\n              347.23828125,\n              553.39453125\n            ],\n            [\n              85.6142578125,\n              553.39453125\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            541.79296875,\n            347.23828125,\n            553.39453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/ListGroup/270\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/225/ListItem/14'></content-ref><content-ref src='/page/225/ListItem/15'></content-ref><content-ref src='/page/225/ListItem/16'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              99.9580078125,\n              565.3828125\n            ],\n            [\n              484.69921875,\n              565.3828125\n            ],\n            [\n              484.69921875,\n              641.4009857177734\n            ],\n            [\n              99.9580078125,\n              641.4009857177734\n            ]\n          ],\n          \"bbox\": [\n            99.9580078125,\n            565.3828125,\n            484.69921875,\n            641.4009857177734\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/225/ListItem/14\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Adding an element to the end of a list is constant time on average; when it runs out of room it occasionally gets copied to a bigger location, but the total time for <i>n</i> operations is <i>O</i>(<i>n</i>), so we say that the \\\"amortized\\\" time for one operation is <i>O</i>(1).</li>\",\n              \"polygon\": [\n                [\n                  100.28785705566406,\n                  565.3828125\n                ],\n                [\n                  484.69921875,\n                  565.3828125\n                ],\n                [\n                  484.69921875,\n                  601.734375\n                ],\n                [\n                  100.28785705566406,\n                  601.734375\n                ]\n              ],\n              \"bbox\": [\n                100.28785705566406,\n                565.3828125,\n                484.69921875,\n                601.734375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/225/ListItem/15\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Removing an element from the end of a list is constant time.</li>\",\n              \"polygon\": [\n                [\n                  99.9580078125,\n                  609.08203125\n                ],\n                [\n                  375.92578125,\n                  609.08203125\n                ],\n                [\n                  375.92578125,\n                  621.45703125\n                ],\n                [\n                  99.9580078125,\n                  621.45703125\n                ]\n              ],\n              \"bbox\": [\n                99.9580078125,\n                609.08203125,\n                375.92578125,\n                621.45703125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/225/ListItem/16\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> Sorting is <i>O</i>(<i>n</i> log <i>n</i>).</li>\",\n              \"polygon\": [\n                [\n                  100.287841796875,\n                  628.8046875\n                ],\n                [\n                  203.501953125,\n                  628.8046875\n                ],\n                [\n                  203.501953125,\n                  641.4009857177734\n                ],\n                [\n                  100.287841796875,\n                  641.4009857177734\n                ]\n              ],\n              \"bbox\": [\n                100.287841796875,\n                628.8046875,\n                203.501953125,\n                641.4009857177734\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/225/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Most dictionary operations and methods are constant time, but there are some exceptions:</p>\",\n          \"polygon\": [\n            [\n              84.7177734375,\n              653.16796875\n            ],\n            [\n              481.7109375,\n              653.16796875\n            ],\n            [\n              481.7109375,\n              665.0209884643555\n            ],\n            [\n              84.7177734375,\n              665.0209884643555\n            ]\n          ],\n          \"bbox\": [\n            84.7177734375,\n            653.16796875,\n            481.7109375,\n            665.0209884643555\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/225/ListItem/18\",\n          \"block_type\": \"ListItem\",\n          \"html\": \"<li block-type=\\\"ListItem\\\"> The run time of copy is proportional to the number of elements, but not the size of the elements (it copies references, not the elements themselves).</li>\",\n          \"polygon\": [\n            [\n              100.287841796875,\n              676.7578125\n            ],\n            [\n              484.69921875,\n              676.7578125\n            ],\n            [\n              484.69921875,\n              700.8349914550781\n            ],\n            [\n              100.287841796875,\n              700.8349914550781\n            ]\n          ],\n          \"bbox\": [\n            100.287841796875,\n            676.7578125,\n            484.69921875,\n            700.8349914550781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/222/SectionHeader/1\",\n        \"2\": \"/page/225/SectionHeader/1\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/226/Page/209\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/226/PageHeader/0'></content-ref><content-ref src='/page/226/PageHeader/18'></content-ref><content-ref src='/page/226/ListGroup/207'></content-ref><content-ref src='/page/226/Text/3'></content-ref><content-ref src='/page/226/Text/4'></content-ref><content-ref src='/page/226/ListGroup/208'></content-ref><content-ref src='/page/226/SectionHeader/12'></content-ref><content-ref src='/page/226/Text/13'></content-ref><content-ref src='/page/226/Text/14'></content-ref><content-ref src='/page/226/Text/15'></content-ref><content-ref src='/page/226/Text/16'></content-ref><content-ref src='/page/226/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/226/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              60.76318359375\n            ],\n            [\n              525.6033935546875,\n              60.76318359375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.27197265625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            60.76318359375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/226/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.697265625,\n              60.521484375\n            ],\n            [\n              525.638671875,\n              60.521484375\n            ],\n            [\n              525.638671875,\n              69.802734375\n            ],\n            [\n              510.697265625,\n              69.802734375\n            ]\n          ],\n          \"bbox\": [\n            510.697265625,\n            60.521484375,\n            525.638671875,\n            69.802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/226/ListGroup/207\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/226/ListItem/1'></content-ref><content-ref src='/page/226/ListItem/2'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              142.3916015625,\n              88.31689453125\n            ],\n            [\n              526.53515625,\n              88.31689453125\n            ],\n            [\n              526.53515625,\n              179.24285888671875\n            ],\n            [\n              142.3916015625,\n              179.24285888671875\n            ]\n          ],\n          \"bbox\": [\n            142.3916015625,\n            88.31689453125,\n            526.53515625,\n            179.24285888671875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/226/ListItem/1\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> The run time of update is proportional to the size of the dictionary passed as a parameter, not the dictionary being updated.</li>\",\n              \"polygon\": [\n                [\n                  143.4375,\n                  88.31689453125\n                ],\n                [\n                  525.6045532226562,\n                  88.31689453125\n                ],\n                [\n                  525.6045532226562,\n                  110.99188232421875\n                ],\n                [\n                  143.4375,\n                  110.99188232421875\n                ]\n              ],\n              \"bbox\": [\n                143.4375,\n                88.31689453125,\n                525.6045532226562,\n                110.99188232421875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/226/ListItem/2\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"> keys, values and items are linear because they return new lists; iterkeys, itervalues and iteritems are constant time because they return iterators. But if you loop through the iterators, the loop will be linear. Using the \\\"iter\\\" functions saves some overhead, but it doesn't change the order of growth unless the number of items you access is bounded.</li>\",\n              \"polygon\": [\n                [\n                  142.3916015625,\n                  120.076171875\n                ],\n                [\n                  526.53515625,\n                  120.076171875\n                ],\n                [\n                  526.53515625,\n                  179.24285888671875\n                ],\n                [\n                  142.3916015625,\n                  179.24285888671875\n                ]\n              ],\n              \"bbox\": [\n                142.3916015625,\n                120.076171875,\n                526.53515625,\n                179.24285888671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/226/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The performance of dictionaries is one of the minor miracles of computer science. We will see how they work in Section <a href=\\\"#page-227-0\\\">B.4.</a></p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              190.458984375\n            ],\n            [\n              525.638671875,\n              190.458984375\n            ],\n            [\n              525.638671875,\n              213.38189697265625\n            ],\n            [\n              129.392578125,\n              213.38189697265625\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            190.458984375,\n            525.638671875,\n            213.38189697265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/226/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise B.2.</b> <i>Read the Wikipedia page on sorting algorithms at</i> <a href=\\\"http://en.wikipedia.org/wiki/Sorting_algorithm\\\">http:</a> <a href=\\\"http://en.wikipedia.org/wiki/Sorting_algorithm\\\">//</a> <a href=\\\"http://en.wikipedia.org/wiki/Sorting_algorithm\\\">en.</a> <a href=\\\"http://en.wikipedia.org/wiki/Sorting_algorithm\\\">wikipedia.</a> <a href=\\\"http://en.wikipedia.org/wiki/Sorting_algorithm\\\">org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Sorting_algorithm\\\">wiki/</a> <a href=\\\"http://en.wikipedia.org/wiki/Sorting_algorithm\\\">Sorting_</a> <a href=\\\"http://en.wikipedia.org/wiki/Sorting_algorithm\\\">algorithm</a> <i>and answer the following questions:</i></p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              215.36090087890625\n            ],\n            [\n              525.33984375,\n              215.36090087890625\n            ],\n            [\n              525.33984375,\n              237.59820556640625\n            ],\n            [\n              129.09375,\n              237.59820556640625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            215.36090087890625,\n            525.33984375,\n            237.59820556640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/226/ListGroup/208\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/226/ListItem/5'></content-ref><content-ref src='/page/226/ListItem/6'></content-ref><content-ref src='/page/226/ListItem/7'></content-ref><content-ref src='/page/226/ListItem/8'></content-ref><content-ref src='/page/226/ListItem/9'></content-ref><content-ref src='/page/226/ListItem/10'></content-ref><content-ref src='/page/226/ListItem/11'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              140.5986328125,\n              249.58062744140625\n            ],\n            [\n              525.9375,\n              249.58062744140625\n            ],\n            [\n              525.9375,\n              425.1622314453125\n            ],\n            [\n              140.5986328125,\n              425.1622314453125\n            ]\n          ],\n          \"bbox\": [\n            140.5986328125,\n            249.58062744140625,\n            525.9375,\n            425.1622314453125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/226/ListItem/5\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>1. What is a \\\"comparison sort?\\\" What is the best worst-case order of growth for a comparison</i> <i>sort? What is the best worst-case order of growth for any sort algorithm?</i></li>\",\n              \"polygon\": [\n                [\n                  141.4951171875,\n                  249.58062744140625\n                ],\n                [\n                  525.9375,\n                  249.58062744140625\n                ],\n                [\n                  525.9375,\n                  271.73724365234375\n                ],\n                [\n                  141.4951171875,\n                  271.73724365234375\n                ]\n              ],\n              \"bbox\": [\n                141.4951171875,\n                249.58062744140625,\n                525.9375,\n                271.73724365234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/226/ListItem/6\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>2. What is the order of growth of bubble sort, and why does Barack Obama think it is \\\"the wrong</i> <i>way to go?\\\"</i></li>\",\n              \"polygon\": [\n                [\n                  141.345703125,\n                  280.951171875\n                ],\n                [\n                  525.638671875,\n                  280.951171875\n                ],\n                [\n                  525.638671875,\n                  303.4052429199219\n                ],\n                [\n                  141.345703125,\n                  303.4052429199219\n                ]\n              ],\n              \"bbox\": [\n                141.345703125,\n                280.951171875,\n                525.638671875,\n                303.4052429199219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/226/ListItem/7\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>3. What is the order of growth of radix sort? What preconditions do we need to use it?</i></li>\",\n              \"polygon\": [\n                [\n                  140.8974609375,\n                  312.46875\n                ],\n                [\n                  488.6320495605469,\n                  312.46875\n                ],\n                [\n                  488.6320495605469,\n                  322.8792419433594\n                ],\n                [\n                  140.8974609375,\n                  322.8792419433594\n                ]\n              ],\n              \"bbox\": [\n                140.8974609375,\n                312.46875,\n                488.6320495605469,\n                322.8792419433594\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/226/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>4. What is a stable sort and why might it matter in practice?</i></li>\",\n              \"polygon\": [\n                [\n                  142.05300903320312,\n                  332.384765625\n                ],\n                [\n                  386.6547546386719,\n                  332.384765625\n                ],\n                [\n                  386.6547546386719,\n                  342.35223388671875\n                ],\n                [\n                  142.05300903320312,\n                  342.35223388671875\n                ]\n              ],\n              \"bbox\": [\n                142.05300903320312,\n                332.384765625,\n                386.6547546386719,\n                342.35223388671875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/226/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>5. What is the worst sorting algorithm (that has a name)?</i></li>\",\n              \"polygon\": [\n                [\n                  141.42041015625,\n                  351.8636474609375\n                ],\n                [\n                  375.626953125,\n                  351.8636474609375\n                ],\n                [\n                  375.626953125,\n                  361.82623291015625\n                ],\n                [\n                  141.42041015625,\n                  361.82623291015625\n                ]\n              ],\n              \"bbox\": [\n                141.42041015625,\n                351.8636474609375,\n                375.626953125,\n                361.82623291015625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/226/ListItem/10\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>6. What sort algorithm does the C library use? What sort algorithm does Python use? Are these</i> <i>algorithms stable? You might have to Google around to find these answers.</i></li>\",\n              \"polygon\": [\n                [\n                  141.64453125,\n                  371.056640625\n                ],\n                [\n                  525.6032104492188,\n                  371.056640625\n                ],\n                [\n                  525.6032104492188,\n                  393.4942321777344\n                ],\n                [\n                  141.64453125,\n                  393.4942321777344\n                ]\n              ],\n              \"bbox\": [\n                141.64453125,\n                371.056640625,\n                525.6032104492188,\n                393.4942321777344\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/226/ListItem/11\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\"><i>7. Many of the non-comparison sorts are linear, so why does does Python use an O</i>(<i>n</i> log <i>n</i>) <i>comparison sort?</i></li>\",\n              \"polygon\": [\n                [\n                  140.5986328125,\n                  402.2098693847656\n                ],\n                [\n                  525.9375,\n                  402.2098693847656\n                ],\n                [\n                  525.9375,\n                  425.1622314453125\n                ],\n                [\n                  140.5986328125,\n                  425.1622314453125\n                ]\n              ],\n              \"bbox\": [\n                140.5986328125,\n                402.2098693847656,\n                525.9375,\n                425.1622314453125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/226/SectionHeader/12\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-226-0\\\"></span><b>B.3 Analysis of search algorithms</b></h4>\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              453.54278564453125\n            ],\n            [\n              358.3215026855469,\n              453.54278564453125\n            ],\n            [\n              358.3215026855469,\n              467.8890075683594\n            ],\n            [\n              129.01904296875,\n              467.8890075683594\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            453.54278564453125,\n            358.3215026855469,\n            467.8890075683594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/226/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">A <b>search</b> is an algorithm that takes a collection and a target item and determines whether the target is in the collection, often returning the index of the target.</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              479.3282165527344\n            ],\n            [\n              525.9375,\n              479.3282165527344\n            ],\n            [\n              525.9375,\n              501.5819396972656\n            ],\n            [\n              129.5419921875,\n              501.5819396972656\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            479.3282165527344,\n            525.9375,\n            501.5819396972656\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/226/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The simplest search algorithm is a \\\"linear search,\\\" which traverses the items of the collection in order, stopping if it finds the target. In the worst case it has to traverse the entire collection, so the run time is linear.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              510.85546875\n            ],\n            [\n              525.9375,\n              510.85546875\n            ],\n            [\n              525.9375,\n              545.2979431152344\n            ],\n            [\n              128.9443359375,\n              545.2979431152344\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            510.85546875,\n            525.9375,\n            545.2979431152344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/226/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The in operator for sequences uses a linear search; so do string methods like find and count.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              554.5137939453125\n            ],\n            [\n              525.638671875,\n              554.5137939453125\n            ],\n            [\n              525.638671875,\n              576.8199462890625\n            ],\n            [\n              128.197265625,\n              576.8199462890625\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            554.5137939453125,\n            525.638671875,\n            576.8199462890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/226/Text/16\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the elements of the sequence are in order, you can use a <b>bisection search</b>, which is <i>O</i>(log <i>n</i>). Bisection search is similar to the algorithm you probably use to look a word up in a dictionary (a real dictionary, not the data structure). Instead of starting at the beginning and checking each item in order, you start with the item in the middle and check whether the word you are looking for comes before or after. If it comes before, then you search the first half of the sequence. Otherwise you search the second half. Either way, you cut the number of remaining items in half.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              586.0882415771484\n            ],\n            [\n              525.9375,\n              586.0882415771484\n            ],\n            [\n              525.9375,\n              669.31396484375\n            ],\n            [\n              128.3466796875,\n              669.31396484375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            586.0882415771484,\n            525.9375,\n            669.31396484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/226/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">If the sequence has 1,000,000 items, it will take about 20 steps to find the word or conclude that it's not there. So that's about 50,000 times faster than a linear search.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              678.3046875\n            ],\n            [\n              525.9375,\n              678.3046875\n            ],\n            [\n              525.9375,\n              700.8349685668945\n            ],\n            [\n              127.8984375,\n              700.8349685668945\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            678.3046875,\n            525.9375,\n            700.8349685668945\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/222/SectionHeader/1\",\n        \"2\": \"/page/225/SectionHeader/1\",\n        \"4\": \"/page/226/SectionHeader/12\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/227/Page/210\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/227/PageHeader/0'></content-ref><content-ref src='/page/227/PageHeader/16'></content-ref><content-ref src='/page/227/Text/1'></content-ref><content-ref src='/page/227/Text/2'></content-ref><content-ref src='/page/227/Text/3'></content-ref><content-ref src='/page/227/Text/4'></content-ref><content-ref src='/page/227/SectionHeader/5'></content-ref><content-ref src='/page/227/Text/6'></content-ref><content-ref src='/page/227/Text/7'></content-ref><content-ref src='/page/227/ListGroup/209'></content-ref><content-ref src='/page/227/Text/10'></content-ref><content-ref src='/page/227/Text/11'></content-ref><content-ref src='/page/227/Code/12'></content-ref><content-ref src='/page/227/Text/13'></content-ref><content-ref src='/page/227/Text/14'></content-ref><content-ref src='/page/227/Text/15'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/227/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.71484375\n            ],\n            [\n              482.607421875,\n              60.71484375\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.71484375,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/PageHeader/16\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              60.8115234375\n            ],\n            [\n              101.900390625,\n              60.8115234375\n            ],\n            [\n              101.900390625,\n              70.189453125\n            ],\n            [\n              85.3154296875,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            60.8115234375,\n            101.900390625,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>Exercise B.3.</b> <i>Write a function called</i> bisection <i>that takes a sorted list and a target value and</i> <i>returns the index of the value in the list, if it's there, or</i> None <i>if it's not.</i></p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              88.4619140625\n            ],\n            [\n              482.90625,\n              88.4619140625\n            ],\n            [\n              482.90625,\n              110.84228515625\n            ],\n            [\n              85.0166015625,\n              110.84228515625\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            88.4619140625,\n            482.90625,\n            110.84228515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><i>Or you could read the documentation of the</i> bisect <i>module and use that!</i></p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              120.1728515625\n            ],\n            [\n              381.4031066894531,\n              120.1728515625\n            ],\n            [\n              381.4031066894531,\n              130.82330322265625\n            ],\n            [\n              85.39013671875,\n              130.82330322265625\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            120.1728515625,\n            381.4031066894531,\n            130.82330322265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Bisection search can be much faster than linear search, but it requires the sequence to be in order, which might require extra work.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              140.572265625\n            ],\n            [\n              482.4034423828125,\n              140.572265625\n            ],\n            [\n              482.4034423828125,\n              163.14886474609375\n            ],\n            [\n              85.46484375,\n              163.14886474609375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            140.572265625,\n            482.4034423828125,\n            163.14886474609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">There is another data structure, called a <b>hashtable</b> that is even faster—it can do a search in constant time—and it doesn't require the items to be sorted. Python dictionaries are implemented using hashtables, which is why most dictionary operations, including the in operator, are constant time.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              172.4765625\n            ],\n            [\n              482.40386962890625,\n              172.4765625\n            ],\n            [\n              482.40386962890625,\n              219.71295166015625\n            ],\n            [\n              85.6142578125,\n              219.71295166015625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            172.4765625,\n            482.40386962890625,\n            219.71295166015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/226/SectionHeader/12\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/SectionHeader/5\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-227-0\\\"></span><b>B.4 Hashtables</b></h4>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              248.2734375\n            ],\n            [\n              194.537109375,\n              248.2734375\n            ],\n            [\n              194.537109375,\n              263.1820068359375\n            ],\n            [\n              85.6142578125,\n              263.1820068359375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            248.2734375,\n            194.537109375,\n            263.1820068359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To explain how hashtables work and why their performance is so good, I start with a simple implementation of a map and gradually improve it until it's a hashtable.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              274.95703125\n            ],\n            [\n              482.4033508300781,\n              274.95703125\n            ],\n            [\n              482.4033508300781,\n              297.5279541015625\n            ],\n            [\n              85.9130859375,\n              297.5279541015625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            274.95703125,\n            482.4033508300781,\n            297.5279541015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">I use Python to demonstrate these implementations, but in real life you wouldn't write code like this in Python; you would just use a dictionary! So for the rest of this chapter, you have to imagine that dictionaries don't exist and you want to implement a data structure that maps from keys to values. The operations you have to implement are:</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              307.44140625\n            ],\n            [\n              482.4034118652344,\n              307.44140625\n            ],\n            [\n              482.4034118652344,\n              354.09295654296875\n            ],\n            [\n              85.6142578125,\n              354.09295654296875\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            307.44140625,\n            482.4034118652344,\n            354.09295654296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/ListGroup/209\",\n          \"block_type\": \"ListGroup\",\n          \"html\": \"<p block-type='ListGroup'><ul><content-ref src='/page/227/ListItem/8'></content-ref><content-ref src='/page/227/ListItem/9'></content-ref></ul></p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              367.3828125\n            ],\n            [\n              482.40185546875,\n              367.3828125\n            ],\n            [\n              482.40185546875,\n              422.2259826660156\n            ],\n            [\n              85.3154296875,\n              422.2259826660156\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            367.3828125,\n            482.40185546875,\n            422.2259826660156\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/227/ListItem/8\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">add(k, v)<b>:</b> Add a new item that maps from key k to value v. With a Python dictionary, d, this operation is written d[k] = v.</li>\",\n              \"polygon\": [\n                [\n                  85.46484375,\n                  367.3828125\n                ],\n                [\n                  482.3996887207031,\n                  367.3828125\n                ],\n                [\n                  482.3996887207031,\n                  389.9999694824219\n                ],\n                [\n                  85.46484375,\n                  389.9999694824219\n                ]\n              ],\n              \"bbox\": [\n                85.46484375,\n                367.3828125,\n                482.3996887207031,\n                389.9999694824219\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\",\n                \"4\": \"/page/227/SectionHeader/5\"\n              },\n              \"images\": {}\n            },\n            {\n              \"id\": \"/page/227/ListItem/9\",\n              \"block_type\": \"ListItem\",\n              \"html\": \"<li block-type=\\\"ListItem\\\">get(target)<b>:</b> Look up and return the value that corresponds to key target. With a Python dictionary, d, this operation is written d[target] or d.get(target).</li>\",\n              \"polygon\": [\n                [\n                  85.3154296875,\n                  399.48046875\n                ],\n                [\n                  482.40185546875,\n                  399.48046875\n                ],\n                [\n                  482.40185546875,\n                  422.2259826660156\n                ],\n                [\n                  85.3154296875,\n                  422.2259826660156\n                ]\n              ],\n              \"bbox\": [\n                85.3154296875,\n                399.48046875,\n                482.40185546875,\n                422.2259826660156\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\",\n                \"4\": \"/page/227/SectionHeader/5\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/227/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">For now, I assume that each key only appears once. The simplest implementation of this interface uses a list of tuples, where each tuple is a key-value pair.</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              435.83203125\n            ],\n            [\n              482.40325927734375,\n              435.83203125\n            ],\n            [\n              482.40325927734375,\n              459.03515625\n            ],\n            [\n              85.0166015625,\n              459.03515625\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            435.83203125,\n            482.40325927734375,\n            459.03515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">class LinearMap(object):</p>\",\n          \"polygon\": [\n            [\n              86.39999389648438,\n              464.0308532714844\n            ],\n            [\n              211.93869018554688,\n              464.0308532714844\n            ],\n            [\n              211.93869018554688,\n              474.1171875\n            ],\n            [\n              86.39999389648438,\n              474.1171875\n            ]\n          ],\n          \"bbox\": [\n            86.39999389648438,\n            464.0308532714844,\n            211.93869018554688,\n            474.1171875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/Code/12\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def __init__(self):\\n    self.items = []\\ndef add(self, k, v):\\n    self.items.append((k, v))\\ndef get(self, k):\\n    for key, val in self.items:\\n        if key == k:\\n            return val\\n    raise KeyError</pre>\",\n          \"polygon\": [\n            [\n              106.00927734375,\n              485.33203125\n            ],\n            [\n              271.3359375,\n              485.33203125\n            ],\n            [\n              271.3359375,\n              621.45703125\n            ],\n            [\n              106.00927734375,\n              621.45703125\n            ]\n          ],\n          \"bbox\": [\n            106.00927734375,\n            485.33203125,\n            271.3359375,\n            621.45703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">add appends a key-value tuple to the list of items, which takes constant time.</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              625.7109375\n            ],\n            [\n              423.9788818359375,\n              625.7109375\n            ],\n            [\n              423.9788818359375,\n              636.4840393066406\n            ],\n            [\n              85.763671875,\n              636.4840393066406\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            625.7109375,\n            423.9788818359375,\n            636.4840393066406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">get uses a for loop to search the list: if it finds the target key it returns the corresponding value; otherwise it raises a KeyError. So get is linear.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              646.3528900146484\n            ],\n            [\n              482.4022216796875,\n              646.3528900146484\n            ],\n            [\n              482.4022216796875,\n              668.6600494384766\n            ],\n            [\n              85.6142578125,\n              668.6600494384766\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            646.3528900146484,\n            482.4022216796875,\n            668.6600494384766\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/227/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\" class=\\\"has-continuation\\\">An alternative is to keep the list sorted by key. Then get could use a bisection search, which is <i>O</i>(log <i>n</i>). But inserting a new item in the middle of a list is linear, so this might</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              678.3046875\n            ],\n            [\n              482.607421875,\n              678.3046875\n            ],\n            [\n              482.607421875,\n              700.8350448608398\n            ],\n            [\n              85.763671875,\n              700.8350448608398\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            678.3046875,\n            482.607421875,\n            700.8350448608398\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/222/SectionHeader/1\",\n        \"2\": \"/page/225/SectionHeader/1\",\n        \"4\": \"/page/227/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/228/Page/200\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/228/PageHeader/0'></content-ref><content-ref src='/page/228/PageHeader/12'></content-ref><content-ref src='/page/228/Text/1'></content-ref><content-ref src='/page/228/Text/2'></content-ref><content-ref src='/page/228/Text/3'></content-ref><content-ref src='/page/228/Code/4'></content-ref><content-ref src='/page/228/Text/5'></content-ref><content-ref src='/page/228/Text/6'></content-ref><content-ref src='/page/228/Text/7'></content-ref><content-ref src='/page/228/Text/8'></content-ref><content-ref src='/page/228/Text/9'></content-ref><content-ref src='/page/228/Text/10'></content-ref><content-ref src='/page/228/Text/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/228/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.01904296875,\n              60.76318359375\n            ],\n            [\n              525.6033935546875,\n              60.76318359375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.01904296875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.01904296875,\n            60.76318359375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/PageHeader/12\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              60.37646484375\n            ],\n            [\n              525.638671875,\n              60.37646484375\n            ],\n            [\n              525.638671875,\n              69.65771484375\n            ],\n            [\n              510.099609375,\n              69.65771484375\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            60.37646484375,\n            525.638671875,\n            69.65771484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">not be the best option. There are other data structures (see <a href=\\\"http://en.wikipedia.org/wiki/Red-black_tree\\\">http://en.wikipedia.org/</a> <a href=\\\"http://en.wikipedia.org/wiki/Red-black_tree\\\">wiki/Red-black_tree</a>) that can implement add and get in log time, but that's still not as good as constant time, so let's move on.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              87.8818359375\n            ],\n            [\n              525.6397094726562,\n              87.8818359375\n            ],\n            [\n              525.6397094726562,\n              123.1868896484375\n            ],\n            [\n              128.197265625,\n              123.1868896484375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            87.8818359375,\n            525.6397094726562,\n            123.1868896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">One way to improve LinearMap is to break the list of key-value pairs into smaller lists. Here's an implementation called BetterMap, which is a list of 100 LinearMaps. As we'll see in a second, the order of growth for get is still linear, but BetterMap is a step on the path toward hashtables:</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              131.291015625\n            ],\n            [\n              525.6041259765625,\n              131.291015625\n            ],\n            [\n              525.6041259765625,\n              178.08685302734375\n            ],\n            [\n              128.9443359375,\n              178.08685302734375\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            131.291015625,\n            525.6041259765625,\n            178.08685302734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">class BetterMap(object):</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              182.3216552734375\n            ],\n            [\n              255.13873291015625,\n              182.3216552734375\n            ],\n            [\n              255.13873291015625,\n              192.28424072265625\n            ],\n            [\n              129.09375,\n              192.28424072265625\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            182.3216552734375,\n            255.13873291015625,\n            192.28424072265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>def __init__(self, n=100):\\n        self.maps = []\\n        for i in range(n):\\n            self.maps.append(LinearMap())\\n    def find_map(self, k):\\n        index = hash(k) % len(self.maps)\\n        return self.maps[index]\\n    def add(self, k, v):\\n        m = self.find_map(k)\\n        m.add(k, v)\\n    def get(self, k):\\n        m = self.find_map(k)\\n        return m.get(k)\\n__init__ makes a list of n LinearMaps.</pre>\",\n          \"polygon\": [\n            [\n              129.6000518798828,\n              204.9609375\n            ],\n            [\n              346.04296875,\n              204.9609375\n            ],\n            [\n              346.04296875,\n              414.0838317871094\n            ],\n            [\n              129.6000518798828,\n              414.0838317871094\n            ]\n          ],\n          \"bbox\": [\n            129.6000518798828,\n            204.9609375,\n            346.04296875,\n            414.0838317871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">find_map is used by add and get to figure out which map to put the new item in, or which map to search.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              422.2896728515625\n            ],\n            [\n              525.638671875,\n              422.2896728515625\n            ],\n            [\n              525.638671875,\n              444.7265625\n            ],\n            [\n              129.392578125,\n              444.7265625\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            422.2896728515625,\n            525.638671875,\n            444.7265625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">find_map uses the built-in function hash, which takes almost any Python object and returns an integer. A limitation of this implementation is that it only works with hashable keys. Mutable types like lists and dictionaries are unhashable.</p>\",\n          \"polygon\": [\n            [\n              128.9443359375,\n              452.8016662597656\n            ],\n            [\n              525.6033325195312,\n              452.8016662597656\n            ],\n            [\n              525.6033325195312,\n              487.3028259277344\n            ],\n            [\n              128.9443359375,\n              487.3028259277344\n            ]\n          ],\n          \"bbox\": [\n            128.9443359375,\n            452.8016662597656,\n            525.6033325195312,\n            487.3028259277344\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Hashable objects that are considered equal return the same hash value, but the converse is not necessarily true: two different objects can return the same hash value.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              495.0\n            ],\n            [\n              525.9375,\n              495.0\n            ],\n            [\n              525.9375,\n              517.8148193359375\n            ],\n            [\n              128.3466796875,\n              517.8148193359375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            495.0,\n            525.9375,\n            517.8148193359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">find_map uses the modulus operator to wrap the hash values into the range from 0 to len(self.maps), so the result is a legal index into the list. Of course, this means that many different hash values will wrap onto the same index. But if the hash function spreads things out pretty evenly (which is what hash functions are designed to do), then we expect <i>n</i>/100 items per LinearMap.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              525.55078125\n            ],\n            [\n              525.638671875,\n              525.55078125\n            ],\n            [\n              525.638671875,\n              584.9098205566406\n            ],\n            [\n              128.794921875,\n              584.9098205566406\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            525.55078125,\n            525.638671875,\n            584.9098205566406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Since the run time of LinearMap.get is proportional to the number of items, we expect BetterMap to be about 100 times faster than LinearMap. The order of growth is still linear, but the leading coefficient is smaller. That's nice, but still not as good as a hashtable.</p>\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              593.1156616210938\n            ],\n            [\n              525.6040649414062,\n              593.1156616210938\n            ],\n            [\n              525.6040649414062,\n              627.6168212890625\n            ],\n            [\n              128.3466796875,\n              627.6168212890625\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            593.1156616210938,\n            525.6040649414062,\n            627.6168212890625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here (finally) is the crucial idea that makes hashtables fast: if you can keep the maximum length of the LinearMaps bounded, LinearMap.get is constant time. All you have to do is keep track of the number of items and when the number of items per LinearMap exceeds a threshold, resize the hashtable by adding more LinearMaps.</p>\",\n          \"polygon\": [\n            [\n              127.7490234375,\n              635.765625\n            ],\n            [\n              525.6033935546875,\n              635.765625\n            ],\n            [\n              525.6033935546875,\n              682.5168380737305\n            ],\n            [\n              127.7490234375,\n              682.5168380737305\n            ]\n          ],\n          \"bbox\": [\n            127.7490234375,\n            635.765625,\n            525.6033935546875,\n            682.5168380737305\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/228/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here is an implementation of a hashtable:</p>\",\n          \"polygon\": [\n            [\n              128.27197265625,\n              690.6796875\n            ],\n            [\n              312.812255859375,\n              690.6796875\n            ],\n            [\n              312.812255859375,\n              700.8348388671875\n            ],\n            [\n              128.27197265625,\n              700.8348388671875\n            ]\n          ],\n          \"bbox\": [\n            128.27197265625,\n            690.6796875,\n            312.812255859375,\n            700.8348388671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/222/SectionHeader/1\",\n        \"2\": \"/page/225/SectionHeader/1\",\n        \"4\": \"/page/227/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/229/Page/185\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/229/PageHeader/0'></content-ref><content-ref src='/page/229/PageHeader/10'></content-ref><content-ref src='/page/229/Code/1'></content-ref><content-ref src='/page/229/Code/2'></content-ref><content-ref src='/page/229/Text/3'></content-ref><content-ref src='/page/229/Text/4'></content-ref><content-ref src='/page/229/Text/5'></content-ref><content-ref src='/page/229/Text/6'></content-ref><content-ref src='/page/229/Text/7'></content-ref><content-ref src='/page/229/Text/8'></content-ref><content-ref src='/page/229/Text/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/229/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.134765625\n            ],\n            [\n              482.4034423828125,\n              60.134765625\n            ],\n            [\n              482.4034423828125,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.134765625,\n            482.4034423828125,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/229/PageHeader/10\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              60.47314453125\n            ],\n            [\n              102.0498046875,\n              60.47314453125\n            ],\n            [\n              102.0498046875,\n              70.04443359375\n            ],\n            [\n              85.6142578125,\n              70.04443359375\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            60.47314453125,\n            102.0498046875,\n            70.04443359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/229/Code/1\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>class HashMap(object):\\n    def __init__(self):\\n        self.maps = BetterMap(2)\\n        self.num = 0\\n    def get(self, k):\\n        return self.maps.get(k)\\n    def add(self, k, v):\\n        if self.num == len(self.maps.maps):\\n            self.resize()\\n        self.maps.add(k, v)\\n        self.num += 1\\n    def resize(self):\\n        new_maps = BetterMap(self.num * 2)\\n        for m in self.maps.maps:\\n            for k, v in m.items:\\n                new_maps.add(k, v)</pre>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              88.68572998046875\n            ],\n            [\n              311.3056945800781,\n              88.68572998046875\n            ],\n            [\n              311.3056945800781,\n              369.31640625\n            ],\n            [\n              86.4000015258789,\n              369.31640625\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            88.68572998046875,\n            311.3056945800781,\n            369.31640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/229/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>self.maps = new_maps</pre>\",\n          \"polygon\": [\n            [\n              127.1513671875,\n              369.123046875\n            ],\n            [\n              232.8502655029297,\n              369.123046875\n            ],\n            [\n              232.8502655029297,\n              379.1173095703125\n            ],\n            [\n              127.1513671875,\n              379.1173095703125\n            ]\n          ],\n          \"bbox\": [\n            127.1513671875,\n            369.123046875,\n            232.8502655029297,\n            379.1173095703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/229/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Each HashMap contains a BetterMap; __init__ starts with just 2 LinearMaps and initializes num, which keeps track of the number of items.</p>\",\n          \"polygon\": [\n            [\n              85.3154296875,\n              384.978515625\n            ],\n            [\n              482.4005432128906,\n              384.978515625\n            ],\n            [\n              482.4005432128906,\n              407.8648681640625\n            ],\n            [\n              85.3154296875,\n              407.8648681640625\n            ]\n          ],\n          \"bbox\": [\n            85.3154296875,\n            384.978515625,\n            482.4005432128906,\n            407.8648681640625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/229/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">get just dispatches to BetterMap. The real work happens in add, which checks the number of items and the size of the BetterMap: if they are equal, the average number of items per LinearMap is 1, so it calls resize.</p>\",\n          \"polygon\": [\n            [\n              85.166015625,\n              417.26953125\n            ],\n            [\n              482.4026794433594,\n              417.26953125\n            ],\n            [\n              482.4026794433594,\n              452.6288757324219\n            ],\n            [\n              85.166015625,\n              452.6288757324219\n            ]\n          ],\n          \"bbox\": [\n            85.166015625,\n            417.26953125,\n            482.4026794433594,\n            452.6288757324219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/229/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">resize make a new BetterMap, twice as big as the previous one, and then \\\"rehashes\\\" the items from the old map to the new.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              462.515625\n            ],\n            [\n              482.4041748046875,\n              462.515625\n            ],\n            [\n              482.4041748046875,\n              485.1978759765625\n            ],\n            [\n              85.46484375,\n              485.1978759765625\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            462.515625,\n            482.4041748046875,\n            485.1978759765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/229/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Rehashing is necessary because changing the number of LinearMaps changes the denominator of the modulus operator in find_map. That means that some objects that used to wrap into the same LinearMap will get split up (which is what we wanted, right?).</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              495.0\n            ],\n            [\n              482.4034118652344,\n              495.0\n            ],\n            [\n              482.4034118652344,\n              529.9618835449219\n            ],\n            [\n              85.46484375,\n              529.9618835449219\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            495.0,\n            482.4034118652344,\n            529.9618835449219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/229/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Rehashing is linear, so resize is linear, which might seem bad, since I promised that add would be constant time. But remember that we don't have to resize every time, so add is usually constant time and only occasionally linear. The total amount of work to run add <i>n</i> times is proportional to <i>n</i>, so the average time of each add is constant time!</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              539.47265625\n            ],\n            [\n              482.40411376953125,\n              539.47265625\n            ],\n            [\n              482.40411376953125,\n              586.9188842773438\n            ],\n            [\n              85.9130859375,\n              586.9188842773438\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            539.47265625,\n            482.40411376953125,\n            586.9188842773438\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/229/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">To see how this works, think about starting with an empty HashTable and adding a sequence of items. We start with 2 LinearMaps, so the first 2 adds are fast (no resizing required). Let's say that they take one unit of work each. The next add requires a resize, so we have to rehash the first two items (let's call that 2 more units of work) and then add the third item (one more unit). Adding the next item costs 1 unit, so the total so far is 6 units of work for 4 items.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              596.3203125\n            ],\n            [\n              482.90625,\n              596.3203125\n            ],\n            [\n              482.90625,\n              668.2659072875977\n            ],\n            [\n              86.0625,\n              668.2659072875977\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            596.3203125,\n            482.90625,\n            668.2659072875977\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/229/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The next add costs 5 units, but the next three are only one unit each, so the total is 14 units for the first 8 adds.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              677.91796875\n            ],\n            [\n              482.90625,\n              677.91796875\n            ],\n            [\n              482.90625,\n              700.8349075317383\n            ],\n            [\n              85.9130859375,\n              700.8349075317383\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            677.91796875,\n            482.90625,\n            700.8349075317383\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/222/SectionHeader/1\",\n        \"2\": \"/page/225/SectionHeader/1\",\n        \"4\": \"/page/227/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/230/Page/121\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/230/PageHeader/0'></content-ref><content-ref src='/page/230/PageHeader/9'></content-ref><content-ref src='/page/230/FigureGroup/120'></content-ref><content-ref src='/page/230/Text/3'></content-ref><content-ref src='/page/230/Text/4'></content-ref><content-ref src='/page/230/Text/5'></content-ref><content-ref src='/page/230/Text/6'></content-ref><content-ref src='/page/230/Text/7'></content-ref><content-ref src='/page/230/Text/8'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/230/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.197265625,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.197265625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/230/PageHeader/9\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.203125,\n              60.908203125\n            ],\n            [\n              524.14453125,\n              60.908203125\n            ],\n            [\n              524.14453125,\n              70.0927734375\n            ],\n            [\n              509.203125,\n              70.0927734375\n            ]\n          ],\n          \"bbox\": [\n            509.203125,\n            60.908203125,\n            524.14453125,\n            70.0927734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/230/FigureGroup/120\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/230/Figure/1'></content-ref><content-ref src='/page/230/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              10.458984375,\n              77.48876953125\n            ],\n            [\n              612.0,\n              77.48876953125\n            ],\n            [\n              611.103515625,\n              268.7529296875\n            ],\n            [\n              9.263671875,\n              268.7529296875\n            ]\n          ],\n          \"bbox\": [\n            9.263671875,\n            77.48876953125,\n            612.0,\n            268.7529296875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/230/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  10.458984375,\n                  77.48876953125\n                ],\n                [\n                  612.0,\n                  77.48876953125\n                ],\n                [\n                  611.103515625,\n                  251.173828125\n                ],\n                [\n                  9.263671875,\n                  251.173828125\n                ]\n              ],\n              \"bbox\": [\n                9.263671875,\n                77.48876953125,\n                612.0,\n                251.173828125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\",\n                \"4\": \"/page/227/SectionHeader/5\"\n              },\n              \"images\": {\n                \"/page/230/Figure/1\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAHPBkcDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD3+iiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiqmqSPFpF7JGxV0gdlYdQQpwa4/w74Xk1PwxpN/ceJfERnubOGaQrqBA3MgJwMepoA7uiuX/wCEJX/oZfEn/gxP+FH/AAhK/wDQy+JP/Bif8KAOoorl/wDhCV/6GXxJ/wCDE/4Uf8ISv/Qy+JP/AAYn/CgDqKK4S+0q48P+IPDT2+u6zcJdaibeaK6uzIjJ5Ez9MeqLXd0AFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAFLWP+QJf/8AXtJ/6Cao+Df+RG8P/wDYNtv/AEUtXtY/5Al//wBe0n/oJqj4N/5Ebw//ANg22/8ARS0AbdFFFABRRRQBy/iz/kNeEP8AsMH/ANJbiuorl/Fn/Ia8If8AYYP/AKS3Fa+sf2yLZDov2Azh8ut7vCsuDwCvKnOOcH6UAaNFcr/wk+tWPGr+Er5VHWbTZUu0/wC+flk/8cqzZeOfDV9OLdNXgguT/wAu93m3l/74kCt+lAHQ0UgIIBByD0IpaACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooApax/wAgS/8A+vaT/wBBNUfBv/IjeH/+wbbf+ilq9rH/ACBL/wD69pP/AEE1R8G/8iN4f/7Btt/6KWgDbooooAr31ja6lZS2d7bx3FtMu2SKRdysPQiuf/4Vv4K/6FfSv/AZa6iigDzXxL4C8J22reF44PDumxpcaoYplW3UB0+zzNtPqMqp/AVo6x4F8MWFsjaf4BsNSmd9vlxxwxhBgnczORgfTJ56Vo+LP+Q14Q/7DB/9JbiuooA8t/4Vm+o/f8PeEtFiPaKzN5KPxOxQfwNW7P4I+D45Vm1C2fUJRz8wSBM/7kKoMfXNej0UAU9L0nT9FsUstMs4bS2TpHCgUfX3PvVyiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKOtsqaDqLMQFW1lJJ7Daa4bwt8TfBdn4R0W1uPENpHPDYQRyI27KsI1BB47EV3Wsf8gS//AOvaT/0E1R8G/wDIjeH/APsG23/opaAMn/ha3gX/AKGWy/Nv8KP+FreBf+hlsvzb/CuxooA47/ha3gX/AKGWy/Nv8KP+FreBf+hlsvzb/CuxooA831Lxv4a8R+JfCdppGsW95OmqmRkjzkL9mnGeR6sB+NekVy/iz/kNeEP+wwf/AEluK6igAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooApax/yBL/8A69pP/QTVHwb/AMiN4f8A+wbbf+ilq9rH/IEv/wDr2k/9BNUfBv8AyI3h/wD7Btt/6KWgDbooooAKKKKAOX8Wf8hrwh/2GD/6S3FdRXL+LP8AkNeEP+wwf/SW4rqKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigClrH/IEv8A/r2k/wDQTVHwb/yI3h//ALBtt/6KWr2sf8gS/wD+vaT/ANBNUfBv/IjeH/8AsG23/opaANuiiigAooooA5fxZ/yGvCH/AGGD/wCktxXUVy/iz/kNeEP+wwf/AEluK6igAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAo62WGg6iVALfZZcAnGTtNcP4W1rxpH4Q0VLfwdZzQLYQCORtZCF18tcEr5Rxkc4ycV3Osf8gS//wCvaT/0E1R8G/8A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oAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooApax/yBL/8A69pP/QTVHwb/AMiN4f8A+wbbf+ilq9rH/IEv/wDr2k/9BNUfBv8AyI3h/wD7Btt/6KWgDbooooAKKKKAOX8Wf8hrwh/2GD/6S3FdRXL+LP8AkNeEP+wwf/SW4rqKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoorE1Xxj4b0O8+x6prdjZ3O0P5U0wVsHocGgDborl/wDhZHgr/oaNK/8AAlaP+FkeCv8AoaNK/wDAlaAOoorl/wDhZHgr/oaNK/8AAlaP+FkeCv8AoaNK/wDAlaAOoorl/wDhZHgr/oaNK/8AAla6K0u7e/s4bu0mSa3mQPHLGcq6noQfSgCaiiigAooooAKKKKACiiigAooooAKK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UUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUV574U0K713w3a6nd+KPECz3BkZliulVRh2AAG3pgCgD0KiuX/4Qt/8AoafEn/gYv/xFH/CFv/0NPiT/AMDF/wDiKAOoorl/+ELf/oafEn/gYv8A8RR/whb/APQ0+JP/AAMX/wCIoA6iiuA17RrvQBpV7beJddlZtWs4XiuLlXR0eZVZSNo6gmu/oAKKKKACiiigArl9I/5KL4n/AOvSw/8Aa1dRXnNx4ZOv/EjxCw13WtN8q1suNOuhEHyJfvfKc4xx9TQB6NRXEf8ACuG/6Hbxj/4Mh/8AEUf8K4b/AKHbxj/4Mh/8RQB29FcR/wAK4b/odvGP/gyH/wARR/wrhv8AodvGP/gyH/xFAHbN90/SuZ+HH/JNvDn/AGD4f/QRWcfhw20/8Vt4x/8ABkP/AIitD4bjHw18ODJP/EviPP8AuigDqKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigClrH/ACBL/wD69pP/AEE1R8G/8iN4f/7Btt/6KWrutru0HUVyRm1lGR1HymuB8L/D9rrwlo1x/wAJj4sh82xgfyodRComY1O1Rs4A6AUAemUVxH/CuG/6Hbxj/wCDIf8AxFH/AArhv+h28Y/+DIf/ABFAHb0VxH/CuG/6Hbxj/wCDIf8AxFH/AArhv+h28Y/+DIf/ABFAF/xZ/wAhrwh/2GD/AOktxXUV5pf+EjoXifwncnxFr+o79VKeVqF4JUX/AEeY7gNo54xn0Jr0ugAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK5f4df8AIh6Z9JP/AEY9dRXL/Dr/AJEPTPpJ/wCjHoA6iiiigAooooA5fx1/yDNJ/wCw3p//AKUpXUVy/jr/AJBmk/8AYb0//wBKUrb1T+0/sTHSBaG7DDAu9wjI7jK8g+/NAF2iuV/4SXXbDjV/CV5tHBm0uZLtPrtOyT8lNWLPx14avJxb/wBqxWt0f+Xe9VraXPpskCk/hQB0VFIrBlDKQQRkEd6WgArl9I/5KL4n/wCvSw/9rV1FcvpH/JRfE/8A16WH/tagDqKKKKACiiigBG+6fpXM/Dj/AJJt4c/7B8P/AKCK6Zvun6VzPw4/5Jt4c/7B8P8A6CKAOnooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAKWsf8gS//wCvaT/0E1R8G/8AIjeH/wDsG23/AKKWr2sf8gS//wCvaT/0E1R8G/8AIjeH/wDsG23/AKKWgDbooooAKKKKAOX8Wf8AIa8If9hg/wDpLcV1Fcv4s/5DXhD/ALDB/wDSW4rqKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigArl/h1/yIemfST/0Y9dRXL/Dr/kQ9M+kn/ox6AOoooooAjngiureW3nQSQyoUdG6MpGCD+Fc3/wAK48G/9C7Y/wDfuuoooA818Y+A/Ctnp+mvbaFZxNJq9jExVOqNOisPoQSK1dU8CeFbCyaa18GQ6hNuCrBAqKxz3y7KAPXmrvjr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\"\n              }\n            },\n            {\n              \"id\": \"/page/230/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-230-0\\\"></span>Figure B.1: The cost of a hashtable add.</p>\",\n              \"polygon\": [\n                [\n                  239.8095703125,\n                  258.521484375\n                ],\n                [\n                  414.7734375,\n                  258.521484375\n                ],\n                [\n                  414.7734375,\n                  268.7529296875\n                ],\n                [\n                  239.8095703125,\n                  268.7529296875\n                ]\n              ],\n              \"bbox\": [\n                239.8095703125,\n                258.521484375,\n                414.7734375,\n                268.7529296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/222/SectionHeader/1\",\n                \"2\": \"/page/225/SectionHeader/1\",\n                \"4\": \"/page/227/SectionHeader/5\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/230/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The next add costs 9 units, but then we can add 7 more before the next resize, so the total is 30 units for the first 16 adds.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              290.8125\n            ],\n            [\n              527.431640625,\n              290.8125\n            ],\n            [\n              527.431640625,\n              313.6438903808594\n            ],\n            [\n              128.794921875,\n              313.6438903808594\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            290.8125,\n            527.431640625,\n            313.6438903808594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/230/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">After 32 adds, the total cost is 62 units, and I hope you are starting to see a pattern. After <i>n</i> adds, where <i>n</i> is a power of two, the total cost is 2<i>n</i> − 2 units, so the average work per add is a little less than 2 units. When <i>n</i> is a power of two, that's the best case; for other values of <i>n</i> the average work is a little higher, but that's not important. The important thing is that it is <i>O</i>(1).</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              323.6466064453125\n            ],\n            [\n              527.431640625,\n              323.6466064453125\n            ],\n            [\n              527.431640625,\n              382.55889892578125\n            ],\n            [\n              128.794921875,\n              382.55889892578125\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            323.6466064453125,\n            527.431640625,\n            382.55889892578125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/230/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-230-0\\\">B.1</a> shows how this works graphically. Each block represents a unit of work. The columns show the total work for each add in order from left to right: the first two adds cost 1 units, the third costs 3 units, etc.</p>\",\n          \"polygon\": [\n            [\n              129.59999084472656,\n              391.939453125\n            ],\n            [\n              526.53515625,\n              391.939453125\n            ],\n            [\n              526.53515625,\n              427.08489990234375\n            ],\n            [\n              129.59999084472656,\n              427.08489990234375\n            ]\n          ],\n          \"bbox\": [\n            129.59999084472656,\n            391.939453125,\n            526.53515625,\n            427.08489990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/230/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The extra work of rehashing appears as a sequence of increasingly tall towers with increasing space between them. Now if you knock over the towers, amortizing the cost of resizing over all adds, you can see graphically that the total cost after <i>n</i> adds is 2<i>n</i> − 2.</p>\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              436.9921875\n            ],\n            [\n              526.53515625,\n              436.9921875\n            ],\n            [\n              526.53515625,\n              471.796875\n            ],\n            [\n              129.2431640625,\n              471.796875\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            436.9921875,\n            526.53515625,\n            471.796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/230/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">An important feature of this algorithm is that when we resize the HashTable it grows geometrically; that is, we multiply the size by a constant. If you increase the size arithmetically—adding a fixed number each time—the average time per add is linear.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              481.46484375\n            ],\n            [\n              526.833984375,\n              481.46484375\n            ],\n            [\n              526.833984375,\n              516.1369018554688\n            ],\n            [\n              129.392578125,\n              516.1369018554688\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            481.46484375,\n            526.833984375,\n            516.1369018554688\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/230/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can download my implementation of HashMap from <a href=\\\"http://thinkpython/code/Map.py\\\">http://thinkpython/code/</a> <a href=\\\"http://thinkpython/code/Map.py\\\">Map.py</a>, but remember that there is no reason to use it; if you want a map, just use a Python dictionary.</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              525.55078125\n            ],\n            [\n              526.53515625,\n              525.55078125\n            ],\n            [\n              526.53515625,\n              560.6629028320312\n            ],\n            [\n              129.5419921875,\n              560.6629028320312\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            525.55078125,\n            526.53515625,\n            560.6629028320312\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/222/SectionHeader/1\",\n        \"2\": \"/page/225/SectionHeader/1\",\n        \"4\": \"/page/227/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/231/Page/3\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/231/PageHeader/1'></content-ref><content-ref src='/page/231/Text/0'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/231/PageHeader/1\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.568359375,\n              59.98974609375\n            ],\n            [\n              101.302734375,\n              59.98974609375\n            ],\n            [\n              101.302734375,\n              70.52783203125\n            ],\n            [\n              84.568359375,\n              70.52783203125\n            ]\n          ],\n          \"bbox\": [\n            84.568359375,\n            59.98974609375,\n            101.302734375,\n            70.52783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/231/Text/0\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><b>210 Appendix B. Analysis of Algorithms</b></p>\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              59.5546875\n            ],\n            [\n              482.607421875,\n              59.5546875\n            ],\n            [\n              482.607421875,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            59.5546875,\n            482.607421875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/225/SectionHeader/1\",\n            \"4\": \"/page/227/SectionHeader/5\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/222/SectionHeader/1\",\n        \"2\": \"/page/225/SectionHeader/1\",\n        \"4\": \"/page/227/SectionHeader/5\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/232/Page/129\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/232/SectionHeader/0'></content-ref><content-ref src='/page/232/SectionHeader/1'></content-ref><content-ref src='/page/232/Text/2'></content-ref><content-ref src='/page/232/Text/3'></content-ref><content-ref src='/page/232/Text/4'></content-ref><content-ref src='/page/232/Text/5'></content-ref><content-ref src='/page/232/Text/6'></content-ref><content-ref src='/page/232/Text/7'></content-ref><content-ref src='/page/232/Text/8'></content-ref><content-ref src='/page/232/Text/9'></content-ref><content-ref src='/page/232/Text/10'></content-ref><content-ref src='/page/232/SectionHeader/11'></content-ref><content-ref src='/page/232/Text/12'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/232/SectionHeader/0\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-232-0\\\"></span><b>Appendix C</b></h2>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              161.068359375\n            ],\n            [\n              246.533203125,\n              161.068359375\n            ],\n            [\n              246.533203125,\n              182.990966796875\n            ],\n            [\n              128.49609375,\n              182.990966796875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            161.068359375,\n            246.533203125,\n            182.990966796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/222/SectionHeader/1\",\n            \"2\": \"/page/232/SectionHeader/0\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/SectionHeader/1\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h1><b>Lumpy</b></h1>\",\n          \"polygon\": [\n            [\n              129.09375,\n              215.89129638671875\n            ],\n            [\n              212.765625,\n              215.89129638671875\n            ],\n            [\n              212.765625,\n              241.69921875\n            ],\n            [\n              129.09375,\n              241.69921875\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            215.89129638671875,\n            212.765625,\n            241.69921875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Throughout the book, I have used diagrams to represent the state of running programs.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              286.9453125\n            ],\n            [\n              514.58203125,\n              286.9453125\n            ],\n            [\n              514.58203125,\n              297.2768859863281\n            ],\n            [\n              129.09375,\n              297.2768859863281\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            286.9453125,\n            514.58203125,\n            297.2768859863281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In Section <a href=\\\"#page-33-0\\\">2.2,</a> we used a state diagram to show the names and values of variables. In Section <a href=\\\"#page-46-0\\\">3.10</a> I introduced a stack diagram, which shows one frame for each function call. Each frame shows the parameters and local variables for the function or method. Stack diagrams for recursive functions appear in Section <a href=\\\"#page-66-0\\\">5.9</a> and Section <a href=\\\"#page-76-0\\\">6.5.</a></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              304.734375\n            ],\n            [\n              527.1328125,\n              304.734375\n            ],\n            [\n              527.1328125,\n              352.20489501953125\n            ],\n            [\n              128.6455078125,\n              352.20489501953125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            304.734375,\n            527.1328125,\n            352.20489501953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Section <a href=\\\"#page-108-2\\\">10.2</a> shows what a list looks like in a state diagram, Section <a href=\\\"#page-126-0\\\">11.4</a> shows what a dictionary looks like, and Section <a href=\\\"#page-138-0\\\">12.6</a> shows two ways to represent tuples.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              360.421875\n            ],\n            [\n              526.236328125,\n              360.421875\n            ],\n            [\n              526.236328125,\n              382.743896484375\n            ],\n            [\n              128.197265625,\n              382.743896484375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            360.421875,\n            526.236328125,\n            382.743896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Section <a href=\\\"#page-165-0\\\">15.2</a> introduces object diagrams, which show the state of an object's attributes, and their attributes, and so on. Section <a href=\\\"#page-166-0\\\">15.3</a> has object diagrams for Rectangles and their embedded Points. Section <a href=\\\"#page-172-1\\\">16.1</a> shows the state of a Time object. Section <a href=\\\"#page-189-0\\\">18.2</a> has a diagram that includes a class object and an instance, each with their own attributes.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              390.5859375\n            ],\n            [\n              526.236328125,\n              390.5859375\n            ],\n            [\n              526.236328125,\n              437.6708984375\n            ],\n            [\n              129.392578125,\n              437.6708984375\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            390.5859375,\n            526.236328125,\n            437.6708984375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Finally, Section <a href=\\\"#page-194-0\\\">18.8</a> introduces class diagrams, which show the classes that make up a program and the relationships between them.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              446.0533142089844\n            ],\n            [\n              526.53515625,\n              446.0533142089844\n            ],\n            [\n              526.53515625,\n              468.20989990234375\n            ],\n            [\n              128.6455078125,\n              468.20989990234375\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            446.0533142089844,\n            526.53515625,\n            468.20989990234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">These diagrams are based on the Unified Modeling Language (UML), which is a standardized graphical language used by software engineers to communicate about program design, especially for object-oriented programs.</p>\",\n          \"polygon\": [\n            [\n              129.09375,\n              476.4375\n            ],\n            [\n              525.9375,\n              476.4375\n            ],\n            [\n              525.9375,\n              510.9429016113281\n            ],\n            [\n              129.09375,\n              510.9429016113281\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            476.4375,\n            525.9375,\n            510.9429016113281\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">UML is a rich language with many kinds of diagrams that represent many kinds of relationship between objects and classes. What I presented in this book is a small subset of the language, but it is the subset most commonly used in practice.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              518.9765625\n            ],\n            [\n              526.236328125,\n              518.9765625\n            ],\n            [\n              526.236328125,\n              553.6759033203125\n            ],\n            [\n              128.794921875,\n              553.6759033203125\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            518.9765625,\n            526.236328125,\n            553.6759033203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The purpose of this appendix is to review the diagrams presented in the previous chapters, and to introduce Lumpy. Lumpy, which stands for \\\"UML in Python,\\\" with some of the letters rearranged, is part of Swampy, which you already installed if you worked on the case study in Chapter <a href=\\\"#page-52-0\\\">4</a> or Chapter <a href=\\\"#page-200-0\\\">19,</a> or if you did Exercise <a href=\\\"#page-170-2\\\">15.4,</a></p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              561.90234375\n            ],\n            [\n              526.53515625,\n              561.90234375\n            ],\n            [\n              526.53515625,\n              608.6039123535156\n            ],\n            [\n              128.6455078125,\n              608.6039123535156\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            561.90234375,\n            526.53515625,\n            608.6039123535156\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Lumpy uses Python's inspect module to examine the state of a running program and generate object diagrams (including stack diagrams) and class diagrams.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              616.4296875\n            ],\n            [\n              526.236328125,\n              616.4296875\n            ],\n            [\n              526.236328125,\n              639.1419067382812\n            ],\n            [\n              128.197265625,\n              639.1419067382812\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            616.4296875,\n            526.236328125,\n            639.1419067382812\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/SectionHeader/11\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-232-1\\\"></span><b>C.1 State diagram</b></h4>\",\n          \"polygon\": [\n            [\n              127.4501953125,\n              665.9296875\n            ],\n            [\n              256.5439453125,\n              665.9296875\n            ],\n            [\n              256.5439453125,\n              680.3199615478516\n            ],\n            [\n              127.4501953125,\n              680.3199615478516\n            ]\n          ],\n          \"bbox\": [\n            127.4501953125,\n            665.9296875,\n            256.5439453125,\n            680.3199615478516\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/232/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's an example that uses Lumpy to generate a state diagram.</p>\",\n          \"polygon\": [\n            [\n              126.703125,\n              690.6796875\n            ],\n            [\n              411.81048583984375,\n              690.6796875\n            ],\n            [\n              411.81048583984375,\n              700.8349151611328\n            ],\n            [\n              126.703125,\n              700.8349151611328\n            ]\n          ],\n          \"bbox\": [\n            126.703125,\n            690.6796875,\n            411.81048583984375,\n            700.8349151611328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/232/SectionHeader/1\",\n        \"4\": \"/page/232/SectionHeader/11\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/233/Page/175\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/233/PageHeader/0'></content-ref><content-ref src='/page/233/PageHeader/18'></content-ref><content-ref src='/page/233/Figure/1'></content-ref><content-ref src='/page/233/Text/2'></content-ref><content-ref src='/page/233/FigureGroup/172'></content-ref><content-ref src='/page/233/Text/5'></content-ref><content-ref src='/page/233/Code/6'></content-ref><content-ref src='/page/233/Code/7'></content-ref><content-ref src='/page/233/Code/8'></content-ref><content-ref src='/page/233/Text/9'></content-ref><content-ref src='/page/233/Text/10'></content-ref><content-ref src='/page/233/Text/11'></content-ref><content-ref src='/page/233/Text/12'></content-ref><content-ref src='/page/233/Text/13'></content-ref><content-ref src='/page/233/Text/14'></content-ref><content-ref src='/page/233/Text/15'></content-ref><content-ref src='/page/233/SectionHeader/16'></content-ref><content-ref src='/page/233/Text/17'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/233/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.27978515625\n            ],\n            [\n              482.4034729003906,\n              60.27978515625\n            ],\n            [\n              482.4034729003906,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.27978515625,\n            482.4034729003906,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/PageHeader/18\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.64306640625,\n              60.37646484375\n            ],\n            [\n              102.42333984375,\n              60.37646484375\n            ],\n            [\n              102.42333984375,\n              70.81787109375\n            ],\n            [\n              84.64306640625,\n              70.81787109375\n            ]\n          ],\n          \"bbox\": [\n            84.64306640625,\n            60.37646484375,\n            102.42333984375,\n            70.81787109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Figure/1\",\n          \"block_type\": \"Figure\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              201.111328125,\n              89.525390625\n            ],\n            [\n              366.36328125,\n              89.525390625\n            ],\n            [\n              366.36328125,\n              150.046875\n            ],\n            [\n              201.111328125,\n              150.046875\n            ]\n          ],\n          \"bbox\": [\n            201.111328125,\n            89.525390625,\n            366.36328125,\n            150.046875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {\n            \"/page/233/Figure/1\": \"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\"\n          }\n        },\n        {\n          \"id\": \"/page/233/Text/2\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\"><span id=\\\"page-233-1\\\"></span>Figure C.1: State diagram generated by Lumpy.</p>\",\n          \"polygon\": [\n            [\n              178.400390625,\n              162.615234375\n            ],\n            [\n              389.970703125,\n              162.615234375\n            ],\n            [\n              389.970703125,\n              173.7529296875\n            ],\n            [\n              178.400390625,\n              173.7529296875\n            ]\n          ],\n          \"bbox\": [\n            178.400390625,\n            162.615234375,\n            389.970703125,\n            173.7529296875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/FigureGroup/172\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/233/Figure/3'></content-ref><content-ref src='/page/233/Caption/4'></content-ref>\",\n          \"polygon\": [\n            [\n              171.6767578125,\n              187.751953125\n            ],\n            [\n              395.6484375,\n              187.751953125\n            ],\n            [\n              395.6484375,\n              232.0838623046875\n            ],\n            [\n              171.6767578125,\n              232.0838623046875\n            ]\n          ],\n          \"bbox\": [\n            171.6767578125,\n            187.751953125,\n            395.6484375,\n            232.0838623046875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/233/Figure/3\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  171.6767578125,\n                  187.751953125\n                ],\n                [\n                  395.6484375,\n                  187.751953125\n                ],\n                [\n                  395.6484375,\n                  207.66796875\n                ],\n                [\n                  171.6767578125,\n                  207.66796875\n                ]\n              ],\n              \"bbox\": [\n                171.6767578125,\n                187.751953125,\n                395.6484375,\n                207.66796875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"4\": \"/page/232/SectionHeader/11\"\n              },\n              \"images\": {\n                \"/page/233/Figure/3\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/233/Caption/4\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-233-2\\\"></span>Figure C.2: Stack diagram.</p>\",\n              \"polygon\": [\n                [\n                  226.0290069580078,\n                  220.623046875\n                ],\n                [\n                  342.770751953125,\n                  220.623046875\n                ],\n                [\n                  342.770751953125,\n                  232.0838623046875\n                ],\n                [\n                  226.0290069580078,\n                  232.0838623046875\n                ]\n              ],\n              \"bbox\": [\n                226.0290069580078,\n                220.623046875,\n                342.770751953125,\n                232.0838623046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"4\": \"/page/232/SectionHeader/11\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/233/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">from swampy.Lumpy import Lumpy</p>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              254.84765625\n            ],\n            [\n              243.544921875,\n              254.84765625\n            ],\n            [\n              243.544921875,\n              265.2802734375\n            ],\n            [\n              85.39013671875,\n              265.2802734375\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            254.84765625,\n            243.544921875,\n            265.2802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>lumpy = Lumpy()\\nlumpy.make_reference()</pre>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              279.2109375\n            ],\n            [\n              210.375,\n              279.2109375\n            ],\n            [\n              210.375,\n              301.8622741699219\n            ],\n            [\n              85.6142578125,\n              301.8622741699219\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            279.2109375,\n            210.375,\n            301.8622741699219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>message = 'And now for something completely different'\\nn = 17\\npi = 3.1415926535897932</pre>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              313.62890625\n            ],\n            [\n              368.7734069824219,\n              313.62890625\n            ],\n            [\n              368.7734069824219,\n              350.6402893066406\n            ],\n            [\n              86.13720703125,\n              350.6402893066406\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            313.62890625,\n            368.7734069824219,\n            350.6402893066406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>lumpy.object_diagram()</pre>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              364.095703125\n            ],\n            [\n              201.47799682617188,\n              364.095703125\n            ],\n            [\n              201.47799682617188,\n              375.0282897949219\n            ],\n            [\n              85.9130859375,\n              375.0282897949219\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            364.095703125,\n            201.47799682617188,\n            375.0282897949219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The first line imports the Lumpy class from swampy.Lumpy. If you don't have Swampy installed as a package, make sure the Swampy files are in Python's search path and use this import statement instead:</p>\",\n          \"polygon\": [\n            [\n              85.763671875,\n              380.53125\n            ],\n            [\n              482.607421875,\n              380.53125\n            ],\n            [\n              482.607421875,\n              416.49285888671875\n            ],\n            [\n              85.763671875,\n              416.49285888671875\n            ]\n          ],\n          \"bbox\": [\n            85.763671875,\n            380.53125,\n            482.607421875,\n            416.49285888671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">from Lumpy import Lumpy</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              422.68359375\n            ],\n            [\n              208.4326171875,\n              422.68359375\n            ],\n            [\n              208.4326171875,\n              433.2702941894531\n            ],\n            [\n              85.9130859375,\n              433.2702941894531\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            422.68359375,\n            208.4326171875,\n            433.2702941894531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The next lines create a Lumpy object and make a \\\"reference\\\" point, which means that Lumpy records the objects that have been defined so far.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              439.69921875\n            ],\n            [\n              482.90625,\n              439.69921875\n            ],\n            [\n              482.90625,\n              462.5408630371094\n            ],\n            [\n              86.0625,\n              462.5408630371094\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            439.69921875,\n            482.90625,\n            462.5408630371094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Next we define new variables and invoke object_diagram, which draws the objects that have been defined since the reference point, in this case message, n and pi.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              472.18359375\n            ],\n            [\n              482.90625,\n              472.18359375\n            ],\n            [\n              482.90625,\n              495.63287353515625\n            ],\n            [\n              85.6142578125,\n              495.63287353515625\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            472.18359375,\n            482.90625,\n            495.63287353515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-233-1\\\">C.1</a> shows the result. The graphical style is different from what I showed earlier; for example, each reference is represented by a circle next to the variable name and a line to the value. And long strings are truncated. But the information conveyed by the diagram is the same.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              505.0546875\n            ],\n            [\n              483.50390625,\n              505.0546875\n            ],\n            [\n              483.50390625,\n              553.1138916015625\n            ],\n            [\n              85.9130859375,\n              553.1138916015625\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            505.0546875,\n            483.50390625,\n            553.1138916015625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Text/14\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The variable names are in a frame labeled &lt;module&gt;, which indicates that these are modulelevel variables, also known as global.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              563.0625\n            ],\n            [\n              482.90625,\n              563.0625\n            ],\n            [\n              482.90625,\n              586.2058868408203\n            ],\n            [\n              86.0625,\n              586.2058868408203\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            563.0625,\n            482.90625,\n            586.2058868408203\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Text/15\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">You can download this example from <a href=\\\"http://thinkpython.com/code/lumpy_demo1.py\\\">http://thinkpython.com/code/lumpy_demo1.py</a>. Try adding some additional assignments and see what the diagram looks like.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              596.3203125\n            ],\n            [\n              482.90625,\n              596.3203125\n            ],\n            [\n              482.90625,\n              619.2978820800781\n            ],\n            [\n              86.0625,\n              619.2978820800781\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            596.3203125,\n            482.90625,\n            619.2978820800781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"4\": \"/page/232/SectionHeader/11\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/SectionHeader/16\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-233-0\\\"></span><b>C.2 Stack diagram</b></h2>\",\n          \"polygon\": [\n            [\n              86.0625,\n              649.30078125\n            ],\n            [\n              215.5015106201172,\n              649.30078125\n            ],\n            [\n              215.5015106201172,\n              665.2679290771484\n            ],\n            [\n              86.0625,\n              665.2679290771484\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            649.30078125,\n            215.5015106201172,\n            665.2679290771484\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/233/Text/17\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's an example that uses Lumpy to generate a stack diagram. You can download it from <a href=\\\"http://thinkpython.com/code/lumpy_demo2.py\\\">http://thinkpython.com/code/lumpy_demo2.py</a>.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              677.53125\n            ],\n            [\n              482.90625,\n              677.53125\n            ],\n            [\n              482.90625,\n              700.8348846435547\n            ],\n            [\n              85.9130859375,\n              700.8348846435547\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            677.53125,\n            482.90625,\n            700.8348846435547\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/232/SectionHeader/1\",\n        \"2\": \"/page/233/SectionHeader/16\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/234/Page/157\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/234/PageHeader/0'></content-ref><content-ref src='/page/234/PageHeader/12'></content-ref><content-ref src='/page/234/FigureGroup/155'></content-ref><content-ref src='/page/234/Code/3'></content-ref><content-ref src='/page/234/Text/4'></content-ref><content-ref src='/page/234/Text/5'></content-ref><content-ref src='/page/234/Text/6'></content-ref><content-ref src='/page/234/Text/7'></content-ref><content-ref src='/page/234/SectionHeader/8'></content-ref><content-ref src='/page/234/Text/9'></content-ref><content-ref src='/page/234/Text/10'></content-ref><content-ref src='/page/234/Code/11'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/234/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.3466796875,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              60.95654296875\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.3466796875,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.3466796875,\n            60.95654296875,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/234/PageHeader/12\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              60.521484375\n            ],\n            [\n              526.236328125,\n              60.521484375\n            ],\n            [\n              526.236328125,\n              70.189453125\n            ],\n            [\n              510.099609375,\n              70.189453125\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            60.521484375,\n            526.236328125,\n            70.189453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/234/FigureGroup/155\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/234/Figure/1'></content-ref><content-ref src='/page/234/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              264.1640625,\n              89.8193359375\n            ],\n            [\n              388.4765625,\n              89.8193359375\n            ],\n            [\n              388.4765625,\n              240.95196533203125\n            ],\n            [\n              264.1640625,\n              240.95196533203125\n            ]\n          ],\n          \"bbox\": [\n            264.1640625,\n            89.8193359375,\n            388.4765625,\n            240.95196533203125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/234/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  264.462890625,\n                  89.8193359375\n                ],\n                [\n                  385.5506286621094,\n                  89.8193359375\n                ],\n                [\n                  385.5506286621094,\n                  215.40234375\n                ],\n                [\n                  264.462890625,\n                  215.40234375\n                ]\n              ],\n              \"bbox\": [\n                264.462890625,\n                89.8193359375,\n                385.5506286621094,\n                215.40234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/233/SectionHeader/16\"\n              },\n              \"images\": {\n                \"/page/234/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/234/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-234-1\\\"></span>Figure C.3: Object diagram.</p>\",\n              \"polygon\": [\n                [\n                  264.1640625,\n                  230.87109375\n                ],\n                [\n                  388.4765625,\n                  230.87109375\n                ],\n                [\n                  388.4765625,\n                  240.95196533203125\n                ],\n                [\n                  264.1640625,\n                  240.95196533203125\n                ]\n              ],\n              \"bbox\": [\n                264.1640625,\n                230.87109375,\n                388.4765625,\n                240.95196533203125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/233/SectionHeader/16\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/234/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>from swampy.Lumpy import Lumpy\\ndef countdown(n):\\n    if n &lt;= 0:\\n        print 'Blastoff!'\\n        lumpy.object_diagram()\\n    else:\\n        print n\\n        countdown(n-1)\\nlumpy = Lumpy()\\nlumpy.make_reference()</pre>\",\n          \"polygon\": [\n            [\n              129.59996032714844,\n              262.67877197265625\n            ],\n            [\n              286.5208435058594,\n              262.67877197265625\n            ],\n            [\n              286.5208435058594,\n              406.77838134765625\n            ],\n            [\n              129.59996032714844,\n              406.77838134765625\n            ]\n          ],\n          \"bbox\": [\n            129.59996032714844,\n            262.67877197265625,\n            286.5208435058594,\n            406.77838134765625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/234/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">countdown(3)</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              405.66796875\n            ],\n            [\n              205.7431640625,\n              405.66796875\n            ],\n            [\n              205.7431640625,\n              418.973388671875\n            ],\n            [\n              129.5419921875,\n              418.973388671875\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            405.66796875,\n            205.7431640625,\n            418.973388671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/234/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-233-2\\\">C.2</a> shows the result. Each frame is represented with a box that has the function's name outside and variables inside. Since this function is recursive, there is one frame for each level of recursion.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              423.84375\n            ],\n            [\n              525.9375,\n              423.84375\n            ],\n            [\n              525.9375,\n              459.1739501953125\n            ],\n            [\n              128.6455078125,\n              459.1739501953125\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            423.84375,\n            525.9375,\n            459.1739501953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/234/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Remember that a stack diagram shows the state of the program at a particular point in its execution. To get the diagram you want, sometimes you have to think about where to invoke object_diagram.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              468.703125\n            ],\n            [\n              525.9375,\n              468.703125\n            ],\n            [\n              525.9375,\n              503.1959533691406\n            ],\n            [\n              128.49609375,\n              503.1959533691406\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            468.703125,\n            525.9375,\n            503.1959533691406\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/234/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">In this case I invoke object_diagram after executing the base case of the recursion; that way the stack diagram shows each level of the recursion. You can call object_diagram more than once to get a series of snapshots of the program's execution.</p>\",\n          \"polygon\": [\n            [\n              128.794921875,\n              512.7178039550781\n            ],\n            [\n              526.236328125,\n              512.7178039550781\n            ],\n            [\n              526.236328125,\n              547.2189636230469\n            ],\n            [\n              128.794921875,\n              547.2189636230469\n            ]\n          ],\n          \"bbox\": [\n            128.794921875,\n            512.7178039550781,\n            526.236328125,\n            547.2189636230469\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/234/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-234-0\\\"></span><b>C.3 Object diagrams</b></h4>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              575.4375\n            ],\n            [\n              273.12890625,\n              575.4375\n            ],\n            [\n              273.12890625,\n              590.2020111083984\n            ],\n            [\n              127.8984375,\n              590.2020111083984\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            575.4375,\n            273.12890625,\n            590.2020111083984\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/234/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This example generates an object diagram showing the lists from Section <a href=\\\"#page-108-1\\\">10.1.</a> You can download it from <a href=\\\"http://thinkpython.com/code/lumpy_demo3.py\\\">http://thinkpython.com/code/lumpy_demo3.py</a>.</p>\",\n          \"polygon\": [\n            [\n              128.197265625,\n              601.734375\n            ],\n            [\n              525.638671875,\n              601.734375\n            ],\n            [\n              525.638671875,\n              624.9375\n            ],\n            [\n              128.197265625,\n              624.9375\n            ]\n          ],\n          \"bbox\": [\n            128.197265625,\n            601.734375,\n            525.638671875,\n            624.9375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/234/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">from swampy.Lumpy import Lumpy</p>\",\n          \"polygon\": [\n            [\n              128.42138671875,\n              629.7518005371094\n            ],\n            [\n              286.5208435058594,\n              629.7518005371094\n            ],\n            [\n              286.5208435058594,\n              640.01953125\n            ],\n            [\n              128.42138671875,\n              640.01953125\n            ]\n          ],\n          \"bbox\": [\n            128.42138671875,\n            629.7518005371094,\n            286.5208435058594,\n            640.01953125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/234/Code/11\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>lumpy = Lumpy()\\nlumpy.make_reference()\\ncheeses = ['Cheddar', 'Edam', 'Gouda']</pre>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              653.16796875\n            ],\n            [\n              328.3073425292969,\n              653.16796875\n            ],\n            [\n              328.3073425292969,\n              700.6853942871094\n            ],\n            [\n              129.392578125,\n              700.6853942871094\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            653.16796875,\n            328.3073425292969,\n            700.6853942871094\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/232/SectionHeader/1\",\n        \"2\": \"/page/233/SectionHeader/16\",\n        \"4\": \"/page/234/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/235/Page/157\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/235/PageHeader/0'></content-ref><content-ref src='/page/235/PageHeader/14'></content-ref><content-ref src='/page/235/FigureGroup/156'></content-ref><content-ref src='/page/235/Code/3'></content-ref><content-ref src='/page/235/Code/4'></content-ref><content-ref src='/page/235/Text/5'></content-ref><content-ref src='/page/235/Text/6'></content-ref><content-ref src='/page/235/Text/7'></content-ref><content-ref src='/page/235/Text/8'></content-ref><content-ref src='/page/235/Text/9'></content-ref><content-ref src='/page/235/Text/10'></content-ref><content-ref src='/page/235/Text/11'></content-ref><content-ref src='/page/235/Text/12'></content-ref><content-ref src='/page/235/Text/13'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/235/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.76318359375\n            ],\n            [\n              482.4034729003906,\n              60.76318359375\n            ],\n            [\n              482.4034729003906,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.76318359375,\n            482.4034729003906,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/PageHeader/14\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              61.0048828125\n            ],\n            [\n              101.1533203125,\n              61.0048828125\n            ],\n            [\n              101.1533203125,\n              70.6728515625\n            ],\n            [\n              85.0166015625,\n              70.6728515625\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            61.0048828125,\n            101.1533203125,\n            70.6728515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/FigureGroup/156\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/235/Figure/1'></content-ref><content-ref src='/page/235/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              222.029296875,\n              89.889404296875\n            ],\n            [\n              349.03125,\n              89.889404296875\n            ],\n            [\n              349.03125,\n              324.951904296875\n            ],\n            [\n              222.029296875,\n              324.951904296875\n            ]\n          ],\n          \"bbox\": [\n            222.029296875,\n            89.889404296875,\n            349.03125,\n            324.951904296875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/235/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  222.029296875,\n                  89.889404296875\n                ],\n                [\n                  349.03125,\n                  89.889404296875\n                ],\n                [\n                  349.03125,\n                  300.48046875\n                ],\n                [\n                  222.029296875,\n                  300.48046875\n                ]\n              ],\n              \"bbox\": [\n                222.029296875,\n                89.889404296875,\n                349.03125,\n                300.48046875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/233/SectionHeader/16\",\n                \"4\": \"/page/234/SectionHeader/8\"\n              },\n              \"images\": {\n                \"/page/235/Figure/1\": \"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9K6SitYRcVrK/rb9EiJNPZWCiiirJCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKw2/5HuP/sGN/wCjVrcrDb/ke4/+wY3/AKNWtqH2vRmlPr6G5RRRWJmFFFFABRRRQBh+KP8Aj203/sJ2v/owVuVh+KP+PbTf+wna/wDowVuVtP8AhR+f6GkvgXzCiiisTMKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACsNv+R7j/AOwY3/o1a3Kw2/5HuP8A7Bjf+jVrah9r0ZpT6+huUUUViZhRRRQAUUUUAYfij/j203/sJ2v/AKMFblYfij/j203/ALCdr/6MFblbT/hR+f6GkvgXzCiiisTMKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACsNv+R7j/7Bjf8Ao1a3Kw2/5HuP/sGN/wCjVrah9r0ZpT6+hs+dEZjD5ieaF3FNw3Y9celPrNXRoF8SSa2CftD2i2pGONoYtn8z+lY0mrzh5Zf7UC3q3RiXS9qfMu/AGMbySvzbgcc5xgViZnUGaJZlhMiCVgWVCw3EDqQKfWbPo1vP4htNZYnz7WCSBRjghypJ/wDHf1rSoACQBknFFZawRX+o3Quh5iwMqxxN90AqDux3zk/lUcby2Goy2lpbvPB5aybA4HlEkjAyehxnFcbxTTu4+6213el+iXl/XTf2Keietr+X3kfij/j203/sJ2v/AKMFblcv4kurtrfT92nyJjUbYjMiHJ8wccGtr7Ze/wDQLl/7+p/jXXPEQ9jB2fX7MvLyG6UuRbdeq/zL1FUftl7/ANAuX/v6n+NH2y9/6Bcv/f1P8aw+sw7P/wABl/kR7KXl96/zL1NMiK6ozqHbO1SeTj0qrHdXbyKr6dIik8sZEOPyNY+r3ekWfifSnnuLKC7LOHZ3RZNvltjOecZ6VrCopq6v801+ZEouO50lFFFWSFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVht/yPcf/YMb/wBGrW5XMalqdnpXjSGa+nWCJtOZFZgcE+Ypxx9K6MPFybSV3ZmlJNtpdjp6Tau7dtG7GM45xWJ/wmPh7/oKQ/k3+FH/AAmPh7/oKQ/k3+FT9WrfyP7mHsqn8r+43KKw/wDhMfD3/QUh/Jv8KP8AhMfD3/QUh/Jv8KPq1b+R/cw9lU/lf3GlcWEVxKJd0kUoGPMicqSPQ+tPtrSK0RljByxyzMSWY+pJrK/4THw9/wBBSH8m/wAKP+Ex8Pf9BSH8m/wrNYCanzqm7+jKcazXLZ2DxR/x7ab/ANhO1/8ARgrcrj9a8RaTqR0y2s71JpjqVsQig5wJASeldhW9WEoU4qStv+gpxcYpNdwooormMgooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigD//2Q==\"\n              }\n            },\n            {\n              \"id\": \"/page/235/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-235-0\\\"></span>Figure C.4: Object diagram.</p>\",\n              \"polygon\": [\n                [\n                  223.224609375,\n                  314.98931884765625\n                ],\n                [\n                  346.04296875,\n                  314.98931884765625\n                ],\n                [\n                  346.04296875,\n                  324.951904296875\n                ],\n                [\n                  223.224609375,\n                  324.951904296875\n                ]\n              ],\n              \"bbox\": [\n                223.224609375,\n                314.98931884765625,\n                346.04296875,\n                324.951904296875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/233/SectionHeader/16\",\n                \"4\": \"/page/234/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/235/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>numbers = [17, 123]\\nempty = []</pre>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              346.28875732421875\n            ],\n            [\n              185.7769317626953,\n              346.28875732421875\n            ],\n            [\n              185.7769317626953,\n              368.4453430175781\n            ],\n            [\n              85.46484375,\n              368.4453430175781\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            346.28875732421875,\n            185.7769317626953,\n            368.4453430175781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>lumpy.object_diagram()</pre>\",\n          \"polygon\": [\n            [\n              85.39013671875,\n              382.8515625\n            ],\n            [\n              201.4779815673828,\n              382.8515625\n            ],\n            [\n              201.4779815673828,\n              392.8343505859375\n            ],\n            [\n              85.39013671875,\n              392.8343505859375\n            ]\n          ],\n          \"bbox\": [\n            85.39013671875,\n            382.8515625,\n            201.4779815673828,\n            392.8343505859375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-234-1\\\">C.3</a> shows the result. Lists are represented by a box that shows the indices mapping to the elements. This representation is slightly misleading, since indices are not actually part of the list, but I think they make the diagram easier to read. The empty list is represented by an empty box.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              397.93359375\n            ],\n            [\n              482.90625,\n              397.93359375\n            ],\n            [\n              482.90625,\n              445.00091552734375\n            ],\n            [\n              85.46484375,\n              445.00091552734375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            397.93359375,\n            482.90625,\n            445.00091552734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">And here's an example showing the dictionaries from Section <a href=\\\"#page-126-0\\\">11.4.</a> You can download it from <a href=\\\"http://thinkpython.com/code/lumpy_demo4.py\\\">http://thinkpython.com/code/lumpy_demo4.py</a>.</p>\",\n          \"polygon\": [\n            [\n              85.6142578125,\n              454.0078125\n            ],\n            [\n              482.40325927734375,\n              454.0078125\n            ],\n            [\n              482.40325927734375,\n              476.6009216308594\n            ],\n            [\n              85.6142578125,\n              476.6009216308594\n            ]\n          ],\n          \"bbox\": [\n            85.6142578125,\n            454.0078125,\n            482.40325927734375,\n            476.6009216308594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">from swampy.Lumpy import Lumpy</p>\",\n          \"polygon\": [\n            [\n              86.13720703125,\n              481.9227600097656\n            ],\n            [\n              243.32086181640625,\n              481.9227600097656\n            ],\n            [\n              243.32086181640625,\n              491.8853454589844\n            ],\n            [\n              86.13720703125,\n              491.8853454589844\n            ]\n          ],\n          \"bbox\": [\n            86.13720703125,\n            481.9227600097656,\n            243.32086181640625,\n            491.8853454589844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">lumpy = Lumpy() lumpy.make_reference()</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              506.311767578125\n            ],\n            [\n              203.3525390625,\n              506.311767578125\n            ],\n            [\n              203.3525390625,\n              533.671875\n            ],\n            [\n              85.9130859375,\n              533.671875\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            506.311767578125,\n            203.3525390625,\n            533.671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">hist = histogram('parrot') inverse = invert_dict(hist)</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              542.894775390625\n            ],\n            [\n              227.62977600097656,\n              542.894775390625\n            ],\n            [\n              227.62977600097656,\n              565.3828125\n            ],\n            [\n              85.9130859375,\n              565.3828125\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            542.894775390625,\n            227.62977600097656,\n            565.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">lumpy.object_diagram()</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              579.477783203125\n            ],\n            [\n              201.47796630859375,\n              579.477783203125\n            ],\n            [\n              201.47796630859375,\n              589.4403839111328\n            ],\n            [\n              86.0625,\n              589.4403839111328\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            579.477783203125,\n            201.47796630859375,\n            589.4403839111328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/Text/11\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-235-0\\\">C.4</a> shows the result. hist is a dictionary that maps from characters (single-letter strings) to integers; inverse maps from integers to lists of strings.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              594.38671875\n            ],\n            [\n              482.4047546386719,\n              594.38671875\n            ],\n            [\n              482.4047546386719,\n              617.2179412841797\n            ],\n            [\n              85.9130859375,\n              617.2179412841797\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            594.38671875,\n            482.4047546386719,\n            617.2179412841797\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/Text/12\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This example generates an object diagram for Point and Rectangle objects, as in Section <a href=\\\"#page-168-0\\\">15.6.</a> You can download it from <a href=\\\"http://thinkpython.com/code/lumpy_demo5.py\\\">http://thinkpython.com/code/lumpy_demo5.py</a>.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              626.09765625\n            ],\n            [\n              482.4033508300781,\n              626.09765625\n            ],\n            [\n              482.4033508300781,\n              648.8179473876953\n            ],\n            [\n              86.0625,\n              648.8179473876953\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            626.09765625,\n            482.4033508300781,\n            648.8179473876953\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/235/Text/13\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">import copy from swampy.Lumpy import Lumpy</p>\",\n          \"polygon\": [\n            [\n              85.98779296875,\n              666.3347930908203\n            ],\n            [\n              243.32086181640625,\n              666.3347930908203\n            ],\n            [\n              243.32086181640625,\n              688.4913864135742\n            ],\n            [\n              85.98779296875,\n              688.4913864135742\n            ]\n          ],\n          \"bbox\": [\n            85.98779296875,\n            666.3347930908203,\n            243.32086181640625,\n            688.4913864135742\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/232/SectionHeader/1\",\n        \"2\": \"/page/233/SectionHeader/16\",\n        \"4\": \"/page/234/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/236/Page/176\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/236/PageHeader/0'></content-ref><content-ref src='/page/236/PageHeader/10'></content-ref><content-ref src='/page/236/FigureGroup/172'></content-ref><content-ref src='/page/236/FigureGroup/173'></content-ref><content-ref src='/page/236/Code/5'></content-ref><content-ref src='/page/236/Code/6'></content-ref><content-ref src='/page/236/Text/7'></content-ref><content-ref src='/page/236/SectionHeader/8'></content-ref><content-ref src='/page/236/Text/9'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/236/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              129.2431640625,\n              60.8115234375\n            ],\n            [\n              525.6033935546875,\n              60.8115234375\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              129.2431640625,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            129.2431640625,\n            60.8115234375,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/236/PageHeader/10\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              510.099609375,\n              60.66650390625\n            ],\n            [\n              526.236328125,\n              60.66650390625\n            ],\n            [\n              526.236328125,\n              70.52783203125\n            ],\n            [\n              510.099609375,\n              70.52783203125\n            ]\n          ],\n          \"bbox\": [\n            510.099609375,\n            60.66650390625,\n            526.236328125,\n            70.52783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/236/FigureGroup/172\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/236/Figure/1'></content-ref><content-ref src='/page/236/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              257.58984375,\n              89.76708984375\n            ],\n            [\n              393.9335021972656,\n              89.76708984375\n            ],\n            [\n              393.9335021972656,\n              262.001953125\n            ],\n            [\n              257.58984375,\n              262.001953125\n            ]\n          ],\n          \"bbox\": [\n            257.58984375,\n            89.76708984375,\n            393.9335021972656,\n            262.001953125\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/236/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  257.58984375,\n                  89.76708984375\n                ],\n                [\n                  393.9335021972656,\n                  89.76708984375\n                ],\n                [\n                  393.9335021972656,\n                  239.572265625\n                ],\n                [\n                  257.58984375,\n                  239.572265625\n                ]\n              ],\n              \"bbox\": [\n                257.58984375,\n                89.76708984375,\n                393.9335021972656,\n                239.572265625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/233/SectionHeader/16\",\n                \"4\": \"/page/234/SectionHeader/8\"\n              },\n              \"images\": {\n                \"/page/236/Figure/1\": \"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\"\n              }\n            },\n            {\n              \"id\": \"/page/236/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-236-1\\\"></span>Figure C.5: Object diagram.</p>\",\n              \"polygon\": [\n                [\n                  265.5087890625,\n                  251.560546875\n                ],\n                [\n                  388.3171081542969,\n                  251.560546875\n                ],\n                [\n                  388.3171081542969,\n                  262.001953125\n                ],\n                [\n                  265.5087890625,\n                  262.001953125\n                ]\n              ],\n              \"bbox\": [\n                265.5087890625,\n                251.560546875,\n                388.3171081542969,\n                262.001953125\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/233/SectionHeader/16\",\n                \"4\": \"/page/234/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/236/FigureGroup/173\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/236/Figure/3'></content-ref><content-ref src='/page/236/Caption/4'></content-ref>\",\n          \"polygon\": [\n            [\n              193.7900390625,\n              276.890625\n            ],\n            [\n              457.28631591796875,\n              276.890625\n            ],\n            [\n              457.28631591796875,\n              367.3749084472656\n            ],\n            [\n              193.7900390625,\n              367.3749084472656\n            ]\n          ],\n          \"bbox\": [\n            193.7900390625,\n            276.890625,\n            457.28631591796875,\n            367.3749084472656\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/236/Figure/3\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  193.7900390625,\n                  276.890625\n                ],\n                [\n                  457.28631591796875,\n                  276.890625\n                ],\n                [\n                  457.28631591796875,\n                  344.56640625\n                ],\n                [\n                  193.7900390625,\n                  344.56640625\n                ]\n              ],\n              \"bbox\": [\n                193.7900390625,\n                276.890625,\n                457.28631591796875,\n                344.56640625\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/233/SectionHeader/16\",\n                \"4\": \"/page/234/SectionHeader/8\"\n              },\n              \"images\": {\n                \"/page/236/Figure/3\": \"/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAC1Ar4DASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD3+iiq9890lnK1lFHLcgfIkjbVJ+v+fqOtAFiiuXm1C6it7cLqLw3k90sUou4Au3KsdqLnHbggtn1NV7PxDdywQpPf2iGbyna5CALCroxxjOPvLtBJ6nv0oA7CiuaGtTvFCjX1tFC08kX9obRscKARtycZJJGeR8px7VNG1Zbe0tyb60W1e8uopJAAqAgsykZPHTOPQ0AdhRXI3Gr2FzoGmXt7eWRn+1xmOVmVekwViuTxx1xVjWdent75IreRY7drcTRzgxFZTk8Zd1GAACcc/MOR3AOmorn5b2/kNtLY7pLySJGltvvW4B7+Z/D9QW9dproBnAz170AFFFFABRRRQAUUUUAFFFFABRRRQAUUVh65LPBqOmsupLZQM0iuXA2k7cjOTjsaANyisHUtUns2guIp0mtLiExwmNQ26c/c59G5H1HvVS71S9s9Sazu9YtbbZaRzBng4kkJYEDJ5Hy52j5ueKAOporj7zxJqMc21o1tHW3jlWOUxKrswyQS7qcA8cDI/SuuRi0asQASASAc0AOooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAorBXUbNPF72731o0r2+1Y96iRSGHy9cnOc4xVa21qc3kbyajayQvqElkIlUDGAxHOfvcD8O3egDp6K5m01q4uNdFt9tgeOWWVEWIIwUKDjPzB1YY5yCO3GRUmgX5SxYXmrJdToJC0OF8xdrHPAOTQB0VFcbb+KZXN6rXluMWT3URdoyUI7EKx45HBOferLajeTWV/arqUUlw2nC7ikhQBlLbugB6cDB689TQB1NFZGn30TaVI76zbTsiBnnBTEWRxuwcfnWbZa5bReFI5La6t3kV/JzAUIVixAJywC568n8+lAHU0Vx41m51DQXlTUY4ZLa/jilmQo3yb15Yg4xg89iBV/UtZktNPtGtrqO5WSYxS3cRjwnBP8TBQc4HJ/A0AdDRWbod7Nf6f5s5jZhIyBo2RtwHQnazAH1AP5dK0qACiiigAooooAKKKKACiiigAopCQoySAPU0AgjIOR7UALRSO6xozuwVFGWZjgAepoVldA6MGVhkEHIIoAWiiigArlfFUmoS634e0yy1O409L2acTSQKhYhIiwA3KR1HpXVVy+v8A/I6+Ef8Artdf+iGrqwf8W9tlJ99osmWwf8Itqv8A0Oetf98W/wD8aoPhTVGBB8Za0QeoMdv/APGq6iij65V8v/AY/wCQcqOWPhPUyu0+MtZK+nl2+P8A0VQfCmqMMN4y1kj3jt//AI1XU0UfXKvl/wCAx/yDlRy//CLar/0Oetf98W//AMapG8J6mwAbxlrJwc8x2/8A8arqaKPrlXy/8Bj/AJByo5f/AIRbVf8Aoc9a/wC+Lf8A+NUf8Itqv/Q561/3xb//ABqtS61o21/LaLpt7OYolmaSLy9u05HQuCfunjFTyavp0FvBPPfW8EU6hommkCbwRnjOPWj65V8v/AY/5ByoxP8AhFtV/wChz1r/AL4t/wD41R/w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\"\n              }\n            },\n            {\n              \"id\": \"/page/236/Caption/4\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-236-2\\\"></span>Figure C.6: Object diagram.</p>\",\n              \"polygon\": [\n                [\n                  265.95703125,\n                  356.94140625\n                ],\n                [\n                  388.3171081542969,\n                  356.94140625\n                ],\n                [\n                  388.3171081542969,\n                  367.3749084472656\n                ],\n                [\n                  265.95703125,\n                  367.3749084472656\n                ]\n              ],\n              \"bbox\": [\n                265.95703125,\n                356.94140625,\n                388.3171081542969,\n                367.3749084472656\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/233/SectionHeader/16\",\n                \"4\": \"/page/234/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/236/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>lumpy = Lumpy()\\nlumpy.make_reference()\\nbox = Rectangle()\\nbox.width = 100.0\\nbox.height = 200.0\\nbox.corner = Point()\\nbox.corner.x = 0.0\\nbox.corner.y = 0.0\\nbox2 = copy.copy(box)</pre>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              391.5007629394531\n            ],\n            [\n              244.6779327392578,\n              391.5007629394531\n            ],\n            [\n              244.6779327392578,\n              531.3515625\n            ],\n            [\n              128.57080078125,\n              531.3515625\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            391.5007629394531,\n            244.6779327392578,\n            531.3515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/236/Code/6\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>lumpy.object_diagram()</pre>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              537.8327941894531\n            ],\n            [\n              244.6779327392578,\n              537.8327941894531\n            ],\n            [\n              244.6779327392578,\n              548.3671875\n            ],\n            [\n              129.5419921875,\n              548.3671875\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            537.8327941894531,\n            244.6779327392578,\n            548.3671875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/236/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-236-1\\\">C.5</a> shows the result. copy.copy make a shallow copy, so box and box2 have their own width and height, but they share the same embedded Point object. This kind of sharing is usually fine with immutable objects, but with mutable types, it is highly errorprone.</p>\",\n          \"polygon\": [\n            [\n              128.6455078125,\n              555.8057861328125\n            ],\n            [\n              526.53515625,\n              555.8057861328125\n            ],\n            [\n              526.53515625,\n              602.5009460449219\n            ],\n            [\n              128.6455078125,\n              602.5009460449219\n            ]\n          ],\n          \"bbox\": [\n            128.6455078125,\n            555.8057861328125,\n            526.53515625,\n            602.5009460449219\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/234/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/236/SectionHeader/8\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h4><span id=\\\"page-236-0\\\"></span><b>C.4 Function and class objects</b></h4>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              636.92578125\n            ],\n            [\n              335.9700012207031,\n              636.92578125\n            ],\n            [\n              335.9700012207031,\n              651.62109375\n            ],\n            [\n              128.57080078125,\n              651.62109375\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            636.92578125,\n            335.9700012207031,\n            651.62109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/236/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/236/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">When I use Lumpy to make object diagrams, I usually define the functions and classes before I make the reference point. That way, function and class objects don't appear in the diagram.</p>\",\n          \"polygon\": [\n            [\n              127.8984375,\n              665.54296875\n            ],\n            [\n              525.9375,\n              665.54296875\n            ],\n            [\n              525.9375,\n              700.8349533081055\n            ],\n            [\n              127.8984375,\n              700.8349533081055\n            ]\n          ],\n          \"bbox\": [\n            127.8984375,\n            665.54296875,\n            525.9375,\n            700.8349533081055\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/236/SectionHeader/8\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/232/SectionHeader/1\",\n        \"2\": \"/page/233/SectionHeader/16\",\n        \"4\": \"/page/236/SectionHeader/8\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/237/Page/158\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/237/PageHeader/0'></content-ref><content-ref src='/page/237/PageHeader/11'></content-ref><content-ref src='/page/237/FigureGroup/156'></content-ref><content-ref src='/page/237/Text/3'></content-ref><content-ref src='/page/237/Code/4'></content-ref><content-ref src='/page/237/Code/5'></content-ref><content-ref src='/page/237/Text/6'></content-ref><content-ref src='/page/237/Text/7'></content-ref><content-ref src='/page/237/Text/8'></content-ref><content-ref src='/page/237/SectionHeader/9'></content-ref><content-ref src='/page/237/Text/10'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/237/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.328125\n            ],\n            [\n              482.4034729003906,\n              60.328125\n            ],\n            [\n              482.4034729003906,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.328125,\n            482.4034729003906,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/236/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/237/PageHeader/11\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              60.76318359375\n            ],\n            [\n              102.19921875,\n              60.76318359375\n            ],\n            [\n              102.19921875,\n              70.91455078125\n            ],\n            [\n              85.0166015625,\n              70.91455078125\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            60.76318359375,\n            102.19921875,\n            70.91455078125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/236/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/237/FigureGroup/156\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/237/Figure/1'></content-ref><content-ref src='/page/237/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              218.2939453125,\n              81.6943359375\n            ],\n            [\n              360.38671875,\n              81.6943359375\n            ],\n            [\n              360.38671875,\n              208.0546875\n            ],\n            [\n              218.2939453125,\n              208.0546875\n            ]\n          ],\n          \"bbox\": [\n            218.2939453125,\n            81.6943359375,\n            360.38671875,\n            208.0546875\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/237/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  218.2939453125,\n                  81.6943359375\n                ],\n                [\n                  360.38671875,\n                  81.6943359375\n                ],\n                [\n                  360.38671875,\n                  184.5615234375\n                ],\n                [\n                  218.2939453125,\n                  184.5615234375\n                ]\n              ],\n              \"bbox\": [\n                218.2939453125,\n                81.6943359375,\n                360.38671875,\n                184.5615234375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/233/SectionHeader/16\",\n                \"4\": \"/page/236/SectionHeader/8\"\n              },\n              \"images\": {\n                \"/page/237/Figure/1\": \"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Agvf+PC4/wCuTfyNYvgT/kQPD/8A2D4f/QBW1e/8eFx/1yb+RrF8Cf8AIgeH/wDsHw/+gCuqP+6y/wAS/KRP2joaKKK5SgooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigArmPhz/AMk80P8A69V/rXT15/4T1rUNC8K6bpd14T19p7WERu0UMRUkehMg/lXbQpuph5xjvePVLpLuS3Zo7e70+yvwgvLO3uNhyvnRK+36ZHFWQAAABgDtXMf8Jhc/9Ch4j/78Q/8Ax2j/AITC5/6FDxH/AN+If/jtR9Trdl96/wAw5kdPRXMf8Jhc/wDQoeI/+/EP/wAdo/4TC5/6FDxH/wB+If8A47R9Trdl96/zDmR09Fcx/wAJhc/9Ch4j/wC/EP8A8do/4TC5/wChQ8R/9+If/jtH1Ot2X3r/ADDmR0F7/wAeFx/1yb+RrF8Cf8iB4f8A+wfD/wCgCqlx4supbWWNfCPiLc6FRmCHuP8ArrWl4PtJ7DwZotpdRNFcQWUUckbdVYKAQa0nSlSwzU93JdU+j7Be7NqiiiuEoKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooA//Z\"\n              }\n            },\n            {\n              \"id\": \"/page/237/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-237-1\\\"></span>Figure C.7: Class diagram.</p>\",\n              \"polygon\": [\n                [\n                  225.615234375,\n                  197.9033203125\n                ],\n                [\n                  343.65234375,\n                  197.9033203125\n                ],\n                [\n                  343.65234375,\n                  208.0546875\n                ],\n                [\n                  225.615234375,\n                  208.0546875\n                ]\n              ],\n              \"bbox\": [\n                225.615234375,\n                197.9033203125,\n                343.65234375,\n                208.0546875\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/233/SectionHeader/16\",\n                \"4\": \"/page/236/SectionHeader/8\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/236/SectionHeader/8\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/237/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">But if you are passing functions and classes as parameters, you might want them to appear. This example shows what that looks like; you can download it from <a href=\\\"http://thinkpython.com/code/lumpy_demo6.py\\\">http://thinkpython.</a> <a href=\\\"http://thinkpython.com/code/lumpy_demo6.py\\\">com/code/lumpy_demo6.py</a>.</p>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              230.677734375\n            ],\n            [\n              482.43389892578125,\n              230.677734375\n            ],\n            [\n              482.43389892578125,\n              265.5469970703125\n            ],\n            [\n              85.0166015625,\n              265.5469970703125\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            230.677734375,\n            482.43389892578125,\n            265.5469970703125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/236/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/237/Code/4\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>import copy\\nfrom swampy.Lumpy import Lumpy\\nlumpy = Lumpy()\\nlumpy.make_reference()\\nclass Point(object):\\n    \\\"\\\"\\\"Represents a point in 2-D space.\\\"\\\"\\\"\\nclass Rectangle(object):\\n    \\\"\\\"\\\"Represents a rectangle.\\\"\\\"\\\"\\ndef instantiate(constructor):\\n    \\\"\\\"\\\"Instantiates a new object.\\\"\\\"\\\"\\n    obj = constructor()\\n    lumpy.object_diagram()\\n    return obj</pre>\",\n          \"polygon\": [\n            [\n              85.0166015625,\n              272.07879638671875\n            ],\n            [\n              306.07977294921875,\n              272.07879638671875\n            ],\n            [\n              306.07977294921875,\n              484.9453125\n            ],\n            [\n              85.0166015625,\n              484.9453125\n            ]\n          ],\n          \"bbox\": [\n            85.0166015625,\n            272.07879638671875,\n            306.07977294921875,\n            484.9453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/236/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/237/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>point = instantiate(Point)</pre>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              491.1328125\n            ],\n            [\n              224.12109375,\n              491.1328125\n            ],\n            [\n              224.12109375,\n              501.5394287109375\n            ],\n            [\n              86.361328125,\n              501.5394287109375\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            491.1328125,\n            224.12109375,\n            501.5394287109375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/236/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/237/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-236-2\\\">C.6</a> shows the result. Since we invoke object_diagram inside a function, we get a stack diagram with a frame for the module-level variables and for the invocation of instantiate.</p>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              507.375\n            ],\n            [\n              482.4033203125,\n              507.375\n            ],\n            [\n              482.4033203125,\n              542.7229919433594\n            ],\n            [\n              85.9130859375,\n              542.7229919433594\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            507.375,\n            482.4033203125,\n            542.7229919433594\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/236/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/237/Text/7\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">At the module level, Point and Rectangle refer to class objects (which have type type); instantiate refers to a function object.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              551.84765625\n            ],\n            [\n              483.50390625,\n              551.84765625\n            ],\n            [\n              483.50390625,\n              575.5329895019531\n            ],\n            [\n              86.0625,\n              575.5329895019531\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            551.84765625,\n            483.50390625,\n            575.5329895019531\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/236/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/237/Text/8\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This diagram might clarify two points of common confusion: (1) the difference between the class object, Point, and the instance of Point, obj, and (2) the difference between the function object created when instantiate is defined, and the frame created with it is called.</p>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              584.33203125\n            ],\n            [\n              483.50390625,\n              584.33203125\n            ],\n            [\n              483.50390625,\n              620.68359375\n            ],\n            [\n              86.2119140625,\n              620.68359375\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            584.33203125,\n            483.50390625,\n            620.68359375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/233/SectionHeader/16\",\n            \"4\": \"/page/236/SectionHeader/8\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/237/SectionHeader/9\",\n          \"block_type\": \"SectionHeader\",\n          \"html\": \"<h2><span id=\\\"page-237-0\\\"></span><b>C.5 Class Diagrams</b></h2>\",\n          \"polygon\": [\n            [\n              85.9130859375,\n              649.30078125\n            ],\n            [\n              225.1669921875,\n              649.30078125\n            ],\n            [\n              225.1669921875,\n              665.6630401611328\n            ],\n            [\n              85.9130859375,\n              665.6630401611328\n            ]\n          ],\n          \"bbox\": [\n            85.9130859375,\n            649.30078125,\n            225.1669921875,\n            665.6630401611328\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/237/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Although I distinguish between state diagrams, stack diagrams and object diagrams, they are mostly the same thing: they show the state of a running program at a point in time.</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              676.7578125\n            ],\n            [\n              483.205078125,\n              676.7578125\n            ],\n            [\n              483.205078125,\n              700.8349990844727\n            ],\n            [\n              86.361328125,\n              700.8349990844727\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            676.7578125,\n            483.205078125,\n            700.8349990844727\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/232/SectionHeader/1\",\n        \"2\": \"/page/237/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/238/Page/197\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/238/PageHeader/0'></content-ref><content-ref src='/page/238/PageHeader/11'></content-ref><content-ref src='/page/238/FigureGroup/196'></content-ref><content-ref src='/page/238/Text/3'></content-ref><content-ref src='/page/238/Text/4'></content-ref><content-ref src='/page/238/Code/5'></content-ref><content-ref src='/page/238/Text/6'></content-ref><content-ref src='/page/238/Code/7'></content-ref><content-ref src='/page/238/Code/8'></content-ref><content-ref src='/page/238/Text/9'></content-ref><content-ref src='/page/238/Text/10'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/238/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              128.12255859375,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              61.171142578125\n            ],\n            [\n              525.6033935546875,\n              71.13372802734375\n            ],\n            [\n              128.12255859375,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            128.12255859375,\n            61.171142578125,\n            525.6033935546875,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/238/PageHeader/11\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              509.501953125,\n              60.328125\n            ],\n            [\n              525.638671875,\n              60.328125\n            ],\n            [\n              525.638671875,\n              70.3828125\n            ],\n            [\n              509.501953125,\n              70.3828125\n            ]\n          ],\n          \"bbox\": [\n            509.501953125,\n            60.328125,\n            525.638671875,\n            70.3828125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/238/FigureGroup/196\",\n          \"block_type\": \"FigureGroup\",\n          \"html\": \"<content-ref src='/page/238/Figure/1'></content-ref><content-ref src='/page/238/Caption/2'></content-ref>\",\n          \"polygon\": [\n            [\n              186.767578125,\n              84.0146484375\n            ],\n            [\n              473.044921875,\n              84.0146484375\n            ],\n            [\n              473.044921875,\n              332.6518859863281\n            ],\n            [\n              186.767578125,\n              332.6518859863281\n            ]\n          ],\n          \"bbox\": [\n            186.767578125,\n            84.0146484375,\n            473.044921875,\n            332.6518859863281\n          ],\n          \"children\": [\n            {\n              \"id\": \"/page/238/Figure/1\",\n              \"block_type\": \"Figure\",\n              \"html\": \"\",\n              \"polygon\": [\n                [\n                  186.767578125,\n                  84.0146484375\n                ],\n                [\n                  473.044921875,\n                  84.0146484375\n                ],\n                [\n                  473.044921875,\n                  310.1484375\n                ],\n                [\n                  186.767578125,\n                  310.1484375\n                ]\n              ],\n              \"bbox\": [\n                186.767578125,\n                84.0146484375,\n                473.044921875,\n                310.1484375\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/237/SectionHeader/9\"\n              },\n              \"images\": {\n                \"/page/238/Figure/1\": \"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/odrz/wAtv8A4ij/AIR7xJ/0O15/4AW3/wARXUUUfXKnaP8A4DH/ACDlRy//AAj3iT/odrz/AMALb/4ij/hHvEn/AEO15/4AW3/xFdRRR9cqdo/+Ax/yDlRy/wDwj3iT/odrz/wAtv8A4ij/AIR7xJ/0O15/4AW3/wARXUUUfXKnaP8A4DH/ACDlRy//AAj3iT/odrz/AMALb/4ij/hHvEn/AEO15/4AW3/xFdRRR9cqdo/+Ax/yDlRy/wDwj3iT/odrz/wAtv8A4io/h2kkXhmaOWYzSLqN4rylQC5E75OBwM9eK6yuX8B/8gK7/wCwpe/+lD1q60qmGmpJbx2SX83ZIVrSOoooorgLCiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKiuf+PWb/AHG/lUtRXP8Ax6zf7jfypx3QGD4B/wCSfaB/14Rf+gity4vLW0KC5uYYTIdqeY4XcfQZ61h+Af8Akn2gf9eEX/oIq54gsLrUba3ht7a0uEWdJZEuZSikKwOOEbNdGM/3mp/if5ijsi0dY0wWguzqNoLYtsE3nrsLem7OM06TVNPht47iW/tUgl/1cjTKFfjPBzg8VS1O21O6itfKVFAybiCK7aLccDGJAu7A56AZ/DBoWmi6nDZadBLFZuba/e4cm5dvkJcjBKZLDf39OvNcwzXn1WFba2ubYx3UE06ReZFKCBubbkEZB5qza3lrfRtJaXMNwisULRSBwGHUZHesG60K+vbK6s5PJijn1ATl4bhlZYsqSQQnD8dOnPWtXRoLy0sha3cdqqwnZC1uT86DoWXaApx1AyKANCiiigAooooAKKKKACiiigArl/Af/ICu/wDsKXv/AKUPXUVy/gP/AJAV3/2FL3/0oeuqn/u0/WP/ALcS/iR1FFFFcpQUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABUVz/x6zf7jfyqWorn/AI9Zv9xv5U47oDB8A/8AJPtA/wCvCL/0EV0dc54B/wCSfaB/14Rf+gity6vbWxiEt5cw28ZO0NNIEBPpk10Yz/ean+J/mKOyJ6KrR6jZS+T5d5bv54Ji2yqfMA67eece1Q3Gr2cOlyX8d1ayQqCFc3CqjMP4d5OBzxXMMv0VQv8AWbHS7WC4vriKBJnSNS0igZYgdSeQM/lVq3uYLuBZ7aaOaJvuyRuGU/QigCWiiigAooooAKKKKACiiigArl/Af/ICu/8AsKXv/pQ9dRXL+A/+QFd/9hS9/wDSh66qf+7T9Y/+3Ev4kdRRRRXKUFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAVFc/8es3+438qlqK5/49Zv8Acb+VOO6AwfAP/JPtA/68Iv8A0EVd1qyuLt7ZoLeOURFmJ+0vBIpIwCrKD75B46VS8A/8k+0D/rwi/wDQRXR10Yz/AHmp/if5ijsjn49N1OCx01ttvNdWs7yMm/YrKwcY3BOSNwydozg0JY6wmhXtsYLFrq5lmOPtLhFVySOfLJyM9Mfj2roKK5hmNLZ6jPosETw2yXUEkThFnZkcIyn7xQEZwe1aVo91JEWu4IoXzwscpk49ztHP5/Wp6KACiiigAooooAKKKKACiiigArl/Af8AyArv/sKXv/pQ9dRXL+A/+QFd/wDYUvf/AEoeuqn/ALtP1j/7cS/iR1FFFFcpQUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABTJUMkLoOrKQM0+ihaAcRoeneONE0Oy0uNPD0qWkKwq7TTgsFGAT8tX9/jv8A54eHP+/0/wD8RXUUV2TxjnJylCN35f8ABJ5fM5ff47/54eHP+/0//wARRv8AHf8Azw8Of9/p/wD4iuooqfrK/wCfcfu/4Icvmcvv8d/88PDn/f6f/wCIo3+O/wDnh4c/7/T/APxFdRRR9ZX/AD7j93/BDl8zl9/jv/nh4c/7/T//ABFG/wAd/wDPDw5/3+n/APiK6iij6yv+fcfu/wCCHL5nL7/Hf/PDw5/3+n/+Io3+O/8Anh4c/wC/0/8A8RXUUUfWV/z7j93/AAQ5fM5ff47/AOeHhz/v9P8A/EUb/Hf/ADw8Of8Af6f/AOIrqKKPrK/59x+7/ghy+Zy+/wAd/wDPDw5/3+n/APiKN/jv/nh4c/7/AE//AMRXUUUfWV/z7j93/BDl8zl9/jv/AJ4eHP8Av9P/APEVc8JaTe6NohttQe3e6kuZ7iQ25JQGSRnwMgHjdW5RSniXKDgopJ66eX/DjS1uFFFFcwwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAP/Z\"\n              }\n            },\n            {\n              \"id\": \"/page/238/Caption/2\",\n              \"block_type\": \"Caption\",\n              \"html\": \"<p><span id=\\\"page-238-0\\\"></span>Figure C.8: Class diagram.</p>\",\n              \"polygon\": [\n                [\n                  266.853515625,\n                  322.330078125\n                ],\n                [\n                  386.384765625,\n                  322.330078125\n                ],\n                [\n                  386.384765625,\n                  332.6518859863281\n                ],\n                [\n                  266.853515625,\n                  332.6518859863281\n                ]\n              ],\n              \"bbox\": [\n                266.853515625,\n                322.330078125,\n                386.384765625,\n                332.6518859863281\n              ],\n              \"children\": null,\n              \"section_hierarchy\": {\n                \"1\": \"/page/232/SectionHeader/1\",\n                \"2\": \"/page/237/SectionHeader/9\"\n              },\n              \"images\": {}\n            }\n          ],\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": null\n        },\n        {\n          \"id\": \"/page/238/Text/3\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Class diagrams are different. They show the classes that make up a program and the relationships between them. They are timeless in the sense that they describe the program as a whole, not any particular point in time. For example, if an instance of Class A generally contains a reference to an instance of Class B, we say there is a \\\"HAS-A relationship\\\" between those classes.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              353.267578125\n            ],\n            [\n              525.6034545898438,\n              353.267578125\n            ],\n            [\n              525.6034545898438,\n              412.51287841796875\n            ],\n            [\n              128.49609375,\n              412.51287841796875\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            353.267578125,\n            525.6034545898438,\n            412.51287841796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/238/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's an example that shows a HAS-A relationship. You can download it from <a href=\\\"http://thinkpython.com/code/lumpy_demo7.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/lumpy_demo7.py\\\">//thinkpython.com/code/lumpy_demo7.py</a>.</p>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              421.13671875\n            ],\n            [\n              525.6057739257812,\n              421.13671875\n            ],\n            [\n              525.6057739257812,\n              443.89886474609375\n            ],\n            [\n              128.49609375,\n              443.89886474609375\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            421.13671875,\n            525.6057739257812,\n            443.89886474609375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/238/Code/5\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>from swampy.Lumpy import Lumpy</pre>\",\n          \"polygon\": [\n            [\n              128.49609375,\n              449.0077209472656\n            ],\n            [\n              286.875,\n              449.0077209472656\n            ],\n            [\n              286.875,\n              459.03515625\n            ],\n            [\n              128.49609375,\n              459.03515625\n            ]\n          ],\n          \"bbox\": [\n            128.49609375,\n            449.0077209472656,\n            286.875,\n            459.03515625\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/238/Text/6\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">lumpy = Lumpy() lumpy.make_reference()</p>\",\n          \"polygon\": [\n            [\n              128.72021484375,\n              473.3957214355469\n            ],\n            [\n              244.67799377441406,\n              473.3957214355469\n            ],\n            [\n              244.67799377441406,\n              495.5533142089844\n            ],\n            [\n              128.72021484375,\n              495.5533142089844\n            ]\n          ],\n          \"bbox\": [\n            128.72021484375,\n            473.3957214355469,\n            244.67799377441406,\n            495.5533142089844\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/238/Code/7\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>box = Rectangle()\\nbox.width = 100.0\\nbox.height = 200.0\\nbox.corner = Point()\\nbox.corner.x = 0.0\\nbox.corner.y = 0.0</pre>\",\n          \"polygon\": [\n            [\n              128.57080078125,\n              509.9787292480469\n            ],\n            [\n              234.21726989746094,\n              509.9787292480469\n            ],\n            [\n              234.21726989746094,\n              580.9133453369141\n            ],\n            [\n              128.57080078125,\n              580.9133453369141\n            ]\n          ],\n          \"bbox\": [\n            128.57080078125,\n            509.9787292480469,\n            234.21726989746094,\n            580.9133453369141\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/238/Code/8\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>lumpy.class_diagram()</pre>\",\n          \"polygon\": [\n            [\n              129.09375,\n              595.3397521972656\n            ],\n            [\n              239.4476318359375,\n              595.3397521972656\n            ],\n            [\n              239.4476318359375,\n              605.3023529052734\n            ],\n            [\n              129.09375,\n              605.3023529052734\n            ]\n          ],\n          \"bbox\": [\n            129.09375,\n            595.3397521972656,\n            239.4476318359375,\n            605.3023529052734\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/238/Text/9\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-237-1\\\">C.7</a> shows the result. Each class is represented with a box that contains the name of the class, any methods the class provides, any class variables, and any instance variables. In this example, Rectangle and Point have instance variables, but no methods or class variables.</p>\",\n          \"polygon\": [\n            [\n              129.5419921875,\n              610.2421875\n            ],\n            [\n              525.9375,\n              610.2421875\n            ],\n            [\n              525.9375,\n              657.2549133300781\n            ],\n            [\n              129.5419921875,\n              657.2549133300781\n            ]\n          ],\n          \"bbox\": [\n            129.5419921875,\n            610.2421875,\n            525.9375,\n            657.2549133300781\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/238/Text/10\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">The arrow from Rectangle to Point shows that Rectangles contain an embedded Point. In addition, Rectangle and Point both inherit from object, which is represented in the diagram with a triangle-headed arrow.</p>\",\n          \"polygon\": [\n            [\n              129.392578125,\n              665.9296875\n            ],\n            [\n              525.638671875,\n              665.9296875\n            ],\n            [\n              525.638671875,\n              700.8349227905273\n            ],\n            [\n              129.392578125,\n              700.8349227905273\n            ]\n          ],\n          \"bbox\": [\n            129.392578125,\n            665.9296875,\n            525.638671875,\n            700.8349227905273\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/232/SectionHeader/1\",\n        \"2\": \"/page/237/SectionHeader/9\"\n      },\n      \"images\": null\n    },\n    {\n      \"id\": \"/page/239/Page/86\",\n      \"block_type\": \"Page\",\n      \"html\": \"<content-ref src='/page/239/PageHeader/0'></content-ref><content-ref src='/page/239/PageHeader/6'></content-ref><content-ref src='/page/239/Text/1'></content-ref><content-ref src='/page/239/Code/2'></content-ref><content-ref src='/page/239/Code/3'></content-ref><content-ref src='/page/239/Text/4'></content-ref><content-ref src='/page/239/Text/5'></content-ref>\",\n      \"polygon\": [\n        [\n          0.0,\n          0.0\n        ],\n        [\n          612.0,\n          0.0\n        ],\n        [\n          612.0,\n          792.0\n        ],\n        [\n          0.0,\n          792.0\n        ]\n      ],\n      \"bbox\": [\n        0.0,\n        0.0,\n        612.0,\n        792.0\n      ],\n      \"children\": [\n        {\n          \"id\": \"/page/239/PageHeader/0\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              86.4000015258789,\n              60.8115234375\n            ],\n            [\n              482.4034729003906,\n              60.8115234375\n            ],\n            [\n              482.4034729003906,\n              71.13372802734375\n            ],\n            [\n              86.4000015258789,\n              71.13372802734375\n            ]\n          ],\n          \"bbox\": [\n            86.4000015258789,\n            60.8115234375,\n            482.4034729003906,\n            71.13372802734375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/239/PageHeader/6\",\n          \"block_type\": \"PageHeader\",\n          \"html\": \"\",\n          \"polygon\": [\n            [\n              84.568359375,\n              60.95654296875\n            ],\n            [\n              102.3486328125,\n              60.95654296875\n            ],\n            [\n              102.3486328125,\n              70.52783203125\n            ],\n            [\n              84.568359375,\n              70.52783203125\n            ]\n          ],\n          \"bbox\": [\n            84.568359375,\n            60.95654296875,\n            102.3486328125,\n            70.52783203125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/239/Text/1\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Here's a more complex example using my solution to Exercise <a href=\\\"#page-198-1\\\">18.6.</a> You can download the code from <a href=\\\"http://thinkpython.com/code/lumpy_demo8.py\\\">http://thinkpython.com/code/lumpy_demo8.py</a>; you will also need <a href=\\\"http://thinkpython.com/code/PokerHand.py\\\">http:</a> <a href=\\\"http://thinkpython.com/code/PokerHand.py\\\">//thinkpython.com/code/PokerHand.py</a>.</p>\",\n          \"polygon\": [\n            [\n              85.46484375,\n              88.365234375\n            ],\n            [\n              482.40582275390625,\n              88.365234375\n            ],\n            [\n              482.40582275390625,\n              123.1868896484375\n            ],\n            [\n              85.46484375,\n              123.1868896484375\n            ]\n          ],\n          \"bbox\": [\n            85.46484375,\n            88.365234375,\n            482.40582275390625,\n            123.1868896484375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/239/Code/2\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>from swampy.Lumpy import Lumpy\\nfrom PokerHand import *\\nlumpy = Lumpy()\\nlumpy.make_reference()\\ndeck = Deck()\\nhand = PokerHand()\\ndeck.move_cards(hand, 7)</pre>\",\n          \"polygon\": [\n            [\n              86.2119140625,\n              129.23968505859375\n            ],\n            [\n              243.3955078125,\n              129.23968505859375\n            ],\n            [\n              243.3955078125,\n              261.615234375\n            ],\n            [\n              86.2119140625,\n              261.615234375\n            ]\n          ],\n          \"bbox\": [\n            86.2119140625,\n            129.23968505859375,\n            243.3955078125,\n            261.615234375\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/239/Code/3\",\n          \"block_type\": \"Code\",\n          \"html\": \"<pre>lumpy.class_diagram()</pre>\",\n          \"polygon\": [\n            [\n              86.40000915527344,\n              263.3775634765625\n            ],\n            [\n              196.330078125,\n              263.3775634765625\n            ],\n            [\n              196.330078125,\n              273.796875\n            ],\n            [\n              86.40000915527344,\n              273.796875\n            ]\n          ],\n          \"bbox\": [\n            86.40000915527344,\n            263.3775634765625,\n            196.330078125,\n            273.796875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/239/Text/4\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">Figure <a href=\\\"#page-238-0\\\">C.8</a> shows the result. PokerHand inherits from Hand, which inherits from Deck. Both Deck and PokerHand have Cards.</p>\",\n          \"polygon\": [\n            [\n              86.0625,\n              278.4375\n            ],\n            [\n              482.90625,\n              278.4375\n            ],\n            [\n              482.90625,\n              301.8497314453125\n            ],\n            [\n              86.0625,\n              301.8497314453125\n            ]\n          ],\n          \"bbox\": [\n            86.0625,\n            278.4375,\n            482.90625,\n            301.8497314453125\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        },\n        {\n          \"id\": \"/page/239/Text/5\",\n          \"block_type\": \"Text\",\n          \"html\": \"<p block-type=\\\"Text\\\">This diagram does not show that Hand also has cards, because in the program there are no instances of Hand. This example demonstrates a limitation of Lumpy; it only knows about the attributes and HAS-A relationships of objects that are instantiated.</p>\",\n          \"polygon\": [\n            [\n              86.361328125,\n              311.30859375\n            ],\n            [\n              483.50390625,\n              311.30859375\n            ],\n            [\n              483.50390625,\n              346.375732421875\n            ],\n            [\n              86.361328125,\n              346.375732421875\n            ]\n          ],\n          \"bbox\": [\n            86.361328125,\n            311.30859375,\n            483.50390625,\n            346.375732421875\n          ],\n          \"children\": null,\n          \"section_hierarchy\": {\n            \"1\": \"/page/232/SectionHeader/1\",\n            \"2\": \"/page/237/SectionHeader/9\"\n          },\n          \"images\": {}\n        }\n      ],\n      \"section_hierarchy\": {\n        \"1\": \"/page/232/SectionHeader/1\",\n        \"2\": \"/page/237/SectionHeader/9\"\n      },\n      \"images\": null\n    }\n  ],\n  \"block_type\": \"Document\"\n}"
  },
  {
    "path": "data/examples/markdown/multicolcnn/multicolcnn.md",
    "content": "# An Aggregated Multicolumn Dilated Convolution Network for Perspective-Free Counting\n\nDiptodip Deb Georgia Institute of Technology diptodipdeb@gatech.edu\n\n# Abstract\n\n*We propose the use of dilated filters to construct an aggregation module in a multicolumn convolutional neural network for perspective-free counting. Counting is a common problem in computer vision (e.g. traffic on the street or pedestrians in a crowd). Modern approaches to the counting problem involve the production of a density map via regression whose integral is equal to the number of objects in the image. However, objects in the image can occur at different scales (e.g. due to perspective effects) which can make it difficult for a learning agent to learn the proper density map. While the use of multiple columns to extract multiscale information from images has been shown before, our approach aggregates the multiscale information gathered by the multicolumn convolutional neural network to improve performance. Our experiments show that our proposed network outperforms the state-of-the-art on many benchmark datasets, and also that using our aggregation module in combination with a higher number of columns is beneficial for multiscale counting.*\n\n# 1. Introduction\n\nLearning to count the number of objects in an image is a deceptively difficult problem with many interesting applications, such as surveillance [\\[20\\]](#page-8-0), traffic monitoring [\\[14\\]](#page-8-1) and medical image analysis [\\[22\\]](#page-8-2). In many of these application areas, the objects to be counted vary widely in appearance, size and shape, and labeled training data is typically sparse. These factors pose a significant computer vision and machine learning challenge.\n\nLempitsky et al. [\\[15\\]](#page-8-3) showed that it is possible to learn to count without learning to explicitly detect and localize individual objects. Instead, they propose learning to predict a density map whose integral over the image equals the number of objects in the image. This approach has been adopted by many later works (Cf. [\\[18,](#page-8-4) [28\\]](#page-9-0)).\n\nHowever, in many counting problems, such as those\n\nJonathan Ventura University of Colorado Colorado Springs jventura@uccs.edu\n\ncounting cells in a microscope image, pedestrians in a crowd, or vehicles in a traffic jam, regressors trained on a single image scale are not reliable [\\[18\\]](#page-8-4). This is due to a variety of challenges including overlap of objects and perspective effects which cause significant variance in object shape, size and appearance.\n\nThe most successful recent approaches address this issue by explicitly incorporating multi-scale information in the network [\\[18,](#page-8-4)[28\\]](#page-9-0). These approaches either combine multiple networks which take input patches of different sizes [\\[18\\]](#page-8-4) or combine multiple filtering paths (\"columns\") which have different size filters [\\[28\\]](#page-9-0).\n\nFollowing on the intuition that multiscale integration is key to achieving good counting performance, we propose to incorporate dilated filters [\\[25\\]](#page-8-5) into a multicolumn convolutional neural network design [\\[28\\]](#page-9-0). Dilated filters exponentially increase the network's receptive field without an exponential increase in parameters, allowing for efficient use of multiscale information. Convolutional neural networks with dilated filters have proven to provide competitive performance in image segmentation where multiscale analysis is also critical [\\[25,](#page-8-5) [26\\]](#page-8-6). By incorporating dilated filters into the multicolumn network design, we greatly increase the ability of the network to selectively aggregate multiscale information, without the need for explicit perspective maps during training and testing. We propose the \"aggregated multicolumn dilated convolution network\" or AMDCN which uses dilations to aggregate multiscale information. Our extensive experimental evaluation shows that this proposed network outperforms previous methods on many benchmark datasets.\n\n# 2. Related Work\n\nCounting using a supervised regressor to formulate a density map was first shown by [\\[15\\]](#page-8-3). In this paper, Lempitsky et al. show that the minimal annotation of a single dot blurred by a Gaussian kernel produces a sufficient density map to train a network to count. All of the counting methods that we examine as well as the method we use in\n\n![](_page_1_Figure_0.jpeg)\n\n<span id=\"page-1-0\"></span>Figure 1. Fully convolutional architecture diagram (not to scale). Arrows show separate columns that all take the same input. At the end of the columns, the feature maps are merged (concatenated) together and passed to another series of dilated convolutions: the aggregator, which can aggregate the multiscale information collected by the columns [\\[25\\]](#page-8-5). The input image is I with C channels. The output single channel density map is D, and integrating over this map (summing the pixels) results in the final count. Initial filter sizes are labeled with brackets or lines. Convolution operations are shown as flat rectangles, feature maps are shown as prisms. The number below each filter represents the dilation rate (1 means no dilation).\n\nour paper follow this method of producing a density map via regression. This is particularly advantageous because a sufficiently accurate regressor can also locate the objects in the image via this method. However, the Lempitsky paper ignores the issue of perspective scaling and other scaling issues. The work of [\\[27\\]](#page-8-7) introduces CNNs (convolutional neural networks) for the purposes of crowd counting, but performs regression on similarly scaled image patches.\n\nThese issues are addressed by the work of [\\[18\\]](#page-8-4). Rubio et al. show that a fully convolutional neural network can be used to produce a supervised regressor that produces density maps as in [\\[15\\]](#page-8-3). They further demonstrate a method dubbed HydraCNN which essentially combines multiple convolutional networks that take in differently scaled image patches in order to incorporate multiscale, global information from the image. The premise of this method is that a single regressor will fail to accurately represent the difference in values of the features of an image caused by perspective shifts (scaling effects) [\\[18\\]](#page-8-4).\n\nHowever, the architectures of both [\\[18\\]](#page-8-4) and [\\[27\\]](#page-8-7) are not fully convolutional due to requiring multiple image patches and, as discussed in [\\[25\\]](#page-8-5), the experiments of [\\[11,](#page-8-8) [17\\]](#page-8-9) and [\\[9,](#page-8-10) [12,](#page-8-11) [16\\]](#page-8-12) leave it unclear as to whether rescaling patches of the image is truly necessary in order to solve dense prediction problems via convolutional neural networks. Moreover, these approaches seem to saturate in performance at three columns, which means the network is extracting information from fewer scales. The work of [\\[25\\]](#page-8-5) proposes the use of dilated convolutions as a simpler alternative that does not require sampling of rescaled image patches to provide global, scale-aware information to the network. A fully convolutional approach to multiscale counting has been proposed by [\\[28\\]](#page-9-0), in which a multicolumn convolutional network gathers features of different scales by using convolutions of increasing kernel sizes from column to column instead of scaling image patches. Further, DeepLab has used dilated convolutions in multiple columns to extract scale information for segmentation [\\[8\\]](#page-8-13). We build on these approaches with our aggregator module as described in Section [3.1,](#page-2-0) which should allow for extracting information from more scales.\n\nIt should be noted that other methods of counting exist, including training a network to recognize deep object features via only providing the counts of the objects of interest in an image [\\[21\\]](#page-8-14) and using CNNs (convolutional neural networks) along with boosting in order to improve the results\n\n![](_page_2_Picture_0.jpeg)\n\nFigure 2. UCF sample results. Left: input counting image. Middle: Ground truth density map. Right: AMDCN prediction of density map on test image. The network never saw these images during training. All density maps are one channel only (i.e. grayscale), but are colored here for clarity.\n\n<span id=\"page-2-2\"></span>of regression for production of density maps [\\[24\\]](#page-8-15). In the same spirit, [\\[4\\]](#page-8-16) combines deep and shallow convolutions within the same network, providing accurate counting of dense objects (e.g. the UCF50 crowd dataset).\n\nIn this paper, however, we aim to apply the dilated convolution method of [\\[25\\]](#page-8-5), which has shown to be able to incorporate multiscale perspective information without using multiple inputs or a complicated network architecture, as well as the multicolumn approach of [\\[8,](#page-8-13) [28\\]](#page-9-0) to aggregate multiscale information for the counting problem.\n\n# 3. Method\n\n### <span id=\"page-2-0\"></span>3.1. Dilated Convolutions for Multicolumn Networks\n\nWe propose the use of dilated convolutions as an attractive alternative to the architecture of the HydraCNN [\\[18\\]](#page-8-4), which seems to saturate in performance at 3 or more columns. We refer to our proposed network as the aggregated multicolumn dilated convolution network1, henceforth shortened as the AMDCN. The architecture of the AMDCN is inspired by the multicolumn counting network of [\\[28\\]](#page-9-0). Extracting features from multiple scales is a good idea when attempting to perform perspective-free counting and increasing the convolution kernel size across columns is an efficient method of doing so. However, the number of parameters increases exponentially as larger kernels are used in these columns to extract features at larger scales. Therefore, we propose using dilated convolutions rather than larger kernels.\n\nDilated convolutions, as discussed in [\\[25\\]](#page-8-5), allow for the exponential increase of the receptive field with a linear increase in the number of parameters with respect to each hidden layer.\n\nIn a traditional 2D convolution, we define a real valued function $F : \\mathbb{Z}^2 \\rightarrow \\mathbb{R}$, an input $\\Omega_r = [-r, r]^2 \\in \\mathbb{Z}^2$, and a filter function $k : \\Omega_r \\rightarrow \\mathbb{R}$. In this case, a convolution operation as defined in [\\[25\\]](#page-8-5) is given by\n\n$$(F*k)(\\mathbf{p}) = \\sum_{\\mathbf{s}+\\mathbf{t}=\\mathbf{p}} F(\\mathbf{s})k(\\mathbf{t}).\\tag{1}$$\n\nA dilated convolution is essentially a generalization of the traditional 2D convolution that allows the operation to skip some inputs. This enables an increase in the size of the filter (i.e. the size of the receptive field) without losing resolution. Formally, we define from [\\[25\\]](#page-8-5) the dilated convolution as\n\n$$(F \\ast_l k)(\\mathbf{p}) = \\sum_{\\mathbf{s} + l\\mathbf{t} = \\mathbf{p}} F(\\mathbf{s}) k(\\mathbf{t}) \\tag{2}$$\n\nwhere l is the index of the current layer of the convolution.\n\nUsing dilations to construct the aggregator in combination with the multicolumn idea will allow for the construction of a network with more than just 3 or 4 columns as in [\\[28\\]](#page-9-0) and [\\[8\\]](#page-8-13), because the aggregator should prevent the saturation of performance with increasing numbers of columns. Therefore the network will be able to extract useful features from more scales. We take advantage of dilations within the columns as well to provide large receptive fields with fewer parameters.\n\nLooking at more scales should allow for more accurate regression of the density map. However, because not all scales will be relevant, we extend the network beyond a simple 1 × 1 convolution after the merged columns. Instead, we construct a second part of the network, the aggregator, which sets our method apart from [\\[28\\]](#page-9-0), [\\[8\\]](#page-8-13), and other multicolumn networks. This aggregator is another series of dilated convolutions that should appropriately consolidate the multiscale information collected by the columns. This is a capability of dilated convolutions observed by [\\[25\\]](#page-8-5). While papers such as [\\[28\\]](#page-9-0) and [\\[8\\]](#page-8-13) have shown that multiple columns and dilated columns are useful in extracting multiscale information, we argue in this paper that the simple aggregator module built using dilated convolutions is able to effectively make use multiscale information from multiple columns. We show compelling evidence for these claims in Section 4.5.\n\nThe network as shown in Figure [1](#page-1-0) contains 5 columns. Note that dilations allow us to use more columns for counting than [\\[28\\]](#page-9-0) or [\\[8\\]](#page-8-13). Each column looks at a larger scale than the previous (the exact dilations can also be seen in Figure [1](#page-1-0)). There are 32 feature maps for each convolution, and all inputs are zero padded prior to each convolution in order to maintain the same data shape from input to output. That is, an image input to this network will result in a density map of the same dimensions. All activations in the specified network are ReLUs. Our input pixel values are floating point 32 bit values from 0 to 1. We center our inputs at 0 by subtracting the per channel mean from each channel. When\n\n<span id=\"page-2-1\"></span>1 Implementation available on [https://github.com/](https://github.com/diptodip/counting) [diptodip/counting](https://github.com/diptodip/counting).\n\ntraining, we use a scaled mean absolute error for our loss function:\n\n$$L = \\frac{1}{n} \\sum_{i=1}^{n} |\\hat{y}_i - \\gamma y_i| \\tag{3}$$\n\nwhere $\\n \\gamma\\n $ is the scale factor, $\\n \\hat{y}_i\\n $ is the prediction, $\\n y_i\\n $ is the true value, and $n$ is the number of pixels. We use a scaled mean absolute error because the target values are so small that it is numerically unstable to regress to these values. At testing time, when retrieving the output density map from the network, we scale the pixel values by $\\gamma^{-1}$ to obtain the correct value. This approach is more numerically stable and avoids having the network learn to output only zeros by weighting the nonzero values highly. For all our datasets, we set $\\gamma = 255$.\n\n#### 3.2. Experiments\n\nWe evaluated the performance of dilated convolutions against various counting methods on a variety of common counting datasets: UCF50 crowd data, TRANCOS traffic data [\\[18\\]](#page-8-4), UCSD crowd data [\\[5\\]](#page-8-17), and WorldExpo crowd data [\\[27\\]](#page-8-7). For each of these data sets, we used labels given by the corresponding density map for each image. An example of this is shown in Figure [2.](#page-2-2) We have performed experiments on the four different splits of the UCSD data as used in [\\[18\\]](#page-8-4) and the split of the UCSD data as used in [\\[28\\]](#page-9-0) (which we call the original split). We also evaluated the performance of our network on the TRANCOS traffic dataset [\\[14\\]](#page-8-1). We have also experimented with higher density datasets for crowd counting, namely WorldExpo and UCF.\n\nWe have observed that multicolumn dilations produce density maps (and therefore counts) that often have lower loss than those of HydraCNN [\\[18\\]](#page-8-4) and [\\[28\\]](#page-9-0). We measure density map regression loss via a scaled mean absolute error loss during training. We compare accuracy of the counts via mean absolute error for the crowd datasets and the GAME metric in the TRANCOS dataset as explained in Section [3.2.2.](#page-3-0) Beyond the comparison to HydraCNN, we will also compare to other recent convolutional counting methods, especially those of [\\[21\\]](#page-8-14), [\\[24\\]](#page-8-15), and [\\[4\\]](#page-8-16) where possible.\n\nFor all datasets, we generally use patched input images and ground truth density maps produced by summing a Gaussian of a fixed size ($σ$) for each object for training. This size varies from dataset to dataset, but remains constant within a dataset with the exception of cases in which a perspective map is used. This is explained per dataset. All experiments were performed using Keras with the Adam optimizer [\\[10\\]](#page-8-18). The learning rates used are detailed per dataset. For testing, we also use patches that can either be directly pieced together or overlapped and averaged except in the case of UCF, for which we run our network on the full image.\n\nFurthermore, we performed a set of experiments in which we varied the number of columns from 1 to 5 (simply by including or not including the columns as specified in Figure [1,](#page-1-0) starting with the smallest filter column and adding larger filter columns one by one). Essentially, the network is allowed to extract information at larger and larger scales in addition to the smaller scales as we include each column. We then performed the same set of experiments, varying the number of columns, but with the aggregator module removed. We perform these experiments on the original split of UCSD as specified in Section [3.2.3](#page-4-0) and [\\[5\\]](#page-8-17), the TRAN-COS dataset, and the WorldExpo dataset because these are relatively large and well defined datasets. We limit the number of epochs to 10 for all of these sets of experiments in order to control for the effect of learning time, and also compare all results using MAE for consistency. These experiments are key to determining the efficacy of the aggregator in effectively combining multiscale information and in providing evidence to support the use of multiple columns to extract multiscale information from images. We report the results of these ablation studies in Section [4.5.](#page-5-0)\n\n#### 3.2.1 UCF50 Crowd Counting\n\nUCF is a particularly challenging crowd counting dataset. There are only 50 images in the whole dataset and they are all of varying sizes and from different scenes. The number of people also varies between images from less than 100 to the thousands. The average image has on the order of 1000 people. The difficulty is due to the combination of the very low number of images in the dataset and the fact that the images are all of varying scenes, making high quality generalization crucial. Furthermore, perspective effects are particularly noticeable for many images in this dataset. Despite this, there is no perspective information available for this dataset.\n\nWe take 1600 random patches of size $150 \\,\\times\\, 150$ for the training. For testing, we do not densely scan the image as in [\\[18\\]](#page-8-4) but instead test on the whole image. In order to standardize the image sizes, we pad each image out with zeros until all images are $1024 \\times 1024$. We then suppress output in the regions where we added padding when testing. This provides a cleaner resulting density map for these large crowds. The ground truth density maps are produced by annotating each object with a Gaussian of $\\sigma = 15$.\n\n#### <span id=\"page-3-0\"></span>3.2.2 TRANCOS Traffic Counting\n\nTRANCOS is a traffic counting dataset that comes with its own metric [\\[14\\]](#page-8-1). This metric is known as $GAME$, which stands for Grid Average Mean absolute Error. $GAME $splits a given density map into $4^{L}$ grids, or subarrays, and obtains a mean absolute error within each grid separately. The value of $L$ is a parameter chosen by the user. These individual errors are summed to obtain the final error for a particular image. The intuition behind this metric is that it is desirable to penalize a density map whose overall count might match the ground truth, but whose shape does not match the ground truth [\\[14\\]](#page-8-1). More formally, we define\n\n$$GAME(L) = \\frac{1}{N} \\cdot \\sum_{n=1}^{N} \\left( \\sum_{l=1}^{4^L} |e_n^l - t_n^l| \\right) \\qquad (4)$$\n\nwhere $N$ refers to the number of images, $L$ is the level parameter for $GAME$, $e_{n}^{l}$ is the predicted or estimated count in region $l$ of image $n$ and $t_{n}^{l}$ is the ground truth count in region $l$ of image $n$ [\\[14\\]](#page-8-1).\n\nFor training this dataset, we take 1600 randomly sampled patches of size 80 × 80. For testing this dataset, we take 80 × 80 non-overlapping patches which we can stitch back together into the full-sized 640 × 480 images. We trained the AMDCN network with density maps produced with a Gaussian of $σ$ = 15 as specified in [\\[18\\]](#page-8-4).\n\n#### <span id=\"page-4-0\"></span>3.2.3 UCSD Crowd Counting\n\nThe UCSD crowd counting dataset consists of frames of video of a sidewalk. There are relatively few people in view at any given time (approximately 25 on average). Furthermore, because the dataset comes from a video, there are many nearly identical images in the dataset. For this dataset, there have been two different ways to split the data into train and test sets. Therefore, we report results using both methods of splitting the data. The first method consists of four different splits: maximal, downscale, upscale, and minimal. Minimal is particularly challenging as the train set contains only 10 images. Moreover, upscale appears to be the easiest for the majority of methods [\\[18\\]](#page-8-4). The second method of splitting this data is much more succinct, leaving 1200 images in the testing set and 800 images in the training set [\\[28\\]](#page-9-0). This split comes from the original paper, so we call it the original split [\\[5\\]](#page-8-17).\n\nFor this dataset, each object is annotated with a 2D Gaussian of covariance $\\Sigma = 8 \\cdot 1_{2\\times2}$. The ground truth map is produced by summing these. When we make use of the perspective maps provided, we divide $\\Sigma$ by the perspective map value at that pixel x, represented by $M(x)$. The provided perspective map for UCSD contains both a horizontal and vertical direction so we take the square root of the provided combined value. For training, we take 1600 random 79 × 119 pixel patches and for testing, we split each test image up into quadrants (which have dimension 79 × 119). There are two different ways to split the dataset into training and testing sets. We have experimented on the split that gave [\\[18\\]](#page-8-4) the best results as well as the split used in [\\[28\\]](#page-9-0).\n\nFirst, we split the dataset into four separate groups of training and testing sets as used in [\\[18\\]](#page-8-4) and originally defined by [\\[20\\]](#page-8-0). These groups are \"upscale,\" \"maximal,\" \"minimal,\" and \"downscale.\" We see in Table [3](#page-6-0) that the \"upscale\" split and \"downscale\" split give us state of the art results on counting for this dataset. For this experiment, we sampled 1600 random patches of size 119 × 79 pixels (width and height respectively) for the training set and split the test set images into 119 × 79 quadrants that could be reconstructed by piecing them together without overlap. We also added left-right flips of each image to our training data.\n\nWe then evaluate the original split. For this experiment, we similarly sampled 1600 random patches of size 119 × 79 pixels (width and height respectively) for the training set and split the test set images into 119 × 79 quadrants that could be reconstructed by piecing them together without overlap.\n\n#### 3.2.4 WorldExpo '10 Crowd Counting\n\nThe WorldExpo dataset [\\[27\\]](#page-8-7) contains a larger number of people (approximately 50 on average, which is double that of UCSD) and contains images from multiple locations. Perspective effects are also much more noticeable in this dataset as compared to UCSD. These qualities of the dataset serve to increase the difficulty of counting. Like UCSD, the WorldExpo dataset was constructed from frames of video recordings of crowds. This means that, unlike UCF, this dataset contains a relatively large number of training and testing images. We experiment on this dataset with and without perspective information.\n\nWithout perspective maps, we generate label density maps for this dataset in the same manner as previously described: a 2D Gaussian with $\\sigma = 15$. We take 16000 150 × 150 randomly sampled patches for training. For testing, we densely scan the image, producing 150 × 150 patches at a stride of 100.\n\nWhen perspective maps are used, however, we follow the procedure as described in [\\[27\\]](#page-8-7), which involves estimating a “crowd density distribution kernel” as the sum of two 2D Gaussians: a symmetric Gaussian for the head and an ellipsoid Gaussian for the body. These are scaled by the perspective map $M$ provided, where $M(x)$ gives the number of pixels that represents a meter at pixel $x$ [\\[27\\]](#page-8-7). Note that the meaning of this perspective map is distinct from the meaning of the perspective map provided for the UCSD dataset. Using this information, the density contribution from a person with head pixel $x$ is given by the following sum of normalized Gaussians:\n\n$$D_{\\mathbf{x}} = \\frac{1}{||Z||} (\\mathcal{N}_h(\\mathbf{x}, \\sigma_h) + \\mathcal{N}_b(\\mathbf{x}_b, \\Sigma_b)) \\qquad (5)$$\n\nwhere $x_b$ is the center of the body, which is 0.875 meters down from the head on average, and can be determined from the perspective map $M$ and the head center $x$ [\\[27\\]](#page-8-7). We sum these Gaussians for each person to pro-\n\n| Method       | MAE    |\n|--------------|--------|\n| AMDCN        | 290.82 |\n| Hydra2s [18] | 333.73 |\n| MCNN [28]    | 377.60 |\n| [27]         | 467.00 |\n| [23]         | 295.80 |\n| [3]          | 318.10 |\n\n<span id=\"page-5-1\"></span>Table 1. Mean absolute error of various methods on UCF crowds\n\nduce the final density map. We set $\\sigma = 0.2M(\\mathbf{x})$ for $N_h $and $\\sigma_x = 0.2M(\\mathbf{x}), \\sigma_y = 0.5M(\\mathbf{x})$ for $\\Sigma_b$ in $N_b$.\n\n# 4. Results\n\n#### 4.1. UCF Crowd Counting\n\nThe UCF dataset is particularly challenging due to the large number of people in the images, the variety of the scenes, as well as the low number of training images. We see in Figure [2](#page-2-2) that because the UCF dataset has over 1000 people on average in each image, the shapes output by the network in the density map are not as well defined or separated as in the UCSD dataset.\n\nWe report a state of the art result on this dataset in Table [1,](#page-5-1) following the standard protocol of 5-fold cross validation. Our MAE on the dataset is 290.82, which is approximately 5 lower than the previous state of the art, HydraCNN [\\[18\\]](#page-8-4). This is particularly indicative of the power of an aggregated multicolumn dilation network. Despite not making use of perspective information, the AMDCN is still able to produce highly accurate density maps for UCF.\n\n#### 4.2. TRANCOS Traffic Counting\n\nOur network performs very well on the TRANCOS dataset. Indeed, as confirmed by the GAME score, AMDCN produces the most accurate count and shape combined as compared to other methods. Table 2 shows that we achieve state of the art results as measured by the GAME metric [\\[14\\]](#page-8-1) across all levels.\n\n#### 4.3. UCSD Crowd Counting\n\nResults are shown in Table [3](#page-6-0) and Figure [3.](#page-6-1) We see that the \"original\" split as defined by the creators of the dataset in [\\[5\\]](#page-8-17) and used in [\\[28\\]](#page-9-0) gives us somewhat worse results for counting on this dataset. Results were consistent over multiple trainings. Again, including the perspective map does not seem to increase performance on this dataset. Despite this, we see in Table [3](#page-6-0) and Figure [3](#page-6-1) that the results are comparable to the state of the art. In fact, for two of the splits, our proposed network beats the state of the art. For the upscale split, the AMDCN is the state of the art by a large relative margin. This is compelling because it shows that accurate perspective-free counting can be achieved without\n\n| Method                                    | GAME<br>(L=0) | GAME<br>(L=1) | GAME<br>(L=2) | GAME<br>(L=3) |\n|-------------------------------------------|---------------|---------------|---------------|---------------|\n| AMDCN                                     | <b>9.77</b>   | <b>13.16</b>  | <b>15.00</b>  | <b>15.87</b>  |\n| [18]                                      | 10.99         | 13.75         | 16.69         | 19.32         |\n| [15] + SIFT<br>from [14]                  | 13.76         | 16.72         | 20.72         | 24.36         |\n| [13] + RGB<br>Norm + Filters<br>from [14] | 17.68         | 19.97         | 23.54         | 25.84         |\n| HOG-2<br>from [14]                        | 13.29         | 18.05         | 23.65         | 28.41         |\n\n<span id=\"page-5-2\"></span>Table 2. Mean absolute error of various methods on TRANCOS traffic\n\ncreating image pyramids or requiring perspective maps as labels using the techniques presented by the AMDCN.\n\n#### 4.4. WorldExpo '10 Crowd Counting\n\nOur network performs reasonably well on the more challenging WorldExpo dataset. While it does not beat the state of the art, our results are comparable. What is more, we do not need to use the perspective maps to obtain these results. As seen in Table [4,](#page-7-1) the AMDCN is capable of incorporating the perspective effects without scaling the Gaussians with perspective information. This shows that it is possible to achieve counting results that approach the state of the art with much simpler labels for the counting training data.\n\n#### <span id=\"page-5-0\"></span>4.5. Ablation Studies\n\nWe report the results of the ablation studies in Figure [4.](#page-7-2) We note from these plots that while there is variation in performance, a few trends stand out. Most importantly, the lowest errors are consistently with a combination of a larger number of columns and including the aggregator module. Notably for the TRANCOS dataset, including the aggregator consistently improves performance. Generally, the aggregator tends to decrease the variance in performance of the network. Some of the variance that we see in the plots can be explained by: (1) for lower numbers of columns, including an aggregator is not as likely to help as there is not much separation of multiscale information across columns and (2) for the UCSD dataset, there is less of a perspective effect than TRANCOS and WorldExpo so a simpler network is more likely to perform comparably to a larger network. These results verify the notion that using more columns increases accuracy, and also support our justification for the use of the aggregator module.\n\n![](_page_6_Figure_0.jpeg)\n\n(a) UCSD upscale split. (b) UCSD original split.\n\n<span id=\"page-6-1\"></span>Figure 3. UCSD crowd counting dataset. Both plots show comparisons of predicted and ground truth counts over time. While AMDCN does not beat the state of the art on the original split, the predictions still follow the true counts reasonably. The jump in the original split is due to that testing set including multiple scenes of highly varying counts.\n\n| Method                                  | maximal | downscale | upscale | minimal | original |\n|-----------------------------------------|---------|-----------|---------|---------|----------|\n| AMDCN (without perspective information) | 1.63    | 1.43      | 0.63    | 1.71    | 1.74     |\n| AMDCN (with perspective information)    | 1.60    | 1.24      | 1.37    | 1.59    | 1.72     |\n| [18] (with perspective information)     | 1.65    | 1.79      | 1.11    | 1.50    | -        |\n| [18] (without perspective information)  | 2.22    | 1.93      | 1.37    | 2.38    | -        |\n| [15]                                    | 1.70    | 1.28      | 1.59    | 2.02    | -        |\n| [13]                                    | 1.70    | 2.16      | 1.61    | 2.20    | -        |\n| [19]                                    | 1.43    | 1.30      | 1.59    | 1.62    | -        |\n| [2]                                     | 1.24    | 1.31      | 1.69    | 1.49    | -        |\n| [27]                                    | 1.70    | 1.26      | 1.59    | 1.52    | 1.60     |\n| [28]                                    | -       | -         | -       | -       | 1.07     |\n| [1, 28]                                 | -       | -         | -       | -       | 2.16     |\n| [7]                                     | -       | -         | -       | -       | 2.25     |\n| [5]                                     | -       | -         | -       | -       | 2.24     |\n| [6]                                     | -       | -         | -       | -       | 2.07     |\n\n<span id=\"page-6-0\"></span>Table 3. Mean absolute error of various methods on UCSD crowds\n\n# 5. Conclusion\n\n#### 5.1. Summary\n\nWe have proposed the use of aggregated multicolumn dilated convolutions, the AMDCN, as an alternative to the HydraCNN [\\[18\\]](#page-8-4) or multicolumn CNN [\\[28\\]](#page-9-0) for the vision task of counting objects in images. Inspired by the multicolumn approach to multiscale problems, we also employ dilations to increase the receptive field of our columns. We then aggregate this multiscale information using another series of dilated convolutions to enable a wide network and detect features at more scales. This method takes advantage of the ability of dilated convolutions to provide exponentially increasing receptive fields. We have performed experiments on the challenging UCF crowd counting dataset, the TRANCOS traffic dataset, multiple splits of the UCSD crowd counting dataset, and the WorldExpo crowd counting dataset.\n\n![](_page_7_Figure_0.jpeg)\n\n<span id=\"page-7-2\"></span>Figure 4. Ablation studies on various datasets in which the number of columns is varied and the aggregator is included or not included. The results generally support the use of more columns and an aggregator module.\n\n| Method                                     | MAE         |\n|--------------------------------------------|-------------|\n| AMDCN (without perspective information)    | 16.6        |\n| AMDCN (with perspective information)       | 14.9        |\n| LBP+RR [28] (with perspective information) | 31.0        |\n| MCNN [28] (with perspective information)   | <b>11.6</b> |\n| [27] (with perspective information)        | 12.9        |\n\n<span id=\"page-7-1\"></span>Table 4. Mean absolute error of various methods on WorldExpo crowds\n\nWe obtain superior or comparable results in most of these datasets. The AMDCN is capable of outperforming these approaches completely especially when perspective information is not provided, as in UCF and TRANCOS. These results show that the AMDCN performs surprisingly well and is also robust to scale effects. Further, our ablation study of removing the aggregator network shows that using more columns and an aggregator provides the best accuracy for counting — especially so when there is no perspective information.\n\n#### 5.2. Future Work\n\nIn addition to an analysis of performance on counting, a density regressor can also be used to locate objects in the image. As mentioned previously, if the regressor is accurate and precise enough, the resulting density map can be used to locate the objects in the image. We expect that in order to do this, one must regress each object to a single point rather than a region specified by a Gaussian. Perhaps this might be accomplished by applying non-maxima suppression to the final layer activations.\n\nIndeed, the method of applying dilated filters to a multicolumn convolutional network in order to enable extracting features of a large number of scales can be applied to various other dense prediction tasks, such as object segmentation at multiple scales or single image depth map prediction. Though we have only conducted experiments on counting and used 5 columns, the architecture presented can be extended and adapted to a variety of tasks that require information at multiple scales.\n\n# Acknowledgment\n\nThis material is based upon work supported by the National Science Foundation under Grant No. 1359275 and 1659788. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of the National Science Foundation. Furthermore, we acknowledge Kyle Yee and Sridhama Prakhya for their helpful conversations and insights during the research process.\n\n# References\n\n- <span id=\"page-7-4\"></span>[1] S. An, W. Liu, and S. Venkatesh. Face recognition using kernel ridge regression. In *Computer Vision and Pattern Recognition, 2007. CVPR'07. IEEE Conference on*, pages 1–7. IEEE, 2007.\n- <span id=\"page-7-3\"></span>[2] C. Arteta, V. Lempitsky, J. A. Noble, and A. Zisserman. Interactive object counting. In *European Conference on Computer Vision*, pages 504–518. Springer, 2014.\n- <span id=\"page-7-0\"></span>[3] D. Babu Sam, S. Surya, and R. Venkatesh Babu. Switching convolutional neural network for crowd\n\ncounting. In *Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition*, pages 5744–5752, 2017.\n\n- <span id=\"page-8-16\"></span>[4] L. Boominathan, S. S. Kruthiventi, and R. V. Babu. Crowdnet: A deep convolutional network for dense crowd counting. In *Proceedings of the 2016 ACM on Multimedia Conference*, pages 640–644. ACM, 2016.\n- <span id=\"page-8-17\"></span>[5] A. B. Chan, Z.-S. J. Liang, and N. Vasconcelos. Privacy preserving crowd monitoring: Counting people without people models or tracking. In *Computer Vision and Pattern Recognition, 2008. CVPR 2008. IEEE Conference on*, pages 1–7. IEEE, 2008.\n- <span id=\"page-8-23\"></span>[6] K. Chen, S. Gong, T. Xiang, and C. Change Loy. Cumulative attribute space for age and crowd density estimation. In *Proceedings of the IEEE conference on computer vision and pattern recognition*, pages 2467– 2474, 2013.\n- <span id=\"page-8-22\"></span>[7] K. Chen, C. C. Loy, S. Gong, and T. Xiang. Feature mining for localised crowd counting.\n- <span id=\"page-8-13\"></span>[8] L.-C. Chen, G. Papandreou, I. Kokkinos, K. Murphy, and A. L. Yuille. Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected crfs. *IEEE Transactions on Pattern Analysis and Machine Intelligence*, 2017.\n- <span id=\"page-8-10\"></span>[9] L.-C. Chen, Y. Yang, J. Wang, W. Xu, and A. L. Yuille. Attention to scale: Scale-aware semantic image segmentation. In *Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition*, pages 3640–3649, 2016.\n- <span id=\"page-8-18\"></span>[10] F. Chollet et al. Keras. [https://github.com/](https://github.com/fchollet/keras) [fchollet/keras](https://github.com/fchollet/keras), 2015.\n- <span id=\"page-8-8\"></span>[11] A. Dosovitskiy, P. Fischer, E. Ilg, P. Hausser, C. Hazirbas, V. Golkov, P. van der Smagt, D. Cremers, and T. Brox. Flownet: Learning optical flow with convolutional networks. In *Proceedings of the IEEE International Conference on Computer Vision*, pages 2758– 2766, 2015.\n- <span id=\"page-8-11\"></span>[12] C. Farabet, C. Couprie, L. Najman, and Y. Le-Cun. Learning hierarchical features for scene labeling. *IEEE transactions on pattern analysis and machine intelligence*, 35(8):1915–1929, 2013.\n- <span id=\"page-8-20\"></span>[13] L. Fiaschi, U. Kothe, R. Nair, and F. A. Hamprecht. ¨ Learning to count with regression forest and structured labels. In *Pattern Recognition (ICPR), 2012 21st International Conference on*, pages 2685–2688. IEEE, 2012.\n- <span id=\"page-8-1\"></span>[14] R. Guerrero-Gomez-Olmedo, B. Torre-Jim ´ enez, S. M. ´ Lopez-Sastre, Roberto Basc ´ on, and D. O ´ noro Rubio. ˜ Extremely overlapping vehicle counting. In *Iberian Conference on Pattern Recognition and Image Analysis (IbPRIA)*, 2015.\n- <span id=\"page-8-3\"></span>[15] V. Lempitsky and A. Zisserman. Learning to count objects in images. In *Advances in Neural Information Processing Systems*, pages 1324–1332, 2010.\n- <span id=\"page-8-12\"></span>[16] G. Lin, C. Shen, A. van den Hengel, and I. Reid. Efficient piecewise training of deep structured models for semantic segmentation. In *Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition*, pages 3194–3203, 2016.\n- <span id=\"page-8-9\"></span>[17] H. Noh, S. Hong, and B. Han. Learning deconvolution network for semantic segmentation. In *Proceedings of the IEEE International Conference on Computer Vision*, pages 1520–1528, 2015.\n- <span id=\"page-8-4\"></span>[18] D. Onoro-Rubio and R. J. Lopez-Sastre. Towards ´ perspective-free object counting with deep learning. In *European Conference on Computer Vision*, pages 615–629. Springer, 2016.\n- <span id=\"page-8-21\"></span>[19] V.-Q. Pham, T. Kozakaya, O. Yamaguchi, and R. Okada. Count forest: Co-voting uncertain number of targets using random forest for crowd density estimation. In *Proceedings of the IEEE International Conference on Computer Vision*, pages 3253–3261, 2015.\n- <span id=\"page-8-0\"></span>[20] D. Ryan, S. Denman, C. Fookes, and S. Sridharan. Crowd counting using multiple local features. In *Digital Image Computing: Techniques and Applications, 2009. DICTA'09.*, pages 81–88. IEEE, 2009.\n- <span id=\"page-8-14\"></span>[21] S. Segu´ı, O. Pujol, and J. Vitria. Learning to count with deep object features. In *Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition Workshops*, pages 90–96, 2015.\n- <span id=\"page-8-2\"></span>[22] J. Selinummi, O. Yli-Harja, and J. A. Puhakka. Software for quantification of labeled bacteria from digital microscope images by automated image analysis. *Biotechniques*, 39(6):859, 2005.\n- <span id=\"page-8-19\"></span>[23] V. A. Sindagi and V. M. Patel. Generating high-quality crowd density maps using contextual pyramid cnns. In *Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition*, pages 1861–1870, 2017.\n- <span id=\"page-8-15\"></span>[24] E. Walach and L. Wolf. Learning to count with cnn boosting. In *European Conference on Computer Vision*, pages 660–676. Springer, 2016.\n- <span id=\"page-8-5\"></span>[25] F. Yu and V. Koltun. Multi-scale context aggregation by dilated convolutions. *arXiv preprint arXiv:1511.07122*, 2015.\n- <span id=\"page-8-6\"></span>[26] F. Yu, V. Koltun, and T. Funkhouser. Dilated residual networks. *arXiv preprint arXiv:1705.09914*, 2017.\n- <span id=\"page-8-7\"></span>[27] C. Zhang, H. Li, X. Wang, and X. Yang. Crossscene crowd counting via deep convolutional neural networks. In *Proceedings of the IEEE Conference on*\n\n*Computer Vision and Pattern Recognition*, pages 833– 841, 2015.\n\n- <span id=\"page-9-0\"></span>[\\[28\\]](#page-8-8) Y. Zhang, D. Zhou, S. Chen, S. Gao, and Y. Ma. Single-image crowd counting via multi-column convolutional neural network. In *Proceedings of the IEEE Conference on Computer Vision and Pattern Recogni tion*, pages 589–597, 2016."
  },
  {
    "path": "data/examples/markdown/multicolcnn/multicolcnn_meta.json",
    "content": "{\n  \"table_of_contents\": [\n    {\n      \"title\": \"An Aggregated Multicolumn Dilated Convolution Network\\nfor Perspective-Free Counting\",\n      \"heading_level\": null,\n      \"page_id\": 0,\n      \"polygon\": [\n        [\n          117.5888671875,\n          105.9219970703125\n        ],\n        [\n          477.371826171875,\n          105.9219970703125\n        ],\n        [\n          477.371826171875,\n          138.201171875\n        ],\n        [\n          117.5888671875,\n          138.201171875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Abstract\",\n      \"heading_level\": null,\n      \"page_id\": 0,\n      \"polygon\": [\n        [\n          144.1845703125,\n          232.4891357421875\n        ],\n        [\n          190.48028564453125,\n          232.4891357421875\n        ],\n        [\n          190.48028564453125,\n          244.4443359375\n        ],\n        [\n          144.1845703125,\n          244.4443359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"1. Introduction\",\n      \"heading_level\": null,\n      \"page_id\": 0,\n      \"polygon\": [\n        [\n          50.016357421875,\n          512.06591796875\n        ],\n        [\n          128.49609375,\n          512.06591796875\n        ],\n        [\n          128.49609375,\n          524.0211181640625\n        ],\n        [\n          50.016357421875,\n          524.0211181640625\n        ]\n      ]\n    },\n    {\n      \"title\": \"2. Related Work\",\n      \"heading_level\": null,\n      \"page_id\": 0,\n      \"polygon\": [\n        [\n          307.1953125,\n          621.7747497558594\n        ],\n        [\n          392.0625,\n          621.7747497558594\n        ],\n        [\n          392.0625,\n          633.7299499511719\n        ],\n        [\n          307.1953125,\n          633.7299499511719\n        ]\n      ]\n    },\n    {\n      \"title\": \"3. Method\",\n      \"heading_level\": null,\n      \"page_id\": 2,\n      \"polygon\": [\n        [\n          49.4560546875,\n          371.27313232421875\n        ],\n        [\n          101.91387939453125,\n          371.27313232421875\n        ],\n        [\n          101.91387939453125,\n          383.22833251953125\n        ],\n        [\n          49.4560546875,\n          383.22833251953125\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.1. Dilated Convolutions for Multicolumn Net-\\nworks\",\n      \"heading_level\": null,\n      \"page_id\": 2,\n      \"polygon\": [\n        [\n          49.53076171875,\n          391.4488220214844\n        ],\n        [\n          287.173828125,\n          391.4488220214844\n        ],\n        [\n          287.173828125,\n          414.3627014160156\n        ],\n        [\n          49.53076171875,\n          414.3627014160156\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.2. Experiments\",\n      \"heading_level\": null,\n      \"page_id\": 3,\n      \"polygon\": [\n        [\n          49.119873046875,\n          263.935546875\n        ],\n        [\n          128.95028686523438,\n          263.935546875\n        ],\n        [\n          128.95028686523438,\n          274.936767578125\n        ],\n        [\n          49.119873046875,\n          274.936767578125\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.2.1 UCF50 Crowd Counting\",\n      \"heading_level\": null,\n      \"page_id\": 3,\n      \"polygon\": [\n        [\n          307.79296875,\n          339.732421875\n        ],\n        [\n          443.4609375,\n          339.732421875\n        ],\n        [\n          443.4609375,\n          350.13201904296875\n        ],\n        [\n          307.79296875,\n          350.13201904296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.2.2 TRANCOS Traffic Counting\",\n      \"heading_level\": null,\n      \"page_id\": 3,\n      \"polygon\": [\n        [\n          308.689453125,\n          624.1640625\n        ],\n        [\n          461.689453125,\n          624.1640625\n        ],\n        [\n          461.689453125,\n          634.7828826904297\n        ],\n        [\n          308.689453125,\n          634.7828826904297\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.2.3 UCSD Crowd Counting\",\n      \"heading_level\": null,\n      \"page_id\": 4,\n      \"polygon\": [\n        [\n          49.38134765625,\n          314.06341552734375\n        ],\n        [\n          182.28515625,\n          314.06341552734375\n        ],\n        [\n          182.28515625,\n          324.0260009765625\n        ],\n        [\n          49.38134765625,\n          324.0260009765625\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.2.4 WorldExpo '10 Crowd Counting\",\n      \"heading_level\": null,\n      \"page_id\": 4,\n      \"polygon\": [\n        [\n          308.86199951171875,\n          259.17828369140625\n        ],\n        [\n          477.4889221191406,\n          259.17828369140625\n        ],\n        [\n          477.4889221191406,\n          269.140869140625\n        ],\n        [\n          308.86199951171875,\n          269.140869140625\n        ]\n      ]\n    },\n    {\n      \"title\": \"4. Results\",\n      \"heading_level\": null,\n      \"page_id\": 5,\n      \"polygon\": [\n        [\n          49.343994140625,\n          231.4151611328125\n        ],\n        [\n          100.5556640625,\n          231.4151611328125\n        ],\n        [\n          100.5556640625,\n          243.370361328125\n        ],\n        [\n          49.343994140625,\n          243.370361328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.1. UCF Crowd Counting\",\n      \"heading_level\": null,\n      \"page_id\": 5,\n      \"polygon\": [\n        [\n          49.418701171875,\n          251.10882568359375\n        ],\n        [\n          173.4697265625,\n          251.10882568359375\n        ],\n        [\n          173.4697265625,\n          262.0677490234375\n        ],\n        [\n          49.418701171875,\n          262.0677490234375\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.2. TRANCOS Traffic Counting\",\n      \"heading_level\": null,\n      \"page_id\": 5,\n      \"polygon\": [\n        [\n          49.68017578125,\n          455.92767333984375\n        ],\n        [\n          203.80078125,\n          455.92767333984375\n        ],\n        [\n          203.80078125,\n          466.8865661621094\n        ],\n        [\n          49.68017578125,\n          466.8865661621094\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.3. UCSD Crowd Counting\",\n      \"heading_level\": null,\n      \"page_id\": 5,\n      \"polygon\": [\n        [\n          49.941650390625,\n          553.1486358642578\n        ],\n        [\n          181.08984375,\n          553.1486358642578\n        ],\n        [\n          181.08984375,\n          564.1075286865234\n        ],\n        [\n          49.941650390625,\n          564.1075286865234\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.4. WorldExpo '10 Crowd Counting\",\n      \"heading_level\": null,\n      \"page_id\": 5,\n      \"polygon\": [\n        [\n          308.689453125,\n          318.3517761230469\n        ],\n        [\n          480.814453125,\n          318.3517761230469\n        ],\n        [\n          480.814453125,\n          329.3106689453125\n        ],\n        [\n          308.689453125,\n          329.3106689453125\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.5. Ablation Studies\",\n      \"heading_level\": null,\n      \"page_id\": 5,\n      \"polygon\": [\n        [\n          308.689453125,\n          475.50469970703125\n        ],\n        [\n          405.6838684082031,\n          475.50469970703125\n        ],\n        [\n          405.6838684082031,\n          486.4635925292969\n        ],\n        [\n          308.689453125,\n          486.4635925292969\n        ]\n      ]\n    },\n    {\n      \"title\": \"5. Conclusion\",\n      \"heading_level\": null,\n      \"page_id\": 6,\n      \"polygon\": [\n        [\n          48.48486328125,\n          594.6561584472656\n        ],\n        [\n          119.20110321044922,\n          594.6561584472656\n        ],\n        [\n          119.20110321044922,\n          607.1484375\n        ],\n        [\n          48.48486328125,\n          607.1484375\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.1. Summary\",\n      \"heading_level\": null,\n      \"page_id\": 6,\n      \"polygon\": [\n        [\n          49.194580078125,\n          619.6148376464844\n        ],\n        [\n          115.55853271484375,\n          619.6148376464844\n        ],\n        [\n          115.55853271484375,\n          630.73828125\n        ],\n        [\n          49.194580078125,\n          630.73828125\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.2. Future Work\",\n      \"heading_level\": null,\n      \"page_id\": 7,\n      \"polygon\": [\n        [\n          49.269287109375,\n          611.3048095703125\n        ],\n        [\n          130.67086791992188,\n          611.3048095703125\n        ],\n        [\n          130.67086791992188,\n          622.2637023925781\n        ],\n        [\n          49.269287109375,\n          622.2637023925781\n        ]\n      ]\n    },\n    {\n      \"title\": \"Acknowledgment\",\n      \"heading_level\": null,\n      \"page_id\": 7,\n      \"polygon\": [\n        [\n          308.86199951171875,\n          446.23602294921875\n        ],\n        [\n          398.337890625,\n          446.23602294921875\n        ],\n        [\n          398.337890625,\n          458.19122314453125\n        ],\n        [\n          308.86199951171875,\n          458.19122314453125\n        ]\n      ]\n    },\n    {\n      \"title\": \"References\",\n      \"heading_level\": null,\n      \"page_id\": 7,\n      \"polygon\": [\n        [\n          308.86199951171875,\n          571.0409851074219\n        ],\n        [\n          365.16796875,\n          571.0409851074219\n        ],\n        [\n          365.16796875,\n          582.9961853027344\n        ],\n        [\n          308.86199951171875,\n          582.9961853027344\n        ]\n      ]\n    }\n  ],\n  \"page_stats\": [\n    {\n      \"page_id\": 0,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          176\n        ],\n        [\n          \"Line\",\n          84\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"SectionHeader\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 1,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          201\n        ],\n        [\n          \"Line\",\n          74\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 2,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          327\n        ],\n        [\n          \"Line\",\n          96\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Equation\",\n          2\n        ],\n        [\n          \"Picture\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"Footnote\",\n          1\n        ],\n        [\n          \"PictureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4608\n      }\n    },\n    {\n      \"page_id\": 3,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          337\n        ],\n        [\n          \"Line\",\n          109\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Equation\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3057\n      }\n    },\n    {\n      \"page_id\": 4,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          505\n        ],\n        [\n          \"Line\",\n          121\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"TextInlineMath\",\n          6\n        ],\n        [\n          \"Equation\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3814\n      }\n    },\n    {\n      \"page_id\": 5,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          332\n        ],\n        [\n          \"TableCell\",\n          113\n        ],\n        [\n          \"Line\",\n          100\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"SectionHeader\",\n          6\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"Table\",\n          2\n        ],\n        [\n          \"Caption\",\n          2\n        ],\n        [\n          \"TableGroup\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 3,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 7669\n      }\n    },\n    {\n      \"page_id\": 6,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          229\n        ],\n        [\n          \"TableCell\",\n          180\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"Caption\",\n          4\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"TableGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 7459\n      }\n    },\n    {\n      \"page_id\": 7,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          145\n        ],\n        [\n          \"Line\",\n          68\n        ],\n        [\n          \"TableCell\",\n          32\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"Reference\",\n          5\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"Caption\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"TableGroup\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 2613\n      }\n    },\n    {\n      \"page_id\": 8,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          312\n        ],\n        [\n          \"Line\",\n          101\n        ],\n        [\n          \"ListItem\",\n          24\n        ],\n        [\n          \"Reference\",\n          24\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"Text\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 9,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          26\n        ],\n        [\n          \"Line\",\n          7\n        ],\n        [\n          \"Text\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    }\n  ],\n  \"debug_data_path\": \"debug_data/multicolcnn\"\n}"
  },
  {
    "path": "data/examples/markdown/switch_transformers/switch_trans.md",
    "content": "# Switch Transformers: Scaling to Trillion Parameter Models with Simple and Efficient Sparsity\n\n### William Fedus∗\n\nliamfedus@google.com\n\n### Barret Zoph∗\n\nbarretzoph@google.com\n\n#### Noam Shazeer\n\nnoam@google.com Google, Mountain View, CA 94043, USA\n\nEditor: Alexander Clark\n\n### Abstract\n\nIn deep learning, models typically reuse the same parameters for all inputs. Mixture of Experts (MoE) models defy this and instead select different parameters for each incoming example. The result is a sparsely-activated model—with an outrageous number of parameters—but a constant computational cost. However, despite several notable successes of MoE, widespread adoption has been hindered by complexity, communication costs, and training instability. We address these with the introduction of the Switch Transformer. We simplify the MoE routing algorithm and design intuitive improved models with reduced communication and computational costs. Our proposed training techniques mitigate the instabilities, and we show large sparse models may be trained, for the first time, with lower precision (bfloat16) formats. We design models based off T5-Base and T5-Large (Raffel et al., 2019) to obtain up to 7x increases in pre-training speed with the same computational resources. These improvements extend into multilingual settings where we measure gains over the mT5-Base version across all 101 languages. Finally, we advance the current scale of language models by pre-training up to trillion parameter models on the “Colossal Clean Crawled Corpus”, and achieve a 4x speedup over the T5-XXL model.[1](#page-0-0)[2](#page-0-1)\n\nKeywords: mixture-of-experts, natural language processing, sparsity, large-scale machine learning, distributed computing\n\n©2022 William Fedus, Barret Zoph and Noam Shazeer.\n\n<sup>∗</sup>. Equal contribution.\n\n<span id=\"page-0-0\"></span><sup>1.</sup> JAX code for Switch Transformer and all model checkpoints are available at [https://github.com/](https://github.com/google-research/t5x) [google-research/t5x](https://github.com/google-research/t5x)\n\n<span id=\"page-0-1\"></span><sup>2.</sup> Tensorflow code for Switch Transformer is available at [https://github.com/tensorflow/mesh/blob/](https://github.com/tensorflow/mesh/blob/master/mesh_tensorflow/transformer/moe.py) [master/mesh_tensorflow/transformer/moe.py](https://github.com/tensorflow/mesh/blob/master/mesh_tensorflow/transformer/moe.py)\n\n## Contents\n\n| 1 | Introduction                                              | 3  |    |\n|---|-----------------------------------------------------------|----|----|\n| 2 | Switch Transformer                                        | 4  |    |\n|   | 2.1 Simplifying Sparse Routing                            | 5  |    |\n|   | 2.2 Efficient Sparse Routing                              | 6  |    |\n|   | 2.3 Putting It All Together: The Switch Transformer       | 8  |    |\n|   | 2.4 Improved Training and Fine-Tuning Techniques          | 8  |    |\n| 3 | Scaling Properties                                        | 11 |    |\n|   | 3.1 Scaling Results on a Step-Basis                       | 12 |    |\n|   | 3.2 Scaling Results on a Time-Basis                       | 13 |    |\n|   | 3.3 Scaling Versus a Larger Dense Model                   | 13 |    |\n| 4 | Downstream Results                                        | 14 |    |\n|   | 4.1 Fine-Tuning                                           | 14 |    |\n|   | 4.2 Distillation                                          | 16 |    |\n|   | 4.3 Multilingual Learning                                 | 17 |    |\n| 5 | Designing Models with Data, Model, and Expert-Parallelism | 18 |    |\n|   | 5.1 Data Parallelism                                      | 20 |    |\n|   | 5.2 Model Parallelism                                     | 20 |    |\n|   | 5.3 Model and Data Parallelism                            | 21 |    |\n|   | 5.4 Expert and Data Parallelism                           | 22 |    |\n|   | 5.5 Expert, Model and Data Parallelism                    | 22 |    |\n|   | 5.6 Towards Trillion Parameter Models                     | 22 |    |\n| 6 | Related Work                                              | 24 |    |\n| 7 | Discussion                                                | 25 |    |\n| 8 | Future Work                                               | 26 |    |\n| 9 | Conclusion                                                | 27 |    |\n| A | Switch for Attention                                      | 27 |    |\n| B | Preventing Token Dropping with No-Token-Left-Behind       | 29 |    |\n| C | Encouraging Exploration Across Experts                    | 29 |    |\n| D | Switch Transformers in Lower Compute Regimes              |    | 29 |\n| E | Relation of Upstream to Downstream Model Performance      |    | 32 |\n| F | Pseudo Code for Switch Transformers                       | 33 |    |\n\n### <span id=\"page-2-0\"></span>1. Introduction\n\nLarge scale training has been an effective path towards flexible and powerful neural language models [(Radford et al.,](#page-37-1) [2018;](#page-37-1) [Kaplan et al.,](#page-36-0) [2020;](#page-36-0) [Brown et al.,](#page-35-0) [2020)](#page-35-0). Simple architectures backed by a generous computational budget, data set size and parameter count—surpass more complicated algorithms [(Sutton,](#page-38-0) [2019)](#page-38-0). An approach followed in [Radford et al.](#page-37-1) [(2018)](#page-37-1); [Raffel et al.](#page-37-0) [(2019)](#page-37-0); [Brown et al.](#page-35-0) [(2020)](#page-35-0) expands the model size of a densely-activated Transformer [(Vaswani et al.,](#page-39-1) [2017)](#page-39-1). While effective, it is also extremely computationally intensive [(Strubell et al.,](#page-38-1) [2019)](#page-38-1). Inspired by the success of model scale, but seeking greater computational efficiency, we instead propose a sparsely-activated expert model: the Switch Transformer. In our case the sparsity comes from activating a subset of the neural network weights for each incoming example.\n\n![](_page_2_Figure_3.jpeg)\n\nFigure 1: Scaling and sample efficiency of Switch Transformers. Left Plot: Scaling properties for increasingly sparse (more experts) Switch Transformers. Right Plot: Negative log perplexity comparing Switch Transformers to T5 [(Raffel et al.,](#page-37-0) [2019)](#page-37-0) models using the same compute budget.\n\nSparse training is an active area of research and engineering [(Gray et al.,](#page-35-1) [2017;](#page-35-1) [Gale](#page-35-2) [et al.,](#page-35-2) [2020)](#page-35-2), but as of today, machine learning libraries and hardware accelerators still cater to dense matrix multiplications. To have an efficient sparse algorithm, we start with the Mixture-of-Expert (MoE) paradigm [(Jacobs et al.,](#page-36-1) [1991;](#page-36-1) [Jordan and Jacobs,](#page-36-2) [1994;](#page-36-2) [Shazeer](#page-38-2) [et al.,](#page-38-2) [2017)](#page-38-2), and simplify it to yield training stability and computational benefits. MoE models have had notable successes in machine translation [(Shazeer et al.,](#page-38-2) [2017,](#page-38-2) [2018;](#page-38-3) [Lep](#page-37-2)[ikhin et al.,](#page-37-2) [2020)](#page-37-2), however, widespread adoption is hindered by complexity, communication costs, and training instabilities.\n\nWe address these issues, and then go beyond translation, to find that these class of algorithms are broadly valuable in natural language. We measure superior scaling on a diverse set of natural language tasks and across three regimes in NLP: pre-training, finetuning and multi-task training. While this work focuses on scale, we also show that the Switch Transformer architecture not only excels in the domain of supercomputers, but is beneficial even with only a few computational cores. Further, our large sparse models can be distilled [(Hinton et al.,](#page-36-3) [2015)](#page-36-3) into small dense versions while preserving 30% of the sparse model quality gain. Our contributions are the following:\n\n- The Switch Transformer architecture, which simplifies and improves over Mixture of Experts.\n- Scaling properties and a benchmark against the strongly tuned T5 model [(Raffel et al.,](#page-37-0) [2019)](#page-37-0) where we measure 7x+ pre-training speedups while still using the same FLOPS per token. We further show the improvements hold even with limited computational resources, using as few as two experts.\n- Successful distillation of sparse pre-trained and specialized fine-tuned models into small dense models. We reduce the model size by up to 99% while preserving 30% of the quality gains of the large sparse teacher.\n- Improved pre-training and fine-tuning techniques: (1) selective precision training that enables training with lower bfloat16 precision (2) an initialization scheme that allows for scaling to a larger number of experts and (3) increased expert regularization that improves sparse model fine-tuning and multi-task training.\n- A measurement of the pre-training benefits on multilingual data where we find a universal improvement across all 101 languages and with 91% of languages benefiting from 4x+ speedups over the mT5 baseline [(Xue et al.,](#page-39-2) [2020)](#page-39-2).\n- An increase in the scale of neural language models achieved by efficiently combining data, model, and expert-parallelism to create models with up to a trillion parameters. These models improve the pre-training speed of a strongly tuned T5-XXL baseline by 4x.\n\n## <span id=\"page-3-0\"></span>2. Switch Transformer\n\nThe guiding design principle for Switch Transformers is to maximize the parameter count of a Transformer model [(Vaswani et al.,](#page-39-1) [2017)](#page-39-1) in a simple and computationally efficient way. The benefit of scale was exhaustively studied in [Kaplan et al.](#page-36-0) [(2020)](#page-36-0) which uncovered powerlaw scaling with model size, data set size and computational budget. Importantly, this work advocates training large models on relatively small amounts of data as the computationally optimal approach.\n\nHeeding these results, we investigate a fourth axis: increase the parameter count while keeping the floating point operations (FLOPs) per example constant. Our hypothesis is that the parameter count, independent of total computation performed, is a separately important axis on which to scale. We achieve this by designing a sparsely activated model that efficiently uses hardware designed for dense matrix multiplications such as GPUs and TPUs. Our work here focuses on TPU architectures, but these class of models may be similarly trained on GPU clusters. In our distributed training setup, our sparsely activated layers split unique weights on different devices. Therefore, the weights of the model increase with the number of devices, all while maintaining a manageable memory and computational footprint on each device.\n\n![](_page_4_Figure_1.jpeg)\n\nFigure 2: Illustration of a Switch Transformer encoder block. We replace the dense feed forward network (FFN) layer present in the Transformer with a sparse Switch FFN layer (light blue). The layer operates independently on the tokens in the sequence. We diagram two tokens ($x_1$ = “More” and $x_2$ = “Parameters” below) being routed (solid lines) across four FFN experts, where the router independently routes each token. The switch FFN layer returns the output of the selected FFN multiplied by the router gate value (dotted-line).\n\n### <span id=\"page-4-0\"></span>2.1 Simplifying Sparse Routing\n\nMixture of Expert Routing. [Shazeer et al.](#page-38-2) [(2017)](#page-38-2) proposed a natural language Mixtureof-Experts (MoE) layer which takes as an input a token representation $x$ and then routes this to the best determined top-$k$ experts, selected from a set ${E_i(x)\\}_{i=1}^N$ of $N$ experts. The router variable $W_r$ produces logits $h(x) = W_r \\cdot x$ which are normalized via a softmax distribution over the available $N$ experts at that layer. The gate-value for expert $i$ is given by,\n\n$$p_i(x) = \\frac{e^{h(x)_i}}{\\sum_j^N e^{h(x)_j}}.\\tag{1}$$\n\nThe top-$k$ gate values are selected for routing the token $x$. If $\\mathcal{T}$ is the set of selected top-$k$ indices then the output computation of the layer is the linearly weighted combination of each expert's computation on the token by the gate value,\n\n<span id=\"page-4-1\"></span>\n$$y = \\sum_{i \\in \\mathcal{T}} p_i(x) E_i(x). \\tag{2}$$\n\n**Switch Routing:** Rethinking Mixture-of-Experts. [Shazeer et al.](#page-38-2) (2017) conjectured that routing to $k > 1$ experts was necessary in order to have non-trivial gradients to the routing functions. The authors intuited that learning to route would not work without the ability to compare at least two experts. [Ramachandran and Le](#page-37-3) (2018) went further to study the top-$k$ decision and found that higher $k$-values in lower layers in the model were important for models with many routing layers. Contrary to these ideas, we instead use a simplified strategy where we route to only a single expert. We show this simplification preserves model quality, reduces routing computation and performs better. This $k = 1 $routing strategy is later referred to as a Switch layer. Note that for both MoE and Switch Routing, the gate value $p_i(x)$ in Equation [2](#page-4-1) permits differentiability of the router.\n\nThe benefits for the Switch layer are three-fold: (1) The router computation is reduced as we are only routing a token to a single expert. (2) The batch size (expert capacity) of each expert can be at least halved since each token is only being routed to a single expert.[3](#page-5-1) (3) The routing implementation is simplified and communication costs are reduced. Figure [3](#page-5-2) shows an example of routing with different expert capacity factors.\n\n![](_page_5_Figure_3.jpeg)\n\n- <span id=\"page-5-2\"></span>Figure 3: Illustration of token routing dynamics. Each expert processes a fixed batch-size of tokens modulated by the capacity factor. Each token is routed to the expert with the highest router probability, but each expert has a fixed batch size of (total_tokens / num_experts) × capacity_factor. If the tokens are unevenly dispatched then certain experts will overflow (denoted by dotted red lines), resulting in these tokens not being processed by this layer. A larger capacity factor alleviates this overflow issue, but also increases computation and communication costs (depicted by padded white/empty slots).\n### <span id=\"page-5-0\"></span>2.2 Efficient Sparse Routing\n\nWe use Mesh-Tensorflow (MTF) [(Shazeer et al.,](#page-38-3) [2018)](#page-38-3) which is a library, with similar semantics and API to Tensorflow [(Abadi et al.,](#page-35-3) [2016)](#page-35-3) that facilitates efficient distributed data and model parallel architectures. It does so by abstracting the physical set of cores to a logical mesh of processors. Tensors and computations may then be sharded per named dimensions, facilitating easy partitioning of models across dimensions. We design our model with TPUs in mind, which require statically declared sizes. Below we describe our distributed Switch Transformer implementation.\n\n<span id=\"page-5-1\"></span><sup>3.</sup> See Section [2.2](#page-5-0) for a technical description.\n\nDistributed Switch Implementation. All of our tensor shapes are statically determined at compilation time, but our computation is dynamic due to the routing decisions at training and inference. Because of this, one important technical consideration is how to set the expert capacity. The expert capacity—the number of tokens each expert computes—is set by evenly dividing the number of tokens in the batch across the number of experts, and then further expanding by a capacity factor,\n\n$$\\text{expected capacity} = \\left(\\frac{\\text{tokens per batch}}{\\text{number of experts}}\\right) \\times \\text{capacity factor}.\\tag{3}$$\n\nA capacity factor greater than 1.0 creates additional buffer to accommodate for when tokens are not perfectly balanced across experts. If too many tokens are routed to an expert (referred to later as dropped tokens), computation is skipped and the token representation is passed directly to the next layer through the residual connection. Increasing the expert capacity is not without drawbacks, however, since high values will result in wasted computation and memory. This trade-off is explained in Figure [3.](#page-5-2) Empirically we find ensuring lower rates of dropped tokens are important for the scaling of sparse expert-models. Throughout our experiments we didn't notice any dependency on the number of experts for the number of tokens dropped (typically $< 1%$). Using the auxiliary load balancing loss (next section) with a high enough coefficient ensured good load balancing. We study the impact that these design decisions have on model quality and speed in Table [1.](#page-8-0) \n\nA Differentiable Load Balancing Loss. To encourage a balanced load across experts we add an auxiliary loss (Shazeer et al., 2017, 2018; Lepikhin et al., 2020). As in Shazeer et al. (2018); Lepikhin et al. (2020), Switch Transformers simplifies the original design in Shazeer et al. (2017) which had separate load-balancing and importance-weighting losses. For each Switch layer, this auxiliary loss is added to the total model loss during training. Given $N$ experts indexed by $i = 1$ to $N$ and a batch $\\mathcal{B}$ with $T$ tokens, the auxiliary loss is computed as the scaled dot-product between vectors $f$ and $P$,\n\n$$\\text{loss} = \\alpha \\cdot N \\cdot \\sum_{i=1}^{N} f_i \\cdot P_i \\tag{4}$$\n\n<span id=\"page-6-1\"></span>where $f_i$ is the fraction of tokens dispatched to expert $i$,\n\n$$f_i = \\frac{1}{T} \\sum_{x \\in \\mathcal{B}} \\mathbb{1} \\{ \\operatorname*{argmax} \\, p(x) = i \\} \\tag{5}$$\n\nand $P_i$ is the fraction of the router probability allocated for expert $i$,2\n\n$$P_i = \\frac{1}{T} \\sum_{x \\in \\mathcal{B}} p_i(x). \\tag{6}$$\n\nSince we seek uniform routing of the batch of tokens across the $N$ experts, we desire both vectors to have values of $1/N$. The auxiliary loss of Equation [4](#page-6-1) encourages uniform routing since it is minimized under a uniform distribution. The objective can also be differentiated as\n\n<span id=\"page-6-0\"></span>A potential source of confusion: $p_i(x)$ is the probability of routing token $x$ to expert $i$. $P_i$ is the probability fraction to expert $i$ across all tokens in the batch $B$.\n\nthe $P$-vector is differentiable, but the $f$-vector is not. The final loss is multiplied by expert count $N$ to keep the loss constant as the number of experts varies since under uniform routing $\\sum_{i=1}^{N}(f_i$ · Pi) = PN i=1( 1 N · 1 N ) = 1 N . Finally, a hyper-parameter α is a multiplicative coefficient for these auxiliary losses; throughout this work we use an α = 10−2 which was sufficiently large to ensure load balancing while small enough to not to overwhelm the primary cross-entropy objective. We swept hyper-parameter ranges of $\\alpha$ from $10^{-1}$ to $10^{-5}$ in powers of 10 and found $10^{-2}$ balanced load quickly without interfering with training loss.\n\n#### <span id=\"page-7-0\"></span>2.3 Putting It All Together: The Switch Transformer\n\nOur first test of the Switch Transformer starts with pre-training on the \"Colossal Clean Crawled Corpus\" (C4), introduced in [(Raffel et al.,](#page-37-0) [2019)](#page-37-0). For our pre-training objective, we use a masked language modeling task [(Taylor,](#page-38-4) [1953;](#page-38-4) [Fedus et al.,](#page-35-4) [2018;](#page-35-4) [Devlin et al.,](#page-35-5) [2018)](#page-35-5) where the model is trained to predict missing tokens. In our pre-training setting, as determined in [Raffel et al.](#page-37-0) [(2019)](#page-37-0) to be optimal, we drop out 15% of tokens and then replace the masked sequence with a single sentinel token. To compare our models, we record the negative log perplexity.[4](#page-7-2) Throughout all tables in the paper, ↑ indicates that a higher value for that metric is better and vice-versa for ↓. A comparison of all the models studied in this work are in Table [9.](#page-22-0)\n\nA head-to-head comparison of the Switch Transformer and the MoE Transformer is presented in Table [1.](#page-8-0) Our Switch Transformer model is FLOP-matched to 'T5-Base' [(Raffel](#page-37-0) [et al.,](#page-37-0) [2019)](#page-37-0) (same amount of computation per token is applied). The MoE Transformer, using top-2 routing, has two experts which each apply a separate FFN to each token and thus its FLOPS are larger. All models were trained for the same number of steps on identical hardware. Note that the MoE model going from capacity factor 2.0 to 1.25 actually slows down (840 to 790) in the above experiment setup, which is unexpected.[5](#page-7-3)\n\nWe highlight three key findings from Table [1:](#page-8-0) (1) Switch Transformers outperform both carefully tuned dense models and MoE Transformers on a speed-quality basis. For a fixed amount of computation and wall-clock time, Switch Transformers achieve the best result. (2) The Switch Transformer has a smaller computational footprint than the MoE counterpart. If we increase its size to match the training speed of the MoE Transformer, we find this outperforms all MoE and Dense models on a per step basis as well. (3) Switch Transformers perform better at lower capacity factors (1.0, 1.25). Smaller expert capacities are indicative of the scenario in the large model regime where model memory is very scarce and the capacity factor will want to be made as small as possible.\n\n#### <span id=\"page-7-1\"></span>2.4 Improved Training and Fine-Tuning Techniques\n\nSparse expert models may introduce training difficulties over a vanilla Transformer. Instability can result because of the hard-switching (routing) decisions at each of these layers. Further, low precision formats like bfloat16 [(Wang and Kanwar,](#page-39-3) [2019)](#page-39-3) can exacerbate issues\n\n<span id=\"page-7-2\"></span><sup>4.</sup> We use log base-e for this metric so the units are nats.\n\n<span id=\"page-7-3\"></span><sup>5.</sup> Note that speed measurements are both a function of the algorithm and the implementation details. Switch Transformer reduces the necessary computation relative to MoE (algorithm), but the final speed differences are impacted by low-level optimizations (implementation).\n\n| Model        | Capacity<br>Factor | Quality after<br>100k steps (↑)<br>(Neg. Log Perp.) | Time to Quality<br>Threshold (↓)<br>(hours) | Speed (↑)<br>(examples/sec) |\n|--------------|--------------------|-----------------------------------------------------|---------------------------------------------|-----------------------------|\n| T5-Base      | —                  | -1.731                                              | Not achieved†                               | 1600                        |\n| T5-Large     | —                  | -1.550                                              | 131.1                                       | 470                         |\n| MoE-Base     | 2.0                | -1.547                                              | 68.7                                        | 840                         |\n| Switch-Base  | 2.0                | -1.554                                              | 72.8                                        | 860                         |\n| MoE-Base     | 1.25               | -1.559                                              | 80.7                                        | 790                         |\n| Switch-Base  | 1.25               | -1.553                                              | 65.0                                        | 910                         |\n| MoE-Base     | 1.0                | -1.572                                              | 80.1                                        | 860                         |\n| Switch-Base  | 1.0                | -1.561                                              | <b>62.8</b>                                 | 1000                        |\n| Switch-Base+ | 1.0                | <b>-1.534</b>                                       | 67.6                                        | 780                         |\n\n- <span id=\"page-8-0\"></span>Table 1: Benchmarking Switch versus MoE. Head-to-head comparison measuring per step and per time benefits of the Switch Transformer over the MoE Transformer and T5 dense baselines. We measure quality by the negative log perplexity and the time to reach an arbitrary chosen quality threshold of Neg. Log Perp.=-1.50. All MoE and Switch Transformer models use 128 experts, with experts at every other feed-forward layer. For Switch-Base+, we increase the model size until it matches the speed of the MoE model by increasing the model hidden-size from 768 to 896 and the number of heads from 14 to 16. All models are trained with the same amount of computation (32 cores) and on the same hardware (TPUv3). Further note that all our models required pre-training beyond 100k steps to achieve our level threshold of -1.50. † T5-Base did not achieve this negative log perplexity in the 100k steps the models were trained.\nin the softmax computation for our router. We describe training difficulties here and the methods we use to overcome them to achieve stable and scalable training.\n\nSelective precision with large sparse models. Model instability hinders the ability to train using efficient bfloat16 precision, and as a result, [Lepikhin et al.](#page-37-2) [(2020)](#page-37-2) trains with float32 precision throughout their MoE Transformer. However, we show that by instead selectively casting to float32 precision within a localized part of the model, stability may be achieved, without incurring expensive communication cost of float32 tensors. This technique is inline with modern mixed precision training strategies where certain parts of the model and gradient updates are done in higher precision [Micikevicius et al.](#page-37-4) [(2017)](#page-37-4). Table [2](#page-9-0) shows that our approach permits nearly equal speed to bfloat16 training while conferring the training stability of float32.\n\nTo achieve this, we cast the router input to float32 precision. The router function takes the tokens as input and produces the dispatch and combine tensors used for the selection and recombination of expert computation (refer to Code Block [15](#page-33-0) in the Appendix for details). Importantly, the float32 precision is only used within the body of the router function—on computations local to that device. Because the resulting dispatch and combine tensors are recast to bfloat16 precision at the end of the function, no expensive float32 tensors\n\n| Model<br>(precision)              | Quality<br>(Neg. Log Perp.) (↑) | Speed<br>(Examples/sec) (↑) |\n|-----------------------------------|---------------------------------|-----------------------------|\n| Switch-Base (float32)             | -1.718                          | 1160                        |\n| Switch-Base (bfloat16)            | -3.780 [diverged]               | <b>1390</b>                 |\n| Switch-Base (Selective precision) | <b>-1.716</b>                   | 1390                        |\n\n<span id=\"page-9-0\"></span>Table 2: Selective precision. We cast the local routing operations to float32 while preserving bfloat16 precision elsewhere to stabilize our model while achieving nearly equal speed to (unstable) bfloat16-precision training. We measure the quality of a 32 expert model after a fixed step count early in training its speed performance. For both Switch-Base in float32 and with Selective prevision we notice similar learning dynamics.\n\nare broadcast through all-to-all communication operations, but we still benefit from the increased stability of float32.\n\nSmaller parameter initialization for stability. Appropriate initialization is critical to successful training in deep learning and we especially observe this to be true for Switch Transformer. We initialize our weight matrices by drawing elements from a truncated normal distribution with mean $\\mu = 0$ and standard deviation $\\sigma = \\sqrt{s/n}$ where $s$ is a scale hyper-parameter and $n$ is the number of input units in the weight tensor (e.g. fan-in).[6](#page-9-1)\n\nAs an additional remedy to the instability, we recommend reducing the default Transformer initialization scale $s = 1.0$ by a factor of 10. This both improves quality and reduces the likelihood of destabilized training in our experiments. Table [3](#page-9-2) measures the improvement of the model quality and reduction of the variance early in training. We find that\n\n| Model (Initialization scale) | Average Quality<br>(Neg. Log Perp.) | Std. Dev. of Quality<br>(Neg. Log Perp.) |\n|------------------------------|-------------------------------------|------------------------------------------|\n| Switch-Base (0.1x-init)      | <b>-2.72</b>                        | <b>0.01</b>                              |\n| Switch-Base (1.0x-init)      | -3.60                               | 0.68                                     |\n\n- <span id=\"page-9-2\"></span>Table 3: Reduced initialization scale improves stability. Reducing the initialization scale results in better model quality and more stable training of Switch Transformer. Here we record the average and standard deviation of model quality, measured by the negative log perplexity, of a 32 expert model after 3.5k steps (3 random seeds each).\nthe average model quality, as measured by the Neg. Log Perp., is dramatically improved and there is a far reduced variance across runs. Further, this same initialization scheme is broadly effective for models spanning several orders of magnitude. We use the same approach to stably train models as small as our 223M parameter baseline to enormous models in excess of one trillion parameters.\n\n<span id=\"page-9-1\"></span><sup>6.</sup> Values greater than two standard deviations from the mean are resampled.\n\nRegularizing large sparse models. Our paper considers the common NLP approach of pre-training on a large corpus followed by fine-tuning on smaller downstream tasks such as summarization or question answering. One issue that naturally arises is overfitting since many fine-tuning tasks have very few examples. During fine-tuning of standard Transformers, [Raffel et al.](#page-37-0) [(2019)](#page-37-0) use dropout [(Srivastava et al.,](#page-38-5) [2014)](#page-38-5) at each layer to prevent overfitting. Our Switch Transformers have significantly more parameters than the FLOP matched dense baseline, which can lead to more severe overfitting on these smaller downstream tasks.\n\n| Model (dropout)             | GLUE        | CNNDM       | SQuAD       | SuperGLUE   |\n|-----------------------------|-------------|-------------|-------------|-------------|\n| T5-Base (d=0.1)             | 82.9        | <b>19.6</b> | 83.5        | 72.4        |\n| Switch-Base (d=0.1)         | 84.7        | 19.1        | <b>83.7</b> | <b>73.0</b> |\n| Switch-Base (d=0.2)         | 84.4        | 19.2        | <b>83.9</b> | <b>73.2</b> |\n| Switch-Base (d=0.3)         | 83.9        | 19.6        | 83.4        | 70.7        |\n| Switch-Base (d=0.1, ed=0.4) | <b>85.2</b> | <b>19.6</b> | <b>83.7</b> | <b>73.0</b> |\n\n<span id=\"page-10-1\"></span>Table 4: Fine-tuning regularization results. A sweep of dropout rates while fine-tuning Switch Transformer models pre-trained on 34B tokens of the C4 data set (higher numbers are better). We observe that using a lower standard dropout rate at all non-expert layer, with a much larger dropout rate on the expert feed-forward layers, to perform the best.\n\nWe thus propose a simple way to alleviate this issue during fine-tuning: increase the dropout inside the experts, which we name as expert dropout. During fine-tuning we simply increase the dropout rate by a significant amount only at the interim feed-forward computation at each expert layer. Table [4](#page-10-1) has the results for our expert dropout protocol. We observe that simply increasing the dropout across all layers leads to worse performance. However, setting a smaller dropout rate (0.1) at non-expert layers and a much larger dropout rate (0.4) at expert layers leads to performance improvements on four smaller downstream tasks.\n\n### <span id=\"page-10-0\"></span>3. Scaling Properties\n\nWe present a study of the scaling properties of the Switch Transformer architecture during pre-training. Per [Kaplan et al.](#page-36-0) [(2020)](#page-36-0), we consider a regime where the model is not bottlenecked by either the computational budget or amount of data. To avoid the data bottleneck, we use the large C4 corpus with over 180B target tokens [(Raffel et al.,](#page-37-0) [2019)](#page-37-0) and we train until diminishing returns are observed.\n\nThe number of experts is the most efficient dimension for scaling our model. Increasing the experts keeps the computational cost approximately fixed since the model only selects one expert per token, regardless of the number of experts to choose from. The router must compute a probability distribution over more experts, however, this is a lightweight computation of cost $O(d_{model} \\times \\text{num experts})$ where $d_{model}$ is the embedding dimension of tokens passed between the layers. In this section, we consider the scaling properties on a step-basis and a time-basis with a fixed computational budget.\n\n#### <span id=\"page-11-0\"></span>3.1 Scaling Results on a Step-Basis\n\nFigure [4](#page-11-1) demonstrates consistent scaling benefits with the number of experts when training all models for a fixed number of steps. We observe a clear trend: when keeping the FLOPS per token fixed, having more parameters (experts) speeds up training. The left Figure demonstrates consistent scaling properties (with fixed FLOPS per token) between sparse model parameters and test loss. This reveals the advantage of scaling along this additional axis of sparse model parameters. Our right Figure measures sample efficiency of a dense model variant and four FLOP-matched sparse variants. We find that increasing the number of experts leads to more sample efficient models. Our Switch-Base 64 expert model achieves the same performance of the T5-Base model at step 60k at step 450k, which is a 7.5x speedup in terms of step time. In addition, consistent with the findings of [Kaplan et al.](#page-36-0) [(2020)](#page-36-0), we find that larger models are also more sample efficient—learning more quickly for a fixed number of observed tokens.\n\n![](_page_11_Figure_4.jpeg)\n\n- <span id=\"page-11-1\"></span>Figure 4: Scaling properties of the Switch Transformer. Left Plot: We measure the quality improvement, as measured by perplexity, as the parameters increase by scaling the number of experts. The top-left point corresponds to the T5-Base model with 223M parameters. Moving from top-left to bottom-right, we double the number of experts from 2, 4, 8 and so on until the bottom-right point of a 256 expert model with 14.7B parameters. Despite all models using an equal computational budget, we observe consistent improvements scaling the number of experts. Right Plot: Negative log perplexity per step sweeping over the number of experts. The dense baseline is shown with the purple line and we note improved sample efficiency of our Switch-Base models.\n#### <span id=\"page-12-0\"></span>3.2 Scaling Results on a Time-Basis\n\nFigure [4](#page-11-1) demonstrates that on a step basis, as we increase the number of experts, the performance consistently improves. While our models have roughly the same amount of FLOPS per token as the baseline, our Switch Transformers incurs additional communication costs across devices as well as the extra computation of the routing mechanism. Therefore, the increased sample efficiency observed on a step-basis doesn't necessarily translate to a better model quality as measured by wall-clock. This raises the question:\n\nFor a fixed training duration and computational budget, should one train a dense or a sparse model?\n\n![](_page_12_Figure_4.jpeg)\n\n<span id=\"page-12-2\"></span>Figure 5: Speed advantage of Switch Transformer. All models trained on 32 TPUv3 cores with equal FLOPs per example. For a fixed amount of computation and training time, Switch Transformers significantly outperform the dense Transformer baseline. Our 64 expert Switch-Base model achieves the same quality in one-seventh the time of the T5-Base and continues to improve.\n\nFigures [5](#page-12-2) and [6](#page-13-2) address this question. Figure [5](#page-12-2) measures the pre-training model quality as a function of time. For a fixed training duration and computational budget, Switch Transformers yield a substantial speed-up. In this setting, our Switch-Base 64 expert model trains in one-seventh the time that it would take the T5-Base to get similar perplexity.\n\n#### <span id=\"page-12-1\"></span>3.3 Scaling Versus a Larger Dense Model\n\nThe above analysis shows that a computationally-matched dense model is outpaced by its Switch counterpart. Figure [6](#page-13-2) considers a different scenario: what if we instead had allocated our resources to a larger dense model? We do so now, measuring Switch-Base against the next strong baseline, T5-Large. But despite T5-Large applying 3.5x more FLOPs per token, Switch-Base is still more sample efficient and yields a 2.5x speedup. Furthermore, more gains can be had simply by designing a new, larger sparse version, Switch-Large, which is FLOP-matched to T5-Large. We do this and demonstrate superior scaling and fine-tuning in the following section.\n\n![](_page_13_Figure_2.jpeg)\n\n<span id=\"page-13-2\"></span>Figure 6: Scaling Transformer models with Switch layers or with standard dense model scaling. Left Plot: Switch-Base is more sample efficient than both the T5-Base, and T5-Large variant, which applies 3.5x more FLOPS per token. Right Plot: As before, on a wall-clock basis, we find that Switch-Base is still faster, and yields a 2.5x speedup over T5-Large.\n\n### <span id=\"page-13-0\"></span>4. Downstream Results\n\nSection [3](#page-10-0) demonstrated the superior scaling properties while pre-training, but we now validate that these gains translate to improved language learning abilities on downstream tasks. We begin by fine-tuning on a diverse set of NLP tasks. Next we study reducing the memory footprint of our sparse models by over 90% by distilling into small—and easily deployed—dense baselines. Finally, we conclude this section measuring the improvements in a multi-task, multilingual setting, where we show that Switch Transformers are strong multi-task learners, improving over the multilingual T5-base model across all 101 languages.\n\n### <span id=\"page-13-1\"></span>4.1 Fine-Tuning\n\nBaseline and Switch models used for fine-tuning. Our baselines are the highly-tuned 223M parameter T5-Base model and the 739M parameter T5-Large model [(Raffel et al.,](#page-37-0) [2019)](#page-37-0). For both versions, we design a FLOP-matched Switch Transformer, with many more parameters, which is summarized in Table 9.[7](#page-13-3) Our baselines differ slightly from those in [Raffel et al.](#page-37-0) [(2019)](#page-37-0) because we pre-train on an improved C4 corpus which removes intraexample text duplication and thus increases the efficacy as a pre-training task [Lee et al.](#page-37-5)\n\n<span id=\"page-13-3\"></span><sup>7.</sup> FLOPS are calculated for the forward pass as done in [Kaplan et al.](#page-36-0) [(2020)](#page-36-0).\n\n[(2021)](#page-37-5). In our protocol we pre-train with $2^{20}$ (1,048,576) tokens per batch for 550k steps amounting to 576B total tokens. We then fine-tune across a diverse set of tasks using a dropout rate of 0.1 for all layers except the Switch layers, which use a dropout rate of 0.4 (see Table [4](#page-10-1)). We fine-tune using a batch-size of 1M for 16k steps and for each task, we evaluate model quality every 200-steps and report the peak performance as computed on the validation set.\n\nFine-tuning tasks and data sets. We select tasks probing language capabilities including question answering, summarization and knowledge about the world. The language benchmarks GLUE [(Wang et al.,](#page-39-4) [2018)](#page-39-4) and SuperGLUE [(Wang et al.,](#page-39-5) [2019)](#page-39-5) are handled as composite mixtures with all the tasks blended in proportion to the amount of tokens present in each. These benchmarks consist of tasks requiring sentiment analysis (SST-2), word sense disambiguation (WIC), sentence similarty (MRPC, STS-B, QQP), natural language inference (MNLI, QNLI, RTE, CB), question answering (MultiRC, RECORD, BoolQ), coreference resolution (WNLI, WSC) and sentence completion (COPA) and sentence acceptability (CoLA). The CNNDM [(Hermann et al.,](#page-36-4) [2015)](#page-36-4) and BBC XSum [(Narayan](#page-37-6) [et al.,](#page-37-6) [2018)](#page-37-6) data sets are used to measure the ability to summarize articles. Question answering is probed with the SQuAD data set [(Rajpurkar et al.,](#page-37-7) [2016)](#page-37-7) and the ARC Reasoning Challenge [(Clark et al.,](#page-35-6) [2018)](#page-35-6). And as in [Roberts et al.](#page-38-6) [(2020)](#page-38-6), we evaluate the knowledge of our models by fine-tuning on three closed-book question answering data sets: Natural Questions [(Kwiatkowski et al.,](#page-36-5) [2019)](#page-36-5), Web Questions [(Berant et al.,](#page-35-7) [2013)](#page-35-7) and Trivia QA [(Joshi et al.,](#page-36-6) [2017)](#page-36-6). Closed-book refers to questions posed with no supplemental reference or context material. To gauge the model's common sense reasoning we evaluate it on the Winogrande Schema Challenge [(Sakaguchi et al.,](#page-38-7) [2020)](#page-38-7). And finally, we test our model's natural language inference capabilities on the Adversarial NLI Benchmark [(Nie et al.,](#page-37-8) [2019)](#page-37-8).\n\nFine-tuning metrics. The following evaluation metrics are used throughout the paper: We report the average scores across all subtasks for GLUE and SuperGLUE. The Rouge-2 metric is used both the CNNDM and XSum. In SQuAD and the closed book tasks (Web, Natural, and Trivia Questions) we report the percentage of answers exactly matching the target (refer to [Roberts et al.](#page-38-6) [(2020)](#page-38-6) for further details and deficiency of this measure). Finally, in ARC Easy, ARC Challenge, ANLI, and Winogrande we report the accuracy of the generated responses.\n\nFine-tuning results. We observe significant downstream improvements across many natural language tasks. Notable improvements come from SuperGLUE, where we find FLOP-matched Switch variants improve by 4.4 and 2 percentage points over the T5-Base and T5-Large baselines, respectively as well as large improvements in Winogrande, closed book Trivia QA, and XSum.[8](#page-14-0) In our fine-tuning study, the only tasks where we do not observe gains are on the AI2 Reasoning Challenge (ARC) data sets where the T5-Base outperforms Switch-Base on the challenge data set and T5-Large outperforms Switch-Large on the easy data set. Taken as a whole, we observe significant improvements spanning both reasoning and knowledge-heavy tasks. This validates our architecture, not just as one that pre-trains well, but can translate quality improvements to downstream tasks via fine-tuning.\n\n<span id=\"page-14-0\"></span>8. Our T5 and Switch models were pre-trained with $2^{20}$ tokens per batch for 550k steps on a revised C4 data set for fair comparisons.\n\n| Model        | GLUE        | SQuAD         | SuperGLUE    | Winogrande (XL) |\n|--------------|-------------|---------------|--------------|-----------------|\n| T5-Base      | 84.3        | 85.5          | 75.1         | 66.6            |\n| Switch-Base  | <b>86.7</b> | <b>87.2</b>   | <b>79.5</b>  | <b>73.3</b>     |\n| T5-Large     | 87.8        | 88.1          | 82.7         | 79.1            |\n| Switch-Large | <b>88.5</b> | <b>88.6</b>   | <b>84.7</b>  | <b>83.0</b>     |\n| Model        | XSum        | ANLI (R3)     | ARC Easy     | ARC Chal.       |\n| T5-Base      | 18.7        | 51.8          | 56.7         | <b>35.5</b>     |\n| Switch-Base  | <b>20.3</b> | <b>54.0</b>   | <b>61.3</b>  | 32.8            |\n| T5-Large     | 20.9        | 56.6          | <b>68.8</b>  | <b>35.5</b>     |\n| Switch-Large | <b>22.3</b> | <b>58.6</b>   | 66.0         | <b>35.5</b>     |\n| Model        | CB Web QA   | CB Natural QA | CB Trivia QA |                 |\n| T5-Base      | 26.6        | 25.8          | 24.5         |                 |\n| Switch-Base  | <b>27.4</b> | <b>26.8</b>   | <b>30.7</b>  |                 |\n| T5-Large     | 27.7        | 27.6          | 29.5         |                 |\n| Switch-Large | <b>31.3</b> | <b>29.5</b>   | <b>36.9</b>  |                 |\n\nTable 5: Fine-tuning results. Fine-tuning results of T5 baselines and Switch models across a diverse set of natural language tests (validation sets; higher numbers are better). We compare FLOP-matched Switch models to the T5-Base and T5-Large baselines. For most tasks considered, we find significant improvements of the Switchvariants. We observe gains across both model sizes and across both reasoning and knowledge-heavy language tasks.\n\n#### <span id=\"page-15-0\"></span>4.2 Distillation\n\nDeploying massive neural networks with billions, or trillions, of parameters is inconvenient. To alleviate this, we study distilling [(Hinton et al.,](#page-36-3) [2015)](#page-36-3) large sparse models into small dense models. Future work could additionally study distilling large models into smaller sparse models.\n\nDistillation techniques. In Table [6](#page-16-1) we study a variety of distillation techniques. These techniques are built off of [Sanh et al.](#page-38-8) [(2019)](#page-38-8), who study distillation methods for BERT models. We find that initializing the dense model with the non-expert weights yields a modest improvement. This is possible since all models are FLOP matched, so non-expert layers will have the same dimensions. Since expert layers are usually only added at every or every other FFN layer in a Transformer, this allows for many of the weights to be initialized with trained parameters. Furthermore, we observe a distillation improvement using a mixture of 0.25 for the teacher probabilities and 0.75 for the ground truth label. By combining both techniques we preserve $\\approx$ 30% of the quality gains from the larger sparse models with only $\\approx$ 1/20th of the parameters. The quality gain refers to the percent of\n\n| Technique                                 | Parameters | Quality (↑)  |\n|-------------------------------------------|------------|--------------|\n| T5-Base                                   | 223M       | -1.636       |\n| Switch-Base                               | 3,800M     | -1.444       |\n| Distillation                              | 223M       | (3%) -1.631  |\n| + Init. non-expert weights from teacher   | 223M       | (20%) -1.598 |\n| + 0.75 mix of hard and soft loss          | 223M       | (29%) -1.580 |\n| Initialization Baseline (no distillation) |            |              |\n| Init. non-expert weights from teacher     | 223M       | -1.639       |\n\nthe quality difference between Switch-Base (Teacher) and T5-Base (Student). Therefore, a quality gain of 100% implies the Student equals the performance of the Teacher.\n\n- <span id=\"page-16-1\"></span>Table 6: Distilling Switch Transformers for Language Modeling. Initializing T5-Base with the non-expert weights from Switch-Base and using a loss from a mixture of teacher and ground-truth labels obtains the best performance. We can distill 30% of the performance improvement of a large sparse model with 100x more parameters back into a small dense model. For a final baseline, we find no improvement of T5-Base initialized with the expert weights, but trained normally without distillation.\nAchievable compression rates. Using our best distillation technique described in Table [6,](#page-16-1) we distill a wide variety of sparse models into dense models. We distill Switch-Base versions, sweeping over an increasing number of experts, which corresponds to varying between 1.1B to 14.7B parameters. Through distillation, we can preserve 37% of the quality gain of the 1.1B parameter model while compressing 82%. At the extreme, where we compress the model 99%, we are still able to maintain 28% of the teacher's model quality improvement.\n\nDistilling a fine-tuned model. We conclude this with a study of distilling a finetuned sparse model into a dense model. Table [8](#page-17-1) shows results of distilling a 7.4B parameter Switch-Base model, fine-tuned on the SuperGLUE task, into the 223M T5-Base. Similar to our pre-training results, we find we are able to preserve 30% of the gains of the sparse model when distilling into a FLOP matched dense variant. One potential future avenue, not considered here, may examine the specific experts being used for fine-tuning tasks and extracting them to achieve better model compression.\n\n#### <span id=\"page-16-0\"></span>4.3 Multilingual Learning\n\nIn our final set of downstream experiments, we measure the model quality and speed tradeoffs while pre-training on a mixture of 101 different languages. We build and benchmark off the recent work of mT5 [(Xue et al.,](#page-39-2) [2020)](#page-39-2), a multilingual extension to T5. We pre-train on the multilingual variant of the Common Crawl data set (mC4) spanning 101 languages introduced in mT5, but due to script variants within certain languages, the mixture contains 107 tasks.\n\nIn Figure [7](#page-18-0) we plot the quality improvement in negative log perplexity for all languages of a FLOP-matched Switch model, mSwitch-Base to the T5 base variant, mT5-Base. After\n\n|                                | Dense  | Sparse |        |        |        |        |\n|--------------------------------|--------|--------|--------|--------|--------|--------|\n| Parameters                     | 223M   | 1.1B   | 2.0B   | 3.8B   | 7.4B   | 14.7B  |\n| Pre-trained Neg. Log Perp. (↑) | -1.636 | -1.505 | -1.474 | -1.444 | -1.432 | -1.427 |\n| Distilled Neg. Log Perp. (↑)   | —      | -1.587 | -1.585 | -1.579 | -1.582 | -1.578 |\n| Percent of Teacher Performance | —      | 37%    | 32%    | 30 %   | 27 %   | 28 %   |\n| Compression Percent            | —      | 82 %   | 90 %   | 95 %   | 97 %   | 99 %   |\n\n- Table 7: Distillation compression rates. We measure the quality when distilling large sparse models into a dense baseline. Our baseline, T5-Base, has a -1.636 Neg. Log Perp. quality. In the right columns, we then distill increasingly large sparse models into this same architecture. Through a combination of weight-initialization and a mixture of hard and soft losses, we can shrink our sparse teachers by 95%+ while preserving 30% of the quality gain. However, for significantly better and larger pre-trained teachers, we expect larger student models would be necessary to achieve these compression rates.\n\n| Model             | Parameters | FLOPS | SuperGLUE (↑) |\n|-------------------|------------|-------|---------------|\n| T5-Base           | 223M       | 124B  | 74.6          |\n| Switch-Base       | 7410M      | 124B  | 81.3          |\n| Distilled T5-Base | 223M       | 124B  | (30%) 76.6    |\n\n- <span id=\"page-17-1\"></span>Table 8: Distilling a fine-tuned SuperGLUE model. We distill a Switch-Base model finetuned on the SuperGLUE tasks into a T5-Base model. We observe that on smaller data sets our large sparse model can be an effective teacher for distillation. We find that we again achieve 30% of the teacher's performance on a 97% compressed model.\npre-training both versions for 1M steps, we find that on all 101 languages considered, Switch Transformer increases the final negative log perplexity over the baseline. In Figure 8, we present a different view and now histogram the per step speed-up of using Switch Transformer over the mT5-Base.[9](#page-17-2) We find a mean speed-up over mT5-Base of 5x and that 91% of languages achieve at least a 4x speedup. This presents evidence that Switch Transformers are effective multi-task and multi-lingual learners.\n\n### <span id=\"page-17-0\"></span>5. Designing Models with Data, Model, and Expert-Parallelism\n\nArbitrarily increasing the number of experts is subject to diminishing returns (Figure [4)](#page-11-1). Here we describe complementary scaling strategies. The common way to scale a Transformer is to increase dimensions in tandem, like $d_{model}$ or $d_{ff}$. This increases both the parameters\n\n<span id=\"page-17-2\"></span><sup>9.</sup> The speedup on a step basis is computed as the ratio of the number of steps for the baseline divided by the number of steps required by our model to reach that same quality.\n\n![](_page_18_Figure_1.jpeg)\n\n<span id=\"page-18-0\"></span>Figure 7: Multilingual pre-training on 101 languages. Improvements of Switch T5 Base model over dense baseline when multi-task training on 101 languages. We observe Switch Transformers to do quite well in the multi-task training setup and yield improvements on all 101 languages.\n\n![](_page_18_Figure_3.jpeg)\n\n<span id=\"page-18-1\"></span>Figure 8: Multilingual pre-training on 101 languages. We histogram for each language, the step speedup of Switch Transformers over the FLOP matched T5 dense baseline to reach the same quality. Over all 101 languages, we achieve a mean step speedup over mT5-Base of 5x and, for 91% of languages, we record a 4x, or greater, speedup to reach the final perplexity of mT5-Base.\n\nand computation performed and is ultimately limited by the memory per accelerator. Once it exceeds the size of the accelerator's memory, single program multiple data (SPMD) modelparallelism can be employed. This section studies the trade-offs of combining data, model, and expert-parallelism.\n\nReviewing the Feed-Forward Network (FFN) Layer. We use the FFN layer as an example of how data, model and expert-parallelism works in Mesh TensorFlow [(Shazeer](#page-38-3) [et al.,](#page-38-3) [2018)](#page-38-3) and review it briefly here. We assume $B$ tokens in the batch, each of dimension $d_{model}$. Both the input $(x)$ and output $(y)$ of the FFN are of size $[B, d_{model}]$ and the intermediate $(h)$ is of size $[B, d_{ff}]$ where $d_{ff}$ is typically several times larger than $d_{model}$. In the FFN, the intermediate is $h = xW_{in}$ and then the output of the layer is $y = ReLU(h)W_{out}$. Thus $W_{in}$ and $W_{out}$ are applied independently to each token and have sizes $[d_{model}, d_{ff}] $and $[d_{ff}, d_{model}]$.\n\nWe describe two aspects of partitioning: how the weights and batches of data divide over cores, depicted in Figure [9.](#page-20-1) We denote all cores available as $N$ which Mesh Tensorflow may then remap into a logical multidimensional mesh of processors. Here we create a two-dimensional logical mesh, with one dimension representing the number of ways for data-parallel sharding $(n)$ and the other, the model-parallel sharding $(m)$. The total cores must equal the ways to shard across both data and model-parallelism, e.g. $N = n \\times m$. To shard the layer across cores, the tensors containing that batch of $B$ tokens are sharded across $n$ data-parallel cores, so each core contains $B/n$ tokens. Tensors and variables with $d_{ff}$ are then sharded across $m$ model-parallel cores. For the variants with experts-layers, we consider $E$ experts, each of which can process up to $C$ tokens.\n\n| Term | Description                                     |\n|------|-------------------------------------------------|\n| B    | Number of tokens in the batch.                  |\n| N    | Number of total cores.                          |\n| n    | Number of ways for data-parallelism sharding.   |\n| m    | Number of ways for model-parallelism sharding.  |\n| E    | Number of experts in Switch layers.             |\n| C    | Expert capacity, the batch size of each expert. |\n\n#### <span id=\"page-19-0\"></span>5.1 Data Parallelism\n\nWhen training data parallel models, which is the standard for distributed training, then all cores are allocated to the data-parallel dimension or $n = N, m = 1$. This has the advantage that no communication is needed until the entire forward and backward pass is finished and the gradients need to be then aggregated across all cores. This corresponds to the left-most column of Figure [9.](#page-20-1)\n\n#### <span id=\"page-19-1\"></span>5.2 Model Parallelism\n\nWe now consider a scenario where all cores are allocated exclusively to the model-parallel dimension and so $n = 1, m = N$. Now all cores must keep the full $B$ tokens and each core will contain a unique slice of the weights. For each forward and backward pass, a communication cost is now incurred. Each core sends a tensor of $[B, d_{model}]$ to compute the second matrix multiplication $ReLU(h)W_{out}$ because the $d_{ff}$ dimension is partitioned and must be summed over. As a general rule, whenever a dimension that is partitioned across cores must be summed, then an all-reduce operation is added for both the forward and backward pass. This contrasts with pure data parallelism where an all-reduce only occurs at the end of the entire forward and backward pass.\n\n![](_page_20_Figure_1.jpeg)\n\n#### **How the** *model weights* **are split over cores**\n\n#### **How the** *data* **is split over cores**\n\n![](_page_20_Figure_4.jpeg)\n\n- <span id=\"page-20-1\"></span>Figure 9: Data and weight partitioning strategies. Each 4×4 dotted-line grid represents 16 cores and the shaded squares are the data contained on that core (either model weights or batch of tokens). We illustrate both how the model weights and the data tensors are split for each strategy. First Row: illustration of how model weights are split across the cores. Shapes of different sizes in this row represent larger weight matrices in the Feed Forward Network (FFN) layers (e.g larger $d_{ff}$ sizes). Each color of the shaded squares identifies a unique weight matrix. The number of parameters per core is fixed, but larger weight matrices will apply more computation to each token. Second Row: illustration of how the data batch is split across cores. Each core holds the same number of tokens which maintains a fixed memory usage across all strategies. The partitioning strategies have different properties of allowing each core to either have the same tokens or different tokens across cores, which is what the different colors symbolize.\n#### <span id=\"page-20-0\"></span>5.3 Model and Data Parallelism\n\nIt is common to mix both model and data parallelism for large scale models, which was done in the largest T5 models [(Raffel et al.,](#page-37-0) [2019;](#page-37-0) [Xue et al.,](#page-39-2) [2020)](#page-39-2) and in GPT-3 [(Brown et al.,](#page-35-0) [2020)](#page-35-0). With a total of $N = n \\times m$ cores, now each core will be responsible for $B/n$ tokens and $d_{ff}/m$ of both the weights and intermediate activation. In the forward and backward pass each core communicates a tensor of size $[B/n, d_{model}]$ in an all-reduce operation.\n\n#### <span id=\"page-21-0\"></span>5.4 Expert and Data Parallelism\n\nNext we describe the partitioning strategy for expert and data parallelism. Switch Transformers will allocate all of their cores to the data partitioning dimension $n$, which will also correspond to the number of experts in the model. For each token per core a router locally computes assignments to the experts. The output is a binary matrix of size $[n, B/n, E$, $C]$ which is partitioned across the first dimension and determines expert assignment. This binary matrix is then used to do a gather via matrix multiplication with the input tensor of $[n, B/n, d_{model}]$.\n\n$$\\text{einsum}([n, B/n, d_{model}], [n, B/n, E, C], \\text{dimension} = [B/n]) \\tag{7}$$\n\nresulting in the final tensor of shape $[n, E, C, d_{model}]$, which is sharded across the first dimension. Because each core has its own expert, we do an all-to-all communication of size $[E, C, d_{model}]$ to now shard the $E$ dimension instead of the $n$-dimension. There are additional communication costs of bfloat16 tensors of size $E \\times C \\times d_{model}$ in the forward pass to analogously receive the tokens from each expert located on different cores. See Appendix [F](#page-32-0) for a detailed analysis of the expert partitioning code.\n\n#### <span id=\"page-21-1\"></span>5.5 Expert, Model and Data Parallelism\n\nIn the design of our best model, we seek to balance the FLOPS per token and the parameter count. When we scale the number of experts, we increase the number of parameters, but do not change the FLOPS per token. In order to increase FLOPS, we must also increase the $d_{ff}$ dimension (which also increases parameters, but at a slower rate). This presents a trade-off: as we increase $d_{ff}$ we will run out of memory per core, which then necessitates increasing $m$. But since we have a fixed number of cores $N$, and $N = n \\times m$, we must decrease $n$, which forces use of a smaller batch-size (in order to hold tokens per core constant).\n\nWhen combining both model and expert-parallelism, we will have all-to-all communication costs from routing the tokens to the correct experts along with the internal all-reduce communications from the model parallelism. Balancing the FLOPS, communication costs and memory per core becomes quite complex when combining all three methods where the best mapping is empirically determined. See our further analysis in section [5.6](#page-21-2) for how the number of experts effects the downstream performance as well.\n\n#### <span id=\"page-21-2\"></span>5.6 Towards Trillion Parameter Models\n\nCombining expert, model and data parallelism, we design two large Switch Transformer models, one with 395 billion and 1.6 trillion parameters, respectively. We study how these models perform on both up-stream pre-training as language models and their downstream fine-tuning performance. The parameters, FLOPs per sequence and hyper-parameters of the two different models are listed below in Table 9. Standard hyper-parameters of the Transformer, including $d_{model}$, $d_{ff}$, $d_{kv}$, number of heads and number of layers are described, as well as a less common feature, $FFN_{GEGLU}$, which refers to a variation of the FFN layer where the expansion matrix is substituted with two sets of weights which are non-linearly combined (Shazeer, 2020).\n\nThe Switch-C model is designed using only expert-parallelism, and no model-parallelism, as described earlier in Section [5.4.](#page-21-0) As a result, the hyper-parameters controlling the width,\n\n| Model        | Parameters   | FLOPs/seq   | dmodel      | F F NGEGLU           | df f                  | dkv | Num. Heads |\n|--------------|--------------|-------------|-------------|----------------------|-----------------------|-----|------------|\n| T5-Base      | 0.2B         | 124B        | 768         | X                    | 2048                  | 64  | 12         |\n| T5-Large     | 0.7B         | 425B        | 1024        | X                    | 2816                  | 64  | 16         |\n| T5-XXL       | 11B          | 6.3T        | 4096        | X                    | 10240                 | 64  | 64         |\n| Switch-Base  | 7B           | 124B        | 768         | X                    | 2048                  | 64  | 12         |\n| Switch-Large | 26B          | 425B        | 1024        | X                    | 2816                  | 64  | 16         |\n| Switch-XXL   | 395B         | 6.3T        | 4096        | X                    | 10240                 | 64  | 64         |\n| Switch-C     | 1571B        | 890B        | 2080        |                      | 6144                  | 64  | 32         |\n|              |              |             |             |                      |                       |     |            |\n| Model        | Expert Freq. | Num. Layers | Num Experts | Neg. Log Perp. @250k | Neg. Log Perp. @ 500k |     |            |\n| T5-Base      | –            | 12          | –           | -1.599               | -1.556                |     |            |\n| T5-Large     | –            | 24          | –           | -1.402               | -1.350                |     |            |\n| T5-XXL       | –            | 24          | –           | -1.147               | -1.095                |     |            |\n| Switch-Base  | 1/2          | 12          | 128         | -1.370               | -1.306                |     |            |\n| Switch-Large | 1/2          | 24          | 128         | -1.248               | -1.177                |     |            |\n| Switch-XXL   | 1/2          | 24          | 64          | -1.086               | -1.008                |     |            |\n| Switch-C     | 1            | 15          | 2048        | -1.096               | -1.043                |     |            |\n\n- <span id=\"page-22-0\"></span>Table 9: Switch model design and pre-training performance. We compare the hyperparameters and pre-training performance of the T5 models to our Switch Transformer variants. The last two columns record the pre-training model quality on the C4 data set after 250k and 500k steps, respectively. We observe that the Switch-C Transformer variant is 4x faster to a fixed perplexity (with the same compute budget) than the T5-XXL model, with the gap increasing as training progresses.\ndepth, number of heads, and so on, are all much smaller than the T5-XXL model. In contrast, the Switch-XXL is FLOP-matched to the T5-XXL model, which allows for larger dimensions of the hyper-parameters, but at the expense of additional communication costs induced by model-parallelism (see Section [5.5](#page-21-1) for more details).\n\nSample efficiency versus T5-XXL. In the final two columns of Table [9](#page-22-0) we record the negative log perplexity on the C4 corpus after 250k and 500k steps, respectively. After 250k steps, we find both Switch Transformer variants to improve over the T5-XXL version's negative log perplexity by over 0.061.[10](#page-22-1) To contextualize the significance of a gap of 0.061, we note that the T5-XXL model had to train for an additional 250k steps to increase 0.052. The gap continues to increase with additional training, with the Switch-XXL model out-performing the T5-XXL by 0.087 by 500k steps.\n\nTraining instability. However, as described in the introduction, large sparse models can be unstable, and as we increase the scale, we encounter some sporadic issues. We find that the larger Switch-C model, with 1.6T parameters and 2048 experts, exhibits no training instability at all. Instead, the Switch XXL version, with nearly 10x larger FLOPs per sequence, is sometimes unstable. As a result, though this is our better model on a step-basis, we do not pre-train for a full 1M steps, in-line with the final reported results of T5 [(Raffel et al.,](#page-37-0) [2019)](#page-37-0).\n\n<span id=\"page-22-1\"></span><sup>10.</sup> This reported quality difference is a lower bound, and may actually be larger. The T5-XXL was pretrained on an easier C4 data set which included duplicated, and thus easily copied, snippets within examples.\n\nReasoning fine-tuning performance. As a preliminary assessment of the model quality, we use a Switch-XXL model partially pre-trained on 503B tokens, or approximately half the text used by the T5-XXL model. Using this checkpoint, we conduct multi-task training for efficiency, where all tasks are learned jointly, rather than individually fine-tuned. We find that SQuAD accuracy on the validation set increases to 89.7 versus state-of-the-art of 91.3. Next, the average SuperGLUE test score is recorded at 87.5 versus the T5 version obtaining a score of 89.3 compared to the state-of-the-art of 90.0 [(Wang et al.,](#page-39-5) [2019)](#page-39-5). On ANLI [(Nie et al.,](#page-37-8) [2019)](#page-37-8), Switch XXL improves over the prior state-of-the-art to get a 65.7 accuracy versus the prior best of 49.4 [(Yang et al.,](#page-39-6) [2020)](#page-39-6). We note that while the Switch-XXL has state-of-the-art Neg. Log Perp. on the upstream pre-training task, its gains have not yet fully translated to SOTA downstream performance. We study this issue more in Appendix [E.](#page-31-0)\n\nKnowledge-based fine-tuning performance. Finally, we also conduct an early examination of the model's knowledge with three closed-book knowledge-based tasks: Natural Questions, WebQuestions and TriviaQA, without additional pre-training using Salient Span Masking [(Guu et al.,](#page-36-7) [2020)](#page-36-7). In all three cases, we observe improvements over the prior stateof-the-art T5-XXL model (without SSM). Natural Questions exact match increases to 34.4 versus the prior best of 32.8, Web Questions increases to 41.0 over 37.2, and TriviaQA increases to 47.5 versus 42.9.\n\nSumming up, despite training on less than half the data of other models, we already find comparable, and sometimes state-of-the-art, model quality. Currently, the Switch Transformer translates substantial upstream gains better to knowledge-based tasks, than reasoning-tasks (see Appendix [E)](#page-31-0). Extracting stronger fine-tuning performance from large expert models is an active research question, and the pre-training perplexity indicates future improvements should be possible.\n\n### <span id=\"page-23-0\"></span>6. Related Work\n\nThe importance of scale in neural networks is widely recognized and several approaches have been proposed. Recent works have scaled models to billions of parameters through using model parallelism (e.g. splitting weights and tensors across multiple cores) [(Shazeer et al.,](#page-38-3) [2018;](#page-38-3) [Rajbhandari et al.,](#page-37-9) [2019;](#page-37-9) [Raffel et al.,](#page-37-0) [2019;](#page-37-0) [Brown et al.,](#page-35-0) [2020;](#page-35-0) [Shoeybi et al.,](#page-38-10) [2019)](#page-38-10). Alternatively, [Harlap et al.](#page-36-8) [(2018)](#page-36-8); [Huang et al.](#page-36-9) [(2019)](#page-36-9) propose using pipeline based model parallelism, where different layers are split across devices and micro-batches are pipelined to the different layers. Finally, Product Key networks [(Lample et al.,](#page-37-10) [2019)](#page-37-10) were proposed to scale up the capacity of neural networks by doing a lookup for learnable embeddings based on the incoming token representations to a given layer.\n\nOur work studies a specific model in a class of methods that do conditional computation, where computation decisions are made dynamically based on the input. [Cho and Bengio](#page-35-8) [(2014)](#page-35-8) proposed adaptively selecting weights based on certain bit patterns occuring in the model hidden-states. [Eigen et al.](#page-35-9) [(2013)](#page-35-9) built stacked expert layers with dense matrix multiplications and ReLU activations and showed promising results on jittered MNIST and monotone speech. In computer vision [Puigcerver et al.](#page-37-11) [(2020)](#page-37-11) manually route tokens based on semantic classes during upstream pre-training and then select the relevant experts to be used according to the downstream task.\n\nMixture of Experts (MoE), in the context of modern deep learning architectures, was proven effective in [Shazeer et al.](#page-38-2) [(2017)](#page-38-2). That work added an MoE layer which was stacked between LSTM [(Hochreiter and Schmidhuber,](#page-36-10) [1997)](#page-36-10) layers, and tokens were separately routed to combinations of experts. This resulted in state-of-the-art results in language modeling and machine translation benchmarks. The MoE layer was reintroduced into the Transformer architecture by the Mesh Tensorflow library [(Shazeer et al.,](#page-38-3) [2018)](#page-38-3) where MoE layers were introduced as a substitute of the FFN layers, however, there were no accompanying NLP results. More recently, through advances in machine learning infrastructure, GShard [(Lepikhin et al.,](#page-37-2) [2020)](#page-37-2), which extended the XLA compiler, used the MoE Transformer to dramatically improve machine translation across 100 languages. Finally [Fan et al.](#page-35-10) [(2021)](#page-35-10) chooses a different deterministic MoE strategy to split the model parameters into non-overlapping groups of languages.\n\nSparsity along the sequence length dimension $(L)$ in the Transformer attention patterns has been a successful technique to reduce the attention complexity from $O(L^2)$ (Child et al., 2019; Correia et al., 2019; Sukhbaatar et al., 2019; Kitaev et al., 2020; Zaheer et al., 2020; Beltagy et al., 2020). This has enabled learning longer sequences than previously possible. This version of the Switch Transformer does not employ attention sparsity, but these techniques are complimentary, and, as future work, these could be combined to potentially improve learning on tasks requiring long contexts.\n\n### <span id=\"page-24-0\"></span>7. Discussion\n\nWe pose and discuss questions about the Switch Transformer, and sparse expert models generally, where sparsity refers to weights, not on attention patterns.\n\nIsn't Switch Transformer better due to sheer parameter count? Yes, and by design! Parameters, independent of the total FLOPs used, are a useful axis to scale neural language models. Large models have been exhaustively shown to perform better [(Kaplan](#page-36-0) [et al.,](#page-36-0) [2020)](#page-36-0). But in this case, our model is more sample efficient and faster while using the same computational resources.\n\nI don't have access to a supercomputer—is this still useful for me? Though this work has focused on extremely large models, we also find that models with as few as two experts improves performance while easily fitting within memory constraints of commonly available GPUs or TPUs (details in Appendix [D)](#page-28-2). We therefore believe our techniques are useful in small-scale settings.\n\nDo sparse models outperform dense models on the speed-accuracy Pareto curve? Yes. Across a wide variety of different models sizes, sparse models outperform dense models per step and on wall clock time. Our controlled experiments show for a fixed amount of computation and time, sparse models outperform dense models.\n\nI can't deploy a trillion parameter model—can we shrink these models? We cannot fully preserve the model quality, but compression rates of 10 to 100x are achievable by distilling our sparse models into dense models while achieving $\\approx$30% of the quality gain of the expert model.\n\nWhy use Switch Transformer instead of a model-parallel dense model? On a time basis, Switch Transformers can be far more efficient than dense-models with sharded parameters (Figure [6)](#page-13-2). Also, we point out that this decision is *not* mutually exclusive—we can, and do, use model-parallelism in Switch Transformers, increasing the FLOPs per token, but incurring the slowdown of conventional model-parallelism.\n\nWhy aren't sparse models widely used already? The motivation to try sparse models has been stymied by the massive success of scaling dense models (the success of which is partially driven by co-adaptation with deep learning hardware as argued in [Hooker](#page-36-12) [(2020)](#page-36-12)). Further, sparse models have been subject to multiple issues including (1) model complexity, (2) training difficulties, and (3) communication costs. Switch Transformer makes strides to alleviate these issues.\n\n### <span id=\"page-25-0\"></span>8. Future Work\n\nThis paper lays out a simplified architecture, improved training procedures, and a study of how sparse models scale. However, there remain many open future directions which we briefly describe here:\n\n- 1. A significant challenge is further improving training stability for the largest models. While our stability techniques were effective for our Switch-Base, Switch-Large and Switch-C models (no observed instability), they were not sufficient for Switch-XXL. We have taken early steps towards stabilizing these models, which we think may be generally useful for large models, including using regularizers for improving stability and adapted forms of gradient clipping, but this remains unsolved.\n- 2. Generally we find that improved pre-training quality leads to better downstream results (Appendix [E)](#page-31-0), though we sometimes encounter striking anomalies. For instance, despite similar perplexities modeling the C4 data set, the 1.6T parameter Switch-C achieves only an 87.7 exact match score in SQuAD, which compares unfavorably to 89.6 for the smaller Switch-XXL model. One notable difference is that the Switch-XXL model applies ≈10x the FLOPS per token than the Switch-C model, even though it has ≈4x less unique parameters (395B vs 1.6T). This suggests a poorly understood dependence between fine-tuning quality, FLOPS per token and number of parameters.\n- 3. Perform a comprehensive study of scaling relationships to guide the design of architectures blending data, model and expert-parallelism. Ideally, given the specs of a hardware configuration (computation, memory, communication) one could more rapidly design an optimal model. And, vice versa, this may also help in the design of future hardware.\n- 4. Our work falls within the family of adaptive computation algorithms. Our approach always used identical, homogeneous experts, but future designs (facilitated by more flexible infrastructure) could support heterogeneous experts. This would enable more flexible adaptation by routing to larger experts when more computation is desired perhaps for harder examples.\n- 5. Investigating expert layers outside the FFN layer of the Transformer. We find preliminary evidence that this similarly can improve model quality. In Appendix [A,](#page-26-1) we report quality improvement adding these inside Self-Attention layers, where our\n\nlayer replaces the weight matrices which produce Q, K, V. However, due to training instabilities with the bfloat16 format, we instead leave this as an area for future work.\n\n- 6. Examining Switch Transformer in new and across different modalities. We have thus far only considered language, but we believe that model sparsity can similarly provide advantages in new modalities, as well as multi-modal networks.\nThis list could easily be extended, but we hope this gives a flavor for the types of challenges that we are thinking about and what we suspect are promising future directions.\n\n### <span id=\"page-26-0\"></span>9. Conclusion\n\nSwitch Transformers are scalable and effective natural language learners. We simplify Mixture of Experts to produce an architecture that is easy to understand, stable to train and vastly more sample efficient than equivalently-sized dense models. We find that these models excel across a diverse set of natural language tasks and in different training regimes, including pre-training, fine-tuning and multi-task training. These advances make it possible to train models with hundreds of billion to trillion parameters and which achieve substantial speedups relative to dense T5 baselines. We hope our work motivates sparse models as an effective architecture and that this encourages researchers and practitioners to consider these flexible models in natural language tasks, and beyond.\n\n### Acknowledgments\n\nThe authors would like to thank Margaret Li who provided months of key insights into algorithmic improvements and suggestions for empirical studies. Hugo Larochelle for sage advising and clarifying comments on the draft, Irwan Bello for detailed comments and careful revisions, Colin Raffel and Adam Roberts for timely advice on neural language models and the T5 code-base, Yoshua Bengio for advising and encouragement on research in adaptive computation, Jascha Sohl-dickstein for interesting new directions for stabilizing new large scale models and paper revisions, and the Google Brain Team for useful discussions on the paper. Blake Hechtman who provided invaluable help in profiling and improving the training performance of our models.\n\n### <span id=\"page-26-1\"></span>A. Switch for Attention\n\n[Shazeer et al.](#page-38-3) [(2018)](#page-38-3); [Lepikhin et al.](#page-37-2) [(2020)](#page-37-2) designed MoE Transformers [(Shazeer et al.,](#page-38-2) [2017)](#page-38-2) by adding MoE layers into the dense feedfoward network (FFN) computations of the Transformer. Similarly, our work also replaced the FFN layer in the Transformer, but we briefly explore here an alternate design. We add Switch layers into the Transformer Self-Attention layers. To do so, we replace the trainable weight matrices that produce the queries, keys and values with Switch layers as seen in Figure [10.](#page-27-0)\n\nTable [10](#page-27-1) records the quality after a fixed number of steps as well as training time for several variants. Though we find improvements, we also found these layers to be more unstable when using bfloat16 precision and thus we did not include them in the final variant.\n\n![](_page_27_Figure_1.jpeg)\n\n- <span id=\"page-27-0\"></span>Figure 10: Switch layers in attention. We diagram how to incorporate the Switch layer into the Self-Attention transformer block. For each token (here we show two tokens, $x_1$ = “More” and $x_2$ = “Parameters”), one set of weights produces the query and the other set of unique weights produces the shared keys and values. We experimented with each expert being a linear operation, as well as a FFN, as was the case throughout this work. While we found quality improvements using this, we found this to be more unstable when used with low precision number formats, and thus leave it for future work.\n\n|                                        |  |  |  |  | However, when these layers do train stably, we believe the preliminary positive results |  |\n|----------------------------------------|--|--|--|--|-----------------------------------------------------------------------------------------|--|\n| suggests a future promising direction. |  |  |  |  |                                                                                         |  |\n\n| Model                  | Precision | Quality<br>@100k Steps (↑) | Quality<br>@16H (↑) | Speed<br>(ex/sec) (↑) |\n|------------------------|-----------|----------------------------|---------------------|-----------------------|\n| Experts FF             | float32   | -1.548                     | -1.614              | 1480                  |\n| Expert Attention       | float32   | -1.524                     | <b>-1.606</b>       | 1330                  |\n| Expert Attention       | bfloat16  | [diverges]                 | [diverges]          | –                     |\n| Experts FF + Attention | float32   | <b>-1.513</b>              | -1.607              | 1240                  |\n| Expert FF + Attention  | bfloat16  | [diverges]                 | [diverges]          | –                     |\n\n- <span id=\"page-27-1\"></span>Table 10: Switch attention layer results. All models have 32 experts and train with 524k tokens per batch. Experts FF is when experts replace the FFN in the Transformer, which is our standard setup throughout the paper. Experts FF + Attention is when experts are used to replace both the FFN and the Self-Attention layers. When training with bfloat16 precision the models that have experts attention diverge.\n### <span id=\"page-28-0\"></span>B. Preventing Token Dropping with No-Token-Left-Behind\n\nDue to software constraints on TPU accelerators, the shapes of our Tensors must be statically sized. As a result, each expert has a finite and fixed capacity to process token representations. This, however, presents an issue for our model which dynamically routes tokens at run-time that may result in an uneven distribution over experts. If the number of tokens sent to an expert is less than the expert capacity, then the computation may simply be padded – an inefficient use of the hardware, but mathematically correct. However, when the number of tokens sent to an expert is larger than its capacity (expert overflow), a protocol is needed to handle this. [Lepikhin et al.](#page-37-2) [(2020)](#page-37-2) adapts a Mixture-of-Expert model and addresses expert overflow by passing its representation to the next layer without processing through a residual connection which we also follow.\n\nWe suspected that having no computation applied to tokens could be very wasteful, especially since if there is overflow on one expert, that means another expert will have extra capacity. With this intuition we create *No-Token-Left-Behind*, which iteratively reroutes any tokens that are at first routed to an expert that is overflowing. Figure [11](#page-29-0) shows a graphical description of this method, which will allow us to guarantee almost no tokens will be dropped during training and inference. We hypothesised that this could improve performance and further stabilize training, but we found no empirical benefits. We suspect that once the network learns associations between different tokens and experts, if this association is changed (e.g. sending a token to its second highest expert) then performance could be degraded.\n\n### <span id=\"page-28-1\"></span>C. Encouraging Exploration Across Experts\n\nAt each expert-layer, the router determines to which expert to send the token. This is a discrete decision over the available experts, conditioned on information about the token's representation. Based on the incoming token representation, the router determines the best expert, however, it receives no counterfactual information about how well it would have done selecting an alternate expert. As in reinforcement learning, a classic explorationexploitation dilemma arises [(Sutton and Barto,](#page-38-12) [2018)](#page-38-12). These issues have been similarly noted and addressed differently by [Rosenbaum et al.](#page-38-13) [(2017)](#page-38-13) which demonstrated success in multi-task learning. This particular setting most closely matches that of a contextual bandit [(Robbins,](#page-37-12) [1952)](#page-37-12). Deterministically selecting the top expert always amounts to an exploitative strategy – we consider balancing exploration to seek better expert assignment.\n\nTo introduce exploration, we consider several approaches: 1) deterministic or argmax 2) sampling from the softmax distribution 3) input dropout on the incoming representation 4) multiplicative jitter noise on the incoming representation. The resulting impact on model quality is reported in Table [11.](#page-29-1) Throughout this work, we use input jitter to inject noise as we have found it to empirically perform the best.\n\n### <span id=\"page-28-2\"></span>D. Switch Transformers in Lower Compute Regimes\n\nSwitch Transformer is also an effective architecture at small scales as well as in regimes with thousands of cores and trillions of parameters. Many of our prior experiments were\n\n![](_page_29_Figure_1.jpeg)\n\n- <span id=\"page-29-0\"></span>Figure 11: Diagram of the No-Token-Left-Behind Routing. Stage 1 is equivalent to Switch routing where tokens are routed to the expert with the highest probability from the router. In Stage 2 we look at all tokens that have overflowed and route them to the expert with which has the second highest probability. Tokens can still be overflowed if their second highest expert has too many tokens, but this allows most of the tokens to be routed. This process can be iterated to guarantee virtually no tokens are dropped at all.\n\n| Model          | Quality (Neg. Log Perp.) (↑) |\n|----------------|------------------------------|\n| Argmax         | -1.471                       |\n| Sample softmax | -1.570                       |\n| Input dropout  | -1.480                       |\n| Input jitter   | <b>-1.468</b>                |\n\n- <span id=\"page-29-1\"></span>Table 11: Router Exploration Strategies. Quality of the Switch Transformer, measured by the negative log perplexity, under different randomness-strategies for selecting the expert (lower is better). There is no material speed performance difference between the variants.\nat the scale of 10B+ parameter models, but we show in Figure [12](#page-30-0) as few as 2 experts produce compelling gains over a FLOP-matched counterpart. Even if a super computer is not readily available, training Switch Transformers with 2, 4, or 8 experts (as we typically recommend one expert per core) results in solid improvements over T5 dense baselines.\n\n![](_page_30_Figure_1.jpeg)\n\n<span id=\"page-30-0\"></span>Figure 12: Switch Transformer with few experts. Switch Transformer improves over the baseline even with very few experts. Here we show scaling properties at very small scales, where we improve over the T5-Base model using 2, 4, and 8 experts.\n\n### <span id=\"page-31-0\"></span>E. Relation of Upstream to Downstream Model Performance\n\nThere is no guarantee that a model's quality on a pre-training objective will translate to downstream task results. Figure [13](#page-31-1) presents the correlation of the upstream model quality, for both dense and Switch models, on the C4 pre-training task with two downstream task measures: average SuperGLUE performance and TriviaQA score. We choose these two tasks as one probes the model's reasoning and the other factual knowledge.\n\n![](_page_31_Figure_3.jpeg)\n\n<span id=\"page-31-1\"></span>Figure 13: Upstream pre-trained quality to downstream model quality. We correlate the upstream performance with downstream quality on both SuperGLUE and TriviaQA (SOTA recorded without SSM), reasoning and knowledge-heavy benchmarks, respectively (validation sets). We find that, as with the baseline, the Switch model scales with improvements in the upstream pre-training task. For SuperGLUE, we find a loosely linear relation between negative log perplexity and the average SuperGLUE score. However, the dense model often performs better for a fixed perplexity, particularly in the large-scale regime. Conversely, on the knowledge-heavy task, TriviaQA, we find that the Switch Transformer may follow an improved scaling relationship – for a given upstream perplexity, it does better than a dense counterpart. Further statistics (expensive to collect and left to future work) would be necessary to confirm these observations.\n\nWe find a consistent correlation, indicating that for both baseline and Switch models, improved pre-training leads to better downstream results. Additionally, for a fixed upstream perplexity we find that both Switch and dense models perform similarly in the small to medium model size regime. However, in the largest model regime (T5-11B/T5-XXL) our largest Switch models, as mentioned in Section [5.6,](#page-21-2) do not always translate their upstream perplexity well to downstream fine-tuning on the SuperGLUE task. This warrants future investigation and study to fully realize the potential of sparse models. Understanding the fine-tuning dynamics with expert-models is very complicated and is dependent on regularization, load-balancing, and fine-tuning hyper-parameters.\n\n### <span id=\"page-32-0\"></span>F. Pseudo Code for Switch Transformers\n\nPseudocode for Switch Transformers in Mesh Tensorflow [(Shazeer et al.,](#page-38-3) [2018)](#page-38-3). No model parallelism is being used for the below code (see [5.4](#page-21-0) for more details).\n\n```\nimport mesh tensorflow as mtf\ndef load balance loss(router probs, expert mask):\n   \"\"\"Calculate load−balancing loss to ensure diverse expert routing.\"\"\"\n   # router probs is the probability assigned for each expert per token.\n   # router probs shape: [num cores, tokens per core, num experts]\n   # expert index contains the expert with the highest router probability in one−hot format.\n   # expert mask shape: [num cores, tokens per core, num experts]\n   # For each core, get the fraction of tokens routed to each expert.\n   # density 1 shape: [num cores, num experts]\n   density 1 = mtf.reduce mean(expert mask, reduced dim=tokens per core)\n   # For each core, get fraction of probability mass assigned to each expert\n   # from the router across all tokens.\n   # density 1 proxy shape: [num cores, num experts]\n   density 1 proxy = mtf.reduce mean(router probs, reduced dim=tokens per core)\n   # density l for a single core: vector of length num experts that sums to 1.\n   # density l proxy for a single core: vector of length num experts that sums to 1.\n   # Want both vectors to have uniform allocation (1/num experts) across all num expert elements.\n   # The two vectors will be pushed towards uniform allocation when the dot product is minimized.\n   loss = mtf.reduce mean(density 1 proxy ∗ density 1) ∗ (num experts ˆ 2)\n   return loss\n```\n- Figure 14: Pseudo code for the load balance loss for Switch Transformers in Mesh Tensorflow.\n\n```\nimport mesh tensorflow as mtf\n```\n\n```\ndef router(inputs, capacity factor):\n   \"\"\"Produce the combine and dispatch tensors used for sending and\n   receiving tokens from their highest probability expert. \"\"\"\n   # Core layout is split across num cores for all tensors and operations.\n   # inputs shape: [num cores, tokens per core, d model]\n```\n#### router weights = mtf.Variable(shape=[d model, num experts])\n\n```\n# router logits shape: [num cores, tokens per core, num experts]\nrouter logits = mtf.einsum([inputs, router weights], reduced dim=d model)\n```\n#### if is training:\n\n# Add noise for exploration across experts. router logits += mtf.random uniform(shape=router logits.shape, minval=1−eps, maxval=1+eps)\n\n```\n# Convert input to softmax operation from bfloat16 to float32 for stability.\nrouter logits = mtf.to float32(router logits)\n```\n\n```\n# Probabilities for each token of what expert it should be sent to.\nrouter probs = mtf.softmax(router logits, axis=−1)\n```\n\n```\n# Get the top−1 expert for each token. expert gate is the top−1 probability\n# from the router for each token. expert index is what expert each token\n# is going to be routed to.\n# expert gate shape: [num cores, tokens per core]\n# expert index shape: [num cores, tokens per core]\nexpert gate, expert index = mtf.top 1(router probs, reduced dim=num experts)\n# expert mask shape: [num cores, tokens per core, num experts]\nexpert mask = mtf.one hot(expert index, dimension=num experts)\n# Compute load balancing loss.\naux loss = load balance loss(router probs, expert mask)\n# Experts have a fixed capacity, ensure we do not exceed it. Construct\n# the batch indices, to each expert, with position in expert\n# make sure that not more that expert capacity examples can be routed to\n# each expert.\nposition in expert = mtf.cumsum(expert mask, dimension=tokens per core) ∗ expert mask\n# Keep only tokens that fit within expert capacity.\nexpert mask ∗= mtf.less(position in expert, expert capacity)\nexpert mask flat = mtf.reduce sum(expert mask, reduced dim=experts dim)\n# Mask out the experts that have overflowed the expert capacity.\nexpert gate ∗= expert mask flat\n# combine tensor used for combining expert outputs and scaling with router probability.\n# combine tensor shape: [num cores, tokens per core, num experts, expert capacity]\ncombine tensor = (\n   expert gate ∗ expert mask flat ∗\n   mtf.one hot(expert index, dimension=num experts) ∗\n   mtf.one hot(position in expert, dimension=expert capacity))\n# Cast back outputs to bfloat16 for the rest of the layer.\ncombine tensor = mtf.to bfloat16(combine tensor)\n# Create binary dispatch tensor that is 1 if the token gets routed to the corresponding expert.\n# dispatch tensor shape: [num cores, tokens per core, num experts, expert capacity]\ndispatch tensor = mtf.cast(combine tensor, tf.bool)\n```\n\n```\nreturn dispatch tensor, combine tensor, aux loss\n```\n<span id=\"page-33-0\"></span>Figure 15: Pseudo code for the router for Switch Transformers in Mesh Tensorflow.\n\n```\nimport mesh tensorflow as mtf\n```\ndef switch layer(inputs, n, capacity factor, num experts): \"\"\"Distributed switch transformer feed−forward layer.\"\"\"\n\n```\n# num cores (n) = total cores for training the model (scalar).\n# d model = model hidden size (scalar).\n# num experts = total number of experts.\n# capacity factor = extra buffer for each expert.\n# inputs shape: [batch, seq len, d model]\nbatch, seq len, d model = inputs.get shape()\n# Each core will route tokens per core tokens to the correct experts.\ntokens per core = batch ∗ seq len / num cores\n# Each expert will have shape [num cores, expert capacity, d model].\n# Each core is responsible for sending expert capacity tokens\n# to each expert.\nexpert capacity = tokens per core ∗ capacity factor / num experts\n# Reshape to setup per core expert dispatching.\n# shape: [batch, seq len, d model] −> [num cores, tokens per core, d model]\n# Core layout: [n, 1, 1] −> [n, 1, 1]\ninputs = mtf.reshape(inputs, [num cores, tokens per core, d model])\n# Core Layout: [n, 1, 1] −> [n, 1, 1, 1], [n, 1, 1, 1]\n# dispatch tensor (boolean) shape: [num cores, tokens per core, num experts, expert capacity]\n# dispatch tensor is used for routing tokens to the correct expert.\n# combine tensor (float) shape: [num cores, tokens per core, num experts, expert capacity]\n# combine tensor used for combining expert outputs and scaling with router\n# probability.\ndispatch tensor, combine tensor, aux loss = router(inputs, expert capacity)\n# Matmul with large boolean tensor to assign tokens to the correct expert.\n# Core Layout: [n, 1, 1], −> [1, n, 1, 1]\n# expert inputs shape: [num experts, num cores, expert capacity, d model]\nexpert inputs = mtf.einsum([inputs, dispatch tensor], reduce dims=[tokens per core])\n# All−to−All communication. Cores split across num cores and now we want to split\n# across num experts. This sends tokens, routed locally, to the correct expert now\n# split across different cores.\n# Core layout: [1, n, 1, 1] −> [n, 1, 1, 1]\nexpert inputs = mtf.reshape(expert inputs, [num experts, num cores, expert capacity, d model])\n# Standard feed forward computation, where each expert will have its own\n# unique set of parameters.\n# Total unique parameters created: num experts ∗ (d model ∗ d ff ∗ 2).\n# expert outputs shape: [num experts, num cores, expert capacity, d model]\nexpert outputs = feed forward(expert inputs)\n# All−to−All communication. Cores are currently split across the experts\n# dimension, which needs to be switched back to being split across num cores.\n# Core Layout: [n, 1, 1, 1] −> [1, n, 1, 1]\nexpert outputs = mtf.reshape(expert outputs, [num experts, num cores, expert capacity, d model])\n# Convert back to input shape and multiply outputs of experts by the routing probability.\n# expert outputs shape: [num experts, num cores, tokens per core, d model]\n# expert outputs combined shape: [num cores, tokens per core, d model]\n# Core Layout: [1, n, 1, 1] −> [n, 1, 1]\nexpert outputs combined = mtf.einsum([expert outputs, combine tensor], reduce dims=[tokens per core])\n# Remove tokens per core shapes used for local routing dispatching to match input shape.\n# Core Layout: [n, 1, 1] −> [n, 1, 1]\noutputs = mtf.reshape(expert outputs combined, [batch, seq len, d model])\nreturn outputs, aux loss\n```\nFigure 16: Pseudo code of the Switch Transformer layer in Mesh Tensorflow.\n\n### References\n\n- <span id=\"page-35-3\"></span>Mart´ın Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: A system for large-scale machine learning. In 12th {USENIX} symposium on operating systems design and implementation ({OSDI} 16), pages 265–283, 2016.\n- <span id=\"page-35-13\"></span>Iz Beltagy, Matthew E Peters, and Arman Cohan. Longformer: The long-document transformer. arXiv preprint arXiv:2004.05150, 2020.\n- <span id=\"page-35-7\"></span>Jonathan Berant, Andrew Chou, Roy Frostig, and Percy Liang. Semantic parsing on freebase from question-answer pairs. In Proceedings of the 2013 conference on empirical methods in natural language processing, pages 1533–1544, 2013.\n- <span id=\"page-35-0\"></span>Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020.\n- <span id=\"page-35-11\"></span>Rewon Child, Scott Gray, Alec Radford, and Ilya Sutskever. Generating long sequences with sparse transformers. arXiv preprint arXiv:1904.10509, 2019.\n- <span id=\"page-35-8\"></span>Kyunghyun Cho and Yoshua Bengio. Exponentially increasing the capacity-to-computation ratio for conditional computation in deep learning. arXiv preprint arXiv:1406.7362, 2014.\n- <span id=\"page-35-6\"></span>Peter Clark, Isaac Cowhey, Oren Etzioni, Tushar Khot, Ashish Sabharwal, Carissa Schoenick, and Oyvind Tafjord. Think you have solved question answering? try arc, the ai2 reasoning challenge. arXiv preprint arXiv:1803.05457, 2018.\n- <span id=\"page-35-12\"></span>Gon¸calo M Correia, Vlad Niculae, and Andr´e FT Martins. Adaptively sparse transformers. arXiv preprint arXiv:1909.00015, 2019.\n- <span id=\"page-35-5\"></span>Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pretraining of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018.\n- <span id=\"page-35-9\"></span>David Eigen, Marc'Aurelio Ranzato, and Ilya Sutskever. Learning factored representations in a deep mixture of experts. arXiv preprint arXiv:1312.4314, 2013.\n- <span id=\"page-35-10\"></span>Angela Fan, Shruti Bhosale, Holger Schwenk, Zhiyi Ma, Ahmed El-Kishky, Siddharth Goyal, Mandeep Baines, Onur Celebi, Guillaume Wenzek, Vishrav Chaudhary, et al. Beyond english-centric multilingual machine translation. Journal of Machine Learning Research, 22(107):1–48, 2021.\n- <span id=\"page-35-4\"></span>William Fedus, Ian Goodfellow, and Andrew M Dai. Maskgan: Better text generation via filling in the . arXiv preprint arXiv:1801.07736, 2018.\n- <span id=\"page-35-2\"></span>Trevor Gale, Matei Zaharia, Cliff Young, and Erich Elsen. Sparse gpu kernels for deep learning. arXiv preprint arXiv:2006.10901, 2020.\n- <span id=\"page-35-1\"></span>Scott Gray, Alec Radford, and Diederik P Kingma. Gpu kernels for block-sparse weights. https://openai.com/blog/block-sparse-gpu-kernels/, 2017.\n- <span id=\"page-36-7\"></span>Kelvin Guu, Kenton Lee, Zora Tung, Panupong Pasupat, and Ming-Wei Chang. Realm: Retrieval-augmented language model pre-training. arXiv preprint arXiv:2002.08909, 2020.\n- <span id=\"page-36-8\"></span>Aaron Harlap, Deepak Narayanan, Amar Phanishayee, Vivek Seshadri, Nikhil Devanur, Greg Ganger, and Phil Gibbons. Pipedream: Fast and efficient pipeline parallel dnn training. arXiv preprint arXiv:1806.03377, 2018.\n- <span id=\"page-36-4\"></span>Karl Moritz Hermann, Tomas Kocisky, Edward Grefenstette, Lasse Espeholt, Will Kay, Mustafa Suleyman, and Phil Blunsom. Teaching machines to read and comprehend. In C. Cortes, N. Lawrence, D. Lee, M. Sugiyama, and R. Garnett, editors, Advances in Neural Information Processing Systems, volume 28, pages 1693–1701. Curran Associates, Inc., 2015. URL [https://proceedings.neurips.cc/paper/2015/file/](https://proceedings.neurips.cc/paper/2015/file/afdec7005cc9f14302cd0474fd0f3c96-Paper.pdf) [afdec7005cc9f14302cd0474fd0f3c96-Paper.pdf](https://proceedings.neurips.cc/paper/2015/file/afdec7005cc9f14302cd0474fd0f3c96-Paper.pdf).\n- <span id=\"page-36-3\"></span>Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Distilling the knowledge in a neural network. arXiv preprint arXiv:1503.02531, 2015.\n- <span id=\"page-36-10\"></span>Sepp Hochreiter and J¨urgen Schmidhuber. Long short-term memory. Neural computation, 9(8):1735–1780, 1997.\n- <span id=\"page-36-12\"></span>Sara Hooker. The hardware lottery. arXiv preprint arXiv:2009.06489, 2020.\n- <span id=\"page-36-9\"></span>Yanping Huang, Youlong Cheng, Ankur Bapna, Orhan Firat, Dehao Chen, Mia Chen, HyoukJoong Lee, Jiquan Ngiam, Quoc V Le, Yonghui Wu, et al. Gpipe: Efficient training of giant neural networks using pipeline parallelism. In Advances in neural information processing systems, pages 103–112, 2019.\n- <span id=\"page-36-1\"></span>Robert A Jacobs, Michael I Jordan, Steven J Nowlan, and Geoffrey E Hinton. Adaptive mixtures of local experts. Neural computation, 3(1):79–87, 1991.\n- <span id=\"page-36-2\"></span>Michael I Jordan and Robert A Jacobs. Hierarchical mixtures of experts and the em algorithm. Neural computation, 6(2):181–214, 1994.\n- <span id=\"page-36-6\"></span>Mandar Joshi, Eunsol Choi, Daniel S Weld, and Luke Zettlemoyer. Triviaqa: A large scale distantly supervised challenge dataset for reading comprehension. arXiv preprint arXiv:1705.03551, 2017.\n- <span id=\"page-36-0\"></span>Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei. Scaling laws for neural language models. arXiv preprint arXiv:2001.08361, 2020.\n- <span id=\"page-36-11\"></span>Nikita Kitaev, Lukasz Kaiser, and Anselm Levskaya. Reformer: The efficient transformer. arXiv preprint arXiv:2001.04451, 2020.\n- <span id=\"page-36-5\"></span>Tom Kwiatkowski, Jennimaria Palomaki, Olivia Redfield, Michael Collins, Ankur Parikh, Chris Alberti, Danielle Epstein, Illia Polosukhin, Jacob Devlin, Kenton Lee, et al. Natural questions: a benchmark for question answering research. Transactions of the Association for Computational Linguistics, 7:453–466, 2019.\n- <span id=\"page-37-10\"></span>Guillaume Lample, Alexandre Sablayrolles, Marc'Aurelio Ranzato, Ludovic Denoyer, and Herv´e J´egou. Large memory layers with product keys. In Advances in Neural Information Processing Systems, pages 8548–8559, 2019.\n- <span id=\"page-37-5\"></span>Katherine Lee, Daphne Ippolito, Andrew Nystrom, Chiyuan Zhang, Douglas Eck, Chris Callison-Burch, and Nicholas Carlini. Deduplicating training data makes language models better. arXiv preprint arXiv:2107.06499, 2021.\n- <span id=\"page-37-2\"></span>Dmitry Lepikhin, HyoukJoong Lee, Yuanzhong Xu, Dehao Chen, Orhan Firat, Yanping Huang, Maxim Krikun, Noam Shazeer, and Zhifeng Chen. Gshard: Scaling giant models with conditional computation and automatic sharding. arXiv preprint arXiv:2006.16668, 2020.\n- <span id=\"page-37-4\"></span>Paulius Micikevicius, Sharan Narang, Jonah Alben, Gregory Diamos, Erich Elsen, David Garcia, Boris Ginsburg, Michael Houston, Oleksii Kuchaiev, Ganesh Venkatesh, et al. Mixed precision training. arXiv preprint arXiv:1710.03740, 2017.\n- <span id=\"page-37-6\"></span>Shashi Narayan, Shay B Cohen, and Mirella Lapata. Don't give me the details, just the summary! topic-aware convolutional neural networks for extreme summarization. arXiv preprint arXiv:1808.08745, 2018.\n- <span id=\"page-37-8\"></span>Yixin Nie, Adina Williams, Emily Dinan, Mohit Bansal, Jason Weston, and Douwe Kiela. Adversarial nli: A new benchmark for natural language understanding. arXiv preprint arXiv:1910.14599, 2019.\n- <span id=\"page-37-11\"></span>Joan Puigcerver, Carlos Riquelme, Basil Mustafa, Cedric Renggli, Andr´e Susano Pinto, Sylvain Gelly, Daniel Keysers, and Neil Houlsby. Scalable transfer learning with expert models. arXiv preprint arXiv:2009.13239, 2020.\n- <span id=\"page-37-1\"></span>Alec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language understanding by generative pre-training, 2018.\n- <span id=\"page-37-0\"></span>Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. arXiv preprint arXiv:1910.10683, 2019.\n- <span id=\"page-37-9\"></span>Samyam Rajbhandari, Jeff Rasley, Olatunji Ruwase, and Yuxiong He. Zero: Memory optimization towards training a trillion parameter models. arXiv preprint arXiv:1910.02054, 2019.\n- <span id=\"page-37-7\"></span>Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. Squad: 100,000+ questions for machine comprehension of text. arXiv preprint arXiv:1606.05250, 2016.\n- <span id=\"page-37-3\"></span>Prajit Ramachandran and Quoc V Le. Diversity and depth in per-example routing models. In International Conference on Learning Representations, 2018.\n- <span id=\"page-37-12\"></span>Herbert Robbins. Some aspects of the sequential design of experiments. Bulletin of the American Mathematical Society, 58(5):527–535, 1952.\n- <span id=\"page-38-6\"></span>Adam Roberts, Colin Raffel, and Noam Shazeer. How much knowledge can you pack into the parameters of a language model? arXiv preprint arXiv:2002.08910, 2020.\n- <span id=\"page-38-13\"></span>Clemens Rosenbaum, Tim Klinger, and Matthew Riemer. Routing networks: Adaptive selection of non-linear functions for multi-task learning. arXiv preprint arXiv:1711.01239, 2017.\n- <span id=\"page-38-7\"></span>Keisuke Sakaguchi, Ronan Le Bras, Chandra Bhagavatula, and Yejin Choi. Winogrande: An adversarial winograd schema challenge at scale. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 34, pages 8732–8740, 2020.\n- <span id=\"page-38-8\"></span>Victor Sanh, Lysandre Debut, Julien Chaumond, and Thomas Wolf. Distilbert, a distilled version of bert: smaller, faster, cheaper and lighter, 2019.\n- <span id=\"page-38-9\"></span>Noam Shazeer. Glu variants improve transformer, 2020.\n- <span id=\"page-38-2\"></span>Noam Shazeer, Azalia Mirhoseini, Krzysztof Maziarz, Andy Davis, Quoc Le, Geoffrey Hinton, and Jeff Dean. Outrageously large neural networks: The sparsely-gated mixture-ofexperts layer. arXiv preprint arXiv:1701.06538, 2017.\n- <span id=\"page-38-3\"></span>Noam Shazeer, Youlong Cheng, Niki Parmar, Dustin Tran, Ashish Vaswani, Penporn Koanantakool, Peter Hawkins, HyoukJoong Lee, Mingsheng Hong, Cliff Young, et al. Mesh-tensorflow: Deep learning for supercomputers. In Advances in Neural Information Processing Systems, pages 10414–10423, 2018.\n- <span id=\"page-38-10\"></span>Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan Catanzaro. Megatron-lm: Training multi-billion parameter language models using gpu model parallelism. arXiv preprint arXiv:1909.08053, 2019.\n- <span id=\"page-38-5\"></span>Nitish Srivastava, Geoffrey E. Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. Journal of Machine Learning Research, 15(1):1929–1958, 2014. URL [http://www.cs.](http://www.cs.toronto.edu/~rsalakhu/papers/srivastava14a.pdf) [toronto.edu/~rsalakhu/papers/srivastava14a.pdf](http://www.cs.toronto.edu/~rsalakhu/papers/srivastava14a.pdf).\n- <span id=\"page-38-1\"></span>Emma Strubell, Ananya Ganesh, and Andrew McCallum. Energy and policy considerations for deep learning in nlp. arXiv preprint arXiv:1906.02243, 2019.\n- <span id=\"page-38-11\"></span>Sainbayar Sukhbaatar, Edouard Grave, Piotr Bojanowski, and Armand Joulin. Adaptive attention span in transformers. arXiv preprint arXiv:1905.07799, 2019.\n- <span id=\"page-38-0\"></span>Rich Sutton. The Bitter Lesson. http://www.incompleteideas.net/IncIdeas/BitterLesson.html, 2019.\n- <span id=\"page-38-12\"></span>Richard S Sutton and Andrew G Barto. Reinforcement learning: An introduction. Stanford University, 2018.\n- <span id=\"page-38-4\"></span>Wilson L Taylor. \"cloze procedure\": A new tool for measuring readability. Journalism quarterly, 30(4):415–433, 1953.\n- <span id=\"page-39-1\"></span><span id=\"page-39-0\"></span>Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in neural information processing systems, pages 5998–6008, 2017.\n- <span id=\"page-39-4\"></span>Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel R Bowman. Glue: A multi-task benchmark and analysis platform for natural language understanding. arXiv preprint arXiv:1804.07461, 2018.\n- <span id=\"page-39-5\"></span>Alex Wang, Yada Pruksachatkun, Nikita Nangia, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel Bowman. Superglue: A stickier benchmark for generalpurpose language understanding systems. In Advances in Neural Information Processing Systems, pages 3266–3280, 2019.\n- <span id=\"page-39-3\"></span>Shibo Wang and Pankaj Kanwar. Bfloat16: The secret to high performance on cloud tpus. Google Cloud Blog, 2019.\n- <span id=\"page-39-2\"></span>Linting Xue, Noah Constant, Adam Roberts, Mihir Kale, Rami Al-Rfou, Aditya Siddhant, Aditya Barua, and Colin Raffel. mt5: A massively multilingual pre-trained text-to-text transformer. arXiv preprint arXiv:2010.11934, 2020.\n- <span id=\"page-39-6\"></span>Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Ruslan Salakhutdinov, and Quoc V. Le. Xlnet: Generalized autoregressive pretraining for language understanding, 2020.\n- <span id=\"page-39-7\"></span>Manzil Zaheer, Guru Guruganesh, Avinava Dubey, Joshua Ainslie, Chris Alberti, Santiago Ontanon, Philip Pham, Anirudh Ravula, Qifan Wang, Li Yang, et al. Big bird: Transformers for longer sequences. arXiv preprint arXiv:2007.14062, 2020."
  },
  {
    "path": "data/examples/markdown/switch_transformers/switch_trans_meta.json",
    "content": "{\n  \"table_of_contents\": [\n    {\n      \"title\": \"Switch Transformers: Scaling to Trillion Parameter Models\\nwith Simple and Efficient Sparsity\",\n      \"heading_level\": null,\n      \"page_id\": 0,\n      \"polygon\": [\n        [\n          93.0849609375,\n          101.5679931640625\n        ],\n        [\n          515.77734375,\n          101.5679931640625\n        ],\n        [\n          515.77734375,\n          133.84625244140625\n        ],\n        [\n          93.0849609375,\n          133.84625244140625\n        ]\n      ]\n    },\n    {\n      \"title\": \"William Fedus\\u2217\",\n      \"heading_level\": null,\n      \"page_id\": 0,\n      \"polygon\": [\n        [\n          89.2001953125,\n          151.53192138671875\n        ],\n        [\n          174.6650390625,\n          151.53192138671875\n        ],\n        [\n          174.6650390625,\n          164.20635986328125\n        ],\n        [\n          89.2001953125,\n          164.20635986328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"Barret Zoph\\u2217\",\n      \"heading_level\": null,\n      \"page_id\": 0,\n      \"polygon\": [\n        [\n          90.00000762939453,\n          181.7108154296875\n        ],\n        [\n          165.849609375,\n          181.7108154296875\n        ],\n        [\n          165.849609375,\n          193.87738037109375\n        ],\n        [\n          90.00000762939453,\n          193.87738037109375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Noam Shazeer\",\n      \"heading_level\": null,\n      \"page_id\": 0,\n      \"polygon\": [\n        [\n          90.00001525878906,\n          214.2322998046875\n        ],\n        [\n          169.0691680908203,\n          214.2322998046875\n        ],\n        [\n          169.0691680908203,\n          225.14141845703125\n        ],\n        [\n          90.00001525878906,\n          225.14141845703125\n        ]\n      ]\n    },\n    {\n      \"title\": \"Abstract\",\n      \"heading_level\": null,\n      \"page_id\": 0,\n      \"polygon\": [\n        [\n          280.29803466796875,\n          310.811767578125\n        ],\n        [\n          331.6575927734375,\n          310.811767578125\n        ],\n        [\n          331.6575927734375,\n          322.7669677734375\n        ],\n        [\n          280.29803466796875,\n          322.7669677734375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Contents\",\n      \"heading_level\": null,\n      \"page_id\": 1,\n      \"polygon\": [\n        [\n          90.0,\n          91.70068359375\n        ],\n        [\n          144.55810546875,\n          91.70068359375\n        ],\n        [\n          144.55810546875,\n          104.80078125\n        ],\n        [\n          90.0,\n          104.80078125\n        ]\n      ]\n    },\n    {\n      \"title\": \"1. Introduction\",\n      \"heading_level\": null,\n      \"page_id\": 2,\n      \"polygon\": [\n        [\n          89.349609375,\n          92.4776611328125\n        ],\n        [\n          180.24981689453125,\n          92.4776611328125\n        ],\n        [\n          180.24981689453125,\n          104.432861328125\n        ],\n        [\n          89.349609375,\n          104.432861328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"2. Switch Transformer\",\n      \"heading_level\": null,\n      \"page_id\": 3,\n      \"polygon\": [\n        [\n          89.349609375,\n          468.31640625\n        ],\n        [\n          223.5234375,\n          468.31640625\n        ],\n        [\n          223.5234375,\n          481.48602294921875\n        ],\n        [\n          89.349609375,\n          481.48602294921875\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.1 Simplifying Sparse Routing\",\n      \"heading_level\": null,\n      \"page_id\": 4,\n      \"polygon\": [\n        [\n          89.4990234375,\n          430.6282043457031\n        ],\n        [\n          262.7237243652344,\n          430.6282043457031\n        ],\n        [\n          262.7237243652344,\n          442.01953125\n        ],\n        [\n          89.4990234375,\n          442.01953125\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.2 Efficient Sparse Routing\",\n      \"heading_level\": null,\n      \"page_id\": 5,\n      \"polygon\": [\n        [\n          88.67724609375,\n          574.9432220458984\n        ],\n        [\n          245.73831176757812,\n          574.9432220458984\n        ],\n        [\n          245.73831176757812,\n          586.265625\n        ],\n        [\n          88.67724609375,\n          586.265625\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.3 Putting It All Together: The Switch Transformer\",\n      \"heading_level\": null,\n      \"page_id\": 7,\n      \"polygon\": [\n        [\n          89.7978515625,\n          204.51019287109375\n        ],\n        [\n          384.890625,\n          204.51019287109375\n        ],\n        [\n          384.890625,\n          215.4193115234375\n        ],\n        [\n          89.7978515625,\n          215.4193115234375\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.4 Improved Training and Fine-Tuning Techniques\",\n      \"heading_level\": null,\n      \"page_id\": 7,\n      \"polygon\": [\n        [\n          89.6484375,\n          584.8343353271484\n        ],\n        [\n          374.24749755859375,\n          584.8343353271484\n        ],\n        [\n          374.24749755859375,\n          595.93359375\n        ],\n        [\n          89.6484375,\n          595.93359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"3. Scaling Properties\",\n      \"heading_level\": null,\n      \"page_id\": 10,\n      \"polygon\": [\n        [\n          89.349609375,\n          547.7267608642578\n        ],\n        [\n          214.4091796875,\n          547.7267608642578\n        ],\n        [\n          214.4091796875,\n          559.6819610595703\n        ],\n        [\n          89.349609375,\n          559.6819610595703\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.1 Scaling Results on a Step-Basis\",\n      \"heading_level\": null,\n      \"page_id\": 11,\n      \"polygon\": [\n        [\n          89.4990234375,\n          142.49920654296875\n        ],\n        [\n          284.6510925292969,\n          142.49920654296875\n        ],\n        [\n          284.6510925292969,\n          153.4083251953125\n        ],\n        [\n          89.4990234375,\n          153.4083251953125\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.2 Scaling Results on a Time-Basis\",\n      \"heading_level\": null,\n      \"page_id\": 12,\n      \"polygon\": [\n        [\n          88.9013671875,\n          93.29522705078125\n        ],\n        [\n          288.8173828125,\n          93.29522705078125\n        ],\n        [\n          288.8173828125,\n          104.204345703125\n        ],\n        [\n          88.9013671875,\n          104.204345703125\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.3 Scaling Versus a Larger Dense Model\",\n      \"heading_level\": null,\n      \"page_id\": 12,\n      \"polygon\": [\n        [\n          88.67724609375,\n          634.0722198486328\n        ],\n        [\n          318.0220031738281,\n          634.0722198486328\n        ],\n        [\n          318.0220031738281,\n          645.046875\n        ],\n        [\n          88.67724609375,\n          645.046875\n        ]\n      ]\n    },\n    {\n      \"title\": \"4. Downstream Results\",\n      \"heading_level\": null,\n      \"page_id\": 13,\n      \"polygon\": [\n        [\n          89.6484375,\n          453.3246765136719\n        ],\n        [\n          228.3046875,\n          453.3246765136719\n        ],\n        [\n          228.3046875,\n          465.2798767089844\n        ],\n        [\n          89.6484375,\n          465.2798767089844\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.1 Fine-Tuning\",\n      \"heading_level\": null,\n      \"page_id\": 13,\n      \"polygon\": [\n        [\n          89.6484375,\n          585.1042327880859\n        ],\n        [\n          180.193359375,\n          585.1042327880859\n        ],\n        [\n          180.193359375,\n          596.3203125\n        ],\n        [\n          89.6484375,\n          596.3203125\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.2 Distillation\",\n      \"heading_level\": null,\n      \"page_id\": 15,\n      \"polygon\": [\n        [\n          89.2001953125,\n          488.9872131347656\n        ],\n        [\n          173.33460998535156,\n          488.9872131347656\n        ],\n        [\n          173.33460998535156,\n          499.8963317871094\n        ],\n        [\n          89.2001953125,\n          499.8963317871094\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.3 Multilingual Learning\",\n      \"heading_level\": null,\n      \"page_id\": 16,\n      \"polygon\": [\n        [\n          89.349609375,\n          579.69140625\n        ],\n        [\n          232.48828125,\n          579.69140625\n        ],\n        [\n          232.48828125,\n          590.7133483886719\n        ],\n        [\n          89.349609375,\n          590.7133483886719\n        ]\n      ]\n    },\n    {\n      \"title\": \"5. Designing Models with Data, Model, and Expert-Parallelism\",\n      \"heading_level\": null,\n      \"page_id\": 17,\n      \"polygon\": [\n        [\n          90.00001525878906,\n          608.30859375\n        ],\n        [\n          464.9765625,\n          608.30859375\n        ],\n        [\n          464.9765625,\n          620.68359375\n        ],\n        [\n          90.00001525878906,\n          620.68359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.1 Data Parallelism\",\n      \"heading_level\": null,\n      \"page_id\": 19,\n      \"polygon\": [\n        [\n          89.05078125,\n          453.490234375\n        ],\n        [\n          204.099609375,\n          453.490234375\n        ],\n        [\n          204.099609375,\n          464.44921875\n        ],\n        [\n          89.05078125,\n          464.44921875\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.2 Model Parallelism\",\n      \"heading_level\": null,\n      \"page_id\": 19,\n      \"polygon\": [\n        [\n          89.57373046875,\n          562.7372436523438\n        ],\n        [\n          212.16796875,\n          562.7372436523438\n        ],\n        [\n          212.16796875,\n          573.890625\n        ],\n        [\n          89.57373046875,\n          573.890625\n        ]\n      ]\n    },\n    {\n      \"title\": \"How the model weights are split over cores\",\n      \"heading_level\": null,\n      \"page_id\": 20,\n      \"polygon\": [\n        [\n          197.33572387695312,\n          92.8397216796875\n        ],\n        [\n          421.5530700683594,\n          92.8397216796875\n        ],\n        [\n          421.5530700683594,\n          103.3858642578125\n        ],\n        [\n          197.33572387695312,\n          103.3858642578125\n        ]\n      ]\n    },\n    {\n      \"title\": \"How the data is split over cores\",\n      \"heading_level\": null,\n      \"page_id\": 20,\n      \"polygon\": [\n        [\n          226.85939025878906,\n          228.744140625\n        ],\n        [\n          392.468505859375,\n          228.744140625\n        ],\n        [\n          392.468505859375,\n          239.60675048828125\n        ],\n        [\n          226.85939025878906,\n          239.60675048828125\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.3 Model and Data Parallelism\",\n      \"heading_level\": null,\n      \"page_id\": 20,\n      \"polygon\": [\n        [\n          89.12548828125,\n          602.6173248291016\n        ],\n        [\n          266.90191650390625,\n          602.6173248291016\n        ],\n        [\n          266.90191650390625,\n          613.5264282226562\n        ],\n        [\n          89.12548828125,\n          613.5264282226562\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.4 Expert and Data Parallelism\",\n      \"heading_level\": null,\n      \"page_id\": 21,\n      \"polygon\": [\n        [\n          89.12548828125,\n          93.29522705078125\n        ],\n        [\n          270.13104248046875,\n          93.29522705078125\n        ],\n        [\n          270.13104248046875,\n          104.204345703125\n        ],\n        [\n          89.12548828125,\n          104.204345703125\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.5 Expert, Model and Data Parallelism\",\n      \"heading_level\": null,\n      \"page_id\": 21,\n      \"polygon\": [\n        [\n          89.349609375,\n          329.6863708496094\n        ],\n        [\n          312.51287841796875,\n          329.6863708496094\n        ],\n        [\n          312.51287841796875,\n          340.5954895019531\n        ],\n        [\n          89.349609375,\n          340.5954895019531\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.6 Towards Trillion Parameter Models\",\n      \"heading_level\": null,\n      \"page_id\": 21,\n      \"polygon\": [\n        [\n          89.349609375,\n          539.5345001220703\n        ],\n        [\n          308.091796875,\n          539.5345001220703\n        ],\n        [\n          308.091796875,\n          550.443603515625\n        ],\n        [\n          89.349609375,\n          550.443603515625\n        ]\n      ]\n    },\n    {\n      \"title\": \"6. Related Work\",\n      \"heading_level\": null,\n      \"page_id\": 23,\n      \"polygon\": [\n        [\n          89.42431640625,\n          453.14385986328125\n        ],\n        [\n          188.08042907714844,\n          453.14385986328125\n        ],\n        [\n          188.08042907714844,\n          465.09906005859375\n        ],\n        [\n          89.42431640625,\n          465.09906005859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"7. Discussion\",\n      \"heading_level\": null,\n      \"page_id\": 24,\n      \"polygon\": [\n        [\n          89.72314453125,\n          369.3647766113281\n        ],\n        [\n          167.57725524902344,\n          369.3647766113281\n        ],\n        [\n          167.57725524902344,\n          381.3199768066406\n        ],\n        [\n          89.72314453125,\n          381.3199768066406\n        ]\n      ]\n    },\n    {\n      \"title\": \"8. Future Work\",\n      \"heading_level\": null,\n      \"page_id\": 25,\n      \"polygon\": [\n        [\n          89.947265625,\n          219.65625\n        ],\n        [\n          181.986328125,\n          219.65625\n        ],\n        [\n          181.986328125,\n          231.62786865234375\n        ],\n        [\n          89.947265625,\n          231.62786865234375\n        ]\n      ]\n    },\n    {\n      \"title\": \"9. Conclusion\",\n      \"heading_level\": null,\n      \"page_id\": 26,\n      \"polygon\": [\n        [\n          89.4990234375,\n          229.517578125\n        ],\n        [\n          171.228515625,\n          229.517578125\n        ],\n        [\n          171.228515625,\n          241.9959716796875\n        ],\n        [\n          89.4990234375,\n          241.9959716796875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Acknowledgments\",\n      \"heading_level\": null,\n      \"page_id\": 26,\n      \"polygon\": [\n        [\n          89.6484375,\n          394.646484375\n        ],\n        [\n          196.1806640625,\n          394.646484375\n        ],\n        [\n          196.1806640625,\n          407.112060546875\n        ],\n        [\n          89.6484375,\n          407.112060546875\n        ]\n      ]\n    },\n    {\n      \"title\": \"A. Switch for Attention\",\n      \"heading_level\": null,\n      \"page_id\": 26,\n      \"polygon\": [\n        [\n          89.7978515625,\n          563.0625\n        ],\n        [\n          232.9365234375,\n          563.0625\n        ],\n        [\n          232.9365234375,\n          575.5070648193359\n        ],\n        [\n          89.7978515625,\n          575.5070648193359\n        ]\n      ]\n    },\n    {\n      \"title\": \"B. Preventing Token Dropping with No-Token-Left-Behind\",\n      \"heading_level\": null,\n      \"page_id\": 28,\n      \"polygon\": [\n        [\n          89.2001953125,\n          92.4776611328125\n        ],\n        [\n          443.4609375,\n          92.4776611328125\n        ],\n        [\n          443.4609375,\n          104.432861328125\n        ],\n        [\n          89.2001953125,\n          104.432861328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"C. Encouraging Exploration Across Experts\",\n      \"heading_level\": null,\n      \"page_id\": 28,\n      \"polygon\": [\n        [\n          89.349609375,\n          401.88983154296875\n        ],\n        [\n          350.525390625,\n          401.88983154296875\n        ],\n        [\n          350.525390625,\n          413.84503173828125\n        ],\n        [\n          89.349609375,\n          413.84503173828125\n        ]\n      ]\n    },\n    {\n      \"title\": \"D. Switch Transformers in Lower Compute Regimes\",\n      \"heading_level\": null,\n      \"page_id\": 28,\n      \"polygon\": [\n        [\n          89.2001953125,\n          659.2198486328125\n        ],\n        [\n          399.234375,\n          659.2198486328125\n        ],\n        [\n          399.234375,\n          671.175048828125\n        ],\n        [\n          89.2001953125,\n          671.175048828125\n        ]\n      ]\n    },\n    {\n      \"title\": \"E. Relation of Upstream to Downstream Model Performance\",\n      \"heading_level\": null,\n      \"page_id\": 31,\n      \"polygon\": [\n        [\n          89.7978515625,\n          92.4776611328125\n        ],\n        [\n          450.2102355957031,\n          92.4776611328125\n        ],\n        [\n          450.2102355957031,\n          104.432861328125\n        ],\n        [\n          89.7978515625,\n          104.432861328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"F. Pseudo Code for Switch Transformers\",\n      \"heading_level\": null,\n      \"page_id\": 32,\n      \"polygon\": [\n        [\n          89.4990234375,\n          92.08740234375\n        ],\n        [\n          331.5787353515625,\n          92.08740234375\n        ],\n        [\n          331.5787353515625,\n          104.432861328125\n        ],\n        [\n          89.4990234375,\n          104.432861328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"router weights = mtf.Variable(shape=[d model, num experts])\",\n      \"heading_level\": null,\n      \"page_id\": 33,\n      \"polygon\": [\n        [\n          103.61865234375,\n          164.162109375\n        ],\n        [\n          335.138671875,\n          164.162109375\n        ],\n        [\n          335.138671875,\n          171.804443359375\n        ],\n        [\n          103.61865234375,\n          171.804443359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"if is training:\",\n      \"heading_level\": null,\n      \"page_id\": 33,\n      \"polygon\": [\n        [\n          102.57275390625,\n          206.5078125\n        ],\n        [\n          162.861328125,\n          206.5078125\n        ],\n        [\n          162.861328125,\n          214.2421875\n        ],\n        [\n          102.57275390625,\n          214.2421875\n        ]\n      ]\n    },\n    {\n      \"title\": \"References\",\n      \"heading_level\": null,\n      \"page_id\": 35,\n      \"polygon\": [\n        [\n          89.42431640625,\n          92.4776611328125\n        ],\n        [\n          153.298828125,\n          92.4776611328125\n        ],\n        [\n          153.298828125,\n          104.80078125\n        ],\n        [\n          89.42431640625,\n          104.80078125\n        ]\n      ]\n    }\n  ],\n  \"page_stats\": [\n    {\n      \"page_id\": 0,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          107\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"SectionHeader\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          3\n        ],\n        [\n          \"Footnote\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4268\n      }\n    },\n    {\n      \"page_id\": 1,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          163\n        ],\n        [\n          \"TableCell\",\n          88\n        ],\n        [\n          \"Line\",\n          34\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"TableOfContents\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3081\n      }\n    },\n    {\n      \"page_id\": 2,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          224\n        ],\n        [\n          \"Line\",\n          70\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 3,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          133\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"ListItem\",\n          6\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 4,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          279\n        ],\n        [\n          \"Line\",\n          55\n        ],\n        [\n          \"Equation\",\n          2\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 2015\n      }\n    },\n    {\n      \"page_id\": 5,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          204\n        ],\n        [\n          \"Line\",\n          56\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Footnote\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 6,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          313\n        ],\n        [\n          \"Line\",\n          58\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"Equation\",\n          4\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Footnote\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4300\n      }\n    },\n    {\n      \"page_id\": 7,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          234\n        ],\n        [\n          \"Line\",\n          51\n        ],\n        [\n          \"Text\",\n          4\n        ],\n        [\n          \"Reference\",\n          4\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Footnote\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 8,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          134\n        ],\n        [\n          \"TableCell\",\n          109\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3762\n      }\n    },\n    {\n      \"page_id\": 9,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          136\n        ],\n        [\n          \"TableCell\",\n          51\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"Table\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"Footnote\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"TableGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 5164\n      }\n    },\n    {\n      \"page_id\": 10,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          140\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"TableCell\",\n          30\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"TableGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 6440\n      }\n    },\n    {\n      \"page_id\": 11,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          153\n        ],\n        [\n          \"Line\",\n          67\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 12,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          125\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          4\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 13,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          163\n        ],\n        [\n          \"Line\",\n          62\n        ],\n        [\n          \"Reference\",\n          4\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"Footnote\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 14,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          157\n        ],\n        [\n          \"Line\",\n          46\n        ],\n        [\n          \"Text\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Footnote\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 15,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"TableCell\",\n          155\n        ],\n        [\n          \"Span\",\n          134\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3515\n      }\n    },\n    {\n      \"page_id\": 16,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          112\n        ],\n        [\n          \"TableCell\",\n          48\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3358\n      }\n    },\n    {\n      \"page_id\": 17,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          140\n        ],\n        [\n          \"TableCell\",\n          112\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"Table\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Footnote\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 5018\n      }\n    },\n    {\n      \"page_id\": 18,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          314\n        ],\n        [\n          \"Line\",\n          253\n        ],\n        [\n          \"Figure\",\n          2\n        ],\n        [\n          \"Caption\",\n          2\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"FigureGroup\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 19,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          327\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"TableCell\",\n          30\n        ],\n        [\n          \"TextInlineMath\",\n          4\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 3,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 10972\n      }\n    },\n    {\n      \"page_id\": 20,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          168\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Figure\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 21,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          258\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"TextInlineMath\",\n          3\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Equation\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 5962\n      }\n    },\n    {\n      \"page_id\": 22,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"TableCell\",\n          248\n        ],\n        [\n          \"Span\",\n          188\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"Footnote\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4609\n      }\n    },\n    {\n      \"page_id\": 23,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          164\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 24,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          168\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 25,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          114\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"ListItem\",\n          5\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 26,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          95\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 27,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          172\n        ],\n        [\n          \"TableCell\",\n          79\n        ],\n        [\n          \"Line\",\n          50\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Table\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 1,\n        \"llm_tokens_used\": 7785\n      }\n    },\n    {\n      \"page_id\": 28,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          109\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 29,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          122\n        ],\n        [\n          \"Line\",\n          52\n        ],\n        [\n          \"TableCell\",\n          10\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"Text\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 1821\n      }\n    },\n    {\n      \"page_id\": 30,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          47\n        ],\n        [\n          \"Line\",\n          19\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 31,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          135\n        ],\n        [\n          \"Line\",\n          54\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 32,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          446\n        ],\n        [\n          \"Line\",\n          27\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Text\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 33,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          809\n        ],\n        [\n          \"Line\",\n          51\n        ],\n        [\n          \"Code\",\n          7\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 7662\n      }\n    },\n    {\n      \"page_id\": 34,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          1054\n        ],\n        [\n          \"Line\",\n          56\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4150\n      }\n    },\n    {\n      \"page_id\": 35,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          125\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"ListItem\",\n          14\n        ],\n        [\n          \"Reference\",\n          14\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 36,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          115\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"ListItem\",\n          13\n        ],\n        [\n          \"Reference\",\n          13\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 37,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          110\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"ListItem\",\n          13\n        ],\n        [\n          \"Reference\",\n          13\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 38,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          109\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"ListItem\",\n          14\n        ],\n        [\n          \"Reference\",\n          14\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 39,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          59\n        ],\n        [\n          \"Line\",\n          23\n        ],\n        [\n          \"Reference\",\n          8\n        ],\n        [\n          \"ListItem\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"PageFooter\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4107\n      }\n    }\n  ],\n  \"debug_data_path\": \"debug_data/switch_trans\"\n}"
  },
  {
    "path": "data/examples/markdown/thinkpython/thinkpython.md",
    "content": "# Think Python\n\n## How to Think Like a Computer Scientist\n\nVersion 2.0.17\n\n# Think Python\n\n## How to Think Like a Computer Scientist\n\nVersion 2.0.17\n\nAllen Downey\n\nGreen Tea Press\n\nNeedham, Massachusetts\n\nCopyright © 2012 Allen Downey.\n\nGreen Tea Press 9 Washburn Ave Needham MA 02492\n\nPermission is granted to copy, distribute, and/or modify this document under the terms of the Creative Commons Attribution-NonCommercial 3.0 Unported License, which is available at [http:](http://creativecommons.org/licenses/by-nc/3.0/) [//creativecommons.org/licenses/by-nc/3.0/](http://creativecommons.org/licenses/by-nc/3.0/).\n\nThe original form of this book is LATEX source code. Compiling this LATEX source has the effect of generating a device-independent representation of a textbook, which can be converted to other formats and printed.\n\nThe $\\LaTeX$ source for this book is available from <http://www.thinkpython.com>\n\n# <span id=\"page-4-0\"></span>**Preface**\n\n## **The strange history of this book**\n\nIn January 1999 I was preparing to teach an introductory programming class in Java. I had taught it three times and I was getting frustrated. The failure rate in the class was too high and, even for students who succeeded, the overall level of achievement was too low.\n\nOne of the problems I saw was the books. They were too big, with too much unnecessary detail about Java, and not enough high-level guidance about how to program. And they all suffered from the trap door effect: they would start out easy, proceed gradually, and then somewhere around Chapter 5 the bottom would fall out. The students would get too much new material, too fast, and I would spend the rest of the semester picking up the pieces.\n\nTwo weeks before the first day of classes, I decided to write my own book. My goals were:\n\n- Keep it short. It is better for students to read 10 pages than not read 50 pages.\n- Be careful with vocabulary. I tried to minimize the jargon and define each term at first use.\n- Build gradually. To avoid trap doors, I took the most difficult topics and split them into a series of small steps.\n- Focus on programming, not the programming language. I included the minimum useful subset of Java and left out the rest.\n\nI needed a title, so on a whim I chose *How to Think Like a Computer Scientist*.\n\nMy first version was rough, but it worked. Students did the reading, and they understood enough that I could spend class time on the hard topics, the interesting topics and (most important) letting the students practice.\n\nI released the book under the GNU Free Documentation License, which allows users to copy, modify, and distribute the book.\n\nWhat happened next is the cool part. Jeff Elkner, a high school teacher in Virginia, adopted my book and translated it into Python. He sent me a copy of his translation, and I had the unusual experience of learning Python by reading my own book. As Green Tea Press, I published the first Python version in 2001.\n\nIn 2003 I started teaching at Olin College and I got to teach Python for the first time. The contrast with Java was striking. Students struggled less, learned more, worked on more interesting projects, and generally had a lot more fun.\n\nOver the last nine years I continued to develop the book, correcting errors, improving some of the examples and adding material, especially exercises.\n\nThe result is this book, now with the less grandiose title *Think Python*. Some of the changes are:\n\n- I added a section about debugging at the end of each chapter. These sections present general techniques for finding and avoiding bugs, and warnings about Python pitfalls.\n- I added more exercises, ranging from short tests of understanding to a few substantial projects. And I wrote solutions for most of them.\n- I added a series of case studies—longer examples with exercises, solutions, and discussion. Some are based on Swampy, a suite of Python programs I wrote for use in my classes. Swampy, code examples, and some solutions are available from <http://thinkpython.com>.\n- I expanded the discussion of program development plans and basic design patterns.\n- I added appendices about debugging, analysis of algorithms, and UML diagrams with Lumpy.\n\nI hope you enjoy working with this book, and that it helps you learn to program and think, at least a little bit, like a computer scientist.\n\nAllen B. Downey Needham MA\n\nAllen Downey is a Professor of Computer Science at the Franklin W. Olin College of Engineering.\n\n## **Acknowledgments**\n\nMany thanks to Jeff Elkner, who translated my Java book into Python, which got this project started and introduced me to what has turned out to be my favorite language.\n\nThanks also to Chris Meyers, who contributed several sections to *How to Think Like a Computer Scientist*.\n\nThanks to the Free Software Foundation for developing the GNU Free Documentation License, which helped make my collaboration with Jeff and Chris possible, and Creative Commons for the license I am using now.\n\nThanks to the editors at Lulu who worked on *How to Think Like a Computer Scientist*.\n\nThanks to all the students who worked with earlier versions of this book and all the contributors (listed below) who sent in corrections and suggestions.\n\n## **Contributor List**\n\nMore than 100 sharp-eyed and thoughtful readers have sent in suggestions and corrections over the past few years. Their contributions, and enthusiasm for this project, have been a huge help.\n\nIf you have a suggestion or correction, please send email to feedback@thinkpython.com. If I make a change based on your feedback, I will add you to the contributor list (unless you ask to be omitted).\n\nIf you include at least part of the sentence the error appears in, that makes it easy for me to search. Page and section numbers are fine, too, but not quite as easy to work with. Thanks!\n\n- Lloyd Hugh Allen sent in a correction to Section 8.4.\n- Yvon Boulianne sent in a correction of a semantic error in Chapter 5.\n- Fred Bremmer submitted a correction in Section 2.1.\n- Jonah Cohen wrote the Perl scripts to convert the LaTeX source for this book into beautiful HTML.\n- Michael Conlon sent in a grammar correction in Chapter 2 and an improvement in style in Chapter 1, and he initiated discussion on the technical aspects of interpreters.\n- Benoit Girard sent in a correction to a humorous mistake in Section 5.6.\n- Courtney Gleason and Katherine Smith wrote horsebet.py, which was used as a case study in an earlier version of the book. Their program can now be found on the website.\n- Lee Harr submitted more corrections than we have room to list here, and indeed he should be listed as one of the principal editors of the text.\n- James Kaylin is a student using the text. He has submitted numerous corrections.\n- David Kershaw fixed the broken catTwice function in Section 3.10.\n- Eddie Lam has sent in numerous corrections to Chapters 1, 2, and 3. He also fixed the Makefile so that it creates an index the first time it is run and helped us set up a versioning scheme.\n- Man-Yong Lee sent in a correction to the example code in Section 2.4.\n- David Mayo pointed out that the word \"unconsciously\" in Chapter 1 needed to be changed to \"subconsciously\".\n- Chris McAloon sent in several corrections to Sections 3.9 and 3.10.\n- Matthew J. Moelter has been a long-time contributor who sent in numerous corrections and suggestions to the book.\n- Simon Dicon Montford reported a missing function definition and several typos in Chapter 3. He also found errors in the increment function in Chapter 13.\n- John Ouzts corrected the definition of \"return value\" in Chapter 3.\n- Kevin Parks sent in valuable comments and suggestions as to how to improve the distribution of the book.\n- David Pool sent in a typo in the glossary of Chapter 1, as well as kind words of encouragement.\n- Michael Schmitt sent in a correction to the chapter on files and exceptions.\n- Robin Shaw pointed out an error in Section 13.1, where the printTime function was used in an example without being defined.\n- Paul Sleigh found an error in Chapter 7 and a bug in Jonah Cohen's Perl script that generates HTML from LaTeX.\n- Craig T. Snydal is testing the text in a course at Drew University. He has contributed several valuable suggestions and corrections.\n- Ian Thomas and his students are using the text in a programming course. They are the first ones to test the chapters in the latter half of the book, and they have made numerous corrections and suggestions.\n- Keith Verheyden sent in a correction in Chapter 3.\n- Peter Winstanley let us know about a longstanding error in our Latin in Chapter 3.\n- Chris Wrobel made corrections to the code in the chapter on file I/O and exceptions.\n- Moshe Zadka has made invaluable contributions to this project. In addition to writing the first draft of the chapter on Dictionaries, he provided continual guidance in the early stages of the book.\n- Christoph Zwerschke sent several corrections and pedagogic suggestions, and explained the difference between *gleich* and *selbe*.\n- James Mayer sent us a whole slew of spelling and typographical errors, including two in the contributor list.\n- Hayden McAfee caught a potentially confusing inconsistency between two examples.\n- Angel Arnal is part of an international team of translators working on the Spanish version of the text. He has also found several errors in the English version.\n- Tauhidul Hoque and Lex Berezhny created the illustrations in Chapter 1 and improved many of the other illustrations.\n- Dr. Michele Alzetta caught an error in Chapter 8 and sent some interesting pedagogic comments and suggestions about Fibonacci and Old Maid.\n- Andy Mitchell caught a typo in Chapter 1 and a broken example in Chapter 2.\n- Kalin Harvey suggested a clarification in Chapter 7 and caught some typos.\n- Christopher P. Smith caught several typos and helped us update the book for Python 2.2.\n- David Hutchins caught a typo in the Foreword.\n- Gregor Lingl is teaching Python at a high school in Vienna, Austria. He is working on a German translation of the book, and he caught a couple of bad errors in Chapter 5.\n- Julie Peters caught a typo in the Preface.\n- Florin Oprina sent in an improvement in makeTime, a correction in printTime, and a nice typo.\n- D. J. Webre suggested a clarification in Chapter 3.\n- Ken found a fistful of errors in Chapters 8, 9 and 11.\n- Ivo Wever caught a typo in Chapter 5 and suggested a clarification in Chapter 3.\n- Curtis Yanko suggested a clarification in Chapter 2.\n- Ben Logan sent in a number of typos and problems with translating the book into HTML.\n- Jason Armstrong saw the missing word in Chapter 2.\n- Louis Cordier noticed a spot in Chapter 16 where the code didn't match the text.\n- Brian Cain suggested several clarifications in Chapters 2 and 3.\n- Rob Black sent in a passel of corrections, including some changes for Python 2.2.\n- Jean-Philippe Rey at Ecole Centrale Paris sent a number of patches, including some updates for Python 2.2 and other thoughtful improvements.\n- Jason Mader at George Washington University made a number of useful suggestions and corrections.\n- Jan Gundtofte-Bruun reminded us that \"a error\" is an error.\n- Abel David and Alexis Dinno reminded us that the plural of \"matrix\" is \"matrices\", not \"matrixes\". This error was in the book for years, but two readers with the same initials reported it on the same day. Weird.\n- Charles Thayer encouraged us to get rid of the semi-colons we had put at the ends of some statements and to clean up our use of \"argument\" and \"parameter\".\n- Roger Sperberg pointed out a twisted piece of logic in Chapter 3.\n- Sam Bull pointed out a confusing paragraph in Chapter 2.\n- Andrew Cheung pointed out two instances of \"use before def.\"\n- C. Corey Capel spotted the missing word in the Third Theorem of Debugging and a typo in Chapter 4.\n- Alessandra helped clear up some Turtle confusion.\n- Wim Champagne found a brain-o in a dictionary example.\n- Douglas Wright pointed out a problem with floor division in arc.\n- Jared Spindor found some jetsam at the end of a sentence.\n- Lin Peiheng sent a number of very helpful suggestions.\n- Ray Hagtvedt sent in two errors and a not-quite-error.\n- Torsten Hübsch pointed out an inconsistency in Swampy.\n- Inga Petuhhov corrected an example in Chapter 14.\n- Arne Babenhauserheide sent several helpful corrections.\n- Mark E. Casida is is good at spotting repeated words.\n- Scott Tyler filled in a that was missing. And then sent in a heap of corrections.\n- Gordon Shephard sent in several corrections, all in separate emails.\n- Andrew Turner spotted an error in Chapter 8.\n- Adam Hobart fixed a problem with floor division in arc.\n- Daryl Hammond and Sarah Zimmerman pointed out that I served up math.pi too early. And Zim spotted a typo.\n- George Sass found a bug in a Debugging section.\n- Brian Bingham suggested Exercise [11.10.](#page-132-0)\n- Leah Engelbert-Fenton pointed out that I used tuple as a variable name, contrary to my own advice. And then found a bunch of typos and a \"use before def.\"\n- Joe Funke spotted a typo.\n- Chao-chao Chen found an inconsistency in the Fibonacci example.\n- Jeff Paine knows the difference between space and spam.\n- Lubos Pintes sent in a typo.\n- Gregg Lind and Abigail Heithoff suggested Exercise [14.4.](#page-160-0)\n- Max Hailperin has sent in a number of corrections and suggestions. Max is one of the authors of the extraordinary *Concrete Abstractions*, which you might want to read when you are done with this book.\n- Chotipat Pornavalai found an error in an error message.\n- Stanislaw Antol sent a list of very helpful suggestions.\n- Eric Pashman sent a number of corrections for Chapters 4–11.\n- Miguel Azevedo found some typos.\n- Jianhua Liu sent in a long list of corrections.\n- Nick King found a missing word.\n- Martin Zuther sent a long list of suggestions.\n- Adam Zimmerman found an inconsistency in my instance of an \"instance\" and several other errors.\n- Ratnakar Tiwari suggested a footnote explaining degenerate triangles.\n- Anurag Goel suggested another solution for is_abecedarian and sent some additional corrections. And he knows how to spell Jane Austen.\n- Kelli Kratzer spotted one of the typos.\n- Mark Griffiths pointed out a confusing example in Chapter 3.\n- Roydan Ongie found an error in my Newton's method.\n- Patryk Wolowiec helped me with a problem in the HTML version.\n- Mark Chonofsky told me about a new keyword in Python 3.\n- Russell Coleman helped me with my geometry.\n- Wei Huang spotted several typographical errors.\n- Karen Barber spotted the the oldest typo in the book.\n- Nam Nguyen found a typo and pointed out that I used the Decorator pattern but didn't mention it by name.\n- Stéphane Morin sent in several corrections and suggestions.\n- Paul Stoop corrected a typo in uses_only.\n- Eric Bronner pointed out a confusion in the discussion of the order of operations.\n- Alexandros Gezerlis set a new standard for the number and quality of suggestions he submitted. We are deeply grateful!\n- Gray Thomas knows his right from his left.\n- Giovanni Escobar Sosa sent a long list of corrections and suggestions.\n- Alix Etienne fixed one of the URLs.\n- Kuang He found a typo.\n- Daniel Neilson corrected an error about the order of operations.\n- Will McGinnis pointed out that polyline was defined differently in two places.\n- Swarup Sahoo spotted a missing semi-colon.\n- Frank Hecker pointed out an exercise that was under-specified, and some broken links.\n- Animesh B helped me clean up a confusing example.\n- Martin Caspersen found two round-off errors.\n- Gregor Ulm sent several corrections and suggestions.\n- Dimitrios Tsirigkas suggested I clarify an exercise.\n- Carlos Tafur sent a page of corrections and suggestions.\n- Martin Nordsletten found a bug in an exercise solution.\n- Lars O.D. Christensen found a broken reference.\n- Victor Simeone found a typo.\n- Sven Hoexter pointed out that a variable named input shadows a built-in function.\n- Viet Le found a typo.\n- Stephen Gregory pointed out the problem with cmp in Python 3.\n- Matthew Shultz let me know about a broken link.\n- Lokesh Kumar Makani let me know about some broken links and some changes in error messages.\n- Ishwar Bhat corrected my statement of Fermat's last theorem.\n- Brian McGhie suggested a clarification.\n- Andrea Zanella translated the book into Italian, and sent a number of corrections along the way.\n\n# **Contents**\n\n| Preface   |                                         | v                                        |     |\n|-----------|-----------------------------------------|------------------------------------------|-----|\n| 1         | The way of the program                  | 1                                        |     |\n|           | 1.1 The Python programming language     | 1                                        |     |\n|           | 1.2 What is a program?                  | 3                                        |     |\n|           | 1.3 What is debugging?                  | 3                                        |     |\n|           | 1.4 Formal and natural languages        | 5                                        |     |\n|           | 1.5 The first program                   | 6                                        |     |\n|           | 1.6 Debugging                           | 7                                        |     |\n|           | 1.7 Glossary                            | 7                                        |     |\n|           | 1.8 Exercises                           | 9                                        |     |\n| 2         | Variables, expressions and statements   | 11                                       |     |\n|           | 2.1 Values and types                    | 11                                       |     |\n|           | 2.2 Variables                           | 12                                       |     |\n|           | 2.3 Variable names and keywords         | 12                                       |     |\n|           | 2.4 Operators and operands              | 13                                       |     |\n|           | 2.5 Expressions and statements          | 14                                       |     |\n|           | 2.6 Interactive mode and script mode    | 14                                       |     |\n|           | 2.7 Order of operations                 | 15                                       |     |\n|           | 2.8 String operations                   | 15                                       |     |\n|           | 2.9 Comments                            | 16                                       |     |\n|           | 2.10 Debugging                          | 16                                       |     |\n|           | 2.11 Glossary                           | 17                                       |     |\n|           | 2.12 Exercises                          | 18                                       |     |\n| 3         | Functions                               |                                          | 19  |\n|           | 3.1                                     | Function calls<br>.                      | 19  |\n|           | 3.2                                     | Type conversion functions                | 19  |\n|           | 3.3                                     | Math functions                           | 20  |\n|           | 3.4                                     | Composition                              | 21  |\n|           | 3.5                                     | Adding new functions<br>.                | 21  |\n|           | 3.6                                     | Definitions and uses<br>.                | 22  |\n|           | 3.7                                     | Flow of execution<br>.                   | 23  |\n|           | 3.8                                     | Parameters and arguments                 | 23  |\n|           | 3.9                                     | Variables and parameters are local<br>.  | 24  |\n|           | 3.10                                    | Stack diagrams<br>.                      | 25  |\n|           | 3.11                                    | Fruitful functions and void functions    | 26  |\n|           | 3.12                                    | Why functions?<br>.                      | 26  |\n|           | 3.13                                    | Importing with from<br>.                 | 27  |\n|           | 3.14                                    | Debugging                                | 27  |\n|           | 3.15                                    | Glossary<br>.                            | 28  |\n|           | 3.16                                    | Exercises<br>.                           | 29  |\n| 4         |                                         | Case study: interface design             | 31  |\n|           | 4.1                                     | TurtleWorld<br>.                         | 31  |\n|           | 4.2                                     | Simple repetition<br>.                   | 32  |\n|           | 4.3                                     | Exercises<br>.                           | 33  |\n|           | 4.4                                     | Encapsulation<br>.                       | 34  |\n|           | 4.5                                     | Generalization                           | 34  |\n|           | 4.6                                     | Interface design<br>.                    | 35  |\n|           | 4.7                                     | Refactoring                              | 36  |\n|           | 4.8                                     | A development plan<br>.                  | 37  |\n|           | 4.9                                     | docstring                                | 37  |\n|           | 4.10                                    | Debugging                                | 38  |\n|           | 4.11                                    | Glossary<br>.                            | 38  |\n|           | 4.12                                    | Exercises<br>.                           | 39  |\n|           |                                         |                                          |     |\n| 5         |                                         | Conditionals and recursion               | 41  |\n|           | 5.1                                     | Modulus operator                         | 41  |\n|           | 5.2                                     | Boolean expressions                      | 41  |\n|           | 5.3                                     | Logical operators<br>.                   | 42  |\n|           | 5.4                                     | Conditional execution<br>.               | 42  |\n|           | 5.5                                     | Alternative execution                    | 43  |\n|           | 5.6                                     | Chained conditionals                     | 43  |\n|           | 5.7                                     | Nested conditionals                      | 43  |\n|           | 5.8                                     | Recursion                                | 44  |\n|           | 5.9                                     | Stack diagrams for recursive functions   | 45  |\n|           | 5.10                                    | Infinite recursion<br>.                  | 46  |\n|           | 5.11                                    | Keyboard input<br>.                      | 46  |\n|           | 5.12                                    | Debugging                                | 47  |\n|           | 5.13                                    | Glossary<br>.                            | 48  |\n|           | 5.14                                    | Exercises<br>.                           | 49  |\n|           |                                         |                                          |     |\n| 6         |                                         | Fruitful functions                       | 51  |\n|           | 6.1                                     | Return values<br>.                       | 51  |\n|           | 6.2                                     | Incremental development<br>.             | 52  |\n|           | 6.3                                     | Composition                              | 54  |\n|           | 6.4                                     | Boolean functions                        | 54  |\n|           | 6.5                                     | More recursion                           | 55  |\n|           | 6.6                                     | Leap of faith<br>.                       | 57  |\n|           | 6.7                                     | One more example<br>.                    | 57  |\n|           | 6.8                                     | Checking types<br>.                      | 58  |\n|           | 6.9                                     | Debugging                                | 59  |\n|           | 6.10                                    | Glossary<br>.                            | 60  |\n|           | 6.11                                    | Exercises<br>.                           | 60  |\n| 7         | Iteration                               |                                          | 6   |\n|           | 7.1 Multiple assignment                 |                                          | 6   |\n|           | 7.2 Updating variables                  |                                          | 6   |\n|           | 7.3 The while statement                 |                                          | 6   |\n|           | 7.4 break                               |                                          | 6   |\n|           | 7.5 Square roots                        |                                          | 6   |\n|           | 7.6 Algorithms                          |                                          | 6   |\n|           | 7.7 Debugging                           |                                          | 6   |\n|           | 7.8 Glossary                            |                                          | 6   |\n|           | 7.9 Exercises                           |                                          | 6   |\n| 8         | Strings                                 |                                          | 7   |\n|           | 8.1 A string is a sequence              |                                          | 7   |\n|           | 8.2 len                                 |                                          | 7   |\n|           | 8.3 Traversal with a for loop           |                                          | 7   |\n|           | 8.4 String slices                       |                                          | 7   |\n|           | 8.5 Strings are immutable               |                                          | 7   |\n|           | 8.6 Searching                           |                                          | 7   |\n|           | 8.7 Looping and counting                |                                          | 7   |\n|           | 8.8 String methods                      |                                          | 7   |\n|           | 8.9 The in operator                     |                                          | 7   |\n|           | 8.10 String comparison                  |                                          | 7   |\n|           | 8.11 Debugging                          |                                          | 7   |\n|           | 8.12 Glossary                           |                                          | 7   |\n|           | 8.13 Exercises                          |                                          | 7   |\n| 9         | Case study: word play                   |                                          | 8   |\n|           | 9.1 Reading word lists                  |                                          | 8   |\n|           | 9.2 Exercises                           |                                          | 8   |\n|           | 9.3 Search                              |                                          | 8   |\n|           | 9.4 Looping with indices                |                                          | 8   |\n|           | 9.5 Debugging                           |                                          | 8   |\n|           | 9.6 Glossary                            |                                          | 8   |\n|           | 9.7 Exercises                           |                                          | 8   |\n| 10 Lists  |                                         | 87                                       |     |\n| 10.1      | A list is a sequence<br>.               | 87                                       |     |\n| 10.2      | Lists are mutable<br>.                  | 87                                       |     |\n| 10.3      | Traversing a list<br>.                  | 89                                       |     |\n| 10.4      | List operations                         | 89                                       |     |\n| 10.5      | List slices                             | 89                                       |     |\n| 10.6      | List methods                            | 90                                       |     |\n| 10.7      | Map, filter and reduce<br>.             | 91                                       |     |\n| 10.8      | Deleting elements                       | 92                                       |     |\n| 10.9      | Lists and strings                       | 93                                       |     |\n| 10.10     | Objects and values<br>.                 | 93                                       |     |\n| 10.11     | Aliasing                                | 94                                       |     |\n| 10.12     | List arguments                          | 95                                       |     |\n| 10.13     | Debugging                               | 96                                       |     |\n| 10.14     | Glossary<br>.                           | 97                                       |     |\n| 10.15     | Exercises<br>.                          | 98                                       |     |\n|           |                                         |                                          |     |\n|           | 11 Dictionaries                         | 101                                      |     |\n| 11.1      | Dictionary as a set of counters         | 102                                      |     |\n| 11.2      | Looping and dictionaries                | 103                                      |     |\n| 11.3      | Reverse lookup<br>.                     | 104                                      |     |\n| 11.4      | Dictionaries and lists<br>.             | 105                                      |     |\n| 11.5      | Memos<br>.                              | 106                                      |     |\n| 11.6      | Global variables                        | 108                                      |     |\n| 11.7      | Long integers<br>.                      | 109                                      |     |\n| 11.8      | Debugging                               | 109                                      |     |\n| 11.9      | Glossary<br>.                           | 110                                      |     |\n| 11.10     | Exercises<br>.                          | 111                                      |     |\n| 12 Tuples |                                         | 113                                      |     |\n| 12.1      | Tuples are immutable                    | 113                                      |     |\n| 12.2      | Tuple assignment<br>.                   | 114                                      |     |\n| 12.3      | Tuples as return values                 | 115                                      |     |\n| 12.4      | Variable-length argument tuples<br>.    | 115                                      |     |\n| 12.5      | Lists and tuples<br>.                   | 116                                      |     |\n| 12.6      | Dictionaries and tuples                 | 117                                      |     |\n| 12.7      | Comparing tuples                        | 118                                      |     |\n| 12.8      | Sequences of sequences                  | 119                                      |     |\n| 12.9      | Debugging                               | 120                                      |     |\n| 12.10     | Glossary<br>.                           | 121                                      |     |\n| 12.11     | Exercises<br>.                          | 121                                      |     |\n|           | 13 Case study: data structure selection | 123                                      |     |\n| 13.1      | Word frequency analysis                 | 123                                      |     |\n| 13.2      | Random numbers                          | 124                                      |     |\n| 13.3      | Word histogram                          | 125                                      |     |\n| 13.4      | Most common words                       | 126                                      |     |\n| 13.5      | Optional parameters<br>.                | 126                                      |     |\n| 13.6      | Dictionary subtraction<br>.             | 127                                      |     |\n| 13.7      | Random words<br>.                       | 127                                      |     |\n| 13.8      | Markov analysis                         | 128                                      |     |\n| 13.9      | Data structures                         | 129                                      |     |\n| 13.10     | Debugging                               | 131                                      |     |\n| 13.11     | Glossary<br>.                           | 132                                      |     |\n| 13.12     | Exercises<br>.                          | 132                                      |     |\n|           |                                         |                                          |     |\n| 14 Files  |                                         | 133                                      |     |\n| 14.1      | Persistence                             | 133                                      |     |\n| 14.2      | Reading and writing<br>.                | 133                                      |     |\n| 14.3      | Format operator                         | 134                                      |     |\n| 14.4      | Filenames and paths<br>.                | 135                                      |     |\n| 14.5      | Catching exceptions                     | 136                                      |     |\n| 14.6      | Databases                               | 137                                      |     |\n| 14.7      | Pickling                                | 137                                      |     |\n| 14.8      | Pipes                                   | 138                                      |     |\n| 14.9      | Writing modules                         | 139                                      |     |\n| 14.10     | Debugging                               | 140                                      |     |\n| 14.11     | Glossary                                | 141                                      |     |\n| 14.12     | Exercises                               | 141                                      |     |\n| <b>15</b> | <b>Classes and objects</b>              | <b>143</b>                               |     |\n| 15.1      | User-defined types                      | 143                                      |     |\n| 15.2      | Attributes                              | 144                                      |     |\n| 15.3      | Rectangles                              | 145                                      |     |\n| 15.4      | Instances as return values              | 146                                      |     |\n| 15.5      | Objects are mutable                     | 146                                      |     |\n| 15.6      | Copying                                 | 147                                      |     |\n| 15.7      | Debugging                               | 148                                      |     |\n| 15.8      | Glossary                                | 149                                      |     |\n| 15.9      | Exercises                               | 149                                      |     |\n| <b>16</b> | <b>Classes and functions</b>            | <b>151</b>                               |     |\n| 16.1      | Time                                    | 151                                      |     |\n| 16.2      | Pure functions                          | 151                                      |     |\n| 16.3      | Modifiers                               | 153                                      |     |\n| 16.4      | Prototyping versus planning             | 154                                      |     |\n| 16.5      | Debugging                               | 155                                      |     |\n| 16.6      | Glossary                                | 155                                      |     |\n| 16.7      | Exercises                               | 156                                      |     |\n| 17        | Classes and methods                     | 157                                      |     |\n| 17.1      | Object-oriented features                | 157                                      |     |\n| 17.2      | Printing objects                        | 158                                      |     |\n| 17.3      | Another example                         | 159                                      |     |\n| 17.4      | A more complicated example              | 160                                      |     |\n| 17.5      | The init method                         | 160                                      |     |\n| 17.6      | The __str__ method                      | 161                                      |     |\n| 17.7      | Operator overloading                    | 161                                      |     |\n| 17.8      | Type-based dispatch                     | 162                                      |     |\n| 17.9      | Polymorphism                            | 163                                      |     |\n| 17.10     | Debugging                               | 164                                      |     |\n| 17.11     | Interface and implementation            | 164                                      |     |\n| 17.12     | Glossary                                | 165                                      |     |\n| 17.13     | Exercises                               | 165                                      |     |\n| 18        | Inheritance                             | 167                                      |     |\n| 18.1      | Card objects                            | 167                                      |     |\n| 18.2      | Class attributes                        | 168                                      |     |\n| 18.3      | Comparing cards                         | 169                                      |     |\n| 18.4      | Decks                                   | 170                                      |     |\n| 18.5      | Printing the deck                       | 171                                      |     |\n| 18.6      | Add, remove, shuffle and sort           | 171                                      |     |\n| 18.7      | Inheritance                             | 172                                      |     |\n| 18.8      | Class diagrams                          | 173                                      |     |\n| 18.9      | Debugging                               | 174                                      |     |\n| 18.10     | Data encapsulation                      | 175                                      |     |\n|           |                                         | 19 Case study: Tkinter                   | 179 |\n|           | 19.1                                    | GUI<br>.                                 | 179 |\n|           | 19.2                                    | Buttons and callbacks                    | 180 |\n|           | 19.3                                    | Canvas widgets<br>.                      | 181 |\n|           | 19.4                                    | Coordinate sequences                     | 182 |\n|           | 19.5                                    | More widgets<br>.                        | 182 |\n|           | 19.6                                    | Packing widgets                          | 183 |\n|           | 19.7                                    | Menus and Callables<br>.                 | 185 |\n|           | 19.8                                    | Binding                                  | 186 |\n|           | 19.9                                    | Debugging                                | 188 |\n|           | 19.10                                   | Glossary<br>.                            | 189 |\n|           | 19.11                                   | Exercises<br>.                           | 190 |\n| A         | Debugging                               |                                          | 193 |\n|           | A.1                                     | Syntax errors                            | 193 |\n|           | A.2                                     | Runtime errors                           | 195 |\n|           | A.3                                     | Semantic errors<br>.                     | 198 |\n| B         |                                         | Analysis of Algorithms                   | 201 |\n|           | B.1                                     | Order of growth                          | 202 |\n|           | B.2                                     | Analysis of basic Python operations<br>. | 204 |\n|           | B.3                                     | Analysis of search algorithms<br>.       | 205 |\n|           | B.4                                     | Hashtables                               | 206 |\n| C         | Lumpy                                   |                                          | 211 |\n|           | C.1                                     | State diagram<br>.                       | 211 |\n|           | C.2                                     | Stack diagram<br>.                       | 212 |\n|           | C.3                                     | Object diagrams                          | 213 |\n|           | C.4                                     | Function and class objects<br>.          | 215 |\n|           | C.5                                     | Class Diagrams<br>.                      | 216 |\n|           |                                         |                                          |     |\n\n# <span id=\"page-22-0\"></span>**Chapter 1**\n\n# **The way of the program**\n\nThe goal of this book is to teach you to think like a computer scientist. This way of thinking combines some of the best features of mathematics, engineering, and natural science. Like mathematicians, computer scientists use formal languages to denote ideas (specifically computations). Like engineers, they design things, assembling components into systems and evaluating tradeoffs among alternatives. Like scientists, they observe the behavior of complex systems, form hypotheses, and test predictions.\n\nThe single most important skill for a computer scientist is **problem solving**. Problem solving means the ability to formulate problems, think creatively about solutions, and express a solution clearly and accurately. As it turns out, the process of learning to program is an excellent opportunity to practice problem-solving skills. That's why this chapter is called, \"The way of the program.\"\n\nOn one level, you will be learning to program, a useful skill by itself. On another level, you will use programming as a means to an end. As we go along, that end will become clearer.\n\n### <span id=\"page-22-1\"></span>**1.1 The Python programming language**\n\nThe programming language you will learn is Python. Python is an example of a **high-level language**; other high-level languages you might have heard of are C, C++, Perl, and Java.\n\nThere are also **low-level languages**, sometimes referred to as \"machine languages\" or \"assembly languages.\" Loosely speaking, computers can only run programs written in lowlevel languages. So programs written in a high-level language have to be processed before they can run. This extra processing takes some time, which is a small disadvantage of high-level languages.\n\nThe advantages are enormous. First, it is much easier to program in a high-level language. Programs written in a high-level language take less time to write, they are shorter and easier to read, and they are more likely to be correct. Second, high-level languages are **portable**, meaning that they can run on different kinds of computers with few or no modifications. Low-level programs can run on only one kind of computer and have to be rewritten to run on another.\n\n![](_page_23_Figure_1.jpeg)\n\nFigure 1.1: An interpreter processes the program a little at a time, alternately reading lines and performing computations.\n\n<span id=\"page-23-0\"></span>![](_page_23_Figure_3.jpeg)\n\n<span id=\"page-23-1\"></span>Figure 1.2: A compiler translates source code into object code, which is run by a hardware executor.\n\nDue to these advantages, almost all programs are written in high-level languages. Lowlevel languages are used only for a few specialized applications.\n\nTwo kinds of programs process high-level languages into low-level languages: **interpreters** and **compilers**. An interpreter reads a high-level program and executes it, meaning that it does what the program says. It processes the program a little at a time, alternately reading lines and performing computations. Figure [1.1](#page-23-0) shows the structure of an interpreter.\n\nA compiler reads the program and translates it completely before the program starts running. In this context, the high-level program is called the **source code**, and the translated program is called the **object code** or the **executable**. Once a program is compiled, you can execute it repeatedly without further translation. Figure [1.2](#page-23-1) shows the structure of a compiler.\n\nPython is considered an interpreted language because Python programs are executed by an interpreter. There are two ways to use the interpreter: **interactive mode** and **script mode**. In interactive mode, you type Python programs and the interpreter displays the result:\n\n>>> 1 + 1\n\n2\n\nThe chevron, >>>, is the **prompt** the interpreter uses to indicate that it is ready. If you type 1 + 1, the interpreter replies 2.\n\nAlternatively, you can store code in a file and use the interpreter to execute the contents of the file, which is called a **script**. By convention, Python scripts have names that end with .py.\n\nTo execute the script, you have to tell the interpreter the name of the file. If you have a script named dinsdale.py and you are working in a UNIX command window, you type python dinsdale.py. In other development environments, the details of executing scripts are different. You can find instructions for your environment at the Python website [http:](http://python.org) [//python.org](http://python.org).\n\nWorking in interactive mode is convenient for testing small pieces of code because you can type and execute them immediately. But for anything more than a few lines, you should save your code as a script so you can modify and execute it in the future.\n\n#### <span id=\"page-24-0\"></span>**1.2 What is a program?**\n\nA **program** is a sequence of instructions that specifies how to perform a computation. The computation might be something mathematical, such as solving a system of equations or finding the roots of a polynomial, but it can also be a symbolic computation, such as searching and replacing text in a document or (strangely enough) compiling a program.\n\nThe details look different in different languages, but a few basic instructions appear in just about every language:\n\n**input:** Get data from the keyboard, a file, or some other device.\n\n**output:** Display data on the screen or send data to a file or other device.\n\n**math:** Perform basic mathematical operations like addition and multiplication.\n\n**conditional execution:** Check for certain conditions and execute the appropriate code.\n\n**repetition:** Perform some action repeatedly, usually with some variation.\n\nBelieve it or not, that's pretty much all there is to it. Every program you've ever used, no matter how complicated, is made up of instructions that look pretty much like these. So you can think of programming as the process of breaking a large, complex task into smaller and smaller subtasks until the subtasks are simple enough to be performed with one of these basic instructions.\n\nThat may be a little vague, but we will come back to this topic when we talk about **algorithms**.\n\n#### <span id=\"page-24-1\"></span>**1.3 What is debugging?**\n\nProgramming is error-prone. For whimsical reasons, programming errors are called **bugs** and the process of tracking them down is called **debugging**.\n\nThree kinds of errors can occur in a program: syntax errors, runtime errors, and semantic errors. It is useful to distinguish between them in order to track them down more quickly.\n\n#### **1.3.1 Syntax errors**\n\nPython can only execute a program if the syntax is correct; otherwise, the interpreter displays an error message. **Syntax** refers to the structure of a program and the rules about that structure. For example, parentheses have to come in matching pairs, so (1 + 2) is legal, but 8) is a **syntax error**.\n\nIn English, readers can tolerate most syntax errors, which is why we can read the poetry of e. e. cummings without spewing error messages. Python is not so forgiving. If there is a single syntax error anywhere in your program, Python will display an error message and quit, and you will not be able to run your program. During the first few weeks of your programming career, you will probably spend a lot of time tracking down syntax errors. As you gain experience, you will make fewer errors and find them faster.\n\n#### **1.3.2 Runtime errors**\n\nThe second type of error is a runtime error, so called because the error does not appear until after the program has started running. These errors are also called **exceptions** because they usually indicate that something exceptional (and bad) has happened.\n\nRuntime errors are rare in the simple programs you will see in the first few chapters, so it might be a while before you encounter one.\n\n#### **1.3.3 Semantic errors**\n\nThe third type of error is the **semantic error**. If there is a semantic error in your program, it will run successfully in the sense that the computer will not generate any error messages, but it will not do the right thing. It will do something else. Specifically, it will do what you told it to do.\n\nThe problem is that the program you wrote is not the program you wanted to write. The meaning of the program (its semantics) is wrong. Identifying semantic errors can be tricky because it requires you to work backward by looking at the output of the program and trying to figure out what it is doing.\n\n#### **1.3.4 Experimental debugging**\n\nOne of the most important skills you will acquire is debugging. Although it can be frustrating, debugging is one of the most intellectually rich, challenging, and interesting parts of programming.\n\nIn some ways, debugging is like detective work. You are confronted with clues, and you have to infer the processes and events that led to the results you see.\n\nDebugging is also like an experimental science. Once you have an idea about what is going wrong, you modify your program and try again. If your hypothesis was correct, then you can predict the result of the modification, and you take a step closer to a working program. If your hypothesis was wrong, you have to come up with a new one. As Sherlock Holmes pointed out, \"When you have eliminated the impossible, whatever remains, however improbable, must be the truth.\" (A. Conan Doyle, *The Sign of Four*)\n\nFor some people, programming and debugging are the same thing. That is, programming is the process of gradually debugging a program until it does what you want. The idea is that you should start with a program that does *something* and make small modifications, debugging them as you go, so that you always have a working program.\n\nFor example, Linux is an operating system that contains thousands of lines of code, but it started out as a simple program Linus Torvalds used to explore the Intel 80386 chip. According to Larry Greenfield, \"One of Linus's earlier projects was a program that would switch between printing AAAA and BBBB. This later evolved to Linux.\" (*The Linux Users' Guide* Beta Version 1).\n\nLater chapters will make more suggestions about debugging and other programming practices.\n\n#### <span id=\"page-26-0\"></span>**1.4 Formal and natural languages**\n\n**Natural languages** are the languages people speak, such as English, Spanish, and French. They were not designed by people (although people try to impose some order on them); they evolved naturally.\n\n**Formal languages** are languages that are designed by people for specific applications. For example, the notation that mathematicians use is a formal language that is particularly good at denoting relationships among numbers and symbols. Chemists use a formal language to represent the chemical structure of molecules. And most importantly:\n\n#### **Programming languages are formal languages that have been designed to express computations.**\n\nFormal languages tend to have strict rules about syntax. For example, $3 + 3 = 6$ is a syntactically correct mathematical statement, but $3+ = 3\\$6$ is not. $H_2O$ is a syntactically correct chemical formula, but 2$Zz$ is not.\n\nSyntax rules come in two flavors, pertaining to **tokens** and structure. Tokens are the basic elements of the language, such as words, numbers, and chemical elements. One of the problems with 3+ = 3\\$6 is that \\$ is not a legal token in mathematics (at least as far as I know). Similarly, 2$Zz$ is not legal because there is no element with the abbreviation $Zz$.\n\nThe second type of syntax rule pertains to the structure of a statement; that is, the way the tokens are arranged. The statement 3+ = 3 is illegal because even though + and = are legal tokens, you can't have one right after the other. Similarly, in a chemical formula the subscript comes after the element name, not before.\n\n**Exercise 1.1.** *Write a well-structured English sentence with invalid tokens in it. Then write another sentence with all valid tokens but with invalid structure.*\n\nWhen you read a sentence in English or a statement in a formal language, you have to figure out what the structure of the sentence is (although in a natural language you do this subconsciously). This process is called **parsing**.\n\nFor example, when you hear the sentence, \"The penny dropped,\" you understand that \"the penny\" is the subject and \"dropped\" is the predicate. Once you have parsed a sentence, you can figure out what it means, or the semantics of the sentence. Assuming that you know what a penny is and what it means to drop, you will understand the general implication of this sentence.\n\nAlthough formal and natural languages have many features in common—tokens, structure, syntax, and semantics—there are some differences:\n\n- **ambiguity:** Natural languages are full of ambiguity, which people deal with by using contextual clues and other information. Formal languages are designed to be nearly or completely unambiguous, which means that any statement has exactly one meaning, regardless of context.\n- **redundancy:** In order to make up for ambiguity and reduce misunderstandings, natural languages employ lots of redundancy. As a result, they are often verbose. Formal languages are less redundant and more concise.\n\n- **literalness:** Natural languages are full of idiom and metaphor. If I say, \"The penny dropped,\" there is probably no penny and nothing dropping (this idiom means that someone realized something after a period of confusion). Formal languages mean exactly what they say.\nPeople who grow up speaking a natural language—everyone—often have a hard time adjusting to formal languages. In some ways, the difference between formal and natural language is like the difference between poetry and prose, but more so:\n\n- **Poetry:** Words are used for their sounds as well as for their meaning, and the whole poem together creates an effect or emotional response. Ambiguity is not only common but often deliberate.\n- **Prose:** The literal meaning of words is more important, and the structure contributes more meaning. Prose is more amenable to analysis than poetry but still often ambiguous.\n- **Programs:** The meaning of a computer program is unambiguous and literal, and can be understood entirely by analysis of the tokens and structure.\n\nHere are some suggestions for reading programs (and other formal languages). First, remember that formal languages are much more dense than natural languages, so it takes longer to read them. Also, the structure is very important, so it is usually not a good idea to read from top to bottom, left to right. Instead, learn to parse the program in your head, identifying the tokens and interpreting the structure. Finally, the details matter. Small errors in spelling and punctuation, which you can get away with in natural languages, can make a big difference in a formal language.\n\n#### <span id=\"page-27-0\"></span>**1.5 The first program**\n\nTraditionally, the first program you write in a new language is called \"Hello, World!\" because all it does is display the words \"Hello, World!\". In Python, it looks like this:\n\n```\nprint 'Hello, World!'\n```\nThis is an example of a **print statement**, which doesn't actually print anything on paper. It displays a value on the screen. In this case, the result is the words\n\nHello, World!\n\nThe quotation marks in the program mark the beginning and end of the text to be displayed; they don't appear in the result.\n\nIn Python 3, the syntax for printing is slightly different:\n\n```\nprint('Hello, World!')\n```\nThe parentheses indicate that print is a function. We'll get to functions in Chapter [3.](#page-40-0)\n\nFor the rest of this book, I'll use the print statement. If you are using Python 3, you will have to translate. But other than that, there are very few differences we have to worry about.\n\n### <span id=\"page-28-0\"></span>**1.6 Debugging**\n\nIt is a good idea to read this book in front of a computer so you can try out the examples as you go. You can run most of the examples in interactive mode, but if you put the code in a script, it is easier to try out variations.\n\nWhenever you are experimenting with a new feature, you should try to make mistakes. For example, in the \"Hello, world!\" program, what happens if you leave out one of the quotation marks? What if you leave out both? What if you spell print wrong?\n\nThis kind of experiment helps you remember what you read; it also helps with debugging, because you get to know what the error messages mean. It is better to make mistakes now and on purpose than later and accidentally.\n\nProgramming, and especially debugging, sometimes brings out strong emotions. If you are struggling with a difficult bug, you might feel angry, despondent or embarrassed.\n\nThere is evidence that people naturally respond to computers as if they were people. When they work well, we think of them as teammates, and when they are obstinate or rude, we respond to them the same way we respond to rude, obstinate people (Reeves and Nass, *The Media Equation: How People Treat Computers, Television, and New Media Like Real People and Places*).\n\nPreparing for these reactions might help you deal with them. One approach is to think of the computer as an employee with certain strengths, like speed and precision, and particular weaknesses, like lack of empathy and inability to grasp the big picture.\n\nYour job is to be a good manager: find ways to take advantage of the strengths and mitigate the weaknesses. And find ways to use your emotions to engage with the problem, without letting your reactions interfere with your ability to work effectively.\n\nLearning to debug can be frustrating, but it is a valuable skill that is useful for many activities beyond programming. At the end of each chapter there is a debugging section, like this one, with my thoughts about debugging. I hope they help!\n\n#### <span id=\"page-28-1\"></span>**1.7 Glossary**\n\n**problem solving:** The process of formulating a problem, finding a solution, and expressing the solution.\n\n- **high-level language:** A programming language like Python that is designed to be easy for humans to read and write.\n- **low-level language:** A programming language that is designed to be easy for a computer to execute; also called \"machine language\" or \"assembly language.\"\n- **portability:** A property of a program that can run on more than one kind of computer.\n- **interpret:** To execute a program in a high-level language by translating it one line at a time.\n- **compile:** To translate a program written in a high-level language into a low-level language all at once, in preparation for later execution.\n\n**source code:** A program in a high-level language before being compiled.\n\n- **object code:** The output of the compiler after it translates the program.\n- **executable:** Another name for object code that is ready to be executed.\n- **prompt:** Characters displayed by the interpreter to indicate that it is ready to take input from the user.\n- **script:** A program stored in a file (usually one that will be interpreted).\n- **interactive mode:** A way of using the Python interpreter by typing commands and expres sions at the prompt.\n- **script mode:** A way of using the Python interpreter to read and execute statements in a script.\n- **program:** A set of instructions that specifies a computation.\n- **algorithm:** A general process for solving a category of problems.\n\n**bug:** An error in a program.\n\n- **debugging:** The process of finding and removing any of the three kinds of programming errors.\n- **syntax:** The structure of a program.\n- **syntax error:** An error in a program that makes it impossible to parse (and therefore impossible to interpret).\n- **exception:** An error that is detected while the program is running.\n- **semantics:** The meaning of a program.\n- **semantic error:** An error in a program that makes it do something other than what the programmer intended.\n- **natural language:** Any one of the languages that people speak that evolved naturally.\n- **formal language:** Any one of the languages that people have designed for specific purposes, such as representing mathematical ideas or computer programs; all programming languages are formal languages.\n- **token:** One of the basic elements of the syntactic structure of a program, analogous to a word in a natural language.\n- **parse:** To examine a program and analyze the syntactic structure.\n- **print statement:** An instruction that causes the Python interpreter to display a value on the screen.\n\n#### <span id=\"page-30-0\"></span>**1.8 Exercises**\n\n**Exercise 1.2.** *Use a web browser to go to the Python website* [http: // python. org](http://python.org) *. This page contains information about Python and links to Python-related pages, and it gives you the ability to search the Python documentation.*\n\n*For example, if you enter* print *in the search window, the first link that appears is the documentation of the* print *statement. At this point, not all of it will make sense to you, but it is good to know where it is.*\n\n**Exercise 1.3.** *Start the Python interpreter and type* help() *to start the online help utility. Or you can type* help('print') *to get information about the* print *statement.*\n\n*If this example doesn't work, you may need to install additional Python documentation or set an environment variable; the details depend on your operating system and version of Python.*\n\n**Exercise 1.4.** *Start the Python interpreter and use it as a calculator. Python's syntax for math operations is almost the same as standard mathematical notation. For example, the symbols* +*,* - *and* / *denote addition, subtraction and division, as you would expect. The symbol for multiplication is* **.*\n\n*If you run a 10 kilometer race in 43 minutes 30 seconds, what is your average time per mile? What is your average speed in miles per hour? (Hint: there are 1.61 kilometers in a mile).*\n\n**10 Chapter 1. The way of the program**\n\n# <span id=\"page-32-0\"></span>**Chapter 2**\n\n# **Variables, expressions and statements**\n\n#### <span id=\"page-32-1\"></span>**2.1 Values and types**\n\nA **value** is one of the basic things a program works with, like a letter or a number. The values we have seen so far are 1, 2, and 'Hello, World!'.\n\nThese values belong to different **types**: 2 is an integer, and 'Hello, World!' is a **string**, so-called because it contains a \"string\" of letters. You (and the interpreter) can identify strings because they are enclosed in quotation marks.\n\nIf you are not sure what type a value has, the interpreter can tell you.\n\n```\n>>> type('Hello, World!')\n<type 'str'>\n>>> type(17)\n<type 'int'>\n```\nNot surprisingly, strings belong to the type str and integers belong to the type int. Less obviously, numbers with a decimal point belong to a type called float, because these numbers are represented in a format called **floating-point**.\n\n```\n>>> type(3.2)\n<type 'float'>\n```\nWhat about values like '17' and '3.2'? They look like numbers, but they are in quotation marks like strings.\n\n```\n>>> type('17')\n<type 'str'>\n>>> type('3.2')\n<type 'str'>\n```\nThey're strings.\n\nWhen you type a large integer, you might be tempted to use commas between groups of three digits, as in 1,000,000. This is not a legal integer in Python, but it is legal:\n\nmessage n pi $\\longrightarrow$ 3.1415926535897932 17 'And now for something completely different'\n\n<span id=\"page-33-2\"></span>Figure 2.1: State diagram.\n\n>>> 1,000,000 (1, 0, 0)\n\nWell, that's not what we expected at all! Python interprets 1,000,000 as a commaseparated sequence of integers. This is the first example we have seen of a semantic error: the code runs without producing an error message, but it doesn't do the \"right\" thing.\n\n### <span id=\"page-33-0\"></span>**2.2 Variables**\n\nOne of the most powerful features of a programming language is the ability to manipulate **variables**. A variable is a name that refers to a value.\n\nAn **assignment statement** creates new variables and gives them values:\n\n```\n>>> message = 'And now for something completely different'\n>>> n = 17\n>>> pi = 3.1415926535897932\n```\nThis example makes three assignments. The first assigns a string to a new variable named message; the second gives the integer 17 to n; the third assigns the (approximate) value of *π* to pi.\n\nA common way to represent variables on paper is to write the name with an arrow pointing to the variable's value. This kind of figure is called a **state diagram** because it shows what state each of the variables is in (think of it as the variable's state of mind). Figure [2.1](#page-33-2) shows the result of the previous example.\n\nThe type of a variable is the type of the value it refers to.\n\n```\n>>> type(message)\n<type 'str'>\n>>> type(n)\n<type 'int'>\n>>> type(pi)\n<type 'float'>\n```\n#### <span id=\"page-33-1\"></span>**2.3 Variable names and keywords**\n\nProgrammers generally choose names for their variables that are meaningful—they document what the variable is used for.\n\nVariable names can be arbitrarily long. They can contain both letters and numbers, but they have to begin with a letter. It is legal to use uppercase letters, but it is a good idea to begin variable names with a lowercase letter (you'll see why later).\n\nThe underscore character, _, can appear in a name. It is often used in names with multiple words, such as my_name or airspeed_of_unladen_swallow.\n\nIf you give a variable an illegal name, you get a syntax error:\n\n```\n>>> 76trombones = 'big parade'\nSyntaxError: invalid syntax\n>>> more@ = 1000000\nSyntaxError: invalid syntax\n>>> class = 'Advanced Theoretical Zymurgy'\nSyntaxError: invalid syntax\n```\n76trombones is illegal because it does not begin with a letter. more@ is illegal because it contains an illegal character, @. But what's wrong with class?\n\nIt turns out that class is one of Python's **keywords**. The interpreter uses keywords to recognize the structure of the program, and they cannot be used as variable names.\n\nPython 2 has 31 keywords:\n\n| and      | del     | from   | not    | while |\n|----------|---------|--------|--------|-------|\n| as       | elif    | global | or     | with  |\n| assert   | else    | if     | pass   | yield |\n| break    | except  | import | print  |       |\n| class    | exec    | in     | raise  |       |\n| continue | finally | is     | return |       |\n| def      | for     | lambda | try    |       |\n\nIn Python 3, exec is no longer a keyword, but nonlocal is.\n\nYou might want to keep this list handy. If the interpreter complains about one of your variable names and you don't know why, see if it is on this list.\n\n#### <span id=\"page-34-0\"></span>**2.4 Operators and operands**\n\n**Operators** are special symbols that represent computations like addition and multiplication. The values the operator is applied to are called **operands**.\n\nThe operators +, -, *, / and ** perform addition, subtraction, multiplication, division and exponentiation, as in the following examples:\n\n20+32 hour-1 hour*60+minute minute/60 5**2 (5+9)*(15-7)\n\nIn some other languages, ^ is used for exponentiation, but in Python it is a bitwise operator called XOR. I won't cover bitwise operators in this book, but you can read about them at <http://wiki.python.org/moin/BitwiseOperators>.\n\nIn Python 2, the division operator might not do what you expect:\n\n```\n>>> minute = 59\n>>> minute/60\n0\n```\nThe value of minute is 59, and in conventional arithmetic 59 divided by 60 is 0.98333, not 0. The reason for the discrepancy is that Python is performing **floor division**. When both of the operands are integers, the result is also an integer; floor division chops off the fraction part, so in this example it rounds down to zero.\n\nIn Python 3, the result of this division is a float. The new operator // performs floor division.\n\nIf either of the operands is a floating-point number, Python performs floating-point division, and the result is a float:\n\n>>> minute/60.0 0.98333333333333328\n\n### <span id=\"page-35-0\"></span>**2.5 Expressions and statements**\n\nAn **expression** is a combination of values, variables, and operators. A value all by itself is considered an expression, and so is a variable, so the following are all legal expressions (assuming that the variable x has been assigned a value):\n\n17 x x + 17\n\nA **statement** is a unit of code that the Python interpreter can execute. We have seen two kinds of statement: print and assignment.\n\nTechnically an expression is also a statement, but it is probably simpler to think of them as different things. The important difference is that an expression has a value; a statement does not.\n\n#### <span id=\"page-35-1\"></span>**2.6 Interactive mode and script mode**\n\nOne of the benefits of working with an interpreted language is that you can test bits of code in interactive mode before you put them in a script. But there are differences between interactive mode and script mode that can be confusing.\n\nFor example, if you are using Python as a calculator, you might type\n\n```\n>>> miles = 26.2\n>>> miles * 1.61\n42.182\n```\nThe first line assigns a value to miles, but it has no visible effect. The second line is an expression, so the interpreter evaluates it and displays the result. So we learn that a marathon is about 42 kilometers.\n\nBut if you type the same code into a script and run it, you get no output at all. In script mode an expression, all by itself, has no visible effect. Python actually evaluates the expression, but it doesn't display the value unless you tell it to:\n\nmiles = 26.2 print miles * 1.61\n\nThis behavior can be confusing at first.\n\nA script usually contains a sequence of statements. If there is more than one statement, the results appear one at a time as the statements execute.\n\nFor example, the script\n\nprint 1 x = 2 print x produces the output 1 2 The assignment statement produces no output. **Exercise 2.1.** *Type the following statements in the Python interpreter to see what they do:* 5 x = 5\n\nx + 1\n\n*Now put the same statements into a script and run it. What is the output? Modify the script by transforming each expression into a print statement and then run it again.*\n\n## <span id=\"page-36-0\"></span>**2.7 Order of operations**\n\nWhen more than one operator appears in an expression, the order of evaluation depends on the **rules of precedence**. For mathematical operators, Python follows mathematical convention. The acronym **PEMDAS** is a useful way to remember the rules:\n\n- **P**arentheses have the highest precedence and can be used to force an expression to evaluate in the order you want. Since expressions in parentheses are evaluated first, 2 * (3-1) is 4, and (1+1)**(5-2) is 8. You can also use parentheses to make an expression easier to read, as in (minute * 100) / 60, even if it doesn't change the result.\n- **E**xponentiation has the next highest precedence, so 2**1+1 is 3, not 4, and 3*1**3 is 3, not 27.\n- **M**ultiplication and **D**ivision have the same precedence, which is higher than **A**ddition and **S**ubtraction, which also have the same precedence. So 2*3-1 is 5, not 4, and 6+4/2 is 8, not 5.\n- Operators with the same precedence are evaluated from left to right (except exponentiation). So in the expression $degrees / 2 * pi$, the division happens first and the result is multiplied by pi. To divide by 2*π*, you can use parentheses or write degrees / 2 / pi.\n\nI don't work very hard to remember rules of precedence for other operators. If I can't tell by looking at the expression, I use parentheses to make it obvious.\n\n### <span id=\"page-36-1\"></span>**2.8 String operations**\n\nIn general, you can't perform mathematical operations on strings, even if the strings look like numbers, so the following are illegal:\n\n$'2'-'1'$ $'eggs'/'easy'$ $'third'*'a charm' $\n\nThe + operator works with strings, but it might not do what you expect: it performs **concatenation**, which means joining the strings by linking them end-to-end. For example:\n\n```\nfirst = 'throat'\nsecond = 'warbler'\nprint first + second\nThe output of this program is throatwarbler.\n```\nThe * operator also works on strings; it performs repetition. For example, 'Spam'*3 is 'SpamSpamSpam'. If one of the operands is a string, the other has to be an integer.\n\nThis use of + and * makes sense by analogy with addition and multiplication. Just as 4*3 is equivalent to 4+4+4, we expect $'Spam'*3$ to be the same as $'Spam'+'Spam'+'Spam'$, and it is. On the other hand, there is a significant way in which string concatenation and repetition are different from integer addition and multiplication. Can you think of a property that addition has that string concatenation does not?\n\n### <span id=\"page-37-0\"></span>**2.9 Comments**\n\nAs programs get bigger and more complicated, they get more difficult to read. Formal languages are dense, and it is often difficult to look at a piece of code and figure out what it is doing, or why.\n\nFor this reason, it is a good idea to add notes to your programs to explain in natural language what the program is doing. These notes are called **comments**, and they start with the # symbol:\n\n```\n# compute the percentage of the hour that has elapsed\npercentage = (minute * 100) / 60\n```\nIn this case, the comment appears on a line by itself. You can also put comments at the end of a line:\n\n```\npercentage = (minute * 100) / 60 # percentage of an hour\n```\nEverything from the # to the end of the line is ignored—it has no effect on the program.\n\nComments are most useful when they document non-obvious features of the code. It is reasonable to assume that the reader can figure out *what* the code does; it is much more useful to explain *why*.\n\nThis comment is redundant with the code and useless:\n\nv = 5 # assign 5 to v\n\nThis comment contains useful information that is not in the code:\n\nGood variable names can reduce the need for comments, but long names can make complex expressions hard to read, so there is a tradeoff.\n\n#### <span id=\"page-37-1\"></span>**2.10 Debugging**\n\nAt this point the syntax error you are most likely to make is an illegal variable name, like class and yield, which are keywords, or odd~job and US\\$, which contain illegal characters.\n\nIf you put a space in a variable name, Python thinks it is two operands without an operator:\n\n>>> bad name = 5 SyntaxError: invalid syntax\n\nFor syntax errors, the error messages don't help much. The most common messages are SyntaxError: invalid syntax and SyntaxError: invalid token, neither of which is very informative.\n\nThe runtime error you are most likely to make is a \"use before def;\" that is, trying to use a variable before you have assigned a value. This can happen if you spell a variable name wrong:\n\n```\n>>> principal = 327.68\n>>> interest = principle * rate\nNameError: name 'principle' is not defined\n```\nVariables names are case sensitive, so LaTeX is not the same as latex.\n\nAt this point the most likely cause of a semantic error is the order of operations. For example, to evaluate 1 2*π* , you might be tempted to write\n\n>>> 1.0 / 2.0 * pi\n\nBut the division happens first, so you would get $\\pi/2$, which is not the same thing! There is no way for Python to know what you meant to write, so in this case you don't get an error message; you just get the wrong answer.\n\n#### <span id=\"page-38-0\"></span>**2.11 Glossary**\n\n**value:** One of the basic units of data, like a number or string, that a program manipulates.\n\n- **type:** A category of values. The types we have seen so far are integers (type int), floatingpoint numbers (type float), and strings (type str).\n- **integer:** A type that represents whole numbers.\n\n**floating-point:** A type that represents numbers with fractional parts.\n\n**string:** A type that represents sequences of characters.\n\n**variable:** A name that refers to a value.\n\n- **statement:** A section of code that represents a command or action. So far, the statements we have seen are assignments and print statements.\n**assignment:** A statement that assigns a value to a variable.\n\n**state diagram:** A graphical representation of a set of variables and the values they refer to.\n\n- **keyword:** A reserved word that is used by the compiler to parse a program; you cannot use keywords like if, def, and while as variable names.\n- **operator:** A special symbol that represents a simple computation like addition, multiplication, or string concatenation.\n\n**operand:** One of the values on which an operator operates.\n\n**floor division:** The operation that divides two numbers and chops off the fraction part.\n\n- **expression:** A combination of variables, operators, and values that represents a single result value.\n- **evaluate:** To simplify an expression by performing the operations in order to yield a single value.\n- **rules of precedence:** The set of rules governing the order in which expressions involving multiple operators and operands are evaluated.\n\n**concatenate:** To join two operands end-to-end.\n\n- **comment:** Information in a program that is meant for other programmers (or anyone reading the source code) and has no effect on the execution of the program.\n#### <span id=\"page-39-0\"></span>**2.12 Exercises**\n\n**Exercise 2.2.** *Assume that we execute the following assignment statements:*\n\n```\nwidth = 17\nheight = 12.0\ndelimiter = '.'\n```\n*For each of the following expressions, write the value of the expression and the type (of the value of the expression).*\n\n```\n1. width/2\n2. width/2.0\n3. height/3\n4. 1 + 2 * 5\n5. delimiter * 5\n```\n*Use the Python interpreter to check your answers.* **Exercise 2.3.** *Practice using the Python interpreter as a calculator:*\n\n- *1. The volume of a sphere with radius r is* $\\frac{4}{3}\\pi r^3$*. What is the volume of a sphere with radius 5? Hint: 392.7 is wrong!*\n- *2. Suppose the cover price of a book is \\$24.95, but bookstores get a 40% discount. Shipping costs \\$3 for the first copy and 75 cents for each additional copy. What is the total wholesale cost for 60 copies?*\n- *3. If I leave my house at 6:52 am and run 1 mile at an easy pace (8:15 per mile), then 3 miles at tempo (7:12 per mile) and 1 mile at easy pace again, what time do I get home for breakfast?*\n\n# <span id=\"page-40-0\"></span>**Chapter 3**\n\n# **Functions**\n\n#### <span id=\"page-40-1\"></span>**3.1 Function calls**\n\nIn the context of programming, a **function** is a named sequence of statements that performs a computation. When you define a function, you specify the name and the sequence of statements. Later, you can \"call\" the function by name. We have already seen one example of a **function call**:\n\n>>> type(32) <type 'int'>\n\nThe name of the function is type. The expression in parentheses is called the **argument** of the function. The result, for this function, is the type of the argument.\n\nIt is common to say that a function \"takes\" an argument and \"returns\" a result. The result is called the **return value**.\n\n### <span id=\"page-40-2\"></span>**3.2 Type conversion functions**\n\nPython provides built-in functions that convert values from one type to another. The int function takes any value and converts it to an integer, if it can, or complains otherwise:\n\n```\n>>> int('32')\n32\n>>> int('Hello')\nValueError: invalid literal for int(): Hello\n```\nint can convert floating-point values to integers, but it doesn't round off; it chops off the fraction part:\n\n```\n>>> int(3.99999)\n3\n>>> int(-2.3)\n-2\n```\nfloat converts integers and strings to floating-point numbers:\n\n```\n>>> float(32)\n32.0\n>>> float('3.14159')\n3.14159\nFinally, str converts its argument to a string:\n>>> str(32)\n'32'\n>>> str(3.14159)\n'3.14159'\n```\n### <span id=\"page-41-0\"></span>**3.3 Math functions**\n\nPython has a math module that provides most of the familiar mathematical functions. A **module** is a file that contains a collection of related functions.\n\nBefore we can use the module, we have to import it:\n\n```\n>>> import math\n```\nThis statement creates a **module object** named math. If you print the module object, you get some information about it:\n\n```\n>>> print math\n<module 'math' (built-in)>\n```\nThe module object contains the functions and variables defined in the module. To access one of the functions, you have to specify the name of the module and the name of the function, separated by a dot (also known as a period). This format is called **dot notation**.\n\n```\n>>> ratio = signal_power / noise_power\n>>> decibels = 10 * math.log10(ratio)\n>>> radians = 0.7\n>>> height = math.sin(radians)\n```\nThe first example uses log10 to compute a signal-to-noise ratio in decibels (assuming that signal_power and noise_power are defined). The math module also provides log, which computes logarithms base e.\n\nThe second example finds the sine of radians. The name of the variable is a hint that sin and the other trigonometric functions (cos, tan, etc.) take arguments in radians. To convert from degrees to radians, divide by 360 and multiply by 2*π*:\n\n```\n>>> degrees = 45\n>>> radians = degrees / 360.0 * 2 * math.pi\n>>> math.sin(radians)\n0.707106781187\n```\nThe expression math.pi gets the variable pi from the math module. The value of this variable is an approximation of *π*, accurate to about 15 digits.\n\nIf you know your trigonometry, you can check the previous result by comparing it to the square root of two divided by two:\n\n>>> math.sqrt(2) / 2.0 0.707106781187\n\n#### <span id=\"page-42-0\"></span>**3.4 Composition**\n\nSo far, we have looked at the elements of a program—variables, expressions, and statements—in isolation, without talking about how to combine them.\n\nOne of the most useful features of programming languages is their ability to take small building blocks and **compose** them. For example, the argument of a function can be any kind of expression, including arithmetic operators:\n\n```\nx = math.sin(degrees / 360.0 * 2 * math.pi)\n```\nAnd even function calls:\n\nx = math.exp(math.log(x+1))\n\nAlmost anywhere you can put a value, you can put an arbitrary expression, with one exception: the left side of an assignment statement has to be a variable name. Any other expression on the left side is a syntax error (we will see exceptions to this rule later).\n\n#### <span id=\"page-42-1\"></span>**3.5 Adding new functions**\n\nSo far, we have only been using the functions that come with Python, but it is also possible to add new functions. A **function definition** specifies the name of a new function and the sequence of statements that execute when the function is called.\n\nHere is an example:\n\n```\ndef print_lyrics():\n    print \"I'm a lumberjack, and I'm okay.\"\n    print \"I sleep all night and I work all day.\"\n```\ndef is a keyword that indicates that this is a function definition. The name of the function is print_lyrics. The rules for function names are the same as for variable names: letters, numbers and some punctuation marks are legal, but the first character can't be a number. You can't use a keyword as the name of a function, and you should avoid having a variable and a function with the same name.\n\nThe empty parentheses after the name indicate that this function doesn't take any arguments.\n\nThe first line of the function definition is called the **header**; the rest is called the **body**. The header has to end with a colon and the body has to be indented. By convention, the indentation is always four spaces (see Section [3.14)](#page-48-1). The body can contain any number of statements.\n\nThe strings in the print statements are enclosed in double quotes. Single quotes and double quotes do the same thing; most people use single quotes except in cases like this where a single quote (which is also an apostrophe) appears in the string.\n\nIf you type a function definition in interactive mode, the interpreter prints ellipses (*...*) to let you know that the definition isn't complete:\n\n```\n>>> def print_lyrics():\n... print \"I'm a lumberjack, and I'm okay.\"\n... print \"I sleep all night and I work all day.\"\n...\n```\nTo end the function, you have to enter an empty line (this is not necessary in a script).\n\nDefining a function creates a variable with the same name.\n\n```\n>>> print print_lyrics\n<function print_lyrics at 0xb7e99e9c>\n>>> type(print_lyrics)\n<type 'function'>\nThe value of print_lyrics is a function object, which has type 'function'.\n```\nThe syntax for calling the new function is the same as for built-in functions:\n\n```\n>>> print_lyrics()\nI'm a lumberjack, and I'm okay.\nI sleep all night and I work all day.\n```\nOnce you have defined a function, you can use it inside another function. For example, to repeat the previous refrain, we could write a function called repeat_lyrics:\n\n```\ndef repeat_lyrics():\n    print_lyrics()\n    print_lyrics()\n```\nAnd then call repeat_lyrics:\n\n```\n>>> repeat_lyrics()\nI'm a lumberjack, and I'm okay.\nI sleep all night and I work all day.\nI'm a lumberjack, and I'm okay.\nI sleep all night and I work all day.\nBut that's not really how the song goes.\n```\n#### <span id=\"page-43-0\"></span>**3.6 Definitions and uses**\n\nPulling together the code fragments from the previous section, the whole program looks like this:\n\n```\ndef print_lyrics():\n    print \"I'm a lumberjack, and I'm okay.\"\n    print \"I sleep all night and I work all day.\"\ndef repeat_lyrics():\n    print_lyrics()\n    print_lyrics()\n```\n\n```\nrepeat_lyrics()\n```\nThis program contains two function definitions: print_lyrics and repeat_lyrics. Function definitions get executed just like other statements, but the effect is to create function objects. The statements inside the function do not get executed until the function is called, and the function definition generates no output.\n\nAs you might expect, you have to create a function before you can execute it. In other words, the function definition has to be executed before the first time it is called.\n\n**Exercise 3.1.** *Move the last line of this program to the top, so the function call appears before the definitions. Run the program and see what error message you get.*\n\n**Exercise 3.2.** *Move the function call back to the bottom and move the definition of* print_lyrics *after the definition of* repeat_lyrics*. What happens when you run this program?*\n\n#### <span id=\"page-44-0\"></span>**3.7 Flow of execution**\n\nIn order to ensure that a function is defined before its first use, you have to know the order in which statements are executed, which is called the **flow of execution**.\n\nExecution always begins at the first statement of the program. Statements are executed one at a time, in order from top to bottom.\n\nFunction definitions do not alter the flow of execution of the program, but remember that statements inside the function are not executed until the function is called.\n\nA function call is like a detour in the flow of execution. Instead of going to the next statement, the flow jumps to the body of the function, executes all the statements there, and then comes back to pick up where it left off.\n\nThat sounds simple enough, until you remember that one function can call another. While in the middle of one function, the program might have to execute the statements in another function. But while executing that new function, the program might have to execute yet another function!\n\nFortunately, Python is good at keeping track of where it is, so each time a function completes, the program picks up where it left off in the function that called it. When it gets to the end of the program, it terminates.\n\nWhat's the moral of this sordid tale? When you read a program, you don't always want to read from top to bottom. Sometimes it makes more sense if you follow the flow of execution.\n\n#### <span id=\"page-44-1\"></span>**3.8 Parameters and arguments**\n\nSome of the built-in functions we have seen require arguments. For example, when you call math.sin you pass a number as an argument. Some functions take more than one argument: math.pow takes two, the base and the exponent.\n\nInside the function, the arguments are assigned to variables called **parameters**. Here is an example of a user-defined function that takes an argument:\n\n```\ndef print_twice(bruce):\n    print bruce\n    print bruce\n```\nThis function assigns the argument to a parameter named bruce. When the function is called, it prints the value of the parameter (whatever it is) twice.\n\nThis function works with any value that can be printed.\n\n```\n>>> print_twice('Spam')\nSpam\nSpam\n>>> print_twice(17)\n17\n17\n>>> print_twice(math.pi)\n3.14159265359\n3.14159265359\n```\nThe same rules of composition that apply to built-in functions also apply to user-defined functions, so we can use any kind of expression as an argument for print_twice:\n\n```\n>>> print_twice('Spam '*4)\nSpam Spam Spam Spam\nSpam Spam Spam Spam\n>>> print_twice(math.cos(math.pi))\n-1.0\n-1.0\n```\nThe argument is evaluated before the function is called, so in the examples the expressions 'Spam '*4 and math.cos(math.pi) are only evaluated once.\n\nYou can also use a variable as an argument:\n\n```\n>>> michael = 'Eric, the half a bee.'\n>>> print_twice(michael)\nEric, the half a bee.\nEric, the half a bee.\n```\nThe name of the variable we pass as an argument (michael) has nothing to do with the name of the parameter (bruce). It doesn't matter what the value was called back home (in the caller); here in print_twice, we call everybody bruce.\n\n#### <span id=\"page-45-0\"></span>**3.9 Variables and parameters are local**\n\nWhen you create a variable inside a function, it is **local**, which means that it only exists inside the function. For example:\n\n```\ndef cat_twice(part1, part2):\n    cat = part1 + part2\n    print_twice(cat)\n```\nThis function takes two arguments, concatenates them, and prints the result twice. Here is an example that uses it:\n\n```\n>>> line1 = 'Bing tiddle '\n>>> line2 = 'tiddle bang.'\n>>> cat_twice(line1, line2)\nBing tiddle tiddle bang.\nBing tiddle tiddle bang.\n```\nWhen cat_twice terminates, the variable cat is destroyed. If we try to print it, we get an exception:\n\n```\n>>> print cat\nNameError: name 'cat' is not defined\n```\n![](_page_46_Figure_1.jpeg)\n\n<span id=\"page-46-1\"></span>Figure 3.1: Stack diagram.\n\nParameters are also local. For example, outside print_twice, there is no such thing as bruce.\n\n#### <span id=\"page-46-0\"></span>**3.10 Stack diagrams**\n\nTo keep track of which variables can be used where, it is sometimes useful to draw a **stack diagram**. Like state diagrams, stack diagrams show the value of each variable, but they also show the function each variable belongs to.\n\nEach function is represented by a **frame**. A frame is a box with the name of a function beside it and the parameters and variables of the function inside it. The stack diagram for the previous example is shown in Figure [3.1.](#page-46-1)\n\nThe frames are arranged in a stack that indicates which function called which, and so on. In this example, print_twice was called by cat_twice, and cat_twice was called by __main__, which is a special name for the topmost frame. When you create a variable outside of any function, it belongs to __main__.\n\nEach parameter refers to the same value as its corresponding argument. So, part1 has the same value as line1, part2 has the same value as line2, and bruce has the same value as cat.\n\nIf an error occurs during a function call, Python prints the name of the function, and the name of the function that called it, and the name of the function that called *that*, all the way back to __main__.\n\nFor example, if you try to access cat from within print_twice, you get a NameError:\n\n```\nTraceback (innermost last):\n  File \"test.py\", line 13, in __main__\n    cat_twice(line1, line2)\n  File \"test.py\", line 5, in cat_twice\n    print_twice(cat)\n  File \"test.py\", line 9, in print_twice\n    print cat\nNameError: name 'cat' is not defined\n```\nThis list of functions is called a **traceback**. It tells you what program file the error occurred in, and what line, and what functions were executing at the time. It also shows the line of code that caused the error.\n\nThe order of the functions in the traceback is the same as the order of the frames in the stack diagram. The function that is currently running is at the bottom.\n\n### <span id=\"page-47-0\"></span>**3.11 Fruitful functions and void functions**\n\nSome of the functions we are using, such as the math functions, yield results; for lack of a better name, I call them **fruitful functions**. Other functions, like print_twice, perform an action but don't return a value. They are called **void functions**.\n\nWhen you call a fruitful function, you almost always want to do something with the result; for example, you might assign it to a variable or use it as part of an expression:\n\n```\nx = math.cos(radians)\ngolden = (math.sqrt(5) + 1) / 2\n```\nWhen you call a function in interactive mode, Python displays the result:\n\n```\n>>> math.sqrt(5)\n2.2360679774997898\n```\nBut in a script, if you call a fruitful function all by itself, the return value is lost forever!\n\nmath.sqrt(5)\n\nThis script computes the square root of 5, but since it doesn't store or display the result, it is not very useful.\n\nVoid functions might display something on the screen or have some other effect, but they don't have a return value. If you try to assign the result to a variable, you get a special value called None.\n\n```\n>>> result = print_twice('Bing')\nBing\nBing\n>>> print result\nNone\n```\nThe value None is not the same as the string 'None'. It is a special value that has its own type:\n\n```\n>>> print type(None)\n<type 'NoneType'>\n```\nThe functions we have written so far are all void. We will start writing fruitful functions in a few chapters.\n\n#### <span id=\"page-47-1\"></span>**3.12 Why functions?**\n\nIt may not be clear why it is worth the trouble to divide a program into functions. There are several reasons:\n\n- Creating a new function gives you an opportunity to name a group of statements, which makes your program easier to read and debug.\n- Functions can make a program smaller by eliminating repetitive code. Later, if you make a change, you only have to make it in one place.\n- Dividing a long program into functions allows you to debug the parts one at a time and then assemble them into a working whole.\n- Well-designed functions are often useful for many programs. Once you write and debug one, you can reuse it.\n\n## <span id=\"page-48-0\"></span>**3.13 Importing with** from\n\nPython provides two ways to import modules; we have already seen one:\n\n```\n>>> import math\n>>> print math\n<module 'math' (built-in)>\n>>> print math.pi\n3.14159265359\n```\nIf you import math, you get a module object named math. The module object contains constants like pi and functions like sin and exp.\n\nBut if you try to access pi directly, you get an error.\n\n```\n>>> print pi\nTraceback (most recent call last):\n  File \"<stdin>\", line 1, in <module>\nNameError: name 'pi' is not defined\n```\nAs an alternative, you can import an object from a module like this:\n\n```\n>>> from math import pi\n```\nNow you can access pi directly, without dot notation.\n\n```\n>>> print pi\n3.14159265359\n```\nOr you can use the star operator to import *everything* from the module:\n\n```\n>>> from math import *\n>>> cos(pi)\n-1.0\n```\nThe advantage of importing everything from the math module is that your code can be more concise. The disadvantage is that there might be conflicts between names defined in different modules, or between a name from a module and one of your variables.\n\n#### <span id=\"page-48-1\"></span>**3.14 Debugging**\n\nIf you are using a text editor to write your scripts, you might run into problems with spaces and tabs. The best way to avoid these problems is to use spaces exclusively (no tabs). Most text editors that know about Python do this by default, but some don't.\n\nTabs and spaces are usually invisible, which makes them hard to debug, so try to find an editor that manages indentation for you.\n\nAlso, don't forget to save your program before you run it. Some development environments do this automatically, but some don't. In that case the program you are looking at in the text editor is not the same as the program you are running.\n\nDebugging can take a long time if you keep running the same, incorrect, program over and over!\n\nMake sure that the code you are looking at is the code you are running. If you're not sure, put something like print 'hello' at the beginning of the program and run it again. If you don't see hello, you're not running the right program!\n\n#### <span id=\"page-49-0\"></span>**3.15 Glossary**\n\n- **function:** A named sequence of statements that performs some useful operation. Functions may or may not take arguments and may or may not produce a result.\n- **function definition:** A statement that creates a new function, specifying its name, parameters, and the statements it executes.\n- **function object:** A value created by a function definition. The name of the function is a variable that refers to a function object.\n- **header:** The first line of a function definition.\n- **body:** The sequence of statements inside a function definition.\n- **parameter:** A name used inside a function to refer to the value passed as an argument.\n- **function call:** A statement that executes a function. It consists of the function name followed by an argument list.\n- **argument:** A value provided to a function when the function is called. This value is assigned to the corresponding parameter in the function.\n- **local variable:** A variable defined inside a function. A local variable can only be used inside its function.\n- **return value:** The result of a function. If a function call is used as an expression, the return value is the value of the expression.\n- **fruitful function:** A function that returns a value.\n- **void function:** A function that doesn't return a value.\n- **module:** A file that contains a collection of related functions and other definitions.\n- **import statement:** A statement that reads a module file and creates a module object.\n- **module object:** A value created by an import statement that provides access to the values defined in a module.\n- **dot notation:** The syntax for calling a function in another module by specifying the module name followed by a dot (period) and the function name.\n- **composition:** Using an expression as part of a larger expression, or a statement as part of a larger statement.\n\n**flow of execution:** The order in which statements are executed during a program run.\n\n- **stack diagram:** A graphical representation of a stack of functions, their variables, and the values they refer to.\n- **frame:** A box in a stack diagram that represents a function call. It contains the local variables and parameters of the function.\n\n**traceback:** A list of the functions that are executing, printed when an exception occurs.\n\n#### <span id=\"page-50-0\"></span>**3.16 Exercises**\n\n**Exercise 3.3.** *Python provides a built-in function called* len *that returns the length of a string, so the value of* len('allen') *is 5.*\n\n*Write a function named* right_justify *that takes a string named* s *as a parameter and prints the string with enough leading spaces so that the last letter of the string is in column 70 of the display.*\n\n```\n>>> right_justify('allen')\n```\nallen\n\n**Exercise 3.4.** *A function object is a value you can assign to a variable or pass as an argument. For example,* do_twice *is a function that takes a function object as an argument and calls it twice:*\n\n```\ndef do_twice(f):\n    f()\n    f()\n```\n*Here's an example that uses* do_twice *to call a function named* print_spam *twice.*\n\n```\ndef print_spam():\n    print 'spam'\n```\n\n```\ndo_twice(print_spam)\n```\n- *1. Type this example into a script and test it.*\n- *2. Modify* do_twice *so that it takes two arguments, a function object and a value, and calls the function twice, passing the value as an argument.*\n- *3. Write a more general version of* print_spam*, called* print_twice*, that takes a string as a parameter and prints it twice.*\n- *4. Use the modified version of* do_twice *to call* print_twice *twice, passing* 'spam' *as an argument.*\n- *5. Define a new function called* do_four *that takes a function object and a value and calls the function four times, passing the value as a parameter. There should be only two statements in the body of this function, not four.*\n\n*Solution:* <http://thinkpython.com/code/do_four.py>*.* **Exercise 3.5.** *This exercise can be done using only the statements and other features we have learned so far.*\n\n- *1. Write a function that draws a grid like the following:*\n\n```\n+ - - - - + - - - - +\n| | |\n| | |\n| | |\n| | |\n+ - - - - + - - - - +\n| | |\n| | |\n| | |\n| | |\n+ - - - - + - - - - +\n```\n*Hint: to print more than one value on a line, you can print a comma-separated sequence:*\n\n```\nprint '+', '-'\n```\n*If the sequence ends with a comma, Python leaves the line unfinished, so the value printed next appears on the same line.*\n\n```\nprint '+',\nprint '-'\n```\n*The output of these statements is* '+ -'*.*\n\n*A* print *statement all by itself ends the current line and goes to the next line.*\n\n- *2. Write a function that draws a similar grid with four rows and four columns.*\n*Solution:* <http://thinkpython.com/code/grid.py> *Credit: This exercise is based on an exercise in Oualline,* Practical C Programming, Third Edition*, O'Reilly Media, 1997.*\n\n# <span id=\"page-52-0\"></span>**Chapter 4**\n\n# **Case study: interface design**\n\nCode examples from this chapter are available from [http://thinkpython.com/code/](http://thinkpython.com/code/polygon.py) [polygon.py](http://thinkpython.com/code/polygon.py).\n\n#### <span id=\"page-52-1\"></span>**4.1 TurtleWorld**\n\nTo accompany this book, I have written a package called Swampy. You can download Swampy from <http://thinkpython.com/swampy>; follow the instructions there to install Swampy on your system.\n\nA **package** is a collection of modules; one of the modules in Swampy is TurtleWorld, which provides a set of functions for drawing lines by steering turtles around the screen.\n\nIf Swampy is installed as a package on your system, you can import TurtleWorld like this:\n\n```\nfrom swampy.TurtleWorld import *\n```\nIf you downloaded the Swampy modules but did not install them as a package, you can either work in the directory that contains the Swampy files, or add that directory to Python's search path. Then you can import TurtleWorld like this:\n\nfrom TurtleWorld import *\n\nThe details of the installation process and setting Python's search path depend on your system, so rather than include those details here, I will try to maintain current information for several systems at <http://thinkpython.com/swampy>\n\nCreate a file named mypolygon.py and type in the following code:\n\n```\nfrom swampy.TurtleWorld import *\nworld = TurtleWorld()\nbob = Turtle()\nprint bob\n```\nwait_for_user()\n\nThe first line imports everything from the TurtleWorld module in the swampy package.\n\nThe next lines create a TurtleWorld assigned to world and a Turtle assigned to bob. Printing bob yields something like:\n\n<TurtleWorld.Turtle instance at 0xb7bfbf4c>\n\nThis means that bob refers to an **instance** of a Turtle as defined in module TurtleWorld. In this context, \"instance\" means a member of a set; this Turtle is one of the set of possible Turtles.\n\nwait_for_user tells TurtleWorld to wait for the user to do something, although in this case there's not much for the user to do except close the window.\n\nTurtleWorld provides several turtle-steering functions: fd and bk for forward and backward, and lt and rt for left and right turns. Also, each Turtle is holding a pen, which is either down or up; if the pen is down, the Turtle leaves a trail when it moves. The functions pu and pd stand for \"pen up\" and \"pen down.\"\n\nTo draw a right angle, add these lines to the program (after creating bob and before calling wait_for_user):\n\nfd(bob, 100) lt(bob) fd(bob, 100)\n\nThe first line tells bob to take 100 steps forward. The second line tells him to turn left.\n\nWhen you run this program, you should see bob move east and then north, leaving two line segments behind.\n\nNow modify the program to draw a square. Don't go on until you've got it working!\n\n#### <span id=\"page-53-0\"></span>**4.2 Simple repetition**\n\nChances are you wrote something like this (leaving out the code that creates TurtleWorld and waits for the user):\n\n```\nfd(bob, 100)\nlt(bob)\nfd(bob, 100)\nlt(bob)\nfd(bob, 100)\nlt(bob)\nfd(bob, 100)\n```\nWe can do the same thing more concisely with a for statement. Add this example to mypolygon.py and run it again:\n\n```\nfor i in range(4):\n    print 'Hello!'\n```\nYou should see something like this:\n\nHello! Hello! Hello!\n\nHello!\n\nThis is the simplest use of the for statement; we will see more later. But that should be enough to let you rewrite your square-drawing program. Don't go on until you do.\n\nHere is a for statement that draws a square:\n\nfor i in range(4): fd(bob, 100) lt(bob)\n\nThe syntax of a for statement is similar to a function definition. It has a header that ends with a colon and an indented body. The body can contain any number of statements.\n\nA for statement is sometimes called a **loop** because the flow of execution runs through the body and then loops back to the top. In this case, it runs the body four times.\n\nThis version is actually a little different from the previous square-drawing code because it makes another turn after drawing the last side of the square. The extra turn takes a little more time, but it simplifies the code if we do the same thing every time through the loop. This version also has the effect of leaving the turtle back in the starting position, facing in the starting direction.\n\n#### <span id=\"page-54-0\"></span>**4.3 Exercises**\n\nThe following is a series of exercises using TurtleWorld. They are meant to be fun, but they have a point, too. While you are working on them, think about what the point is.\n\nThe following sections have solutions to the exercises, so don't look until you have finished (or at least tried).\n\n- 1. Write a function called square that takes a parameter named t, which is a turtle. It should use the turtle to draw a square.\nWrite a function call that passes bob as an argument to square, and then run the program again.\n\n- 2. Add another parameter, named length, to square. Modify the body so length of the sides is length, and then modify the function call to provide a second argument. Run the program again. Test your program with a range of values for length.\n- 3. The functions lt and rt make 90-degree turns by default, but you can provide a second argument that specifies the number of degrees. For example, lt(bob, 45) turns bob 45 degrees to the left.\n\nMake a copy of square and change the name to polygon. Add another parameter named n and modify the body so it draws an n-sided regular polygon. Hint: The exterior angles of an n-sided regular polygon are 360/*n* degrees.\n\n- 4. Write a function called circle that takes a turtle, t, and radius, r, as parameters and that draws an approximate circle by invoking polygon with an appropriate length and number of sides. Test your function with a range of values of r.\nHint: figure out the circumference of the circle and make sure that length * n = circumference.\n\nAnother hint: if bob is too slow for you, you can speed him up by changing bob.delay, which is the time between moves, in seconds. bob.delay = 0.01 ought to get him moving.\n\n- 5. Make a more general version of circle called arc that takes an additional parameter angle, which determines what fraction of a circle to draw. angle is in units of degrees, so when angle=360, arc should draw a complete circle.\n#### <span id=\"page-55-0\"></span>**4.4 Encapsulation**\n\nThe first exercise asks you to put your square-drawing code into a function definition and then call the function, passing the turtle as a parameter. Here is a solution:\n\n```\ndef square(t):\n```\n\n```\nfor i in range(4):\n    fd(t, 100)\n    lt(t)\n```\nsquare(bob)\n\nThe innermost statements, fd and lt are indented twice to show that they are inside the for loop, which is inside the function definition. The next line, square(bob), is flush with the left margin, so that is the end of both the for loop and the function definition.\n\nInside the function, t refers to the same turtle bob refers to, so lt(t) has the same effect as lt(bob). So why not call the parameter bob? The idea is that t can be any turtle, not just bob, so you could create a second turtle and pass it as an argument to square:\n\n```\nray = Turtle()\nsquare(ray)\n```\nWrapping a piece of code up in a function is called **encapsulation**. One of the benefits of encapsulation is that it attaches a name to the code, which serves as a kind of documentation. Another advantage is that if you re-use the code, it is more concise to call a function twice than to copy and paste the body!\n\n#### <span id=\"page-55-1\"></span>**4.5 Generalization**\n\nThe next step is to add a length parameter to square. Here is a solution:\n\n```\ndef square(t, length):\n    for i in range(4):\n        fd(t, length)\n        lt(t)\n```\nsquare(bob, 100)\n\nAdding a parameter to a function is called **generalization** because it makes the function more general: in the previous version, the square is always the same size; in this version it can be any size.\n\nThe next step is also a generalization. Instead of drawing squares, polygon draws regular polygons with any number of sides. Here is a solution :rule\n\n```\ndef polygon(t, n, length):\n    angle = 360.0 / n\n    for i in range(n):\n        fd(t, length)\n        lt(t, angle)\n```\n\n```\npolygon(bob, 7, 70)\n```\nThis draws a 7-sided polygon with side length 70. If you have more than a few numeric arguments, it is easy to forget what they are, or what order they should be in. It is legal, and sometimes helpful, to include the names of the parameters in the argument list:\n\n```\npolygon(bob, n=7, length=70)\n```\nThese are called **keyword arguments** because they include the parameter names as \"keywords\" (not to be confused with Python keywords like while and def).\n\nThis syntax makes the program more readable. It is also a reminder about how arguments and parameters work: when you call a function, the arguments are assigned to the parameters.\n\n#### <span id=\"page-56-0\"></span>**4.6 Interface design**\n\nThe next step is to write circle, which takes a radius, r, as a parameter. Here is a simple solution that uses polygon to draw a 50-sided polygon:\n\n```\ndef circle(t, r):\n    circumference = 2 * math.pi * r\n    n = 50\n    length = circumference / n\n    polygon(t, n, length)\n```\nThe first line computes the circumference of a circle with radius r using the formula 2*πr*. Since we use math.pi, we have to import math. By convention, import statements are usually at the beginning of the script.\n\nn is the number of line segments in our approximation of a circle, so length is the length of each segment. Thus, polygon draws a 50-sides polygon that approximates a circle with radius r.\n\nOne limitation of this solution is that n is a constant, which means that for very big circles, the line segments are too long, and for small circles, we waste time drawing very small segments. One solution would be to generalize the function by taking n as a parameter. This would give the user (whoever calls circle) more control, but the interface would be less clean.\n\nThe **interface** of a function is a summary of how it is used: what are the parameters? What does the function do? And what is the return value? An interface is \"clean\" if it is \"as simple as possible, but not simpler. (Einstein)\"\n\nIn this example, r belongs in the interface because it specifies the circle to be drawn. n is less appropriate because it pertains to the details of *how* the circle should be rendered.\n\nRather than clutter up the interface, it is better to choose an appropriate value of n depending on circumference:\n\n```\ndef circle(t, r):\n    circumference = 2 * math.pi * r\n    n = int(circumference / 3) + 1\n    length = circumference / n\n    polygon(t, n, length)\n```\nNow the number of segments is (approximately) circumference/3, so the length of each segment is (approximately) 3, which is small enough that the circles look good, but big enough to be efficient, and appropriate for any size circle.\n\n### <span id=\"page-57-0\"></span>**4.7 Refactoring**\n\nWhen I wrote circle, I was able to re-use polygon because a many-sided polygon is a good approximation of a circle. But arc is not as cooperative; we can't use polygon or circle to draw an arc.\n\nOne alternative is to start with a copy of polygon and transform it into arc. The result might look like this:\n\n```\ndef arc(t, r, angle):\n    arc_length = 2 * math.pi * r * angle / 360\n    n = int(arc_length / 3) + 1\n    step_length = arc_length / n\n    step_angle = float(angle) / n\n    for i in range(n):\n        fd(t, step_length)\n        lt(t, step_angle)\n```\nThe second half of this function looks like polygon, but we can't re-use polygon without changing the interface. We could generalize polygon to take an angle as a third argument, but then polygon would no longer be an appropriate name! Instead, let's call the more general function polyline:\n\n```\ndef polyline(t, n, length, angle):\n    for i in range(n):\n        fd(t, length)\n        lt(t, angle)\n```\nNow we can rewrite polygon and arc to use polyline:\n\n```\ndef polygon(t, n, length):\n    angle = 360.0 / n\n    polyline(t, n, length, angle)\n```\n\n```\ndef arc(t, r, angle):\n    arc_length = 2 * math.pi * r * angle / 360\n    n = int(arc_length / 3) + 1\n    step_length = arc_length / n\n    step_angle = float(angle) / n\n    polyline(t, n, step_length, step_angle)\n```\nFinally, we can rewrite circle to use arc:\n\nThis process—rearranging a program to improve function interfaces and facilitate code reuse—is called **refactoring**. In this case, we noticed that there was similar code in arc and polygon, so we \"factored it out\" into polyline.\n\nIf we had planned ahead, we might have written polyline first and avoided refactoring, but often you don't know enough at the beginning of a project to design all the interfaces. Once you start coding, you understand the problem better. Sometimes refactoring is a sign that you have learned something.\n\n### <span id=\"page-58-0\"></span>**4.8 A development plan**\n\nA **development plan** is a process for writing programs. The process we used in this case study is \"encapsulation and generalization.\" The steps of this process are:\n\n- 1. Start by writing a small program with no function definitions.\n- 2. Once you get the program working, encapsulate it in a function and give it a name.\n- 3. Generalize the function by adding appropriate parameters.\n- 4. Repeat steps 1–3 until you have a set of working functions. Copy and paste working code to avoid retyping (and re-debugging).\n- 5. Look for opportunities to improve the program by refactoring. For example, if you have similar code in several places, consider factoring it into an appropriately general function.\n\nThis process has some drawbacks—we will see alternatives later—but it can be useful if you don't know ahead of time how to divide the program into functions. This approach lets you design as you go along.\n\n#### <span id=\"page-58-1\"></span>**4.9 docstring**\n\nA **docstring** is a string at the beginning of a function that explains the interface (\"doc\" is short for \"documentation\"). Here is an example:\n\n```\ndef polyline(t, n, length, angle):\n    \"\"\"Draws n line segments with the given length and\n    angle (in degrees) between them. t is a turtle.\n    \"\"\"\n    for i in range(n):\n        fd(t, length)\n        lt(t, angle)\n```\nThis docstring is a triple-quoted string, also known as a multiline string because the triple quotes allow the string to span more than one line.\n\nIt is terse, but it contains the essential information someone would need to use this function. It explains concisely what the function does (without getting into the details of how it does it). It explains what effect each parameter has on the behavior of the function and what type each parameter should be (if it is not obvious).\n\nWriting this kind of documentation is an important part of interface design. A welldesigned interface should be simple to explain; if you are having a hard time explaining one of your functions, that might be a sign that the interface could be improved.\n\n#### <span id=\"page-59-0\"></span>**4.10 Debugging**\n\nAn interface is like a contract between a function and a caller. The caller agrees to provide certain parameters and the function agrees to do certain work.\n\nFor example, polyline requires four arguments: t has to be a Turtle; n is the number of line segments, so it has to be an integer; length should be a positive number; and angle has to be a number, which is understood to be in degrees.\n\nThese requirements are called **preconditions** because they are supposed to be true before the function starts executing. Conversely, conditions at the end of the function are **postconditions**. Postconditions include the intended effect of the function (like drawing line segments) and any side effects (like moving the Turtle or making other changes in the World).\n\nPreconditions are the responsibility of the caller. If the caller violates a (properly documented!) precondition and the function doesn't work correctly, the bug is in the caller, not the function.\n\n#### <span id=\"page-59-1\"></span>**4.11 Glossary**\n\n- **instance:** A member of a set. The TurtleWorld in this chapter is a member of the set of TurtleWorlds.\n- **loop:** A part of a program that can execute repeatedly.\n- **encapsulation:** The process of transforming a sequence of statements into a function definition.\n- **generalization:** The process of replacing something unnecessarily specific (like a number) with something appropriately general (like a variable or parameter).\n- **keyword argument:** An argument that includes the name of the parameter as a \"keyword.\"\n- **interface:** A description of how to use a function, including the name and descriptions of the arguments and return value.\n- **refactoring:** The process of modifying a working program to improve function interfaces and other qualities of the code.\n\n![](_page_60_Figure_1.jpeg)\n\n<span id=\"page-60-1\"></span>Figure 4.1: Turtle flowers.\n\n![](_page_60_Figure_3.jpeg)\n\n<span id=\"page-60-2\"></span>Figure 4.2: Turtle pies.\n\n**development plan:** A process for writing programs.\n\n- **docstring:** A string that appears in a function definition to document the function's interface.\n**precondition:** A requirement that should be satisfied by the caller before a function starts.\n\n**postcondition:** A requirement that should be satisfied by the function before it ends.\n\n#### <span id=\"page-60-0\"></span>**4.12 Exercises**\n\n**Exercise 4.1.** *Download the code in this chapter from* [http://thinkpython.com/code/](http://thinkpython.com/code/polygon.py) [polygon. py](http://thinkpython.com/code/polygon.py) *.*\n\n- *1. Write appropriate docstrings for* polygon*,* arc *and* circle*.*\n- *2. Draw a stack diagram that shows the state of the program while executing* circle(bob, radius)*. You can do the arithmetic by hand or add* print *statements to the code.*\n- *3. The version of* arc *in Section [4.7](#page-57-0) is not very accurate because the linear approximation of the circle is always outside the true circle. As a result, the turtle ends up a few units away from the correct destination. My solution shows a way to reduce the effect of this error. Read the code and see if it makes sense to you. If you draw a diagram, you might see how it works.*\n\n**Exercise 4.2.** *Write an appropriately general set of functions that can draw flowers as in Figure [4.1.](#page-60-1)*\n\n*Solution:* [http: // thinkpython. com/ code/ flower. py](http://thinkpython.com/code/flower.py) *, also requires* [http:](http://thinkpython.com/code/polygon.py) [// thinkpython. com/ code/ polygon. py](http://thinkpython.com/code/polygon.py) *.*\n\n**Exercise 4.3.** *Write an appropriately general set of functions that can draw shapes as in Figure [4.2.](#page-60-2)*\n\n*Solution:* <http://thinkpython.com/code/pie.py>*.* \n\n**Exercise 4.4.** *The letters of the alphabet can be constructed from a moderate number of basic elements, like vertical and horizontal lines and a few curves. Design a font that can be drawn with a minimal number of basic elements and then write functions that draw letters of the alphabet.*\n\n*You should write one function for each letter, with names* draw_a*,* draw_b*, etc., and put your functions in a file named* letters.py*. You can download a \"turtle typewriter\" from* [http: //](http://thinkpython.com/code/typewriter.py) [thinkpython. com/ code/ typewriter. py](http://thinkpython.com/code/typewriter.py) *to help you test your code.*\n\n*Solution:* [http: // thinkpython. com/ code/ letters. py](http://thinkpython.com/code/letters.py) *, also requires* [http:](http://thinkpython.com/code/polygon.py) [// thinkpython. com/ code/ polygon. py](http://thinkpython.com/code/polygon.py) *.*\n\n**Exercise 4.5.** *Read about spirals at* <http://en.wikipedia.org/wiki/Spiral>*; then write a program that draws an Archimedian spiral (or one of the other kinds). Solution:* [http:](http://thinkpython.com/code/spiral.py) [// thinkpython. com/ code/ spiral. py](http://thinkpython.com/code/spiral.py) *.*\n\n# <span id=\"page-62-0\"></span>**Chapter 5**\n\n# **Conditionals and recursion**\n\n#### <span id=\"page-62-1\"></span>**5.1 Modulus operator**\n\nThe **modulus operator** works on integers and yields the remainder when the first operand is divided by the second. In Python, the modulus operator is a percent sign (%). The syntax is the same as for other operators:\n\n```\n>>> quotient = 7 / 3\n>>> print quotient\n2\n>>> remainder = 7 % 3\n>>> print remainder\n1\nSo 7 divided by 3 is 2 with 1 left over.\n```\nThe modulus operator turns out to be surprisingly useful. For example, you can check whether one number is divisible by another—if x % y is zero, then x is divisible by y.\n\nAlso, you can extract the right-most digit or digits from a number. For example, $x % 10 $yields the right-most digit of x (in base 10). Similarly x % 100 yields the last two digits.\n\n#### <span id=\"page-62-2\"></span>**5.2 Boolean expressions**\n\nA **boolean expression** is an expression that is either true or false. The following examples use the operator ==, which compares two operands and produces True if they are equal and False otherwise:\n\n```\n>>> 5 == 5\nTrue\n>>> 5 == 6\nFalse\n```\nTrue and False are special values that belong to the type bool; they are not strings:\n\n```\n>>> type(True)\n<type 'bool'>\n>>> type(False)\n<type 'bool'>\n```\nThe == operator is one of the **relational operators**; the others are:\n\n| x != y | # x is not equal to y             |\n|--------|-----------------------------------|\n| x > y  | # x is greater than y             |\n| x < y  | # x is less than y                |\n| x >= y | # x is greater than or equal to y |\n| x <= y | # x is less than or equal to y    |\n\nAlthough these operations are probably familiar to you, the Python symbols are different from the mathematical symbols. A common error is to use a single equal sign (=) instead of a double equal sign (==). Remember that = is an assignment operator and == is a relational operator. There is no such thing as =< or =>.\n\n#### <span id=\"page-63-0\"></span>**5.3 Logical operators**\n\nThere are three **logical operators**: and, or, and not. The semantics (meaning) of these operators is similar to their meaning in English. For example, $x > 0$ and $x < 10$ is true only if x is greater than 0 *and* less than 10.\n\n$n%2 == 0$ or $n%3 == 0$ is true if *either* of the conditions is true, that is, if the number is divisible by 2 *or* 3.\n\nFinally, the not operator negates a boolean expression, so not (x > y) is true if x > y is false, that is, if x is less than or equal to y.\n\nStrictly speaking, the operands of the logical operators should be boolean expressions, but Python is not very strict. Any nonzero number is interpreted as \"true.\"\n\n```\n>>> 17 and True\n```\nTrue\n\nThis flexibility can be useful, but there are some subtleties to it that might be confusing. You might want to avoid it (unless you know what you are doing).\n\n### <span id=\"page-63-1\"></span>**5.4 Conditional execution**\n\nIn order to write useful programs, we almost always need the ability to check conditions and change the behavior of the program accordingly. **Conditional statements** give us this ability. The simplest form is the if statement:\n\n```\nif x > 0:\n    print 'x is positive'\n```\nThe boolean expression after if is called the **condition**. If it is true, then the indented statement gets executed. If not, nothing happens.\n\nif statements have the same structure as function definitions: a header followed by an indented body. Statements like this are called **compound statements**.\n\nThere is no limit on the number of statements that can appear in the body, but there has to be at least one. Occasionally, it is useful to have a body with no statements (usually as a place keeper for code you haven't written yet). In that case, you can use the pass statement, which does nothing.\n\nif x < 0: pass # need to handle negative values!\n\n#### <span id=\"page-64-0\"></span>**5.5 Alternative execution**\n\nA second form of the if statement is **alternative execution**, in which there are two possibilities and the condition determines which one gets executed. The syntax looks like this:\n\nif x%2 == 0: print 'x is even' else: print 'x is odd'\n\nIf the remainder when x is divided by 2 is 0, then we know that x is even, and the program displays a message to that effect. If the condition is false, the second set of statements is executed. Since the condition must be true or false, exactly one of the alternatives will be executed. The alternatives are called **branches**, because they are branches in the flow of execution.\n\n### <span id=\"page-64-1\"></span>**5.6 Chained conditionals**\n\nSometimes there are more than two possibilities and we need more than two branches. One way to express a computation like that is a **chained conditional**:\n\n```\nif x < y:\n    print 'x is less than y'\nelif x > y:\n    print 'x is greater than y'\nelse:\n    print 'x and y are equal'\n```\nelif is an abbreviation of \"else if.\" Again, exactly one branch will be executed. There is no limit on the number of elif statements. If there is an else clause, it has to be at the end, but there doesn't have to be one.\n\n```\nif choice == 'a':\n    draw_a()\nelif choice == 'b':\n    draw_b()\nelif choice == 'c':\n    draw_c()\n```\nEach condition is checked in order. If the first is false, the next is checked, and so on. If one of them is true, the corresponding branch executes, and the statement ends. Even if more than one condition is true, only the first true branch executes.\n\n### <span id=\"page-64-2\"></span>**5.7 Nested conditionals**\n\nOne conditional can also be nested within another. We could have written the trichotomy example like this:\n\n```\nif x == y:\n    print 'x and y are equal'\nelse:\n    if x < y:\n```\nprint 'x is less than y' else: print 'x is greater than y'\n\nThe outer conditional contains two branches. The first branch contains a simple statement. The second branch contains another if statement, which has two branches of its own. Those two branches are both simple statements, although they could have been conditional statements as well.\n\nAlthough the indentation of the statements makes the structure apparent, **nested conditionals** become difficult to read very quickly. In general, it is a good idea to avoid them when you can.\n\nLogical operators often provide a way to simplify nested conditional statements. For example, we can rewrite the following code using a single conditional:\n\n```\nif 0 < x:\n    if x < 10:\n        print 'x is a positive single-digit number.'\n```\nThe print statement is executed only if we make it past both conditionals, so we can get the same effect with the and operator:\n\n```\nif 0 < x and x < 10:\n    print 'x is a positive single-digit number.'\n```\n#### <span id=\"page-65-0\"></span>**5.8 Recursion**\n\nIt is legal for one function to call another; it is also legal for a function to call itself. It may not be obvious why that is a good thing, but it turns out to be one of the most magical things a program can do. For example, look at the following function:\n\n```\ndef countdown(n):\n    if n <= 0:\n        print 'Blastoff!'\n    else:\n        print n\n        countdown(n-1)\n```\nIf n is 0 or negative, it outputs the word, \"Blastoff!\" Otherwise, it outputs n and then calls a function named countdown—itself—passing n-1 as an argument.\n\nWhat happens if we call this function like this?\n\n```\n>>> countdown(3)\n```\nThe execution of countdown begins with n=3, and since n is greater than 0, it outputs the value 3, and then calls itself...\n\nThe execution of countdown begins with n=2, and since n is greater than 0, it outputs the value 2, and then calls itself...\n\nThe execution of countdown begins with n=1, and since n is greater than 0, it outputs the value 1, and then calls itself...\n\nThe execution of countdown begins with n=0, and since n is not greater than 0, it outputs the word, \"Blastoff!\" and then returns.\n\nThe countdown that got n=1 returns.\n\nThe countdown that got n=2 returns.\n\nThe countdown that got n=3 returns.\n\nAnd then you're back in __main__. So, the total output looks like this:\n\n```\n3\n2\n1\nBlastoff!\n```\nA function that calls itself is **recursive**; the process is called **recursion**.\n\nAs another example, we can write a function that prints a string n times.\n\n```\ndef print_n(s, n):\n    if n <= 0:\n        return\n    print s\n    print_n(s, n-1)\n```\nIf n <= 0 the return statement exits the function. The flow of execution immediately returns to the caller, and the remaining lines of the function are not executed.\n\nThe rest of the function is similar to countdown: if n is greater than 0, it displays s and then calls itself to display s n − 1 additional times. So the number of lines of output is 1 + (n -1), which adds up to n.\n\nFor simple examples like this, it is probably easier to use a for loop. But we will see examples later that are hard to write with a for loop and easy to write with recursion, so it is good to start early.\n\n#### <span id=\"page-66-0\"></span>**5.9 Stack diagrams for recursive functions**\n\nIn Section [3.10,](#page-46-0) we used a stack diagram to represent the state of a program during a function call. The same kind of diagram can help interpret a recursive function.\n\nEvery time a function gets called, Python creates a new function frame, which contains the function's local variables and parameters. For a recursive function, there might be more than one frame on the stack at the same time.\n\nFigure [5.1](#page-67-2) shows a stack diagram for countdown called with n = 3.\n\nAs usual, the top of the stack is the frame for __main__. It is empty because we did not create any variables in __main__ or pass any arguments to it.\n\nThe four countdown frames have different values for the parameter n. The bottom of the stack, where n=0, is called the **base case**. It does not make a recursive call, so there are no more frames.\n\n**Exercise 5.1.** *Draw a stack diagram for* print_n *called with* s = 'Hello' *and* n=2*.* **Exercise 5.2.** *Write a function called* do_n *that takes a function object and a number,* n*, as arguments, and that calls the given function* n *times.*\n\n![](_page_67_Figure_1.jpeg)\n\n<span id=\"page-67-2\"></span>Figure 5.1: Stack diagram.\n\n#### <span id=\"page-67-0\"></span>**5.10 Infinite recursion**\n\nIf a recursion never reaches a base case, it goes on making recursive calls forever, and the program never terminates. This is known as **infinite recursion**, and it is generally not a good idea. Here is a minimal program with an infinite recursion:\n\nIn most programming environments, a program with infinite recursion does not really run forever. Python reports an error message when the maximum recursion depth is reached:\n\n```\nFile \"<stdin>\", line 2, in recurse\n  File \"<stdin>\", line 2, in recurse\n  File \"<stdin>\", line 2, in recurse\n                  .\n                  .\n                  .\n  File \"<stdin>\", line 2, in recurse\nRuntimeError: Maximum recursion depth exceeded\n```\nThis traceback is a little bigger than the one we saw in the previous chapter. When the error occurs, there are 1000 recurse frames on the stack!\n\n#### <span id=\"page-67-1\"></span>**5.11 Keyboard input**\n\nThe programs we have written so far are a bit rude in the sense that they accept no input from the user. They just do the same thing every time.\n\nPython 2 provides a built-in function called raw_input that gets input from the keyboard. In Python 3, it is called input. When this function is called, the program stops and waits for the user to type something. When the user presses Return or Enter, the program resumes and raw_input returns what the user typed as a string.\n\n```\n>>> text = raw_input()\nWhat are you waiting for?\n>>> print text\nWhat are you waiting for?\n```\nBefore getting input from the user, it is a good idea to print a prompt telling the user what to input. raw_input can take a prompt as an argument:\n\n```\n>>> name = raw_input('What...is your name?\\n')\nWhat...is your name?\nArthur, King of the Britons!\n>>> print name\nArthur, King of the Britons!\n```\nThe sequence \\n at the end of the prompt represents a **newline**, which is a special character that causes a line break. That's why the user's input appears below the prompt.\n\nIf you expect the user to type an integer, you can try to convert the return value to int:\n\n```\n>>> prompt = 'What...is the airspeed velocity of an unladen swallow?\\n'\n>>> speed = raw_input(prompt)\nWhat...is the airspeed velocity of an unladen swallow?\n17\n>>> int(speed)\n17\n```\nBut if the user types something other than a string of digits, you get an error:\n\n```\n>>> speed = raw_input(prompt)\nWhat...is the airspeed velocity of an unladen swallow?\nWhat do you mean, an African or a European swallow?\n>>> int(speed)\nValueError: invalid literal for int() with base 10\n```\nWe will see how to handle this kind of error later.\n\n#### <span id=\"page-68-0\"></span>**5.12 Debugging**\n\nThe traceback Python displays when an error occurs contains a lot of information, but it can be overwhelming, especially when there are many frames on the stack. The most useful parts are usually:\n\n- What kind of error it was, and\n- Where it occurred.\n\nSyntax errors are usually easy to find, but there are a few gotchas. Whitespace errors can be tricky because spaces and tabs are invisible and we are used to ignoring them.\n\n```\n>>> x = 5\n>>> y = 6\n  File \"<stdin>\", line 1\n    y = 6\n    ^\n```\nIndentationError: unexpected indent\n\nIn this example, the problem is that the second line is indented by one space. But the error message points to y, which is misleading. In general, error messages indicate where the problem was discovered, but the actual error might be earlier in the code, sometimes on a previous line.\n\nThe same is true of runtime errors.\n\nSuppose you are trying to compute a signal-to-noise ratio in decibels. The formula is $SNR_{db} = 10 log_{10}(P_{signal} / P_{noise})$. In Python, you might write something like this:\n\n```\nimport math\nsignal_power = 9\nnoise_power = 10\nratio = signal_power / noise_power\ndecibels = 10 * math.log10(ratio)\nprint decibels\n```\nBut when you run it in Python 2, you get an error message.\n\n```\nTraceback (most recent call last):\n  File \"snr.py\", line 5, in ?\n    decibels = 10 * math.log10(ratio)\nValueError: math domain error\n```\nThe error message indicates line 5, but there is nothing wrong with that line. To find the real error, it might be useful to print the value of ratio, which turns out to be 0. The problem is in line 4, because dividing two integers does floor division. The solution is to represent signal power and noise power with floating-point values.\n\nIn general, error messages tell you where the problem was discovered, but that is often not where it was caused.\n\nIn Python 3, this example does not cause an error; the division operator performs floatingpoint division even with integer operands.\n\n#### <span id=\"page-69-0\"></span>**5.13 Glossary**\n\n- **modulus operator:** An operator, denoted with a percent sign (%), that works on integers and yields the remainder when one number is divided by another.\n- **boolean expression:** An expression whose value is either True or False.\n- **relational operator:** One of the operators that compares its operands: ==, !=, >, <, >=, and <=.\n- **logical operator:** One of the operators that combines boolean expressions: and, or, and not.\n- **conditional statement:** A statement that controls the flow of execution depending on some condition.\n- **condition:** The boolean expression in a conditional statement that determines which branch is executed.\n- **compound statement:** A statement that consists of a header and a body. The header ends with a colon (:). The body is indented relative to the header.\n\n**branch:** One of the alternative sequences of statements in a conditional statement.\n\n**chained conditional:** A conditional statement with a series of alternative branches.\n\n- **nested conditional:** A conditional statement that appears in one of the branches of another conditional statement.\n**recursion:** The process of calling the function that is currently executing.\n\n- **base case:** A conditional branch in a recursive function that does not make a recursive call.\n- **infinite recursion:** A recursion that doesn't have a base case, or never reaches it. Eventually, an infinite recursion causes a runtime error.\n\n#### <span id=\"page-70-0\"></span>**5.14 Exercises**\n\n**Exercise 5.3.** *Fermat's Last Theorem says that there are no positive integers a, b, and c such that*\n\n$$a^n + b^n = c^n$$\n\n*for any values of n greater than 2.*\n\n- *1. Write a function named* check_fermat *that takes four parameters—*a*,* b*,* c *and* n*—and that checks to see if Fermat's theorem holds. If n is greater than 2 and it turns out to be true that*\n\n$$a^n + b^n = c^n$$\n\n*the program should print, \"Holy smokes, Fermat was wrong!\" Otherwise the program should print, \"No, that doesn't work.\"*\n\n- *2. Write a function that prompts the user to input values for* a*,* b*,* c *and* n*, converts them to integers, and uses* check_fermat *to check whether they violate Fermat's theorem.*\n**Exercise 5.4.** *If you are given three sticks, you may or may not be able to arrange them in a triangle. For example, if one of the sticks is 12 inches long and the other two are one inch long, it is clear that you will not be able to get the short sticks to meet in the middle. For any three lengths, there is a simple test to see if it is possible to form a triangle:*\n\n*If any of the three lengths is greater than the sum of the other two, then you cannot form a triangle. Otherwise, you can. (If the sum of two lengths equals the third, they form what is called a \"degenerate\" triangle.)*\n\n- *1. Write a function named* is_triangle *that takes three integers as arguments, and that prints either \"Yes\" or \"No,\" depending on whether you can or cannot form a triangle from sticks with the given lengths.*\n- *2. Write a function that prompts the user to input three stick lengths, converts them to integers, and uses* is_triangle *to check whether sticks with the given lengths can form a triangle.*\n\nThe following exercises use TurtleWorld from Chapter [4:](#page-52-0)\n\n**Exercise 5.5.** *Read the following function and see if you can figure out what it does. Then run it (see the examples in Chapter [4)](#page-52-0).*\n\n![](_page_71_Figure_1.jpeg)\n\n<span id=\"page-71-0\"></span>Figure 5.2: A Koch curve.\n\n```\ndef draw(t, length, n):\n    if n == 0:\n        return\n    angle = 50\n    fd(t, length*n)\n    lt(t, angle)\n    draw(t, length, n-1)\n    rt(t, 2*angle)\n    draw(t, length, n-1)\n    lt(t, angle)\n    bk(t, length*n)\n```\n**Exercise 5.6.** *The Koch curve is a fractal that looks something like Figure [5.2.](#page-71-0) To draw a Koch curve with length x, all you have to do is*\n\n- 1. Draw a Koch curve with length $x/3$.\n- *2. Turn left 60 degrees.*\n- 3. Draw a Koch curve with length $x/3$.\n- *4. Turn right 120 degrees.*\n- *5. Draw a Koch curve with length x*/3*.*\n- *6. Turn left 60 degrees.*\n- *7. Draw a Koch curve with length x*/3*.*\n\n*The exception is if x is less than 3: in that case, you can just draw a straight line with length x.*\n\n- *1. Write a function called* koch *that takes a turtle and a length as parameters, and that uses the turtle to draw a Koch curve with the given length.*\n- *2. Write a function called* snowflake *that draws three Koch curves to make the outline of a snowflake.*\n\nSolution: <http://thinkpython.com/code/koch.py>\n\n- 3. The Koch curve can be generalized in several ways. See [http://en.wikipedia.org/](http://en.wikipedia.org/wiki/Koch_snowflake) [wiki/ Koch_ snowflake](http://en.wikipedia.org/wiki/Koch_snowflake) *for examples and implement your favorite.*\n# <span id=\"page-72-0\"></span>**Chapter 6**\n\n# **Fruitful functions**\n\n#### <span id=\"page-72-1\"></span>**6.1 Return values**\n\nSome of the built-in functions we have used, such as the math functions, produce results. Calling the function generates a value, which we usually assign to a variable or use as part of an expression.\n\ne = math.exp(1.0) height = radius * math.sin(radians)\n\nAll of the functions we have written so far are void; they print something or move turtles around, but their return value is None.\n\nIn this chapter, we are (finally) going to write fruitful functions. The first example is area, which returns the area of a circle with the given radius:\n\n```\ndef area(radius):\n    temp = math.pi * radius**2\n    return temp\n```\nWe have seen the return statement before, but in a fruitful function the return statement includes an expression. This statement means: \"Return immediately from this function and use the following expression as a return value.\" The expression can be arbitrarily complicated, so we could have written this function more concisely:\n\n```\ndef area(radius):\n    return math.pi * radius**2\n```\nOn the other hand, **temporary variables** like temp often make debugging easier.\n\nSometimes it is useful to have multiple return statements, one in each branch of a conditional:\n\n```\ndef absolute_value(x):\n    if x < 0:\n        return -x\n    else:\n        return x\n```\nSince these return statements are in an alternative conditional, only one will be executed.\n\nAs soon as a return statement executes, the function terminates without executing any subsequent statements. Code that appears after a return statement, or any other place the flow of execution can never reach, is called **dead code**.\n\nIn a fruitful function, it is a good idea to ensure that every possible path through the program hits a return statement. For example:\n\n```\ndef absolute_value(x):\n    if x < 0:\n        return -x\n    if x > 0:\n        return x\n```\nThis function is incorrect because if x happens to be 0, neither condition is true, and the function ends without hitting a return statement. If the flow of execution gets to the end of a function, the return value is None, which is not the absolute value of 0.\n\n```\n>>> print absolute_value(0)\nNone\n```\nBy the way, Python provides a built-in function called abs that computes absolute values. **Exercise 6.1.** *Write a* compare *function that returns* 1 *if* $x > y$*,* 0 *if* $x == y$*, and* -1 *if* $x < y$*.* \n\n#### <span id=\"page-73-0\"></span>**6.2 Incremental development**\n\nAs you write larger functions, you might find yourself spending more time debugging.\n\nTo deal with increasingly complex programs, you might want to try a process called **incremental development**. The goal of incremental development is to avoid long debugging sessions by adding and testing only a small amount of code at a time.\n\nAs an example, suppose you want to find the distance between two points, given by the coordinates ($x_1$, $y_1$) and ($x_2$, $y_2$). By the Pythagorean theorem, the distance is:\n\n$$\\text{distance} = \\sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}$$\n\nThe first step is to consider what a distance function should look like in Python. In other words, what are the inputs (parameters) and what is the output (return value)?\n\nIn this case, the inputs are two points, which you can represent using four numbers. The return value is the distance, which is a floating-point value.\n\nAlready you can write an outline of the function:\n\n```\ndef distance(x1, y1, x2, y2):\n    return 0.0\n```\nObviously, this version doesn't compute distances; it always returns zero. But it is syntactically correct, and it runs, which means that you can test it before you make it more complicated.\n\nTo test the new function, call it with sample arguments:\n\n>>> distance(1, 2, 4, 6) 0.0\n\nI chose these values so that the horizontal distance is 3 and the vertical distance is 4; that way, the result is 5 (the hypotenuse of a 3-4-5 triangle). When testing a function, it is useful to know the right answer.\n\nAt this point we have confirmed that the function is syntactically correct, and we can start adding code to the body. A reasonable next step is to find the differences $x_2 - x_1$ and $y_2 - y_1$. The next version stores those values in temporary variables and prints them.\n\n```\ndef distance(x1, y1, x2, y2):\n    dx = x2 - x1\n    dy = y2 - y1\n    print 'dx is', dx\n    print 'dy is', dy\n    return 0.0\n```\nIf the function is working, it should display 'dx is 3' and 'dy is 4'. If so, we know that the function is getting the right arguments and performing the first computation correctly. If not, there are only a few lines to check.\n\nNext we compute the sum of squares of dx and dy:\n\n```\ndef distance(x1, y1, x2, y2):\n    dx = x2 - x1\n    dy = y2 - y1\n    dsquared = dx**2 + dy**2\n    print 'dsquared is: ', dsquared\n    return 0.0\n```\nAgain, you would run the program at this stage and check the output (which should be 25). Finally, you can use math.sqrt to compute and return the result:\n\n```\ndef distance(x1, y1, x2, y2):\n    dx = x2 - x1\n    dy = y2 - y1\n    dsquared = dx**2 + dy**2\n    result = math.sqrt(dsquared)\n    return result\n```\nIf that works correctly, you are done. Otherwise, you might want to print the value of result before the return statement.\n\nThe final version of the function doesn't display anything when it runs; it only returns a value. The print statements we wrote are useful for debugging, but once you get the function working, you should remove them. Code like that is called **scaffolding** because it is helpful for building the program but is not part of the final product.\n\nWhen you start out, you should add only a line or two of code at a time. As you gain more experience, you might find yourself writing and debugging bigger chunks. Either way, incremental development can save you a lot of debugging time.\n\nThe key aspects of the process are:\n\n- 1. Start with a working program and make small incremental changes. At any point, if there is an error, you should have a good idea where it is.\n- 2. Use temporary variables to hold intermediate values so you can display and check them.\n- 3. Once the program is working, you might want to remove some of the scaffolding or consolidate multiple statements into compound expressions, but only if it does not make the program difficult to read.\n\n**Exercise 6.2.** *Use incremental development to write a function called* hypotenuse *that returns the length of the hypotenuse of a right triangle given the lengths of the two legs as arguments. Record each stage of the development process as you go.*\n\n#### <span id=\"page-75-0\"></span>**6.3 Composition**\n\nAs you should expect by now, you can call one function from within another. This ability is called **composition**.\n\nAs an example, we'll write a function that takes two points, the center of the circle and a point on the perimeter, and computes the area of the circle.\n\nAssume that the center point is stored in the variables xc and yc, and the perimeter point is in xp and yp. The first step is to find the radius of the circle, which is the distance between the two points. We just wrote a function, distance, that does that:\n\nradius = distance(xc, yc, xp, yp)\n\nThe next step is to find the area of a circle with that radius; we just wrote that, too:\n\n```\nresult = area(radius)\n```\nEncapsulating these steps in a function, we get:\n\n```\ndef circle_area(xc, yc, xp, yp):\n    radius = distance(xc, yc, xp, yp)\n    result = area(radius)\n    return result\n```\nThe temporary variables radius and result are useful for development and debugging, but once the program is working, we can make it more concise by composing the function calls:\n\n```\ndef circle_area(xc, yc, xp, yp):\n    return area(distance(xc, yc, xp, yp))\n```\n#### <span id=\"page-75-1\"></span>**6.4 Boolean functions**\n\nFunctions can return booleans, which is often convenient for hiding complicated tests inside functions. For example:\n\n```\ndef is_divisible(x, y):\n    if x % y == 0:\n        return True\n    else:\n        return False\n```\nIt is common to give boolean functions names that sound like yes/no questions; is_divisible returns either True or False to indicate whether x is divisible by y.\n\nHere is an example:\n\n```\n>>> is_divisible(6, 4)\nFalse\n>>> is_divisible(6, 3)\nTrue\n```\nThe result of the == operator is a boolean, so we can write the function more concisely by returning it directly:\n\n```\ndef is_divisible(x, y):\n    return x % y == 0\n```\nBoolean functions are often used in conditional statements:\n\nif is_divisible(x, y):\n\nprint 'x is divisible by y'\n\nIt might be tempting to write something like:\n\nif is_divisible(x, y) == True: print 'x is divisible by y'\n\nBut the extra comparison is unnecessary. **Exercise 6.3.** *Write a function* is_between(x, y, z) *that returns* True *if x* ≤ *y* ≤ *z or* False *otherwise.*\n\n#### <span id=\"page-76-0\"></span>**6.5 More recursion**\n\nWe have only covered a small subset of Python, but you might be interested to know that this subset is a *complete* programming language, which means that anything that can be computed can be expressed in this language. Any program ever written could be rewritten using only the language features you have learned so far (actually, you would need a few commands to control devices like the keyboard, mouse, disks, etc., but that's all).\n\nProving that claim is a nontrivial exercise first accomplished by Alan Turing, one of the first computer scientists (some would argue that he was a mathematician, but a lot of early computer scientists started as mathematicians). Accordingly, it is known as the Turing Thesis. For a more complete (and accurate) discussion of the Turing Thesis, I recommend Michael Sipser's book *Introduction to the Theory of Computation*.\n\nTo give you an idea of what you can do with the tools you have learned so far, we'll evaluate a few recursively defined mathematical functions. A recursive definition is similar to a circular definition, in the sense that the definition contains a reference to the thing being defined. A truly circular definition is not very useful:\n\n**vorpal:** An adjective used to describe something that is vorpal.\n\nIf you saw that definition in the dictionary, you might be annoyed. On the other hand, if you looked up the definition of the factorial function, denoted with the symbol !, you might get something like this:\n\n$$\\begin{aligned} 0! &= 1\\\\ n! &= n(n-1)! \\end{aligned}$$\n\nThis definition says that the factorial of 0 is 1, and the factorial of any other value, *n*, is *n* multiplied by the factorial of *n* − 1.\n\nSo 3! is 3 times 2!, which is 2 times 1!, which is 1 times 0!. Putting it all together, 3! equals 3 times 2 times 1 times 1, which is 6.\n\nIf you can write a recursive definition of something, you can usually write a Python program to evaluate it. The first step is to decide what the parameters should be. In this case it should be clear that factorial takes an integer:\n\n```\ndef factorial(n):\n```\nIf the argument happens to be 0, all we have to do is return 1:\n\n```\ndef factorial(n):\n    if n == 0:\n        return 1\n```\nOtherwise, and this is the interesting part, we have to make a recursive call to find the factorial of $n - 1$ and then multiply it by $n$:\n\n```\ndef factorial(n):\n    if n == 0:\n        return 1\n    else:\n        recurse = factorial(n-1)\n        result = n * recurse\n        return result\n```\nThe flow of execution for this program is similar to the flow of countdown in Section [5.8.](#page-65-0) If we call factorial with the value 3:\n\nSince 3 is not 0, we take the second branch and calculate the factorial of n-1...\n\nSince 2 is not 0, we take the second branch and calculate the factorial of n-1...\n\nSince 1 is not 0, we take the second branch and calculate the factorial of n-1...\n\nSince 0 *is* 0, we take the first branch and return 1 without making any more recursive calls.\n\nThe return value (1) is multiplied by *n*, which is 1, and the result is returned.\n\nThe return value (1) is multiplied by *n*, which is 2, and the result is returned.\n\nThe return value (2) is multiplied by *n*, which is 3, and the result, 6, becomes the return value of the function call that started the whole process.\n\nFigure [6.1](#page-78-2) shows what the stack diagram looks like for this sequence of function calls.\n\nThe return values are shown being passed back up the stack. In each frame, the return value is the value of result, which is the product of n and recurse.\n\nIn the last frame, the local variables recurse and result do not exist, because the branch that creates them does not execute.\n\n![](_page_78_Figure_1.jpeg)\n\n<span id=\"page-78-2\"></span>Figure 6.1: Stack diagram.\n\n#### <span id=\"page-78-0\"></span>**6.6 Leap of faith**\n\nFollowing the flow of execution is one way to read programs, but it can quickly become labyrinthine. An alternative is what I call the \"leap of faith.\" When you come to a function call, instead of following the flow of execution, you *assume* that the function works correctly and returns the right result.\n\nIn fact, you are already practicing this leap of faith when you use built-in functions. When you call math.cos or math.exp, you don't examine the bodies of those functions. You just assume that they work because the people who wrote the built-in functions were good programmers.\n\nThe same is true when you call one of your own functions. For example, in Section [6.4,](#page-75-1) we wrote a function called is_divisible that determines whether one number is divisible by another. Once we have convinced ourselves that this function is correct—by examining the code and testing—we can use the function without looking at the body again.\n\nThe same is true of recursive programs. When you get to the recursive call, instead of following the flow of execution, you should assume that the recursive call works (yields the correct result) and then ask yourself, “Assuming that I can find the factorial of $n - 1$, can I compute the factorial of $n$?” In this case, it is clear that you can, by multiplying by $n$.\n\nOf course, it's a bit strange to assume that the function works correctly when you haven't finished writing it, but that's why it's called a leap of faith!\n\n### <span id=\"page-78-1\"></span>**6.7 One more example**\n\nAfter factorial, the most common example of a recursively defined mathematical function is fibonacci, which has the following definition (see [http://en.wikipedia.org/](http://en.wikipedia.org/wiki/Fibonacci_number) [wiki/Fibonacci_number](http://en.wikipedia.org/wiki/Fibonacci_number)):\n\n```\nfibonacci(0) = 0\nfibonacci(1) = 1\nfibonacci(n) = fibonacci(n − 1) + fibonacci(n − 2)\n```\nTranslated into Python, it looks like this:\n\n```\ndef fibonacci (n):\n    if n == 0:\n        return 0\n    elif n == 1:\n        return 1\n    else:\n        return fibonacci(n-1) + fibonacci(n-2)\n```\nIf you try to follow the flow of execution here, even for fairly small values of *n*, your head explodes. But according to the leap of faith, if you assume that the two recursive calls work correctly, then it is clear that you get the right result by adding them together.\n\n#### <span id=\"page-79-0\"></span>**6.8 Checking types**\n\nWhat happens if we call factorial and give it 1.5 as an argument?\n\n```\n>>> factorial(1.5)\n```\nRuntimeError: Maximum recursion depth exceeded\n\nIt looks like an infinite recursion. But how can that be? There is a base case—when n == 0. But if n is not an integer, we can *miss* the base case and recurse forever.\n\nIn the first recursive call, the value of n is 0.5. In the next, it is -0.5. From there, it gets smaller (more negative), but it will never be 0.\n\nWe have two choices. We can try to generalize the factorial function to work with floating-point numbers, or we can make factorial check the type of its argument. The first option is called the gamma function and it's a little beyond the scope of this book. So we'll go for the second.\n\nWe can use the built-in function isinstance to verify the type of the argument. While we're at it, we can also make sure the argument is positive:\n\n```\ndef factorial (n):\n    if not isinstance(n, int):\n        print 'Factorial is only defined for integers.'\n        return None\n    elif n < 0:\n        print 'Factorial is not defined for negative integers.'\n        return None\n    elif n == 0:\n        return 1\n    else:\n        return n * factorial(n-1)\n```\nThe first base case handles nonintegers; the second catches negative integers. In both cases, the program prints an error message and returns None to indicate that something went wrong:\n\n```\n>>> factorial('fred')\nFactorial is only defined for integers.\nNone\n>>> factorial(-2)\nFactorial is not defined for negative integers.\nNone\n```\nIf we get past both checks, then we know that *n* is positive or zero, so we can prove that the recursion terminates.\n\nThis program demonstrates a pattern sometimes called a **guardian**. The first two conditionals act as guardians, protecting the code that follows from values that might cause an error. The guardians make it possible to prove the correctness of the code.\n\nIn Section [11.3](#page-125-0) we will see a more flexible alternative to printing an error message: raising an exception.\n\n#### <span id=\"page-80-0\"></span>**6.9 Debugging**\n\nBreaking a large program into smaller functions creates natural checkpoints for debugging. If a function is not working, there are three possibilities to consider:\n\n- There is something wrong with the arguments the function is getting; a precondition is violated.\n- There is something wrong with the function; a postcondition is violated.\n- There is something wrong with the return value or the way it is being used.\n\nTo rule out the first possibility, you can add a print statement at the beginning of the function and display the values of the parameters (and maybe their types). Or you can write code that checks the preconditions explicitly.\n\nIf the parameters look good, add a print statement before each return statement that displays the return value. If possible, check the result by hand. Consider calling the function with values that make it easy to check the result (as in Section [6.2)](#page-73-0).\n\nIf the function seems to be working, look at the function call to make sure the return value is being used correctly (or used at all!).\n\nAdding print statements at the beginning and end of a function can help make the flow of execution more visible. For example, here is a version of factorial with print statements:\n\n```\ndef factorial(n):\n    space = ' ' * (4 * n)\n    print space, 'factorial', n\n    if n == 0:\n        print space, 'returning 1'\n        return 1\n    else:\n        recurse = factorial(n-1)\n        result = n * recurse\n        print space, 'returning', result\n        return result\n```\nspace is a string of space characters that controls the indentation of the output. Here is the result of factorial(5) :\n\n```\nfactorial 5\n                 factorial 4\n             factorial 3\n        factorial 2\n    factorial 1\nfactorial 0\nreturning 1\n    returning 1\n        returning 2\n             returning 6\n                 returning 24\n                     returning 120\n```\nIf you are confused about the flow of execution, this kind of output can be helpful. It takes some time to develop effective scaffolding, but a little bit of scaffolding can save a lot of debugging.\n\n#### <span id=\"page-81-0\"></span>**6.10 Glossary**\n\n- **temporary variable:** A variable used to store an intermediate value in a complex calculation.\n- **dead code:** Part of a program that can never be executed, often because it appears after a return statement.\n- None**:** A special value returned by functions that have no return statement or a return statement without an argument.\n- **incremental development:** A program development plan intended to avoid debugging by adding and testing only a small amount of code at a time.\n- **scaffolding:** Code that is used during program development but is not part of the final version.\n- **guardian:** A programming pattern that uses a conditional statement to check for and handle circumstances that might cause an error.\n\n#### <span id=\"page-81-1\"></span>**6.11 Exercises**\n\n**Exercise 6.4.** *Draw a stack diagram for the following program. What does the program print? Solution:* [http: // thinkpython. com/ code/ stack_ diagram. py](http://thinkpython.com/code/stack_diagram.py) *.*\n\n```\ndef b(z):\n    prod = a(z, z)\n    print z, prod\n    return prod\ndef a(x, y):\n```\n\n```\nx = x + 1\nreturn x * y\n```\n\n```\ndef c(x, y, z):\n    total = x + y + z\n    square = b(total)**2\n    return square\nx = 1\ny = x + 1\nprint c(x, y+3, x+y)\nExercise 6.5. The Ackermann function, A(m, n), is defined:\n```\n<span id=\"page-82-1\"></span>\n$$A(m,n) = \\begin{cases} n+1 & \\text{if } m=0\\\\ A(m-1,1) & \\text{if } m>0 \\text{ and } n=0\\\\ A(m-1,A(m,n-1)) & \\text{if } m>0 \\text{ and } n>0. \\end{cases}$$\n\n*See* <http://en.wikipedia.org/wiki/Ackermann_function>. *Write a function named* ack that evaluates Ackermann's function. Use your function to evaluate $ack(3, 4)$, which should be 125. What happens for larger values of $m$ and $n$? Solution: [http://thinkpython.com/code/](http://thinkpython.com/code/ackermann.py) [ackermann. py](http://thinkpython.com/code/ackermann.py) *.*\n\n<span id=\"page-82-0\"></span>**Exercise 6.6.** *A palindrome is a word that is spelled the same backward and forward, like \"noon\" and \"redivider\". Recursively, a word is a palindrome if the first and last letters are the same and the middle is a palindrome.*\n\n*The following are functions that take a string argument and return the first, last, and middle letters:*\n\n```\ndef first(word):\n    return word[0]\n```\n\n```\ndef last(word):\n    return word[-1]\n```\n*We'll see how they work in Chapter [8.](#page-92-0)*\n\n- *1. Type these functions into a file named* palindrome.py *and test them out. What happens if you call* middle *with a string with two letters? One letter? What about the empty string, which is written* '' *and contains no letters?*\n- *2. Write a function called* is_palindrome *that takes a string argument and returns* True *if it is a palindrome and* False *otherwise. Remember that you can use the built-in function* len *to check the length of a string.*\n\n*Solution:* [http: // thinkpython. com/ code/ palindrome_ soln. py](http://thinkpython.com/code/palindrome_soln.py) *.*\n\n**Exercise 6.7.** *A number, a, is a power of b if it is divisible by b and a*/*b is a power of b. Write a function called* is_power *that takes parameters* a *and* b *and returns* True *if* a *is a power of* b*. Note: you will have to think about the base case.*\n\n**Exercise 6.8.** *The greatest common divisor (GCD) of a and b is the largest number that divides both of them with no remainder.*\n\n*One way to find the GCD of two numbers is based on the observation that if r is the remainder when* a is divided by b, then $gcd(a, b) = gcd(b, r)$. As a base case, we can use $gcd(a, 0) = a$.\n\n*Write a function called* gcd *that takes parameters* a *and* b *and returns their greatest common divisor.*\n\nCredit: This exercise is based on an example from Abelson and Sussman's Structure and Interpretation of Computer Programs*.*\n\n# <span id=\"page-84-0\"></span>**Chapter 7**\n\n# **Iteration**\n\n#### <span id=\"page-84-1\"></span>**7.1 Multiple assignment**\n\nAs you may have discovered, it is legal to make more than one assignment to the same variable. A new assignment makes an existing variable refer to a new value (and stop referring to the old value).\n\nbruce = 5 print bruce, bruce = 7 print bruce\n\nThe output of this program is 5 7, because the first time bruce is printed, its value is 5, and the second time, its value is 7. The comma at the end of the first print statement suppresses the newline, which is why both outputs appear on the same line.\n\nFigure [7.1](#page-85-2) shows what **multiple assignment** looks like in a state diagram.\n\nWith multiple assignment it is especially important to distinguish between an assignment operation and a statement of equality. Because Python uses the equal sign (=) for assignment, it is tempting to interpret a statement like $a = b$ as a statement of equality. It is not!\n\nFirst, equality is a symmetric relation and assignment is not. For example, in mathematics, if $a = 7$ then $7 = a$. But in Python, the statement $a = 7$ is legal and $7 = a$ is not.\n\nFurthermore, in mathematics, a statement of equality is either true or false, for all time. If $a = b$ now, then $a$ will always equal $b$. In Python, an assignment statement can make two variables equal, but they don't have to stay that way:\n\na = 5 b = a # a and b are now equal a = 3 # a and b are no longer equal\n\nThe third line changes the value of a but does not change the value of b, so they are no longer equal.\n\nAlthough multiple assignment is frequently helpful, you should use it with caution. If the values of variables change frequently, it can make the code difficult to read and debug.\n\n<span id=\"page-85-2\"></span>![](_page_85_Figure_1.jpeg)\n\nFigure 7.1: State diagram.\n\n### <span id=\"page-85-0\"></span>**7.2 Updating variables**\n\nOne of the most common forms of multiple assignment is an **update**, where the new value of the variable depends on the old.\n\nx = x+1\n\nThis means \"get the current value of x, add one, and then update x with the new value.\"\n\nIf you try to update a variable that doesn't exist, you get an error, because Python evaluates the right side before it assigns a value to x:\n\n```\n>>> x = x+1\nNameError: name 'x' is not defined\n```\nBefore you can update a variable, you have to **initialize** it, usually with a simple assignment:\n\n>>> x = 0 >>> x = x+1\n\nUpdating a variable by adding 1 is called an **increment**; subtracting 1 is called a **decrement**.\n\n## <span id=\"page-85-1\"></span>**7.3 The** while **statement**\n\nComputers are often used to automate repetitive tasks. Repeating identical or similar tasks without making errors is something that computers do well and people do poorly.\n\nWe have seen two programs, countdown and print_n, that use recursion to perform repetition, which is also called **iteration**. Because iteration is so common, Python provides several language features to make it easier. One is the for statement we saw in Section [4.2.](#page-53-0) We'll get back to that later.\n\nAnother is the while statement. Here is a version of countdown that uses a while statement:\n\n```\ndef countdown(n):\n    while n > 0:\n        print n\n        n = n-1\n    print 'Blastoff!'\n```\nYou can almost read the while statement as if it were English. It means, \"While n is greater than 0, display the value of n and then reduce the value of n by 1. When you get to 0, display the word Blastoff!\"\n\nMore formally, here is the flow of execution for a while statement:\n\n- 1. Evaluate the condition, yielding True or False.\n- 2. If the condition is false, exit the while statement and continue execution at the next statement.\n- 3. If the condition is true, execute the body and then go back to step 1.\n\nThis type of flow is called a **loop** because the third step loops back around to the top.\n\nThe body of the loop should change the value of one or more variables so that eventually the condition becomes false and the loop terminates. Otherwise the loop will repeat forever, which is called an **infinite loop**. An endless source of amusement for computer scientists is the observation that the directions on shampoo, \"Lather, rinse, repeat,\" are an infinite loop.\n\nIn the case of countdown, we can prove that the loop terminates because we know that the value of n is finite, and we can see that the value of n gets smaller each time through the loop, so eventually we have to get to 0. In other cases, it is not so easy to tell:\n\n```\ndef sequence(n):\n```\n\n```\nwhile n != 1:\n   print n,\n   if n%2 == 0: # n is even\n      n = n/2\n   else: # n is odd\n      n = n*3+1\n```\nThe condition for this loop is n != 1, so the loop will continue until n is 1, which makes the condition false.\n\nEach time through the loop, the program outputs the value of n and then checks whether it is even or odd. If it is even, n is divided by 2. If it is odd, the value of n is replaced with n*3+1. For example, if the argument passed to sequence is 3, the resulting sequence is 3, 10, 5, 16, 8, 4, 2, 1.\n\nSince n sometimes increases and sometimes decreases, there is no obvious proof that n will ever reach 1, or that the program terminates. For some particular values of n, we can prove termination. For example, if the starting value is a power of two, then the value of n will be even each time through the loop until it reaches 1. The previous example ends with such a sequence, starting with 16.\n\nThe hard question is whether we can prove that this program terminates for *all positive values* of n. So far, no one has been able to prove it *or* disprove it! (See [http:](http://en.wikipedia.org/wiki/Collatz_conjecture) [//en.wikipedia.org/wiki/Collatz_conjecture](http://en.wikipedia.org/wiki/Collatz_conjecture).)\n\n**Exercise 7.1.** *Rewrite the function* print_n *from Section [5.8](#page-65-0) using iteration instead of recursion.*\n\n## <span id=\"page-86-0\"></span>**7.4** break\n\nSometimes you don't know it's time to end a loop until you get half way through the body. In that case you can use the break statement to jump out of the loop.\n\nFor example, suppose you want to take input from the user until they type done. You could write:\n\n```\nwhile True:\n    line = raw_input('> ')\n    if line == 'done':\n        break\n    print line\n```\nprint 'Done!'\n\nThe loop condition is True, which is always true, so the loop runs until it hits the break statement.\n\nEach time through, it prompts the user with an angle bracket. If the user types done, the break statement exits the loop. Otherwise the program echoes whatever the user types and goes back to the top of the loop. Here's a sample run:\n\n```\n> not done\nnot done\n> done\nDone!\n```\nThis way of writing while loops is common because you can check the condition anywhere in the loop (not just at the top) and you can express the stop condition affirmatively (\"stop when this happens\") rather than negatively (\"keep going until that happens.\").\n\n#### <span id=\"page-87-0\"></span>**7.5 Square roots**\n\nLoops are often used in programs that compute numerical results by starting with an approximate answer and iteratively improving it.\n\nFor example, one way of computing square roots is Newton's method. Suppose that you want to know the square root of *a*. If you start with almost any estimate, *x*, you can compute a better estimate with the following formula:\n\n$$y = \\frac{x + a/x}{2}$$\n\nFor example, if *a* is 4 and *x* is 3:\n\n```\n>>> a = 4.0\n>>> x = 3.0\n>>> y = (x + a/x) / 2\n>>> print y\n2.16666666667\n```\n√/4 = 2). If we repeat the process with the new estimate, it gets even closer:\n\n```\n>>> x = y\n>>> y = (x + a/x) / 2\n>>> print y\n2.00641025641\n```\nAfter a few more updates, the estimate is almost exact:\n\n```\n>>> x = y\n>>> y = (x + a/x) / 2\n>>> print y\n2.00001024003\n>>> x = y\n>>> y = (x + a/x) / 2\n>>> print y\n2.00000000003\n```\nIn general we don't know ahead of time how many steps it takes to get to the right answer, but we know when we get there because the estimate stops changing:\n\n```\n>>> x = y\n>>> y = (x + a/x) / 2\n>>> print y\n2.0\n>>> x = y\n>>> y = (x + a/x) / 2\n>>> print y\n2.0\n```\nWhen y == x, we can stop. Here is a loop that starts with an initial estimate, x, and improves it until it stops changing:\n\n```\nwhile True:\n    print x\n    y = (x + a/x) / 2\n    if y == x:\n        break\n    x = y\n```\nFor most values of a this works fine, but in general it is dangerous to test float equality. Floating-point values are only approximately right: most rational numbers, like 1/3, and irrational numbers, like √ 2, can't be represented exactly with a float.\n\nRather than checking whether x and y are exactly equal, it is safer to use the built-in function abs to compute the absolute value, or magnitude, of the difference between them:\n\n```\nif abs(y-x) < epsilon:\n    break\n```\nWhere epsilon has a value like 0.0000001 that determines how close is close enough. **Exercise 7.2.** *Encapsulate this loop in a function called* square_root *that takes* a *as a parameter, chooses a reasonable value of* x*, and returns an estimate of the square root of* a*.*\n\n### <span id=\"page-88-0\"></span>**7.6 Algorithms**\n\nNewton's method is an example of an **algorithm**: it is a mechanical process for solving a category of problems (in this case, computing square roots).\n\nIt is not easy to define an algorithm. It might help to start with something that is not an algorithm. When you learned to multiply single-digit numbers, you probably memorized the multiplication table. In effect, you memorized 100 specific solutions. That kind of knowledge is not algorithmic.\n\nBut if you were “lazy,” you probably cheated by learning a few tricks. For example, to find the product of $n$ and 9, you can write $n$ – 1 as the first digit and 10 – $n$ as the second digit. This trick is a general solution for multiplying any single-digit number by 9. That's an algorithm!\n\nSimilarly, the techniques you learned for addition with carrying, subtraction with borrowing, and long division are all algorithms. One of the characteristics of algorithms is that they do not require any intelligence to carry out. They are mechanical processes in which each step follows from the last according to a simple set of rules.\n\nIn my opinion, it is embarrassing that humans spend so much time in school learning to execute algorithms that, quite literally, require no intelligence.\n\nOn the other hand, the process of designing algorithms is interesting, intellectually challenging, and a central part of what we call programming.\n\nSome of the things that people do naturally, without difficulty or conscious thought, are the hardest to express algorithmically. Understanding natural language is a good example. We all do it, but so far no one has been able to explain *how* we do it, at least not in the form of an algorithm.\n\n## <span id=\"page-89-0\"></span>**7.7 Debugging**\n\nAs you start writing bigger programs, you might find yourself spending more time debugging. More code means more chances to make an error and more place for bugs to hide.\n\nOne way to cut your debugging time is \"debugging by bisection.\" For example, if there are 100 lines in your program and you check them one at a time, it would take 100 steps.\n\nInstead, try to break the problem in half. Look at the middle of the program, or near it, for an intermediate value you can check. Add a print statement (or something else that has a verifiable effect) and run the program.\n\nIf the mid-point check is incorrect, there must be a problem in the first half of the program. If it is correct, the problem is in the second half.\n\nEvery time you perform a check like this, you halve the number of lines you have to search. After six steps (which is fewer than 100), you would be down to one or two lines of code, at least in theory.\n\nIn practice it is not always clear what the \"middle of the program\" is and not always possible to check it. It doesn't make sense to count lines and find the exact midpoint. Instead, think about places in the program where there might be errors and places where it is easy to put a check. Then choose a spot where you think the chances are about the same that the bug is before or after the check.\n\n## <span id=\"page-89-1\"></span>**7.8 Glossary**\n\n**multiple assignment:** Making more than one assignment to the same variable during the execution of a program.\n\n**update:** An assignment where the new value of the variable depends on the old.\n\n**initialization:** An assignment that gives an initial value to a variable that will be updated.\n\n**increment:** An update that increases the value of a variable (often by one).\n\n**decrement:** An update that decreases the value of a variable.\n\n**iteration:** Repeated execution of a set of statements using either a recursive function call or a loop.\n\n**infinite loop:** A loop in which the terminating condition is never satisfied.\n\n#### <span id=\"page-90-0\"></span>**7.9 Exercises**\n\n**Exercise 7.3.** *To test the square root algorithm in this chapter, you could compare it with* math.sqrt*. Write a function named* test_square_root *that prints a table like this:*\n\n```\n1.0 1.0 1.0 0.0\n2.0 1.41421356237 1.41421356237 2.22044604925e-16\n3.0 1.73205080757 1.73205080757 0.0\n4.0 2.0 2.0 0.0\n5.0 2.2360679775 2.2360679775 0.0\n6.0 2.44948974278 2.44948974278 0.0\n7.0 2.64575131106 2.64575131106 0.0\n8.0 2.82842712475 2.82842712475 4.4408920985e-16\n9.0 3.0 3.0 0.0\n```\n*The first column is a number, a; the second column is the square root of a computed with the function from Section [7.5;](#page-87-0) the third column is the square root computed by* math.sqrt*; the fourth column is the absolute value of the difference between the two estimates.*\n\n**Exercise 7.4.** *The built-in function* eval *takes a string and evaluates it using the Python interpreter. For example:*\n\n```\n>>> eval('1 + 2 * 3')\n7\n>>> import math\n>>> eval('math.sqrt(5)')\n2.2360679774997898\n>>> eval('type(math.pi)')\n<type 'float'>\n```\n*Write a function called* eval_loop *that iteratively prompts the user, takes the resulting input and evaluates it using* eval*, and prints the result.*\n\n*It should continue until the user enters* 'done'*, and then return the value of the last expression it evaluated.*\n\n**Exercise 7.5.** *The mathematician Srinivasa Ramanujan found an infinite series that can be used to generate a numerical approximation of* 1/*π:*\n\n$$\\frac{1}{\\pi} = \\frac{2\\sqrt{2}}{9801} \\sum_{k=0}^{\\infty} \\frac{(4k)!(1103 + 26390k)}{(k!)^4 396^{4k}}$$\n\n*Write a function called* estimate_pi *that uses this formula to compute and return an estimate of π. It should use a* while *loop to compute terms of the summation until the last term is smaller than* 1e-15 (which is Python notation for $10^{-15}$). You can check the result by comparing it to math.pi.\n\nSolution: <http://thinkpython.com/code/pi.py>.\n\n# <span id=\"page-92-0\"></span>**Chapter 8**\n\n# **Strings**\n\n#### <span id=\"page-92-1\"></span>**8.1 A string is a sequence**\n\nA string is a **sequence** of characters. You can access the characters one at a time with the bracket operator:\n\n>>> fruit = 'banana' >>> letter = fruit[1]\n\nThe second statement selects character number 1 from fruit and assigns it to letter.\n\nThe expression in brackets is called an **index**. The index indicates which character in the sequence you want (hence the name).\n\nBut you might not get what you expect:\n\n>>> print letter a\n\nFor most people, the first letter of 'banana' is b, not a. But for computer scientists, the index is an offset from the beginning of the string, and the offset of the first letter is zero.\n\n```\n>>> letter = fruit[0]\n>>> print letter\nb\n```\nSo b is the 0th letter (\"zero-eth\") of 'banana', a is the 1th letter (\"one-eth\"), and n is the 2th (\"two-eth\") letter.\n\nYou can use any expression, including variables and operators, as an index, but the value of the index has to be an integer. Otherwise you get:\n\n```\n>>> letter = fruit[1.5]\nTypeError: string indices must be integers, not float\n```\n## <span id=\"page-92-2\"></span>**8.2** len\n\nlen is a built-in function that returns the number of characters in a string:\n\n```\n>>> fruit = 'banana'\n>>> len(fruit)\n6\n```\nTo get the last letter of a string, you might be tempted to try something like this:\n\n```\n>>> length = len(fruit)\n>>> last = fruit[length]\nIndexError: string index out of range\n```\nThe reason for the IndexError is that there is no letter in 'banana' with the index 6. Since we started counting at zero, the six letters are numbered 0 to 5. To get the last character, you have to subtract 1 from length:\n\n```\n>>> last = fruit[length-1]\n>>> print last\na\n```\nAlternatively, you can use negative indices, which count backward from the end of the string. The expression fruit[-1] yields the last letter, fruit[-2] yields the second to last, and so on.\n\n## <span id=\"page-93-0\"></span>**8.3 Traversal with a** for **loop**\n\nA lot of computations involve processing a string one character at a time. Often they start at the beginning, select each character in turn, do something to it, and continue until the end. This pattern of processing is called a **traversal**. One way to write a traversal is with a while loop:\n\n```\nindex = 0\nwhile index < len(fruit):\n    letter = fruit[index]\n    print letter\n    index = index + 1\n```\nThis loop traverses the string and displays each letter on a line by itself. The loop condition is index < len(fruit), so when index is equal to the length of the string, the condition is false, and the body of the loop is not executed. The last character accessed is the one with the index len(fruit)-1, which is the last character in the string.\n\n**Exercise 8.1.** *Write a function that takes a string as an argument and displays the letters backward, one per line.*\n\nAnother way to write a traversal is with a for loop:\n\n```\nfor char in fruit:\n    print char\n```\nEach time through the loop, the next character in the string is assigned to the variable char. The loop continues until no characters are left.\n\nThe following example shows how to use concatenation (string addition) and a for loop to generate an abecedarian series (that is, in alphabetical order). In Robert McCloskey's book *Make Way for Ducklings*, the names of the ducklings are Jack, Kack, Lack, Mack, Nack, Ouack, Pack, and Quack. This loop outputs these names in order:\n\n![](_page_94_Figure_1.jpeg)\n\n<span id=\"page-94-1\"></span>Figure 8.1: Slice indices.\n\n```\nprefixes = 'JKLMNOPQ'\nsuffix = 'ack'\nfor letter in prefixes:\n    print letter + suffix\nThe output is:\nJack\nKack\nLack\nMack\nNack\nOack\nPack\nQack\nOf course, that's not quite right because \"Ouack\" and \"Quack\" are misspelled.\nExercise 8.2. Modify the program to fix this error.\n```\n#### <span id=\"page-94-0\"></span>**8.4 String slices**\n\nA segment of a string is called a **slice**. Selecting a slice is similar to selecting a character:\n\n```\n>>> s = 'Monty Python'\n>>> print s[0:5]\nMonty\n>>> print s[6:12]\nPython\n```\nThe operator [n:m] returns the part of the string from the \"n-eth\" character to the \"m-eth\" character, including the first but excluding the last. This behavior is counterintuitive, but it might help to imagine the indices pointing *between* the characters, as in Figure [8.1.](#page-94-1)\n\nIf you omit the first index (before the colon), the slice starts at the beginning of the string. If you omit the second index, the slice goes to the end of the string:\n\n```\n>>> fruit = 'banana'\n>>> fruit[:3]\n'ban'\n>>> fruit[3:]\n'ana'\n```\nIf the first index is greater than or equal to the second the result is an **empty string**, represented by two quotation marks:\n\n```\n>>> fruit = 'banana'\n>>> fruit[3:3]\n''\n```\nAn empty string contains no characters and has length 0, but other than that, it is the same as any other string.\n\n**Exercise 8.3.** *Given that* fruit *is a string, what does* fruit[:] *mean?*\n\n### <span id=\"page-95-0\"></span>**8.5 Strings are immutable**\n\nIt is tempting to use the [] operator on the left side of an assignment, with the intention of changing a character in a string. For example:\n\n```\n>>> greeting = 'Hello, world!'\n>>> greeting[0] = 'J'\nTypeError: 'str' object does not support item assignment\n```\nThe \"object\" in this case is the string and the \"item\" is the character you tried to assign. For now, an **object** is the same thing as a value, but we will refine that definition later. An **item** is one of the values in a sequence.\n\nThe reason for the error is that strings are **immutable**, which means you can't change an existing string. The best you can do is create a new string that is a variation on the original:\n\n```\n>>> greeting = 'Hello, world!'\n>>> new_greeting = 'J' + greeting[1:]\n>>> print new_greeting\nJello, world!\n```\nThis example concatenates a new first letter onto a slice of greeting. It has no effect on the original string.\n\n#### <span id=\"page-95-1\"></span>**8.6 Searching**\n\nWhat does the following function do?\n\n```\ndef find(word, letter):\n    index = 0\n    while index < len(word):\n        if word[index] == letter:\n            return index\n        index = index + 1\n    return -1\n```\nIn a sense, find is the opposite of the [] operator. Instead of taking an index and extracting the corresponding character, it takes a character and finds the index where that character appears. If the character is not found, the function returns -1.\n\nThis is the first example we have seen of a return statement inside a loop. If word[index] == letter, the function breaks out of the loop and returns immediately.\n\nIf the character doesn't appear in the string, the program exits the loop normally and returns -1.\n\nThis pattern of computation—traversing a sequence and returning when we find what we are looking for—is called a **search**.\n\n**Exercise 8.4.** *Modify* find *so that it has a third parameter, the index in* word *where it should start looking.*\n\n#### <span id=\"page-96-0\"></span>**8.7 Looping and counting**\n\nThe following program counts the number of times the letter a appears in a string:\n\n```\nword = 'banana'\ncount = 0\nfor letter in word:\n    if letter == 'a':\n        count = count + 1\nprint count\n```\nThis program demonstrates another pattern of computation called a **counter**. The variable count is initialized to 0 and then incremented each time an a is found. When the loop exits, count contains the result—the total number of a's.\n\n**Exercise 8.5.** *Encapsulate this code in a function named* count*, and generalize it so that it accepts the string and the letter as arguments.*\n\n**Exercise 8.6.** *Rewrite this function so that instead of traversing the string, it uses the threeparameter version of* find *from the previous section.*\n\n#### <span id=\"page-96-1\"></span>**8.8 String methods**\n\nA **method** is similar to a function—it takes arguments and returns a value—but the syntax is different. For example, the method upper takes a string and returns a new string with all uppercase letters:\n\nInstead of the function syntax upper(word), it uses the method syntax word.upper().\n\n```\n>>> word = 'banana'\n>>> new_word = word.upper()\n>>> print new_word\nBANANA\n```\nThis form of dot notation specifies the name of the method, upper, and the name of the string to apply the method to, word. The empty parentheses indicate that this method takes no argument.\n\nA method call is called an **invocation**; in this case, we would say that we are invoking upper on the word.\n\nAs it turns out, there is a string method named find that is remarkably similar to the function we wrote:\n\n```\n>>> word = 'banana'\n>>> index = word.find('a')\n>>> print index\n1\n```\nIn this example, we invoke find on word and pass the letter we are looking for as a parameter.\n\nActually, the find method is more general than our function; it can find substrings, not just characters:\n\n```\n>>> word.find('na')\n2\n```\nIt can take as a second argument the index where it should start:\n\n```\n>>> word.find('na', 3)\n4\n```\nAnd as a third argument the index where it should stop:\n\n```\n>>> name = 'bob'\n>>> name.find('b', 1, 2)\n-1\n```\nThis search fails because b does not appear in the index range from 1 to 2 (not including 2). **Exercise 8.7.** *There is a string method called* count *that is similar to the function in the previous exercise. Read the documentation of this method and write an invocation that counts the number of* a*s in* 'banana'*.*\n\n**Exercise 8.8.** *Read the documentation of the string methods at* [http: // docs. python. org/ 2/](http://docs.python.org/2/library/stdtypes.html#string-methods) [library/ stdtypes. html# string-methods](http://docs.python.org/2/library/stdtypes.html#string-methods) *. You might want to experiment with some of them to make sure you understand how they work.* strip *and* replace *are particularly useful.*\n\n*The documentation uses a syntax that might be confusing. For example, in* find(sub[, start[, end]])*, the brackets indicate optional arguments. So* sub *is required, but* start *is optional, and if you include* start*, then* end *is optional.*\n\n## <span id=\"page-97-0\"></span>**8.9 The** in **operator**\n\nThe word in is a boolean operator that takes two strings and returns True if the first appears as a substring in the second:\n\n```\n>>> 'a' in 'banana'\nTrue\n>>> 'seed' in 'banana'\n```\nFalse\n\nFor example, the following function prints all the letters from word1 that also appear in word2:\n\n```\ndef in_both(word1, word2):\n    for letter in word1:\n        if letter in word2:\n            print letter\n```\nWith well-chosen variable names, Python sometimes reads like English. You could read this loop, \"for (each) letter in (the first) word, if (the) letter (appears) in (the second) word, print (the) letter.\"\n\nHere's what you get if you compare apples and oranges:\n\n```\n>>> in_both('apples', 'oranges')\na\ne\ns\n```\n#### <span id=\"page-97-1\"></span>**8.10 String comparison**\n\nThe relational operators work on strings. To see if two strings are equal:\n\nif word == 'banana': print 'All right, bananas.'\n\nOther relational operations are useful for putting words in alphabetical order:\n\n```\nif word < 'banana':\n    print 'Your word,' + word + ', comes before banana.'\nelif word > 'banana':\n    print 'Your word,' + word + ', comes after banana.'\nelse:\n    print 'All right, bananas.'\n```\nPython does not handle uppercase and lowercase letters the same way that people do. All the uppercase letters come before all the lowercase letters, so:\n\nYour word, Pineapple, comes before banana.\n\nA common way to address this problem is to convert strings to a standard format, such as all lowercase, before performing the comparison. Keep that in mind in case you have to defend yourself against a man armed with a Pineapple.\n\n#### <span id=\"page-98-0\"></span>**8.11 Debugging**\n\nWhen you use indices to traverse the values in a sequence, it is tricky to get the beginning and end of the traversal right. Here is a function that is supposed to compare two words and return True if one of the words is the reverse of the other, but it contains two errors:\n\n```\ndef is_reverse(word1, word2):\n    if len(word1) != len(word2):\n        return False\n    i = 0\n    j = len(word2)\n    while j > 0:\n        if word1[i] != word2[j]:\n            return False\n        i = i+1\n        j = j-1\n    return True\n```\nThe first if statement checks whether the words are the same length. If not, we can return False immediately and then, for the rest of the function, we can assume that the words are the same length. This is an example of the guardian pattern in Section [6.8.](#page-79-0)\n\ni and j are indices: i traverses word1 forward while j traverses word2 backward. If we find two letters that don't match, we can return False immediately. If we get through the whole loop and all the letters match, we return True.\n\nIf we test this function with the words \"pots\" and \"stop\", we expect the return value True, but we get an IndexError:\n\n>>> is_reverse('pots', 'stop') ...\n\n![](_page_99_Figure_17.jpeg)\n\n<span id=\"page-99-1\"></span>Figure 8.2: State diagram.\n\n```\nFile \"reverse.py\", line 15, in is_reverse\n    if word1[i] != word2[j]:\nIndexError: string index out of range\n```\nFor debugging this kind of error, my first move is to print the values of the indices immediately before the line where the error appears.\n\n```\nwhile j > 0:\n   print i, j # print here\n   if word1[i] != word2[j]:\n       return False\n   i = i+1\n   j = j-1\n```\nNow when I run the program again, I get more information:\n\n```\n>>> is_reverse('pots', 'stop')\n0 4\n...\nIndexError: string index out of range\n```\nThe first time through the loop, the value of j is 4, which is out of range for the string 'pots'. The index of the last character is 3, so the initial value for j should be len(word2)-1.\n\nIf I fix that error and run the program again, I get:\n\n```\n>>> is_reverse('pots', 'stop')\n0 3\n1 2\n2 1\nTrue\n```\nThis time we get the right answer, but it looks like the loop only ran three times, which is suspicious. To get a better idea of what is happening, it is useful to draw a state diagram. During the first iteration, the frame for is_reverse is shows in Figure [8.2.](#page-99-1)\n\nI took a little license by arranging the variables in the frame and adding dotted lines to show that the values of i and j indicate characters in word1 and word2.\n\n<span id=\"page-99-2\"></span>**Exercise 8.9.** *Starting with this diagram, execute the program on paper, changing the values of* i *and* j *during each iteration. Find and fix the second error in this function.*\n\n#### <span id=\"page-99-0\"></span>**8.12 Glossary**\n\n**object:** Something a variable can refer to. For now, you can use \"object\" and \"value\" interchangeably.\n\n- **sequence:** An ordered set; that is, a set of values where each value is identified by an integer index.\n**item:** One of the values in a sequence.\n\n**index:** An integer value used to select an item in a sequence, such as a character in a string.\n\n**slice:** A part of a string specified by a range of indices.\n\n- **empty string:** A string with no characters and length 0, represented by two quotation marks.\n**immutable:** The property of a sequence whose items cannot be assigned.\n\n- **traverse:** To iterate through the items in a sequence, performing a similar operation on each.\n**search:** A pattern of traversal that stops when it finds what it is looking for.\n\n- **counter:** A variable used to count something, usually initialized to zero and then incremented.\n**method:** A function that is associated with an object and called using dot notation.\n\n**invocation:** A statement that calls a method.\n\n#### <span id=\"page-100-0\"></span>**8.13 Exercises**\n\n**Exercise 8.10.** *A string slice can take a third index that specifies the \"step size;\" that is, the number of spaces between successive characters. A step size of 2 means every other character; 3 means every third, etc.*\n\n```\n>>> fruit = 'banana'\n>>> fruit[0:5:2]\n'bnn'\n```\n*A step size of -1 goes through the word backwards, so the slice* [::-1] *generates a reversed string.*\n\n*Use this idiom to write a one-line version of* is_palindrome *from Exercise [6.6.](#page-82-0)* **Exercise 8.11.** *The following functions are all* intended *to check whether a string contains any*\n\n*lowercase letters, but at least some of them are wrong. For each function, describe what the function actually does (assuming that the parameter is a string).*\n\n```\ndef any_lowercase1(s):\n    for c in s:\n        if c.islower():\n            return True\n        else:\n            return False\ndef any_lowercase2(s):\n    for c in s:\n        if 'c'.islower():\n            return 'True'\n```\n\n```\nelse:\n            return 'False'\ndef any_lowercase3(s):\n    for c in s:\n        flag = c.islower()\n    return flag\ndef any_lowercase4(s):\n    flag = False\n    for c in s:\n        flag = flag or c.islower()\n    return flag\ndef any_lowercase5(s):\n    for c in s:\n        if not c.islower():\n            return False\n    return True\n```\n<span id=\"page-101-0\"></span>**Exercise 8.12.** *ROT13 is a weak form of encryption that involves \"rotating\" each letter in a word by 13 places. To rotate a letter means to shift it through the alphabet, wrapping around to the beginning if necessary, so 'A' shifted by 3 is 'D' and 'Z' shifted by 1 is 'A'.*\n\n*Write a function called* rotate_word *that takes a string and an integer as parameters, and that returns a new string that contains the letters from the original string \"rotated\" by the given amount.*\n\n*For example, \"cheer\" rotated by 7 is \"jolly\" and \"melon\" rotated by -10 is \"cubed\".*\n\n*You might want to use the built-in functions* ord*, which converts a character to a numeric code, and* chr*, which converts numeric codes to characters.*\n\n*Potentially offensive jokes on the Internet are sometimes encoded in ROT13. If you are not easily offended, find and decode some of them. Solution:* [http: // thinkpython. com/ code/ rotate.](http://thinkpython.com/code/rotate.py) [py](http://thinkpython.com/code/rotate.py) *.*\n\n# <span id=\"page-102-0\"></span>**Chapter 9**\n\n# **Case study: word play**\n\n#### <span id=\"page-102-1\"></span>**9.1 Reading word lists**\n\nFor the exercises in this chapter we need a list of English words. There are lots of word lists available on the Web, but the one most suitable for our purpose is one of the word lists collected and contributed to the public domain by Grady Ward as part of the Moby lexicon project (see <http://wikipedia.org/wiki/Moby_Project>). It is a list of 113,809 official crosswords; that is, words that are considered valid in crossword puzzles and other word games. In the Moby collection, the filename is 113809of.fic; you can download a copy, with the simpler name words.txt, from <http://thinkpython.com/code/words.txt>.\n\nThis file is in plain text, so you can open it with a text editor, but you can also read it from Python. The built-in function open takes the name of the file as a parameter and returns a **file object** you can use to read the file.\n\n```\n>>> fin = open('words.txt')\n>>> print fin\n<open file 'words.txt', mode 'r' at 0xb7f4b380>\n```\nfin is a common name for a file object used for input. Mode 'r' indicates that this file is open for reading (as opposed to 'w' for writing).\n\nThe file object provides several methods for reading, including readline, which reads characters from the file until it gets to a newline and returns the result as a string:\n\n```\n>>> fin.readline()\n'aa\\r\\n'\n```\nThe first word in this particular list is \"aa,\" which is a kind of lava. The sequence \\r\\n represents two whitespace characters, a carriage return and a newline, that separate this word from the next.\n\nThe file object keeps track of where it is in the file, so if you call readline again, you get the next word:\n\n```\n>>> fin.readline()\n'aah\\r\\n'\n```\nThe next word is \"aah,\" which is a perfectly legitimate word, so stop looking at me like that. Or, if it's the whitespace that's bothering you, we can get rid of it with the string method strip:\n\n```\n>>> line = fin.readline()\n>>> word = line.strip()\n>>> print word\n```\naahed\n\nYou can also use a file object as part of a for loop. This program reads words.txt and prints each word, one per line:\n\n```\nfin = open('words.txt')\nfor line in fin:\n    word = line.strip()\n    print word\n```\n**Exercise 9.1.** *Write a program that reads* words.txt *and prints only the words with more than 20 characters (not counting whitespace).*\n\n## <span id=\"page-103-0\"></span>**9.2 Exercises**\n\nThere are solutions to these exercises in the next section. You should at least attempt each one before you read the solutions.\n\n**Exercise 9.2.** *In 1939 Ernest Vincent Wright published a 50,000 word novel called* Gadsby *that does not contain the letter \"e.\" Since \"e\" is the most common letter in English, that's not easy to do.*\n\n*In fact, it is difficult to construct a solitary thought without using that most common symbol. It is slow going at first, but with caution and hours of training you can gradually gain facility.*\n\n*All right, I'll stop now.*\n\n*Write a function called* has_no_e *that returns* True *if the given word doesn't have the letter \"e\" in it.*\n\n*Modify your program from the previous section to print only the words that have no \"e\" and compute the percentage of the words in the list have no \"e.\"*\n\n**Exercise 9.3.** *Write a function named* avoids *that takes a word and a string of forbidden letters, and that returns* True *if the word doesn't use any of the forbidden letters.*\n\n*Modify your program to prompt the user to enter a string of forbidden letters and then print the number of words that don't contain any of them. Can you find a combination of 5 forbidden letters that excludes the smallest number of words?*\n\n**Exercise 9.4.** *Write a function named* uses_only *that takes a word and a string of letters, and that returns* True *if the word contains only letters in the list. Can you make a sentence using only the letters* acefhlo*? Other than \"Hoe alfalfa?\"*\n\n**Exercise 9.5.** *Write a function named* uses_all *that takes a word and a string of required letters, and that returns* True *if the word uses all the required letters at least once. How many words are there that use all the vowels* aeiou*? How about* aeiouy*?*\n\n**Exercise 9.6.** *Write a function called* is_abecedarian *that returns* True *if the letters in a word appear in alphabetical order (double letters are ok). How many abecedarian words are there?*\n\n### <span id=\"page-103-1\"></span>**9.3 Search**\n\nAll of the exercises in the previous section have something in common; they can be solved with the search pattern we saw in Section [8.6.](#page-95-1) The simplest example is:\n\n```\ndef has_no_e(word):\n    for letter in word:\n        if letter == 'e':\n            return False\n    return True\n```\nThe for loop traverses the characters in word. If we find the letter \"e\", we can immediately return False; otherwise we have to go to the next letter. If we exit the loop normally, that means we didn't find an \"e\", so we return True.\n\navoids is a more general version of has_no_e but it has the same structure:\n\nWe can return False as soon as we find a forbidden letter; if we get to the end of the loop, we return True.\n\nuses_only is similar except that the sense of the condition is reversed:\n\n```\ndef uses_only(word, available):\n    for letter in word:\n        if letter not in available:\n            return False\n    return True\n```\nInstead of a list of forbidden letters, we have a list of available letters. If we find a letter in word that is not in available, we can return False.\n\nuses_all is similar except that we reverse the role of the word and the string of letters:\n\n```\ndef uses_all(word, required):\n    for letter in required:\n        if letter not in word:\n            return False\n    return True\n```\nInstead of traversing the letters in word, the loop traverses the required letters. If any of the required letters do not appear in the word, we can return False.\n\nIf you were really thinking like a computer scientist, you would have recognized that uses_all was an instance of a previously-solved problem, and you would have written:\n\n```\ndef uses_all(word, required):\n    return uses_only(required, word)\n```\nThis is an example of a program development method called **problem recognition**, which means that you recognize the problem you are working on as an instance of a previouslysolved problem, and apply a previously-developed solution.\n\n#### <span id=\"page-104-0\"></span>**9.4 Looping with indices**\n\nI wrote the functions in the previous section with for loops because I only needed the characters in the strings; I didn't have to do anything with the indices.\n\nFor is_abecedarian we have to compare adjacent letters, which is a little tricky with a for loop:\n\n```\ndef is_abecedarian(word):\n    previous = word[0]\n    for c in word:\n        if c < previous:\n            return False\n        previous = c\n    return True\n```\nAn alternative is to use recursion:\n\n```\ndef is_abecedarian(word):\n    if len(word) <= 1:\n        return True\n    if word[0] > word[1]:\n        return False\n    return is_abecedarian(word[1:])\n```\nAnother option is to use a while loop:\n\n```\ndef is_abecedarian(word):\n    i = 0\n    while i < len(word)-1:\n        if word[i+1] < word[i]:\n            return False\n        i = i+1\n    return True\n```\nThe loop starts at i=0 and ends when i=len(word)-1. Each time through the loop, it compares the *i*th character (which you can think of as the current character) to the *i* + 1th character (which you can think of as the next).\n\nIf the next character is less than (alphabetically before) the current one, then we have discovered a break in the abecedarian trend, and we return False.\n\nIf we get to the end of the loop without finding a fault, then the word passes the test. To convince yourself that the loop ends correctly, consider an example like 'flossy'. The length of the word is 6, so the last time the loop runs is when i is 4, which is the index of the second-to-last character. On the last iteration, it compares the second-to-last character to the last, which is what we want.\n\nHere is a version of is_palindrome (see Exercise [6.6)](#page-82-0) that uses two indices; one starts at the beginning and goes up; the other starts at the end and goes down.\n\n```\ndef is_palindrome(word):\n    i = 0\n    j = len(word)-1\n    while i<j:\n        if word[i] != word[j]:\n            return False\n        i = i+1\n        j = j-1\n    return True\n```\nOr, if you noticed that this is an instance of a previously-solved problem, you might have written:\n\n```\ndef is_palindrome(word):\n    return is_reverse(word, word)\n```\nAssuming you did Exercise [8.9.](#page-99-2)\n\n#### <span id=\"page-106-0\"></span>**9.5 Debugging**\n\nTesting programs is hard. The functions in this chapter are relatively easy to test because you can check the results by hand. Even so, it is somewhere between difficult and impossible to choose a set of words that test for all possible errors.\n\nTaking has_no_e as an example, there are two obvious cases to check: words that have an 'e' should return False; words that don't should return True. You should have no trouble coming up with one of each.\n\nWithin each case, there are some less obvious subcases. Among the words that have an “e,” you should test words with an “e” at the beginning, the end, and somewhere in the middle. You should test long words, short words, and very short words, like the empty string. The empty string is an example of a **special case**, which is one of the non-obvious cases where errors often lurk.\n\nIn addition to the test cases you generate, you can also test your program with a word list like words.txt. By scanning the output, you might be able to catch errors, but be careful: you might catch one kind of error (words that should not be included, but are) and not another (words that should be included, but aren't).\n\nIn general, testing can help you find bugs, but it is not easy to generate a good set of test cases, and even if you do, you can't be sure your program is correct.\n\nAccording to a legendary computer scientist:\n\nProgram testing can be used to show the presence of bugs, but never to show their absence!\n\n— Edsger W. Dijkstra\n\n#### <span id=\"page-106-1\"></span>**9.6 Glossary**\n\n**file object:** A value that represents an open file.\n\n- **problem recognition:** A way of solving a problem by expressing it as an instance of a previously-solved problem.\n- **special case:** A test case that is atypical or non-obvious (and less likely to be handled correctly).\n\n#### <span id=\"page-107-0\"></span>**9.7 Exercises**\n\n**Exercise 9.7.** *This question is based on a Puzzler that was broadcast on the radio program* Car Talk *(*[http: // www. cartalk. com/ content/ puzzlers](http://www.cartalk.com/content/puzzlers) *):*\n\n*Give me a word with three consecutive double letters. I'll give you a couple of words that almost qualify, but don't. For example, the word committee, c-o-m-m-i-t-t-e-e. It would be great except for the 'i' that sneaks in there. Or Mississippi: M-i-s-s-i-s-s-ip-p-i. If you could take out those i's it would work. But there is a word that has three consecutive pairs of letters and to the best of my knowledge this may be the only word. Of course there are probably 500 more but I can only think of one. What is the word?*\n\n*Write a program to find it. Solution:* [http: // thinkpython. com/ code/ cartalk1. py](http://thinkpython.com/code/cartalk1.py) *.* **Exercise 9.8.** *Here's another* Car Talk *Puzzler (*[http: // www. cartalk. com/ content/](http://www.cartalk.com/content/puzzlers) [puzzlers](http://www.cartalk.com/content/puzzlers) *):*\n\n*\"I was driving on the highway the other day and I happened to notice my odometer. Like most odometers, it shows six digits, in whole miles only. So, if my car had 300,000 miles, for example, I'd see 3-0-0-0-0-0.*\n\n*\"Now, what I saw that day was very interesting. I noticed that the last 4 digits were palindromic; that is, they read the same forward as backward. For example, 5-4-4-5 is a palindrome, so my odometer could have read 3-1-5-4-4-5.*\n\n*\"One mile later, the last 5 numbers were palindromic. For example, it could have read 3-6-5-4-5-6. One mile after that, the middle 4 out of 6 numbers were palindromic. And you ready for this? One mile later, all 6 were palindromic!*\n\n*\"The question is, what was on the odometer when I first looked?\"*\n\n*Write a Python program that tests all the six-digit numbers and prints any numbers that satisfy these requirements. Solution:* [http: // thinkpython. com/ code/ cartalk2. py](http://thinkpython.com/code/cartalk2.py) *.* **Exercise 9.9.** *Here's another* Car Talk *Puzzler you can solve with a search (*[http: // www.](http://www.cartalk.com/content/puzzlers) [cartalk. com/ content/ puzzlers](http://www.cartalk.com/content/puzzlers) *):*\n\n*\"Recently I had a visit with my mom and we realized that the two digits that make up my age when reversed resulted in her age. For example, if she's 73, I'm 37. We wondered how often this has happened over the years but we got sidetracked with other topics and we never came up with an answer.*\n\n*\"When I got home I figured out that the digits of our ages have been reversible six times so far. I also figured out that if we're lucky it would happen again in a few years, and if we're really lucky it would happen one more time after that. In other words, it would have happened 8 times over all. So the question is, how old am I now?\"*\n\n*Write a Python program that searches for solutions to this Puzzler. Hint: you might find the string method* zfill *useful.*\n\n*Solution:* [http: // thinkpython. com/ code/ cartalk3. py](http://thinkpython.com/code/cartalk3.py) *.*\n\n# <span id=\"page-108-0\"></span>**Chapter 10**\n\n# **Lists**\n\n#### <span id=\"page-108-1\"></span>**10.1 A list is a sequence**\n\nLike a string, a **list** is a sequence of values. In a string, the values are characters; in a list, they can be any type. The values in a list are called **elements** or sometimes **items**.\n\nThere are several ways to create a new list; the simplest is to enclose the elements in square brackets ([ and ]):\n\n[10, 20, 30, 40]\n\n['crunchy frog', 'ram bladder', 'lark vomit']\n\nThe first example is a list of four integers. The second is a list of three strings. The elements of a list don't have to be the same type. The following list contains a string, a float, an integer, and (lo!) another list:\n\n['spam', 2.0, 5, [10, 20]]\n\nA list within another list is **nested**.\n\nA list that contains no elements is called an empty list; you can create one with empty brackets, [].\n\nAs you might expect, you can assign list values to variables:\n\n```\n>>> cheeses = ['Cheddar', 'Edam', 'Gouda']\n>>> numbers = [17, 123]\n>>> empty = []\n>>> print cheeses, numbers, empty\n['Cheddar', 'Edam', 'Gouda'] [17, 123] []\n```\n#### <span id=\"page-108-2\"></span>**10.2 Lists are mutable**\n\nThe syntax for accessing the elements of a list is the same as for accessing the characters of a string—the bracket operator. The expression inside the brackets specifies the index. Remember that the indices start at 0:\n\n```\n>>> print cheeses[0]\nCheddar\n```\n![](_page_109_Figure_1.jpeg)\n\n<span id=\"page-109-0\"></span>Figure 10.1: State diagram.\n\nUnlike strings, lists are mutable. When the bracket operator appears on the left side of an assignment, it identifies the element of the list that will be assigned.\n\n```\n>>> numbers = [17, 123]\n>>> numbers[1] = 5\n>>> print numbers\n[17, 5]\n```\nThe one-eth element of numbers, which used to be 123, is now 5.\n\nYou can think of a list as a relationship between indices and elements. This relationship is called a **mapping**; each index \"maps to\" one of the elements. Figure [10.1](#page-109-0) shows the state diagram for cheeses, numbers and empty:\n\nLists are represented by boxes with the word \"list\" outside and the elements of the list inside. cheeses refers to a list with three elements indexed 0, 1 and 2. numbers contains two elements; the diagram shows that the value of the second element has been reassigned from 123 to 5. empty refers to a list with no elements.\n\nList indices work the same way as string indices:\n\n- Any integer expression can be used as an index.\n- If you try to read or write an element that does not exist, you get an IndexError.\n- If an index has a negative value, it counts backward from the end of the list.\n\nThe in operator also works on lists.\n\n```\n>>> cheeses = ['Cheddar', 'Edam', 'Gouda']\n>>> 'Edam' in cheeses\nTrue\n>>> 'Brie' in cheeses\nFalse\n```\n#### <span id=\"page-110-0\"></span>**10.3 Traversing a list**\n\nThe most common way to traverse the elements of a list is with a for loop. The syntax is the same as for strings:\n\nfor cheese in cheeses: print cheese\n\nThis works well if you only need to read the elements of the list. But if you want to write or update the elements, you need the indices. A common way to do that is to combine the functions range and len:\n\n```\nfor i in range(len(numbers)):\n    numbers[i] = numbers[i] * 2\n```\nThis loop traverses the list and updates each element. len returns the number of elements in the list. range returns a list of indices from 0 to *n* − 1, where *n* is the length of the list. Each time through the loop i gets the index of the next element. The assignment statement in the body uses i to read the old value of the element and to assign the new value.\n\nA for loop over an empty list never executes the body:\n\n```\nfor x in []:\n    print 'This never happens.'\n```\nAlthough a list can contain another list, the nested list still counts as a single element. The length of this list is four:\n\n```\n['spam', 1, ['Brie', 'Roquefort', 'Pol le Veq'], [1, 2, 3]]\n```\n#### <span id=\"page-110-1\"></span>**10.4 List operations**\n\nThe + operator concatenates lists:\n\nSimilarly, the * operator repeats a list a given number of times:\n\n>>> [0] * 4 [0, 0, 0, 0] >>> [1, 2, 3] * 3 [1, 2, 3, 1, 2, 3, 1, 2, 3]\n\nThe first example repeats [0] four times. The second example repeats the list [1, 2, 3] three times.\n\n#### <span id=\"page-110-2\"></span>**10.5 List slices**\n\nThe slice operator also works on lists:\n\n```\n>>> t = ['a', 'b', 'c', 'd', 'e', 'f']\n>>> t[1:3]\n['b', 'c']\n>>> t[:4]\n['a', 'b', 'c', 'd']\n>>> t[3:]\n['d', 'e', 'f']\n```\nIf you omit the first index, the slice starts at the beginning. If you omit the second, the slice goes to the end. So if you omit both, the slice is a copy of the whole list.\n\n```\n>>> t[:]\n['a', 'b', 'c', 'd', 'e', 'f']\n```\nSince lists are mutable, it is often useful to make a copy before performing operations that fold, spindle or mutilate lists.\n\nA slice operator on the left side of an assignment can update multiple elements:\n\n```\n>>> t = ['a', 'b', 'c', 'd', 'e', 'f']\n>>> t[1:3] = ['x', 'y']\n>>> print t\n['a', 'x', 'y', 'd', 'e', 'f']\n```\n#### <span id=\"page-111-0\"></span>**10.6 List methods**\n\nPython provides methods that operate on lists. For example, append adds a new element to the end of a list:\n\n```\n>>> t = ['a', 'b', 'c']\n>>> t.append('d')\n>>> print t\n['a', 'b', 'c', 'd']\n```\nextend takes a list as an argument and appends all of the elements:\n\n```\n>>> t1 = ['a', 'b', 'c']\n>>> t2 = ['d', 'e']\n>>> t1.extend(t2)\n>>> print t1\n['a', 'b', 'c', 'd', 'e']\n```\nThis example leaves t2 unmodified.\n\nsort arranges the elements of the list from low to high:\n\n```\n>>> t = ['d', 'c', 'e', 'b', 'a']\n>>> t.sort()\n>>> print t\n['a', 'b', 'c', 'd', 'e']\n```\nList methods are all void; they modify the list and return None. If you accidentally write t = t.sort(), you will be disappointed with the result.\n\n#### <span id=\"page-112-0\"></span>**10.7 Map, filter and reduce**\n\nTo add up all the numbers in a list, you can use a loop like this:\n\n```\ndef add_all(t):\n    total = 0\n    for x in t:\n        total += x\n    return total\n```\ntotal is initialized to 0. Each time through the loop, x gets one element from the list. The += operator provides a short way to update a variable. This **augmented assignment statement**:\n\ntotal += x\n\nis equivalent to:\n\ntotal = total + x\n\nAs the loop executes, total accumulates the sum of the elements; a variable used this way is sometimes called an **accumulator**.\n\nAdding up the elements of a list is such a common operation that Python provides it as a built-in function, sum:\n\n```\n>>> t = [1, 2, 3]\n>>> sum(t)\n6\n```\nAn operation like this that combines a sequence of elements into a single value is sometimes called **reduce**.\n\n**Exercise 10.1.** *Write a function called* nested_sum *that takes a nested list of integers and add up the elements from all of the nested lists.*\n\nSometimes you want to traverse one list while building another. For example, the following function takes a list of strings and returns a new list that contains capitalized strings:\n\n```\ndef capitalize_all(t):\n    res = []\n    for s in t:\n        res.append(s.capitalize())\n    return res\n```\nres is initialized with an empty list; each time through the loop, we append the next element. So res is another kind of accumulator.\n\nAn operation like capitalize_all is sometimes called a **map** because it \"maps\" a function (in this case the method capitalize) onto each of the elements in a sequence.\n\n**Exercise 10.2.** *Use* capitalize_all *to write a function named* capitalize_nested *that takes a nested list of strings and returns a new nested list with all strings capitalized.*\n\nAnother common operation is to select some of the elements from a list and return a sublist. For example, the following function takes a list of strings and returns a list that contains only the uppercase strings:\n\n```\ndef only_upper(t):\n    res = []\n    for s in t:\n```\n\n```\nif s.isupper():\n        res.append(s)\nreturn res\n```\nisupper is a string method that returns True if the string contains only upper case letters.\n\nAn operation like only_upper is called a **filter** because it selects some of the elements and filters out the others.\n\nMost common list operations can be expressed as a combination of map, filter and reduce. Because these operations are so common, Python provides language features to support them, including the built-in function map and an operator called a \"list comprehension.\" **Exercise 10.3.** *Write a function that takes a list of numbers and returns the cumulative sum; that*\n\n<span id=\"page-113-1\"></span>*is, a new list where the ith element is the sum of the first i* + 1 *elements from the original list. For example, the cumulative sum of* [1, 2, 3] *is* [1, 3, 6]*.*\n\n#### <span id=\"page-113-0\"></span>**10.8 Deleting elements**\n\nThere are several ways to delete elements from a list. If you know the index of the element you want, you can use pop:\n\n```\n>>> t = ['a', 'b', 'c']\n>>> x = t.pop(1)\n>>> print t\n['a', 'c']\n>>> print x\nb\n```\npop modifies the list and returns the element that was removed. If you don't provide an index, it deletes and returns the last element.\n\nIf you don't need the removed value, you can use the del operator:\n\n>>> t = ['a', 'b', 'c'] >>> del t[1] >>> print t ['a', 'c']\n\nIf you know the element you want to remove (but not the index), you can use remove:\n\n```\n>>> t = ['a', 'b', 'c']\n>>> t.remove('b')\n>>> print t\n['a', 'c']\n```\nThe return value from remove is None.\n\nTo remove more than one element, you can use del with a slice index:\n\n```\n>>> t = ['a', 'b', 'c', 'd', 'e', 'f']\n>>> del t[1:5]\n>>> print t\n['a', 'f']\n```\nAs usual, the slice selects all the elements up to, but not including, the second index. **Exercise 10.4.** *Write a function called* middle *that takes a list and returns a new list that contains* all but the first and last elements. So middle([1,2,3,4]) should return [2,3].\n\n**Exercise 10.5.** *Write a function called* chop *that takes a list, modifies it by removing the first and last elements, and returns* None*.*\n\n#### <span id=\"page-114-0\"></span>**10.9 Lists and strings**\n\nA string is a sequence of characters and a list is a sequence of values, but a list of characters is not the same as a string. To convert from a string to a list of characters, you can use list:\n\n```\n>>> s = 'spam'\n>>> t = list(s)\n>>> print t\n['s', 'p', 'a', 'm']\n```\nBecause list is the name of a built-in function, you should avoid using it as a variable name. I also avoid l because it looks too much like 1. So that's why I use t.\n\nThe list function breaks a string into individual letters. If you want to break a string into words, you can use the split method:\n\n```\n>>> s = 'pining for the fjords'\n>>> t = s.split()\n>>> print t\n['pining', 'for', 'the', 'fjords']\n```\nAn optional argument called a **delimiter** specifies which characters to use as word boundaries. The following example uses a hyphen as a delimiter:\n\n```\n>>> s = 'spam-spam-spam'\n>>> delimiter = '-'\n>>> s.split(delimiter)\n['spam', 'spam', 'spam']\n```\njoin is the inverse of split. It takes a list of strings and concatenates the elements. join is a string method, so you have to invoke it on the delimiter and pass the list as a parameter:\n\n```\n>>> t = ['pining', 'for', 'the', 'fjords']\n>>> delimiter = ' '\n>>> delimiter.join(t)\n'pining for the fjords'\n```\nIn this case the delimiter is a space character, so join puts a space between words. To concatenate strings without spaces, you can use the empty string, '', as a delimiter.\n\n#### <span id=\"page-114-1\"></span>**10.10 Objects and values**\n\nIf we execute these assignment statements:\n\n```\na = 'banana'\nb = 'banana'\n```\nWe know that a and b both refer to a string, but we don't know whether they refer to the *same* string. There are two possible states, shown in Figure [10.2.](#page-115-1)\n\nIn one case, a and b refer to two different objects that have the same value. In the second case, they refer to the same object.\n\nTo check whether two variables refer to the same object, you can use the is operator.\n\n![](_page_115_Figure_1.jpeg)\n\nFigure 10.2: State diagram.\n\n<span id=\"page-115-1\"></span>\n\n| a → | [ 1, 2, 3 ] |\n|-----|-------------|\n| b → | [ 1, 2, 3 ] |\n\n<span id=\"page-115-2\"></span>Figure 10.3: State diagram.\n\n```\n>>> a = 'banana'\n>>> b = 'banana'\n>>> a is b\nTrue\n```\nIn this example, Python only created one string object, and both a and b refer to it.\n\nBut when you create two lists, you get two objects:\n\n>>> a = [1, 2, 3] >>> b = [1, 2, 3] >>> a is b False\n\nSo the state diagram looks like Figure [10.3.](#page-115-2)\n\nIn this case we would say that the two lists are **equivalent**, because they have the same elements, but not **identical**, because they are not the same object. If two objects are identical, they are also equivalent, but if they are equivalent, they are not necessarily identical.\n\nUntil now, we have been using \"object\" and \"value\" interchangeably, but it is more precise to say that an object has a value. If you execute [1,2,3], you get a list object whose value is a sequence of integers. If another list has the same elements, we say it has the same value, but it is not the same object.\n\n#### <span id=\"page-115-0\"></span>**10.11 Aliasing**\n\nIf a refers to an object and you assign b = a, then both variables refer to the same object:\n\n```\n>>> a = [1, 2, 3]\n>>> b = a\n>>> b is a\nTrue\n```\nThe state diagram looks like Figure [10.4.](#page-116-1)\n\nThe association of a variable with an object is called a **reference**. In this example, there are two references to the same object.\n\nAn object with more than one reference has more than one name, so we say that the object is **aliased**.\n\nIf the aliased object is mutable, changes made with one alias affect the other:\n\n<span id=\"page-116-1\"></span>\n$$\\sum_{\\mathfrak{a} \\preccurlyeq \\mathfrak{b}} [1, 2, 3]$$\n\nFigure 10.4: State diagram.\n\n![](_page_116_Figure_3.jpeg)\n\n<span id=\"page-116-2\"></span>Figure 10.5: Stack diagram.\n\n>>> b[0] = 17 >>> print a [17, 2, 3]\n\nAlthough this behavior can be useful, it is error-prone. In general, it is safer to avoid aliasing when you are working with mutable objects.\n\nFor immutable objects like strings, aliasing is not as much of a problem. In this example:\n\na = 'banana' b = 'banana'\n\nIt almost never makes a difference whether a and b refer to the same string or not.\n\n#### <span id=\"page-116-0\"></span>**10.12 List arguments**\n\nWhen you pass a list to a function, the function gets a reference to the list. If the function modifies a list parameter, the caller sees the change. For example, delete_head removes the first element from a list:\n\n```\ndef delete_head(t):\n    del t[0]\n```\nHere's how it is used:\n\n```\n>>> letters = ['a', 'b', 'c']\n>>> delete_head(letters)\n>>> print letters\n['b', 'c']\n```\nThe parameter t and the variable letters are aliases for the same object. The stack diagram looks like Figure [10.5.](#page-116-2)\n\nSince the list is shared by two frames, I drew it between them.\n\nIt is important to distinguish between operations that modify lists and operations that create new lists. For example, the append method modifies a list, but the + operator creates a new list:\n\n>>> t1 = [1, 2] >>> t2 = t1.append(3)\n\n```\n>>> print t1\n[1, 2, 3]\n>>> print t2\nNone\n>>> t3 = t1 + [4]\n>>> print t3\n[1, 2, 3, 4]\n```\nThis difference is important when you write functions that are supposed to modify lists. For example, this function *does not* delete the head of a list:\n\ndef bad_delete_head(t): t = t[1:] # WRONG!\n\nThe slice operator creates a new list and the assignment makes t refer to it, but none of that has any effect on the list that was passed as an argument.\n\nAn alternative is to write a function that creates and returns a new list. For example, tail returns all but the first element of a list:\n\n```\ndef tail(t):\n    return t[1:]\n```\nThis function leaves the original list unmodified. Here's how it is used:\n\n```\n>>> letters = ['a', 'b', 'c']\n>>> rest = tail(letters)\n>>> print rest\n['b', 'c']\n```\n#### <span id=\"page-117-0\"></span>**10.13 Debugging**\n\nCareless use of lists (and other mutable objects) can lead to long hours of debugging. Here are some common pitfalls and ways to avoid them:\n\n- 1. Don't forget that most list methods modify the argument and return None. This is the opposite of the string methods, which return a new string and leave the original alone.\nIf you are used to writing string code like this:\n\nword = word.strip()\n\nIt is tempting to write list code like this:\n\nt = t.sort() # WRONG!\n\nBecause sort returns None, the next operation you perform with t is likely to fail.\n\nBefore using list methods and operators, you should read the documentation carefully and then test them in interactive mode. The methods and operators that lists share with other sequences (like strings) are documented at [http://docs.python.](http://docs.python.org/2/library/stdtypes.html#typesseq) [org/2/library/stdtypes.html#typesseq](http://docs.python.org/2/library/stdtypes.html#typesseq). The methods and operators that only apply to mutable sequences are documented at [http://docs.python.org/2/library/](http://docs.python.org/2/library/stdtypes.html#typesseq-mutable) [stdtypes.html#typesseq-mutable](http://docs.python.org/2/library/stdtypes.html#typesseq-mutable).\n\n- 2. Pick an idiom and stick with it.\nPart of the problem with lists is that there are too many ways to do things. For example, to remove an element from a list, you can use pop, remove, del, or even a slice assignment.\n\nTo add an element, you can use the append method or the + operator. Assuming that t is a list and x is a list element, these are right:\n\nt.append(x) t = t + [x]\n\nAnd these are wrong:\n\n| t.append([x])   | # WRONG! |\n|-----------------|----------|\n| t = t.append(x) | # WRONG! |\n| t + [x]         | # WRONG! |\n| t = t + x       | # WRONG! |\n\nTry out each of these examples in interactive mode to make sure you understand what they do. Notice that only the last one causes a runtime error; the other three are legal, but they do the wrong thing.\n\n- 3. Make copies to avoid aliasing.\nIf you want to use a method like sort that modifies the argument, but you need to keep the original list as well, you can make a copy.\n\norig = t[:] t.sort()\n\nIn this example you could also use the built-in function sorted, which returns a new, sorted list and leaves the original alone. But in that case you should avoid using sorted as a variable name!\n\n#### <span id=\"page-118-0\"></span>**10.14 Glossary**\n\n**list:** A sequence of values.\n\n**element:** One of the values in a list (or other sequence), also called items.\n\n**index:** An integer value that indicates an element in a list.\n\n**nested list:** A list that is an element of another list.\n\n**list traversal:** The sequential accessing of each element in a list.\n\n- **mapping:** A relationship in which each element of one set corresponds to an element of another set. For example, a list is a mapping from indices to elements.\n- **accumulator:** A variable used in a loop to add up or accumulate a result.\n- **augmented assignment:** A statement that updates the value of a variable using an operator like +=.\n- **reduce:** A processing pattern that traverses a sequence and accumulates the elements into a single result.\n- **map:** A processing pattern that traverses a sequence and performs an operation on each element.\n- **filter:** A processing pattern that traverses a list and selects the elements that satisfy some criterion.\n- **object:** Something a variable can refer to. An object has a type and a value.\n- **equivalent:** Having the same value.\n\n**identical:** Being the same object (which implies equivalence).\n\n**reference:** The association between a variable and its value.\n\n**aliasing:** A circumstance where two or more variables refer to the same object.\n\n**delimiter:** A character or string used to indicate where a string should be split.\n\n#### <span id=\"page-119-0\"></span>**10.15 Exercises**\n\n**Exercise 10.6.** *Write a function called* is_sorted *that takes a list as a parameter and returns* True *if the list is sorted in ascending order and* False *otherwise. You can assume (as a precondition) that the elements of the list can be compared with the relational operators* <*,* >*, etc.*\n\n*For example,* is_sorted([1,2,2]) *should return* True *and* is_sorted(['b','a']) *should return* False*.*\n\n<span id=\"page-119-2\"></span>**Exercise 10.7.** *Two words are anagrams if you can rearrange the letters from one to spell the other. Write a function called* is_anagram *that takes two strings and returns* True *if they are anagrams.* **Exercise 10.8.** *The (so-called) Birthday Paradox:*\n\n- *1. Write a function called* has_duplicates *that takes a list and returns* True *if there is any element that appears more than once. It should not modify the original list.*\n- *2. If there are 23 students in your class, what are the chances that two of you have the same birthday? You can estimate this probability by generating random samples of 23 birthdays and checking for matches. Hint: you can generate random birthdays with the* randint *function in the* random *module.*\n\n*You can read about this problem at* [http: // en. wikipedia. org/ wiki/ Birthday_ paradox](http://en.wikipedia.org/wiki/Birthday_paradox) *, and you can download my solution from* [http: // thinkpython. com/ code/ birthday. py](http://thinkpython.com/code/birthday.py) *.* **Exercise 10.9.** *Write a function called* remove_duplicates *that takes a list and returns a new list with only the unique elements from the original. Hint: they don't have to be in the same order.* **Exercise 10.10.** *Write a function that reads the file* words.txt *and builds a list with one element per word. Write two versions of this function, one using the* append *method and the other using the idiom* t = t + [x]*. Which one takes longer to run? Why?*\n\n*Hint: use the* time *module to measure elapsed time. Solution:* [http: // thinkpython. com/](http://thinkpython.com/code/wordlist.py) [code/ wordlist. py](http://thinkpython.com/code/wordlist.py) *.*\n\n<span id=\"page-119-1\"></span>**Exercise 10.11.** *To check whether a word is in the word list, you could use the* in *operator, but it would be slow because it searches through the words in order.*\n\n*Because the words are in alphabetical order, we can speed things up with a bisection search (also known as binary search), which is similar to what you do when you look a word up in the dictionary.* *You start in the middle and check to see whether the word you are looking for comes before the word in the middle of the list. If so, then you search the first half of the list the same way. Otherwise you search the second half.*\n\n*Either way, you cut the remaining search space in half. If the word list has 113,809 words, it will take about 17 steps to find the word or conclude that it's not there.*\n\n*Write a function called* bisect *that takes a sorted list and a target value and returns the index of the value in the list, if it's there, or* None *if it's not.*\n\n*Or you could read the documentation of the* bisect *module and use that! Solution:* [http: //](http://thinkpython.com/code/inlist.py) [thinkpython. com/ code/ inlist. py](http://thinkpython.com/code/inlist.py) *.*\n\n**Exercise 10.12.** *Two words are a \"reverse pair\" if each is the reverse of the other. Write a program that finds all the reverse pairs in the word list. Solution:* [http: // thinkpython. com/ code/](http://thinkpython.com/code/reverse_pair.py) [reverse_ pair. py](http://thinkpython.com/code/reverse_pair.py) *.*\n\n**Exercise 10.13.** *Two words \"interlock\" if taking alternating letters from each forms a new word. For example, \"shoe\" and \"cold\" interlock to form \"schooled.\" Solution:* [http: //](http://thinkpython.com/code/interlock.py) [thinkpython. com/ code/ interlock. py](http://thinkpython.com/code/interlock.py) *. Credit: This exercise is inspired by an example at* [http: // puzzlers. org](http://puzzlers.org) *.*\n\n- *1. Write a program that finds all pairs of words that interlock. Hint: don't enumerate all pairs!*\n- *2. Can you find any words that are three-way interlocked; that is, every third letter forms a word, starting from the first, second or third?*\n\n# <span id=\"page-122-0\"></span>**Chapter 11**\n\n# **Dictionaries**\n\nA **dictionary** is like a list, but more general. In a list, the indices have to be integers; in a dictionary they can be (almost) any type.\n\nYou can think of a dictionary as a mapping between a set of indices (which are called **keys**) and a set of values. Each key maps to a value. The association of a key and a value is called a **key-value pair** or sometimes an **item**.\n\nAs an example, we'll build a dictionary that maps from English to Spanish words, so the keys and the values are all strings.\n\nThe function dict creates a new dictionary with no items. Because dict is the name of a built-in function, you should avoid using it as a variable name.\n\n```\n>>> eng2sp = dict()\n>>> print eng2sp\n{}\n```\nThe squiggly-brackets, {}, represent an empty dictionary. To add items to the dictionary, you can use square brackets:\n\n```\n>>> eng2sp['one'] = 'uno'\n```\nThis line creates an item that maps from the key 'one' to the value 'uno'. If we print the dictionary again, we see a key-value pair with a colon between the key and value:\n\n```\n>>> print eng2sp\n{'one': 'uno'}\n```\nThis output format is also an input format. For example, you can create a new dictionary with three items:\n\n```\n>>> eng2sp = {'one': 'uno', 'two': 'dos', 'three': 'tres'}\n```\nBut if you print eng2sp, you might be surprised:\n\n```\n>>> print eng2sp\n{'one': 'uno', 'three': 'tres', 'two': 'dos'}\n```\nThe order of the key-value pairs is not the same. In fact, if you type the same example on your computer, you might get a different result. In general, the order of items in a dictionary is unpredictable.\n\nBut that's not a problem because the elements of a dictionary are never indexed with integer indices. Instead, you use the keys to look up the corresponding values:\n\n```\n>>> print eng2sp['two']\n'dos'\n```\nThe key 'two' always maps to the value 'dos' so the order of the items doesn't matter.\n\nIf the key isn't in the dictionary, you get an exception:\n\n```\n>>> print eng2sp['four']\nKeyError: 'four'\n```\nThe len function works on dictionaries; it returns the number of key-value pairs:\n\n```\n>>> len(eng2sp)\n3\n```\nThe in operator works on dictionaries; it tells you whether something appears as a *key* in the dictionary (appearing as a value is not good enough).\n\n```\n>>> 'one' in eng2sp\nTrue\n>>> 'uno' in eng2sp\nFalse\n```\nTo see whether something appears as a value in a dictionary, you can use the method values, which returns the values as a list, and then use the in operator:\n\n```\n>>> vals = eng2sp.values()\n>>> 'uno' in vals\nTrue\n```\nThe in operator uses different algorithms for lists and dictionaries. For lists, it uses a search algorithm, as in Section [8.6.](#page-95-1) As the list gets longer, the search time gets longer in direct proportion. For dictionaries, Python uses an algorithm called a **hashtable** that has a remarkable property: the in operator takes about the same amount of time no matter how many items there are in a dictionary. I won't explain how that's possible, but you can read more about it at <http://en.wikipedia.org/wiki/Hash_table>.\n\n<span id=\"page-123-1\"></span>**Exercise 11.1.** *Write a function that reads the words in* words.txt *and stores them as keys in a dictionary. It doesn't matter what the values are. Then you can use the* in *operator as a fast way to check whether a string is in the dictionary.*\n\n*If you did Exercise [10.11,](#page-119-1) you can compare the speed of this implementation with the list* in *operator and the bisection search.*\n\n#### <span id=\"page-123-0\"></span>**11.1 Dictionary as a set of counters**\n\nSuppose you are given a string and you want to count how many times each letter appears. There are several ways you could do it:\n\n- 1. You could create 26 variables, one for each letter of the alphabet. Then you could traverse the string and, for each character, increment the corresponding counter, probably using a chained conditional.\n- 2. You could create a list with 26 elements. Then you could convert each character to a number (using the built-in function ord), use the number as an index into the list, and increment the appropriate counter.\n\n- 3. You could create a dictionary with characters as keys and counters as the corresponding values. The first time you see a character, you would add an item to the dictionary. After that you would increment the value of an existing item.\nEach of these options performs the same computation, but each of them implements that computation in a different way.\n\nAn **implementation** is a way of performing a computation; some implementations are better than others. For example, an advantage of the dictionary implementation is that we don't have to know ahead of time which letters appear in the string and we only have to make room for the letters that do appear.\n\nHere is what the code might look like:\n\n```\ndef histogram(s):\n    d = dict()\n    for c in s:\n        if c not in d:\n             d[c] = 1\n        else:\n             d[c] += 1\n    return d\n```\nThe name of the function is **histogram**, which is a statistical term for a set of counters (or frequencies).\n\nThe first line of the function creates an empty dictionary. The for loop traverses the string. Each time through the loop, if the character c is not in the dictionary, we create a new item with key c and the initial value 1 (since we have seen this letter once). If c is already in the dictionary we increment d[c].\n\nHere's how it works:\n\n```\n>>> h = histogram('brontosaurus')\n>>> print h\n{'a': 1, 'b': 1, 'o': 2, 'n': 1, 's': 2, 'r': 2, 'u': 2, 't': 1}\n```\nThe histogram indicates that the letters 'a' and 'b' appear once; 'o' appears twice, and so on.\n\n**Exercise 11.2.** *Dictionaries have a method called* get *that takes a key and a default value. If the key appears in the dictionary,* get *returns the corresponding value; otherwise it returns the default value. For example:*\n\n```\n>>> h = histogram('a')\n>>> print h\n{'a': 1}\n>>> h.get('a', 0)\n1\n>>> h.get('b', 0)\n0\n```\n*Use* get *to write* histogram *more concisely. You should be able to eliminate the* if *statement.*\n\n#### <span id=\"page-124-0\"></span>**11.2 Looping and dictionaries**\n\nIf you use a dictionary in a for statement, it traverses the keys of the dictionary. For example, print_hist prints each key and the corresponding value:\n\ndef print_hist(h): for c in h: print c, h[c]\n\nHere's what the output looks like:\n\n```\n>>> h = histogram('parrot')\n>>> print_hist(h)\na 1\np 1\nr 2\nt 1\no 1\n```\nAgain, the keys are in no particular order.\n\n**Exercise 11.3.** *Dictionaries have a method called* keys *that returns the keys of the dictionary, in no particular order, as a list.*\n\n*Modify* print_hist *to print the keys and their values in alphabetical order.*\n\n#### <span id=\"page-125-0\"></span>**11.3 Reverse lookup**\n\nGiven a dictionary d and a key k, it is easy to find the corresponding value $v = d[k]$. This operation is called a **lookup**.\n\nBut what if you have v and you want to find k? You have two problems: first, there might be more than one key that maps to the value v. Depending on the application, you might be able to pick one, or you might have to make a list that contains all of them. Second, there is no simple syntax to do a **reverse lookup**; you have to search.\n\nHere is a function that takes a value and returns the first key that maps to that value:\n\n```\ndef reverse_lookup(d, v):\n    for k in d:\n        if d[k] == v:\n            return k\n    raise ValueError\n```\nThis function is yet another example of the search pattern, but it uses a feature we haven't seen before, raise. The raise statement causes an exception; in this case it causes a ValueError, which generally indicates that there is something wrong with the value of a parameter.\n\nIf we get to the end of the loop, that means v doesn't appear in the dictionary as a value, so we raise an exception.\n\nHere is an example of a successful reverse lookup:\n\n```\n>>> h = histogram('parrot')\n>>> k = reverse_lookup(h, 2)\n>>> print k\nr\n```\nAnd an unsuccessful one:\n\n```\n>>> k = reverse_lookup(h, 3)\nTraceback (most recent call last):\n  File \"<stdin>\", line 1, in ?\n  File \"<stdin>\", line 5, in reverse_lookup\nValueError\n```\nThe result when you raise an exception is the same as when Python raises one: it prints a traceback and an error message.\n\nThe raise statement takes a detailed error message as an optional argument. For example:\n\n>>> raise ValueError('value does not appear in the dictionary') Traceback (most recent call last): File \"<stdin>\", line 1, in ? ValueError: value does not appear in the dictionary\n\nA reverse lookup is much slower than a forward lookup; if you have to do it often, or if the dictionary gets big, the performance of your program will suffer.\n\n**Exercise 11.4.** *Modify* reverse_lookup *so that it builds and returns a list of* all *keys that map to* v*, or an empty list if there are none.*\n\n#### <span id=\"page-126-0\"></span>**11.4 Dictionaries and lists**\n\nLists can appear as values in a dictionary. For example, if you were given a dictionary that maps from letters to frequencies, you might want to invert it; that is, create a dictionary that maps from frequencies to letters. Since there might be several letters with the same frequency, each value in the inverted dictionary should be a list of letters.\n\nHere is a function that inverts a dictionary:\n\n```\ndef invert_dict(d):\n    inverse = dict()\n    for key in d:\n        val = d[key]\n        if val not in inverse:\n            inverse[val] = [key]\n        else:\n            inverse[val].append(key)\n    return inverse\n```\nEach time through the loop, key gets a key from d and val gets the corresponding value. If val is not in inverse, that means we haven't seen it before, so we create a new item and initialize it with a **singleton** (a list that contains a single element). Otherwise we have seen this value before, so we append the corresponding key to the list.\n\nHere is an example:\n\n```\n>>> hist = histogram('parrot')\n>>> print hist\n{'a': 1, 'p': 1, 'r': 2, 't': 1, 'o': 1}\n>>> inverse = invert_dict(hist)\n>>> print inverse\n{1: ['a', 'p', 't', 'o'], 2: ['r']}\n```\n![](_page_127_Figure_1.jpeg)\n\n<span id=\"page-127-1\"></span>Figure 11.1: State diagram.\n\nFigure [11.1](#page-127-1) is a state diagram showing hist and inverse. A dictionary is represented as a box with the type dict above it and the key-value pairs inside. If the values are integers, floats or strings, I usually draw them inside the box, but I usually draw lists outside the box, just to keep the diagram simple.\n\nLists can be values in a dictionary, as this example shows, but they cannot be keys. Here's what happens if you try:\n\n```\n>>> t = [1, 2, 3]\n>>> d = dict()\n>>> d[t] = 'oops'\nTraceback (most recent call last):\n  File \"<stdin>\", line 1, in ?\nTypeError: list objects are unhashable\n```\nI mentioned earlier that a dictionary is implemented using a hashtable and that means that the keys have to be **hashable**.\n\nA **hash** is a function that takes a value (of any kind) and returns an integer. Dictionaries use these integers, called hash values, to store and look up key-value pairs.\n\nThis system works fine if the keys are immutable. But if the keys are mutable, like lists, bad things happen. For example, when you create a key-value pair, Python hashes the key and stores it in the corresponding location. If you modify the key and then hash it again, it would go to a different location. In that case you might have two entries for the same key, or you might not be able to find a key. Either way, the dictionary wouldn't work correctly.\n\nThat's why the keys have to be hashable, and why mutable types like lists aren't. The simplest way to get around this limitation is to use tuples, which we will see in the next chapter.\n\nSince lists and dictionaries are mutable, they can't be used as keys, but they *can* be used as values.\n\n**Exercise 11.5.** *Read the documentation of the dictionary method* setdefault *and use it to write a more concise version of* invert_dict. *Solution:* [http://thinkpython.com/code/invert_](http://thinkpython.com/code/invert_dict.py) [dict. py](http://thinkpython.com/code/invert_dict.py) *.*\n\n#### <span id=\"page-127-0\"></span>**11.5 Memos**\n\nIf you played with the fibonacci function from Section [6.7,](#page-78-1) you might have noticed that the bigger the argument you provide, the longer the function takes to run. Furthermore,\n\n![](_page_128_Figure_1.jpeg)\n\n<span id=\"page-128-0\"></span>Figure 11.2: Call graph.\n\nthe run time increases very quickly.\n\nTo understand why, consider Figure [11.2,](#page-128-0) which shows the **call graph** for fibonacci with n=4:\n\nA call graph shows a set of function frames, with lines connecting each frame to the frames of the functions it calls. At the top of the graph, fibonacci with n=4 calls fibonacci with n=3 and n=2. In turn, fibonacci with n=3 calls fibonacci with n=2 and n=1. And so on.\n\nCount how many times fibonacci(0) and fibonacci(1) are called. This is an inefficient solution to the problem, and it gets worse as the argument gets bigger.\n\nOne solution is to keep track of values that have already been computed by storing them in a dictionary. A previously computed value that is stored for later use is called a **memo**. Here is a \"memoized\" version of fibonacci:\n\n```\nknown = {0:0, 1:1}\ndef fibonacci(n):\n    if n in known:\n        return known[n]\n    res = fibonacci(n-1) + fibonacci(n-2)\n    known[n] = res\n    return res\n```\nknown is a dictionary that keeps track of the Fibonacci numbers we already know. It starts with two items: 0 maps to 0 and 1 maps to 1.\n\nWhenever fibonacci is called, it checks known. If the result is already there, it can return immediately. Otherwise it has to compute the new value, add it to the dictionary, and return it.\n\n**Exercise 11.6.** *Run this version of* fibonacci *and the original with a range of parameters and compare their run times.*\n\n**Exercise 11.7.** *Memoize the Ackermann function from Exercise [6.5](#page-82-1) and see if memoization makes it possible to evaluate the function with bigger arguments. Hint: no. Solution:* [http:](http://thinkpython.com/code/ackermann_memo.py) [// thinkpython. com/ code/ ackermann_ memo. py](http://thinkpython.com/code/ackermann_memo.py) *.*\n\n## <span id=\"page-129-0\"></span>**11.6 Global variables**\n\nIn the previous example, known is created outside the function, so it belongs to the special frame called __main__. Variables in __main__ are sometimes called **global** because they can be accessed from any function. Unlike local variables, which disappear when their function ends, global variables persist from one function call to the next.\n\nIt is common to use global variables for **flags**; that is, boolean variables that indicate (\"flag\") whether a condition is true. For example, some programs use a flag named verbose to control the level of detail in the output:\n\n```\nverbose = True\ndef example1():\n    if verbose:\n        print 'Running example1'\n```\nIf you try to reassign a global variable, you might be surprised. The following example is supposed to keep track of whether the function has been called:\n\n```\nbeen_called = False\ndef example2():\n   been_called = True # WRONG\n```\nBut if you run it you will see that the value of been_called doesn't change. The problem is that example2 creates a new local variable named been_called. The local variable goes away when the function ends, and has no effect on the global variable.\n\nTo reassign a global variable inside a function you have to **declare** the global variable before you use it:\n\n```\nbeen_called = False\ndef example2():\n    global been_called\n    been_called = True\n```\nThe global statement tells the interpreter something like, \"In this function, when I say been_called, I mean the global variable; don't create a local one.\"\n\nHere's an example that tries to update a global variable:\n\n```\ncount = 0\ndef example3():\n   count = count + 1 # WRONG\n```\n\n```\nIf you run it you get:\n```\nUnboundLocalError: local variable 'count' referenced before assignment\n\nPython assumes that count is local, which means that you are reading it before writing it. The solution, again, is to declare count global.\n\n```\ndef example3():\n    global count\n    count += 1\n```\nIf the global value is mutable, you can modify it without declaring it:\n\n```\nknown = {0:0, 1:1}\ndef example4():\n    known[2] = 1\n```\nSo you can add, remove and replace elements of a global list or dictionary, but if you want to reassign the variable, you have to declare it:\n\n```\ndef example5():\n    global known\n    known = dict()\n```\n#### <span id=\"page-130-0\"></span>**11.7 Long integers**\n\nIf you compute fibonacci(50), you get:\n\n```\n>>> fibonacci(50)\n12586269025L\n```\nThe L at the end indicates that the result is a long integer, or type long. In Python 3, long is gone; all integers, even really big ones, are type int.\n\nValues with type int have a limited range; long integers can be arbitrarily big, but as they get bigger they consume more space and time.\n\nThe mathematical operators work on long integers, and the functions in the math module, too, so in general any code that works with int will also work with long.\n\nAny time the result of a computation is too big to be represented with an integer, Python converts the result as a long integer:\n\n```\n>>> 1000 * 1000\n1000000\n>>> 100000 * 100000\n10000000000L\n```\nIn the first case the result has type int; in the second case it is long.\n\n**Exercise 11.8.** *Exponentiation of large integers is the basis of common algorithms for public-key encryption. Read the Wikipedia page on the RSA algorithm (*[http: // en. wikipedia. org/ wiki/](http://en.wikipedia.org/wiki/RSA_(algorithm)) [RSA_ ( algorithm)](http://en.wikipedia.org/wiki/RSA_(algorithm)) *) and write functions to encode and decode messages.*\n\n#### <span id=\"page-130-1\"></span>**11.8 Debugging**\n\nAs you work with bigger datasets it can become unwieldy to debug by printing and checking data by hand. Here are some suggestions for debugging large datasets:\n\n- **Scale down the input:** If possible, reduce the size of the dataset. For example if the program reads a text file, start with just the first 10 lines, or with the smallest example you can find. You can either edit the files themselves, or (better) modify the program so it reads only the first n lines.\nIf there is an error, you can reduce n to the smallest value that manifests the error, and then increase it gradually as you find and correct errors.\n\n- **Check summaries and types:** Instead of printing and checking the entire dataset, consider printing summaries of the data: for example, the number of items in a dictionary or the total of a list of numbers.\nA common cause of runtime errors is a value that is not the right type. For debugging this kind of error, it is often enough to print the type of a value.\n\n- **Write self-checks:** Sometimes you can write code to check for errors automatically. For example, if you are computing the average of a list of numbers, you could check that the result is not greater than the largest element in the list or less than the smallest. This is called a \"sanity check\" because it detects results that are \"insane.\"\nAnother kind of check compares the results of two different computations to see if they are consistent. This is called a \"consistency check.\"\n\n- **Pretty print the output:** Formatting debugging output can make it easier to spot an error. We saw an example in Section [6.9.](#page-80-0) The pprint module provides a pprint function that displays built-in types in a more human-readable format.\nAgain, time you spend building scaffolding can reduce the time you spend debugging.\n\n#### <span id=\"page-131-0\"></span>**11.9 Glossary**\n\n**dictionary:** A mapping from a set of keys to their corresponding values.\n\n**key-value pair:** The representation of the mapping from a key to a value.\n\n**item:** Another name for a key-value pair.\n\n**key:** An object that appears in a dictionary as the first part of a key-value pair.\n\n- **value:** An object that appears in a dictionary as the second part of a key-value pair. This is more specific than our previous use of the word \"value.\"\n**implementation:** A way of performing a computation.\n\n**hashtable:** The algorithm used to implement Python dictionaries.\n\n**hash function:** A function used by a hashtable to compute the location for a key.\n\n- **hashable:** A type that has a hash function. Immutable types like integers, floats and strings are hashable; mutable types like lists and dictionaries are not.\n**lookup:** A dictionary operation that takes a key and finds the corresponding value.\n\n- **reverse lookup:** A dictionary operation that takes a value and finds one or more keys that map to it.\n**singleton:** A list (or other sequence) with a single element.\n\n- **call graph:** A diagram that shows every frame created during the execution of a program, with an arrow from each caller to each callee.\n**histogram:** A set of counters.\n\n**memo:** A computed value stored to avoid unnecessary future computation.\n\n- **global variable:** A variable defined outside a function. Global variables can be accessed from any function.\n- **flag:** A boolean variable used to indicate whether a condition is true.\n\n**declaration:** A statement like global that tells the interpreter something about a variable.\n\n#### <span id=\"page-132-1\"></span>**11.10 Exercises**\n\n**Exercise 11.9.** *If you did Exercise [10.8,](#page-119-2) you already have a function named* has_duplicates *that takes a list as a parameter and returns* True *if there is any object that appears more than once in the list.*\n\n*Use a dictionary to write a faster, simpler version of* has_duplicates*. Solution:* [http: //](http://thinkpython.com/code/has_duplicates.py) [thinkpython. com/ code/ has_ duplicates. py](http://thinkpython.com/code/has_duplicates.py) *.*\n\n<span id=\"page-132-0\"></span>**Exercise 11.10.** *Two words are \"rotate pairs\" if you can rotate one of them and get the other (see* rotate_word *in Exercise [8.12)](#page-101-0).*\n\n*Write a program that reads a wordlist and finds all the rotate pairs. Solution:* [http: //](http://thinkpython.com/code/rotate_pairs.py) [thinkpython. com/ code/ rotate_ pairs. py](http://thinkpython.com/code/rotate_pairs.py) *.*\n\n**Exercise 11.11.** *Here's another Puzzler from* Car Talk *(*[http: // www. cartalk. com/ content/](http://www.cartalk.com/content/puzzlers) [puzzlers](http://www.cartalk.com/content/puzzlers) *):*\n\n*This was sent in by a fellow named Dan O'Leary. He came upon a common one-syllable, five-letter word recently that has the following unique property. When you remove the first letter, the remaining letters form a homophone of the original word, that is a word that sounds exactly the same. Replace the first letter, that is, put it back and remove the second letter and the result is yet another homophone of the original word. And the question is, what's the word?*\n\n*Now I'm going to give you an example that doesn't work. Let's look at the five-letter word, 'wrack.' W-R-A-C-K, you know like to 'wrack with pain.' If I remove the first letter, I am left with a four-letter word, 'R-A-C-K.' As in, 'Holy cow, did you see the rack on that buck! It must have been a nine-pointer!' It's a perfect homophone. If you put the 'w' back, and remove the 'r,' instead, you're left with the word, 'wack,' which is a real word, it's just not a homophone of the other two words.*\n\n*But there is, however, at least one word that Dan and we know of, which will yield two homophones if you remove either of the first two letters to make two, new four-letter words. The question is, what's the word?*\n\n*You can use the dictionary from Exercise [11.1](#page-123-1) to check whether a string is in the word list.*\n\n*To check whether two words are homophones, you can use the CMU Pronouncing Dictionary. You can download it from* [http: // www. speech. cs. cmu. edu/ cgi-bin/ cmudict](http://www.speech.cs.cmu.edu/cgi-bin/cmudict) *or from* [http: // thinkpython. com/ code/ c06d](http://thinkpython.com/code/c06d) *and you can also download* [http: // thinkpython.](http://thinkpython.com/code/pronounce.py) [com/ code/ pronounce. py](http://thinkpython.com/code/pronounce.py) *, which provides a function named* read_dictionary *that reads the pronouncing dictionary and returns a Python dictionary that maps from each word to a string that describes its primary pronunciation.*\n\n*Write a program that lists all the words that solve the Puzzler. Solution:* [http: // thinkpython.](http://thinkpython.com/code/homophone.py) [com/ code/ homophone. py](http://thinkpython.com/code/homophone.py) *.*\n\n# <span id=\"page-134-0\"></span>**Chapter 12**\n\n# **Tuples**\n\n#### <span id=\"page-134-1\"></span>**12.1 Tuples are immutable**\n\nA tuple is a sequence of values. The values can be any type, and they are indexed by integers, so in that respect tuples are a lot like lists. The important difference is that tuples are immutable.\n\nSyntactically, a tuple is a comma-separated list of values:\n\n>>> t = 'a', 'b', 'c', 'd', 'e'\n\nAlthough it is not necessary, it is common to enclose tuples in parentheses:\n\n```\n>>> t = ('a', 'b', 'c', 'd', 'e')\n```\nTo create a tuple with a single element, you have to include a final comma:\n\n```\n>>> t1 = 'a',\n>>> type(t1)\n<type 'tuple'>\nA value in parentheses is not a tuple:\n>>> t2 = ('a')\n```\n\n```\n>>> type(t2)\n<type 'str'>\n```\nAnother way to create a tuple is the built-in function tuple. With no argument, it creates an empty tuple:\n\n```\n>>> t = tuple()\n>>> print t\n()\n```\nIf the argument is a sequence (string, list or tuple), the result is a tuple with the elements of the sequence:\n\n```\n>>> t = tuple('lupins')\n>>> print t\n('l', 'u', 'p', 'i', 'n', 's')\n```\nBecause tuple is the name of a built-in function, you should avoid using it as a variable name.\n\nMost list operators also work on tuples. The bracket operator indexes an element:\n\n```\n>>> t = ('a', 'b', 'c', 'd', 'e')\n>>> print t[0]\n'a'\n```\nAnd the slice operator selects a range of elements.\n\n>>> print t[1:3] ('b', 'c')\n\nBut if you try to modify one of the elements of the tuple, you get an error:\n\n>>> t[0] = 'A' TypeError: object doesn't support item assignment\n\nYou can't modify the elements of a tuple, but you can replace one tuple with another:\n\n>>> t = ('A',) + t[1:] >>> print t ('A', 'b', 'c', 'd', 'e')\n\n#### <span id=\"page-135-0\"></span>**12.2 Tuple assignment**\n\nIt is often useful to swap the values of two variables. With conventional assignments, you have to use a temporary variable. For example, to swap a and b:\n\n>>> temp = a >>> a = b >>> b = temp\n\nThis solution is cumbersome; **tuple assignment** is more elegant:\n\n>>> a, b = b, a\n\nThe left side is a tuple of variables; the right side is a tuple of expressions. Each value is assigned to its respective variable. All the expressions on the right side are evaluated before any of the assignments.\n\nThe number of variables on the left and the number of values on the right have to be the same:\n\n```\n>>> a, b = 1, 2, 3\nValueError: too many values to unpack\n```\nMore generally, the right side can be any kind of sequence (string, list or tuple). For example, to split an email address into a user name and a domain, you could write:\n\n```\n>>> addr = 'monty@python.org'\n>>> uname, domain = addr.split('@')\n```\nThe return value from split is a list with two elements; the first element is assigned to uname, the second to domain.\n\n```\n>>> print uname\nmonty\n>>> print domain\npython.org\n```\n#### <span id=\"page-136-0\"></span>**12.3 Tuples as return values**\n\nStrictly speaking, a function can only return one value, but if the value is a tuple, the effect is the same as returning multiple values. For example, if you want to divide two integers and compute the quotient and remainder, it is inefficient to compute $x/y$ and then $x%y$. It is better to compute them both at the same time.\n\nThe built-in function divmod takes two arguments and returns a tuple of two values, the quotient and remainder. You can store the result as a tuple:\n\n```\n>>> t = divmod(7, 3)\n>>> print t\n(2, 1)\nOr use tuple assignment to store the elements separately:\n>>> quot, rem = divmod(7, 3)\n>>> print quot\n2\n>>> print rem\n1\n```\nHere is an example of a function that returns a tuple:\n\n```\ndef min_max(t):\n    return min(t), max(t)\n```\nmax and min are built-in functions that find the largest and smallest elements of a sequence. min_max computes both and returns a tuple of two values.\n\n#### <span id=\"page-136-1\"></span>**12.4 Variable-length argument tuples**\n\nFunctions can take a variable number of arguments. A parameter name that begins with * **gathers** arguments into a tuple. For example, printall takes any number of arguments and prints them:\n\n```\ndef printall(*args):\n    print args\n```\nThe gather parameter can have any name you like, but args is conventional. Here's how the function works:\n\n```\n>>> printall(1, 2.0, '3')\n(1, 2.0, '3')\n```\nThe complement of gather is **scatter**. If you have a sequence of values and you want to pass it to a function as multiple arguments, you can use the * operator. For example, divmod takes exactly two arguments; it doesn't work with a tuple:\n\n```\n>>> t = (7, 3)\n>>> divmod(t)\nTypeError: divmod expected 2 arguments, got 1\n```\nTypeError: atbmod expected 2 arguments, got\n\nBut if you scatter the tuple, it works:\n\n>>> divmod(*t)\n\n(2, 1)\n\n**Exercise 12.1.** *Many of the built-in functions use variable-length argument tuples. For example,* max *and* min *can take any number of arguments:*\n\n```\n>>> max(1,2,3)\n3\nBut sum does not.\n>>> sum(1,2,3)\nTypeError: sum expected at most 2 arguments, got 3\nWrite a function called sumall that takes any number of arguments and returns their sum.\n```\n## <span id=\"page-137-0\"></span>**12.5 Lists and tuples**\n\nzip is a built-in function that takes two or more sequences and “zips” them into a list of tuples where each tuple contains one element from each sequence. In Python 3, zip returns an iterator of tuples, but for most purposes, an iterator behaves like a list.\n\nThis example zips a string and a list:\n\n```\n>>> s = 'abc'\n>>> t = [0, 1, 2]\n>>> zip(s, t)\n[('a', 0), ('b', 1), ('c', 2)]\n```\nThe result is a list of tuples where each tuple contains a character from the string and the corresponding element from the list.\n\nIf the sequences are not the same length, the result has the length of the shorter one.\n\n>>> zip('Anne', 'Elk') [('A', 'E'), ('n', 'l'), ('n', 'k')]\n\nYou can use tuple assignment in a for loop to traverse a list of tuples:\n\n```\nt = [('a', 0), ('b', 1), ('c', 2)]\nfor letter, number in t:\n    print number, letter\n```\nEach time through the loop, Python selects the next tuple in the list and assigns the elements to letter and number. The output of this loop is:\n\n0 a 1 b 2 c\n\nIf you combine zip, for and tuple assignment, you get a useful idiom for traversing two (or more) sequences at the same time. For example, has_match takes two sequences, t1 and t2, and returns True if there is an index i such that t1[i] == t2[i]:\n\n```\ndef has_match(t1, t2):\n    for x, y in zip(t1, t2):\n        if x == y:\n            return True\n    return False\n```\nIf you need to traverse the elements of a sequence and their indices, you can use the built-in function enumerate:\n\n```\nfor index, element in enumerate('abc'):\n    print index, element\n```\nThe output of this loop is:\n\n0 a 1 b 2 c Again.\n\n#### <span id=\"page-138-0\"></span>**12.6 Dictionaries and tuples**\n\nDictionaries have a method called items that returns a list of tuples, where each tuple is a key-value pair.\n\n```\n>>> d = {'a':0, 'b':1, 'c':2}\n>>> t = d.items()\n>>> print t\n[('a', 0), ('c', 2), ('b', 1)]\n```\nAs you should expect from a dictionary, the items are in no particular order. In Python 3, items returns an iterator, but for many purposes, iterators behave like lists.\n\nGoing in the other direction, you can use a list of tuples to initialize a new dictionary:\n\n```\n>>> t = [('a', 0), ('c', 2), ('b', 1)]\n>>> d = dict(t)\n>>> print d\n{'a': 0, 'c': 2, 'b': 1}\n```\nCombining dict with zip yields a concise way to create a dictionary:\n\n```\n>>> d = dict(zip('abc', range(3)))\n>>> print d\n{'a': 0, 'c': 2, 'b': 1}\n```\nThe dictionary method update also takes a list of tuples and adds them, as key-value pairs, to an existing dictionary.\n\nCombining items, tuple assignment and for, you get the idiom for traversing the keys and values of a dictionary:\n\n```\nfor key, val in d.items():\n    print val, key\n```\nThe output of this loop is:\n\n```\n0 a\n2 c\n1 b\n```\nAgain.\n\nIt is common to use tuples as keys in dictionaries (primarily because you can't use lists). For example, a telephone directory might map from last-name, first-name pairs to telephone numbers. Assuming that we have defined last, first and number, we could write:\n\ndirectory[last,first] = number\n\nThe expression in brackets is a tuple. We could use tuple assignment to traverse this dictionary.\n\ntuple\n\n| 0 → 'Cleese' |\n|--------------|\n| 1 → 'John'   |\n\n<span id=\"page-139-1\"></span>Figure 12.1: State diagram.\n\n| dict                                    |\n|-----------------------------------------|\n| ('Cleese', 'John') → '08700 100 222'    |\n| ('Chapman', 'Graham') → '08700 100 222' |\n| ('Idle', 'Eric') → '08700 100 222'      |\n| ('Gilliam', 'Terry') → '08700 100 222'  |\n| ('Jones', 'Terry') → '08700 100 222'    |\n| ('Palin', 'Michael') → '08700 100 222'  |\n\n<span id=\"page-139-2\"></span>Figure 12.2: State diagram.\n\n```\nfor last, first in directory:\n    print first, last, directory[last,first]\n```\nThis loop traverses the keys in directory, which are tuples. It assigns the elements of each tuple to last and first, then prints the name and corresponding telephone number.\n\nThere are two ways to represent tuples in a state diagram. The more detailed version shows the indices and elements just as they appear in a list. For example, the tuple ('Cleese', 'John') would appear as in Figure [12.1.](#page-139-1)\n\nBut in a larger diagram you might want to leave out the details. For example, a diagram of the telephone directory might appear as in Figure [12.2.](#page-139-2)\n\nHere the tuples are shown using Python syntax as a graphical shorthand.\n\nThe telephone number in the diagram is the complaints line for the BBC, so please don't call it.\n\n### <span id=\"page-139-0\"></span>**12.7 Comparing tuples**\n\nThe relational operators work with tuples and other sequences; Python starts by comparing the first element from each sequence. If they are equal, it goes on to the next elements, and so on, until it finds elements that differ. Subsequent elements are not considered (even if they are really big).\n\n```\n>>> (0, 1, 2) < (0, 3, 4)\nTrue\n>>> (0, 1, 2000000) < (0, 3, 4)\nTrue\n```\nThe sort function works the same way. It sorts primarily by first element, but in the case of a tie, it sorts by second element, and so on.\n\nThis feature lends itself to a pattern called **DSU** for\n\n- **Decorate** a sequence by building a list of tuples with one or more sort keys preceding the elements from the sequence,\n**Sort** the list of tuples, and\n\n**Undecorate** by extracting the sorted elements of the sequence.\n\nFor example, suppose you have a list of words and you want to sort them from longest to shortest:\n\n```\ndef sort_by_length(words):\n    t = []\n    for word in words:\n       t.append((len(word), word))\n    t.sort(reverse=True)\n    res = []\n    for length, word in t:\n        res.append(word)\n    return res\n```\nThe first loop builds a list of tuples, where each tuple is a word preceded by its length.\n\nsort compares the first element, length, first, and only considers the second element to break ties. The keyword argument reverse=True tells sort to go in decreasing order.\n\nThe second loop traverses the list of tuples and builds a list of words in descending order of length.\n\n**Exercise 12.2.** *In this example, ties are broken by comparing words, so words with the same length appear in reverse alphabetical order. For other applications you might want to break ties at random. Modify this example so that words with the same length appear in random order. Hint: see the* random *function in the* random *module. Solution:* [http: // thinkpython. com/ code/](http://thinkpython.com/code/unstable_sort.py) [unstable_ sort. py](http://thinkpython.com/code/unstable_sort.py) *.*\n\n#### <span id=\"page-140-0\"></span>**12.8 Sequences of sequences**\n\nI have focused on lists of tuples, but almost all of the examples in this chapter also work with lists of lists, tuples of tuples, and tuples of lists. To avoid enumerating the possible combinations, it is sometimes easier to talk about sequences of sequences.\n\nIn many contexts, the different kinds of sequences (strings, lists and tuples) can be used interchangeably. So how and why do you choose one over the others?\n\nTo start with the obvious, strings are more limited than other sequences because the elements have to be characters. They are also immutable. If you need the ability to change the characters in a string (as opposed to creating a new string), you might want to use a list of characters instead.\n\nLists are more common than tuples, mostly because they are mutable. But there are a few cases where you might prefer tuples:\n\n- 1. In some contexts, like a return statement, it is syntactically simpler to create a tuple than a list. In other contexts, you might prefer a list.\n- 2. If you want to use a sequence as a dictionary key, you have to use an immutable type like a tuple or string.\n- 3. If you are passing a sequence as an argument to a function, using tuples reduces the potential for unexpected behavior due to aliasing.\n\nBecause tuples are immutable, they don't provide methods like sort and reverse, which modify existing lists. But Python provides the built-in functions sorted and reversed, which take any sequence as a parameter and return a new list with the same elements in a different order.\n\n#### <span id=\"page-141-0\"></span>**12.9 Debugging**\n\nLists, dictionaries and tuples are known generically as **data structures**; in this chapter we are starting to see compound data structures, like lists of tuples, and dictionaries that contain tuples as keys and lists as values. Compound data structures are useful, but they are prone to what I call **shape errors**; that is, errors caused when a data structure has the wrong type, size or composition. For example, if you are expecting a list with one integer and I give you a plain old integer (not in a list), it won't work.\n\nTo help debug these kinds of errors, I have written a module called structshape that provides a function, also called structshape, that takes any kind of data structure as an argument and returns a string that summarizes its shape. You can download it from <http://thinkpython.com/code/structshape.py>\n\nHere's the result for a simple list:\n\n```\n>>> from structshape import structshape\n>>> t = [1,2,3]\n>>> print structshape(t)\nlist of 3 int\nA fancier program might write \"list of 3 ints,\" but it was easier not to deal with plurals.\nHere's a list of lists:\n>>> t2 = [[1,2], [3,4], [5,6]]\n>>> print structshape(t2)\nlist of 3 list of 2 int\nIf the elements of the list are not the same type, structshape groups them, in order, by\ntype:\n>>> t3 = [1, 2, 3, 4.0, '5', '6', [7], [8], 9]\n>>> print structshape(t3)\nlist of (3 int, float, 2 str, 2 list of int, int)\nHere's a list of tuples:\n>>> s = 'abc'\n>>> lt = zip(t, s)\n>>> print structshape(lt)\nlist of 3 tuple of (int, str)\nAnd here's a dictionary with 3 items that map integers to strings.\n>>> d = dict(lt)\n>>> print structshape(d)\ndict of 3 int->str\n```\nIf you are having trouble keeping track of your data structures, structshape can help.\n\n#### <span id=\"page-142-0\"></span>**12.10 Glossary**\n\n**tuple:** An immutable sequence of elements.\n\n- **tuple assignment:** An assignment with a sequence on the right side and a tuple of variables on the left. The right side is evaluated and then its elements are assigned to the variables on the left.\n- **gather:** The operation of assembling a variable-length argument tuple.\n- **scatter:** The operation of treating a sequence as a list of arguments.\n- **DSU:** Abbreviation of \"decorate-sort-undecorate,\" a pattern that involves building a list of tuples, sorting, and extracting part of the result.\n- **data structure:** A collection of related values, often organized in lists, dictionaries, tuples, etc.\n- **shape (of a data structure):** A summary of the type, size and composition of a data structure.\n\n#### <span id=\"page-142-1\"></span>**12.11 Exercises**\n\n**Exercise 12.3.** *Write a function called* most_frequent *that takes a string and prints the letters in decreasing order of frequency. Find text samples from several different languages and see how letter frequency varies between languages. Compare your results with the tables at* [http: //](http://en.wikipedia.org/wiki/Letter_frequencies) [en. wikipedia. org/ wiki/ Letter_ frequencies](http://en.wikipedia.org/wiki/Letter_frequencies) *. Solution:* [http: // thinkpython. com/](http://thinkpython.com/code/most_frequent.py) [code/ most_ frequent. py](http://thinkpython.com/code/most_frequent.py) *.*\n\n<span id=\"page-142-2\"></span>**Exercise 12.4.** *More anagrams!*\n\n- *1. Write a program that reads a word list from a file (see Section [9.1)](#page-102-1) and prints all the sets of words that are anagrams.*\n*Here is an example of what the output might look like:*\n\n['deltas', 'desalt', 'lasted', 'salted', 'slated', 'staled'] ['retainers', 'ternaries'] ['generating', 'greatening'] ['resmelts', 'smelters', 'termless']\n\n*Hint: you might want to build a dictionary that maps from a set of letters to a list of words that can be spelled with those letters. The question is, how can you represent the set of letters in a way that can be used as a key?*\n\n- *2. Modify the previous program so that it prints the largest set of anagrams first, followed by the second largest set, and so on.*\n- *3. In Scrabble a \"bingo\" is when you play all seven tiles in your rack, along with a letter on the board, to form an eight-letter word. What set of 8 letters forms the most possible bingos? Hint: there are seven.*\n\n*Solution:* [http: // thinkpython. com/ code/ anagram_ sets. py](http://thinkpython.com/code/anagram_sets.py) *.*\n\n**Exercise 12.5.** *Two words form a \"metathesis pair\" if you can transform one into the other by swapping two letters; for example, \"converse\" and \"conserve.\" Write a program that finds all of the metathesis pairs in the dictionary. Hint: don't test all pairs of words, and don't test all possible swaps. Solution:* [http: // thinkpython. com/ code/ metathesis. py](http://thinkpython.com/code/metathesis.py) *. Credit: This exercise is inspired by an example at* [http: // puzzlers. org](http://puzzlers.org) *.*\n\n**Exercise 12.6.** *Here's another Car Talk Puzzler (*[http: // www. cartalk. com/ content/](http://www.cartalk.com/content/puzzlers) [puzzlers](http://www.cartalk.com/content/puzzlers) *):*\n\n*What is the longest English word, that remains a valid English word, as you remove its letters one at a time?*\n\n*Now, letters can be removed from either end, or the middle, but you can't rearrange any of the letters. Every time you drop a letter, you wind up with another English word. If you do that, you're eventually going to wind up with one letter and that too is going to be an English word—one that's found in the dictionary. I want to know what's the longest word and how many letters does it have?*\n\n*I'm going to give you a little modest example: Sprite. Ok? You start off with sprite, you take a letter off, one from the interior of the word, take the r away, and we're left with the word spite, then we take the e off the end, we're left with spit, we take the s off, we're left with pit, it, and I.*\n\n*Write a program to find all words that can be reduced in this way, and then find the longest one.*\n\n*This exercise is a little more challenging than most, so here are some suggestions:*\n\n- *1. You might want to write a function that takes a word and computes a list of all the words that can be formed by removing one letter. These are the \"children\" of the word.*\n- *2. Recursively, a word is reducible if any of its children are reducible. As a base case, you can consider the empty string reducible.*\n- *3. The wordlist I provided,* words.txt*, doesn't contain single letter words. So you might want to add \"I\", \"a\", and the empty string.*\n- *4. To improve the performance of your program, you might want to memoize the words that are known to be reducible.*\n\n*Solution:* [http: // thinkpython. com/ code/ reducible. py](http://thinkpython.com/code/reducible.py) *.*\n\n# <span id=\"page-144-0\"></span>**Chapter 13**\n\n# **Case study: data structure selection**\n\n### <span id=\"page-144-1\"></span>**13.1 Word frequency analysis**\n\nAs usual, you should at least attempt the following exercises before you read my solutions. **Exercise 13.1.** *Write a program that reads a file, breaks each line into words, strips whitespace and punctuation from the words, and converts them to lowercase.*\n\n*Hint: The* string *module provides strings named* whitespace*, which contains space, tab, newline, etc., and* punctuation *which contains the punctuation characters. Let's see if we can make Python swear:*\n\n>>> import string >>> print string.punctuation !\"#\\$%&'()*+,-./:;<=>?@[\\]^_`{|}~\n\n*Also, you might consider using the string methods* strip*,* replace *and* translate*.* **Exercise 13.2.** *Go to Project Gutenberg (*[http: // gutenberg. org](http://gutenberg.org) *) and download your favorite out-of-copyright book in plain text format.*\n\n*Modify your program from the previous exercise to read the book you downloaded, skip over the header information at the beginning of the file, and process the rest of the words as before.*\n\n*Then modify the program to count the total number of words in the book, and the number of times each word is used.*\n\n*Print the number of different words used in the book. Compare different books by different authors, written in different eras. Which author uses the most extensive vocabulary?*\n\n**Exercise 13.3.** *Modify the program from the previous exercise to print the 20 most frequently-used words in the book.*\n\n**Exercise 13.4.** *Modify the previous program to read a word list (see Section [9.1)](#page-102-1) and then print all the words in the book that are not in the word list. How many of them are typos? How many of them are common words that* should *be in the word list, and how many of them are really obscure?*\n\n#### <span id=\"page-145-0\"></span>**13.2 Random numbers**\n\nGiven the same inputs, most computer programs generate the same outputs every time, so they are said to be **deterministic**. Determinism is usually a good thing, since we expect the same calculation to yield the same result. For some applications, though, we want the computer to be unpredictable. Games are an obvious example, but there are more.\n\nMaking a program truly nondeterministic turns out to be not so easy, but there are ways to make it at least seem nondeterministic. One of them is to use algorithms that generate **pseudorandom** numbers. Pseudorandom numbers are not truly random because they are generated by a deterministic computation, but just by looking at the numbers it is all but impossible to distinguish them from random.\n\nThe random module provides functions that generate pseudorandom numbers (which I will simply call \"random\" from here on).\n\nThe function random returns a random float between 0.0 and 1.0 (including 0.0 but not 1.0). Each time you call random, you get the next number in a long series. To see a sample, run this loop:\n\n```\nimport random\n```\n\n```\nfor i in range(10):\n    x = random.random()\n    print x\n```\nThe function randint takes parameters low and high and returns an integer between low and high (including both).\n\n```\n>>> random.randint(5, 10)\n5\n>>> random.randint(5, 10)\n9\n```\nTo choose an element from a sequence at random, you can use choice:\n\n```\n>>> t = [1, 2, 3]\n>>> random.choice(t)\n2\n>>> random.choice(t)\n3\n```\nThe random module also provides functions to generate random values from continuous distributions including Gaussian, exponential, gamma, and a few more.\n\n**Exercise 13.5.** *Write a function named* choose_from_hist *that takes a histogram as defined in Section [11.1](#page-123-0) and returns a random value from the histogram, chosen with probability in proportion to frequency. For example, for this histogram:*\n\n```\n>>> t = ['a', 'a', 'b']\n>>> hist = histogram(t)\n>>> print hist\n{'a': 2, 'b': 1}\n```\n*your function should return* 'a' *with probability* 2/3 *and* 'b' *with probability* 1/3*.*\n\n#### <span id=\"page-146-0\"></span>**13.3 Word histogram**\n\nYou should attempt the previous exercises before you go on. You can download my solution from <http://thinkpython.com/code/analyze_book.py>. You will also need [http:](http://thinkpython.com/code/emma.txt) [//thinkpython.com/code/emma.txt](http://thinkpython.com/code/emma.txt).\n\nHere is a program that reads a file and builds a histogram of the words in the file:\n\n```\nimport string\ndef process_file(filename):\n    hist = dict()\n    fp = open(filename)\n    for line in fp:\n        process_line(line, hist)\n    return hist\ndef process_line(line, hist):\n    line = line.replace('-', ' ')\n    for word in line.split():\n        word = word.strip(string.punctuation + string.whitespace)\n        word = word.lower()\n        hist[word] = hist.get(word, 0) + 1\n```\nhist = process_file('emma.txt')\n\nThis program reads emma.txt, which contains the text of *Emma* by Jane Austen.\n\nprocess_file loops through the lines of the file, passing them one at a time to process_line. The histogram hist is being used as an accumulator.\n\nprocess_line uses the string method replace to replace hyphens with spaces before using split to break the line into a list of strings. It traverses the list of words and uses strip and lower to remove punctuation and convert to lower case. (It is a shorthand to say that strings are \"converted;\" remember that string are immutable, so methods like strip and lower return new strings.)\n\nFinally, process_line updates the histogram by creating a new item or incrementing an existing one.\n\nTo count the total number of words in the file, we can add up the frequencies in the histogram:\n\n```\ndef total_words(hist):\n    return sum(hist.values())\n```\nThe number of different words is just the number of items in the dictionary:\n\ndef different_words(hist):\n\nreturn len(hist)\n\nHere is some code to print the results:\n\n```\nprint 'Total number of words:', total_words(hist)\nprint 'Number of different words:', different_words(hist)\n```\nAnd the results:\n\nTotal number of words: 161080 Number of different words: 7214\n\n#### <span id=\"page-147-0\"></span>**13.4 Most common words**\n\nTo find the most common words, we can apply the DSU pattern; most_common takes a histogram and returns a list of word-frequency tuples, sorted in reverse order by frequency:\n\n```\ndef most_common(hist):\n    t = []\n    for key, value in hist.items():\n        t.append((value, key))\n    t.sort(reverse=True)\n    return t\n```\nHere is a loop that prints the ten most common words:\n\n```\nt = most_common(hist)\nprint 'The most common words are:'\nfor freq, word in t[0:10]:\n    print word, '\\t', freq\n```\nAnd here are the results from *Emma*:\n\nThe most common words are: to 5242 the 5205 and 4897 of 4295 i 3191 a 3130 it 2529 her 2483 was 2400 she 2364\n\n#### <span id=\"page-147-1\"></span>**13.5 Optional parameters**\n\nWe have seen built-in functions and methods that take a variable number of arguments. It is possible to write user-defined functions with optional arguments, too. For example, here is a function that prints the most common words in a histogram\n\n```\ndef print_most_common(hist, num=10):\n    t = most_common(hist)\n    print 'The most common words are:'\n    for freq, word in t[:num]:\n        print word, '\\t', freq\n```\nThe first parameter is required; the second is optional. The **default value** of num is 10.\n\nIf you only provide one argument:\n\n```\nprint_most_common(hist)\n```\nnum gets the default value. If you provide two arguments:\n\n```\nprint_most_common(hist, 20)\n```\nnum gets the value of the argument instead. In other words, the optional argument **overrides** the default value.\n\nIf a function has both required and optional parameters, all the required parameters have to come first, followed by the optional ones.\n\n#### <span id=\"page-148-0\"></span>**13.6 Dictionary subtraction**\n\nFinding the words from the book that are not in the word list from words.txt is a problem you might recognize as set subtraction; that is, we want to find all the words from one set (the words in the book) that are not in another set (the words in the list).\n\nsubtract takes dictionaries d1 and d2 and returns a new dictionary that contains all the keys from d1 that are not in d2. Since we don't really care about the values, we set them all to None.\n\n```\ndef subtract(d1, d2):\n    res = dict()\n    for key in d1:\n        if key not in d2:\n            res[key] = None\n    return res\n```\nTo find the words in the book that are not in words.txt, we can use process_file to build a histogram for words.txt, and then subtract:\n\n```\nwords = process_file('words.txt')\ndiff = subtract(hist, words)\n```\n\n```\nprint \"The words in the book that aren't in the word list are:\"\nfor word in diff.keys():\n```\nprint word,\n\nHere are some of the results from *Emma*:\n\n```\nThe words in the book that aren't in the word list are:\n rencontre jane's blanche woodhouses disingenuousness\nfriend's venice apartment ...\n```\nSome of these words are names and possessives. Others, like \"rencontre,\" are no longer in common use. But a few are common words that should really be in the list!\n\n```\nExercise 13.6. Python provides a data structure called set that provides many common set opera-\ntions. Read the documentation at http: // docs. python. org/ 2/ library/ stdtypes. html#\ntypes-set and write a program that uses set subtraction to find words in the book that are not in\nthe word list. Solution: http: // thinkpython. com/ code/ analyze_ book2. py .\n```\n#### <span id=\"page-148-1\"></span>**13.7 Random words**\n\nTo choose a random word from the histogram, the simplest algorithm is to build a list with multiple copies of each word, according to the observed frequency, and then choose from the list:\n\n```\ndef random_word(h):\n    t = []\n    for word, freq in h.items():\n        t.extend([word] * freq)\n```\nreturn random.choice(t)\n\nThe expression [word] * freq creates a list with freq copies of the string word. The extend method is similar to append except that the argument is a sequence.\n\n<span id=\"page-149-1\"></span>**Exercise 13.7.** *This algorithm works, but it is not very efficient; each time you choose a random word, it rebuilds the list, which is as big as the original book. An obvious improvement is to build the list once and then make multiple selections, but the list is still big.*\n\n*An alternative is:*\n\n- *1. Use* keys *to get a list of the words in the book.*\n- *2. Build a list that contains the cumulative sum of the word frequencies (see Exercise [10.3)](#page-113-1). The last item in this list is the total number of words in the book, n.*\n- *3. Choose a random number from 1 to n. Use a bisection search (See Exercise [10.11)](#page-119-1) to find the index where the random number would be inserted in the cumulative sum.*\n- *4. Use the index to find the corresponding word in the word list.*\n\n*Write a program that uses this algorithm to choose a random word from the book. Solution:* [http:](http://thinkpython.com/code/analyze_book3.py) [// thinkpython. com/ code/ analyze_ book3. py](http://thinkpython.com/code/analyze_book3.py) *.*\n\n#### <span id=\"page-149-0\"></span>**13.8 Markov analysis**\n\nIf you choose words from the book at random, you can get a sense of the vocabulary, you probably won't get a sentence:\n\nthis the small regard harriet which knightley's it most things\n\nA series of random words seldom makes sense because there is no relationship between successive words. For example, in a real sentence you would expect an article like \"the\" to be followed by an adjective or a noun, and probably not a verb or adverb.\n\nOne way to measure these kinds of relationships is Markov analysis, which characterizes, for a given sequence of words, the probability of the word that comes next. For example, the song *Eric, the Half a Bee* begins:\n\nHalf a bee, philosophically, Must, ipso facto, half not be. But half the bee has got to be Vis a vis, its entity. D'you see?\n\nBut can a bee be said to be Or not to be an entire bee When half the bee is not a bee Due to some ancient injury?\n\nIn this text, the phrase \"half the\" is always followed by the word \"bee,\" but the phrase \"the bee\" might be followed by either \"has\" or \"is\".\n\nThe result of Markov analysis is a mapping from each prefix (like \"half the\" and \"the bee\") to all possible suffixes (like \"has\" and \"is\").\n\nGiven this mapping, you can generate a random text by starting with any prefix and choosing at random from the possible suffixes. Next, you can combine the end of the prefix and the new suffix to form the next prefix, and repeat.\n\nFor example, if you start with the prefix \"Half a,\" then the next word has to be \"bee,\" because the prefix only appears once in the text. The next prefix is \"a bee,\" so the next suffix might be \"philosophically,\" \"be\" or \"due.\"\n\nIn this example the length of the prefix is always two, but you can do Markov analysis with any prefix length. The length of the prefix is called the \"order\" of the analysis. **Exercise 13.8.** *Markov analysis:*\n\n- *1. Write a program to read a text from a file and perform Markov analysis. The result should be a dictionary that maps from prefixes to a collection of possible suffixes. The collection might be a list, tuple, or dictionary; it is up to you to make an appropriate choice. You can test your program with prefix length two, but you should write the program in a way that makes it easy to try other lengths.*\n- *2. Add a function to the previous program to generate random text based on the Markov analysis. Here is an example from* Emma *with prefix length 2:*\n\n*He was very clever, be it sweetness or be angry, ashamed or only amused, at such a stroke. She had never thought of Hannah till you were never meant for me?\" \"I cannot make speeches, Emma:\" he soon cut it all himself.*\n\n*For this example, I left the punctuation attached to the words. The result is almost syntactically correct, but not quite. Semantically, it almost makes sense, but not quite.*\n\n*What happens if you increase the prefix length? Does the random text make more sense?*\n\n- *3. Once your program is working, you might want to try a mash-up: if you analyze text from two or more books, the random text you generate will blend the vocabulary and phrases from the sources in interesting ways.*\n*Credit: This case study is based on an example from Kernighan and Pike,* The Practice of Programming*, Addison-Wesley, 1999.*\n\nYou should attempt this exercise before you go on; then you can can download my solution from <http://thinkpython.com/code/markov.py>. You will also need [http://](http://thinkpython.com/code/emma.txt) [thinkpython.com/code/emma.txt](http://thinkpython.com/code/emma.txt).\n\n#### <span id=\"page-150-0\"></span>**13.9 Data structures**\n\nUsing Markov analysis to generate random text is fun, but there is also a point to this exercise: data structure selection. In your solution to the previous exercises, you had to choose:\n\n- How to represent the prefixes.\n- How to represent the collection of possible suffixes.\n- How to represent the mapping from each prefix to the collection of possible suffixes.\n\nOk, the last one is easy; the only mapping type we have seen is a dictionary, so it is the natural choice.\n\nFor the prefixes, the most obvious options are string, list of strings, or tuple of strings. For the suffixes, one option is a list; another is a histogram (dictionary).\n\nHow should you choose? The first step is to think about the operations you will need to implement for each data structure. For the prefixes, we need to be able to remove words from the beginning and add to the end. For example, if the current prefix is \"Half a,\" and the next word is \"bee,\" you need to be able to form the next prefix, \"a bee.\"\n\nYour first choice might be a list, since it is easy to add and remove elements, but we also need to be able to use the prefixes as keys in a dictionary, so that rules out lists. With tuples, you can't append or remove, but you can use the addition operator to form a new tuple:\n\n```\ndef shift(prefix, word):\n    return prefix[1:] + (word,)\n```\nshift takes a tuple of words, prefix, and a string, word, and forms a new tuple that has all the words in prefix except the first, and word added to the end.\n\nFor the collection of suffixes, the operations we need to perform include adding a new suffix (or increasing the frequency of an existing one), and choosing a random suffix.\n\nAdding a new suffix is equally easy for the list implementation or the histogram. Choosing a random element from a list is easy; choosing from a histogram is harder to do efficiently (see Exercise [13.7)](#page-149-1).\n\nSo far we have been talking mostly about ease of implementation, but there are other factors to consider in choosing data structures. One is run time. Sometimes there is a theoretical reason to expect one data structure to be faster than other; for example, I mentioned that the in operator is faster for dictionaries than for lists, at least when the number of elements is large.\n\nBut often you don't know ahead of time which implementation will be faster. One option is to implement both of them and see which is better. This approach is called **benchmarking**. A practical alternative is to choose the data structure that is easiest to implement, and then see if it is fast enough for the intended application. If so, there is no need to go on. If not, there are tools, like the profile module, that can identify the places in a program that take the most time.\n\nThe other factor to consider is storage space. For example, using a histogram for the collection of suffixes might take less space because you only have to store each word once, no matter how many times it appears in the text. In some cases, saving space can also make your program run faster, and in the extreme, your program might not run at all if you run out of memory. But for many applications, space is a secondary consideration after run time.\n\nOne final thought: in this discussion, I have implied that we should use one data structure for both analysis and generation. But since these are separate phases, it would also be possible to use one structure for analysis and then convert to another structure for generation. This would be a net win if the time saved during generation exceeded the time spent in conversion.\n\n#### <span id=\"page-152-0\"></span>**13.10 Debugging**\n\nWhen you are debugging a program, and especially if you are working on a hard bug, there are four things to try:\n\n- **reading:** Examine your code, read it back to yourself, and check that it says what you meant to say.\n- **running:** Experiment by making changes and running different versions. Often if you display the right thing at the right place in the program, the problem becomes obvious, but sometimes you have to spend some time to build scaffolding.\n- **ruminating:** Take some time to think! What kind of error is it: syntax, runtime, semantic? What information can you get from the error messages, or from the output of the program? What kind of error could cause the problem you're seeing? What did you change last, before the problem appeared?\n- **retreating:** At some point, the best thing to do is back off, undoing recent changes, until you get back to a program that works and that you understand. Then you can start rebuilding.\n\nBeginning programmers sometimes get stuck on one of these activities and forget the others. Each activity comes with its own failure mode.\n\nFor example, reading your code might help if the problem is a typographical error, but not if the problem is a conceptual misunderstanding. If you don't understand what your program does, you can read it 100 times and never see the error, because the error is in your head.\n\nRunning experiments can help, especially if you run small, simple tests. But if you run experiments without thinking or reading your code, you might fall into a pattern I call \"random walk programming,\" which is the process of making random changes until the program does the right thing. Needless to say, random walk programming can take a long time.\n\nYou have to take time to think. Debugging is like an experimental science. You should have at least one hypothesis about what the problem is. If there are two or more possibilities, try to think of a test that would eliminate one of them.\n\nTaking a break helps with the thinking. So does talking. If you explain the problem to someone else (or even yourself), you will sometimes find the answer before you finish asking the question.\n\nBut even the best debugging techniques will fail if there are too many errors, or if the code you are trying to fix is too big and complicated. Sometimes the best option is to retreat, simplifying the program until you get to something that works and that you understand.\n\nBeginning programmers are often reluctant to retreat because they can't stand to delete a line of code (even if it's wrong). If it makes you feel better, copy your program into another file before you start stripping it down. Then you can paste the pieces back in a little bit at a time.\n\nFinding a hard bug requires reading, running, ruminating, and sometimes retreating. If you get stuck on one of these activities, try the others.\n\n#### <span id=\"page-153-0\"></span>**13.11 Glossary**\n\n- **deterministic:** Pertaining to a program that does the same thing each time it runs, given the same inputs.\n- **pseudorandom:** Pertaining to a sequence of numbers that appear to be random, but are generated by a deterministic program.\n\n**default value:** The value given to an optional parameter if no argument is provided.\n\n**override:** To replace a default value with an argument.\n\n- **benchmarking:** The process of choosing between data structures by implementing alternatives and testing them on a sample of the possible inputs.\n#### <span id=\"page-153-1\"></span>**13.12 Exercises**\n\n**Exercise 13.9.** *The \"rank\" of a word is its position in a list of words sorted by frequency: the most common word has rank 1, the second most common has rank 2, etc.*\n\n*Zipf's law describes a relationship between the ranks and frequencies of words in natural languages* ([http://en.wikipedia.org/wiki/Zipf's_law](http://en.wikipedia.org/wiki/Zipf)). Specifically, it predicts that the frequency, *f , of the word with rank r is:*\n\n$f = cr^{-s}$\n\n*where s and c are parameters that depend on the language and the text. If you take the logarithm of both sides of this equation, you get:*\n\n$$\n\\log f = \\log c - s \\log r\n$$\n\n*So if you plot log f versus log r, you should get a straight line with slope* −*s and intercept log c.*\n\n*Write a program that reads a text from a file, counts word frequencies, and prints one line for each word, in descending order of frequency, with log f and log r. Use the graphing program of your choice to plot the results and check whether they form a straight line. Can you estimate the value of s?*\n\n*Solution:* [http: // thinkpython. com/ code/ zipf. py](http://thinkpython.com/code/zipf.py) *. To make the plots, you might have to* install matplotlib (see <http://matplotlib.sourceforge.net/>).\n\n# <span id=\"page-154-0\"></span>**Chapter 14**\n\n# **Files**\n\n#### <span id=\"page-154-1\"></span>**14.1 Persistence**\n\nMost of the programs we have seen so far are transient in the sense that they run for a short time and produce some output, but when they end, their data disappears. If you run the program again, it starts with a clean slate.\n\nOther programs are **persistent**: they run for a long time (or all the time); they keep at least some of their data in permanent storage (a hard drive, for example); and if they shut down and restart, they pick up where they left off.\n\nExamples of persistent programs are operating systems, which run pretty much whenever a computer is on, and web servers, which run all the time, waiting for requests to come in on the network.\n\nOne of the simplest ways for programs to maintain their data is by reading and writing text files. We have already seen programs that read text files; in this chapter we will see programs that write them.\n\nAn alternative is to store the state of the program in a database. In this chapter I will present a simple database and a module, pickle, that makes it easy to store program data.\n\n#### <span id=\"page-154-2\"></span>**14.2 Reading and writing**\n\nA text file is a sequence of characters stored on a permanent medium like a hard drive, flash memory, or CD-ROM. We saw how to open and read a file in Section [9.1.](#page-102-1)\n\nTo write a file, you have to open it with mode 'w' as a second parameter:\n\n```\n>>> fout = open('output.txt', 'w')\n>>> print fout\n<open file 'output.txt', mode 'w' at 0xb7eb2410>\n```\nIf the file already exists, opening it in write mode clears out the old data and starts fresh, so be careful! If the file doesn't exist, a new one is created.\n\nThe write method puts data into the file.\n\n>>> line1 = \"This here's the wattle,\\n\" >>> fout.write(line1)\n\nAgain, the file object keeps track of where it is, so if you call write again, it adds the new data to the end.\n\n>>> line2 = \"the emblem of our land.\\n\" >>> fout.write(line2)\n\nWhen you are done writing, you have to close the file.\n\n>>> fout.close()\n\n#### <span id=\"page-155-0\"></span>**14.3 Format operator**\n\nThe argument of write has to be a string, so if we want to put other values in a file, we have to convert them to strings. The easiest way to do that is with str:\n\n```\n>>> x = 52\n>>> fout.write(str(x))\n```\nAn alternative is to use the **format operator**, %. When applied to integers, % is the modulus operator. But when the first operand is a string, % is the format operator.\n\nThe first operand is the **format string**, which contains one or more **format sequences**, which specify how the second operand is formatted. The result is a string.\n\nFor example, the format sequence '%d' means that the second operand should be formatted as an integer (d stands for \"decimal\"):\n\n```\n>>> camels = 42\n>>> '%d' % camels\n'42'\n```\nThe result is the string '42', which is not to be confused with the integer value 42.\n\nA format sequence can appear anywhere in the string, so you can embed a value in a sentence:\n\n```\n>>> camels = 42\n>>> 'I have spotted %d camels.' % camels\n'I have spotted 42 camels.'\n```\nIf there is more than one format sequence in the string, the second argument has to be a tuple. Each format sequence is matched with an element of the tuple, in order.\n\nThe following example uses '%d' to format an integer, '%g' to format a floating-point number (don't ask why), and '%s' to format a string:\n\n```\n>>> 'In %d years I have spotted %g %s.' % (3, 0.1, 'camels')\n'In 3 years I have spotted 0.1 camels.'\n```\nThe number of elements in the tuple has to match the number of format sequences in the string. Also, the types of the elements have to match the format sequences:\n\n```\n>>> '%d %d %d' % (1, 2)\nTypeError: not enough arguments for format string\n>>> '%d' % 'dollars'\nTypeError: illegal argument type for built-in operation\n```\nIn the first example, there aren't enough elements; in the second, the element is the wrong type.\n\nThe format operator is powerful, but it can be difficult to use. You can read more about it at <http://docs.python.org/2/library/stdtypes.html#string-formatting>.\n\n#### <span id=\"page-156-0\"></span>**14.4 Filenames and paths**\n\nFiles are organized into **directories** (also called \"folders\"). Every running program has a \"current directory,\" which is the default directory for most operations. For example, when you open a file for reading, Python looks for it in the current directory.\n\nThe os module provides functions for working with files and directories (\"os\" stands for \"operating system\"). os.getcwd returns the name of the current directory:\n\n```\n>>> import os\n>>> cwd = os.getcwd()\n>>> print cwd\n/home/dinsdale\n```\ncwd stands for \"current working directory.\" The result in this example is /home/dinsdale, which is the home directory of a user named dinsdale.\n\nA string like cwd that identifies a file is called a **path**. A **relative path** starts from the current directory; an **absolute path** starts from the topmost directory in the file system.\n\nThe paths we have seen so far are simple filenames, so they are relative to the current directory. To find the absolute path to a file, you can use os.path.abspath:\n\n```\n>>> os.path.abspath('memo.txt')\n'/home/dinsdale/memo.txt'\n```\nos.path.exists checks whether a file or directory exists:\n\n```\n>>> os.path.exists('memo.txt')\n```\nTrue\n\nIf it exists, os.path.isdir checks whether it's a directory:\n\n```\n>>> os.path.isdir('memo.txt')\nFalse\n>>> os.path.isdir('music')\nTrue\n```\nSimilarly, os.path.isfile checks whether it's a file.\n\nos.listdir returns a list of the files (and other directories) in the given directory:\n\n```\n>>> os.listdir(cwd)\n['music', 'photos', 'memo.txt']\n```\nTo demonstrate these functions, the following example \"walks\" through a directory, prints the names of all the files, and calls itself recursively on all the directories.\n\n```\ndef walk(dirname):\n    for name in os.listdir(dirname):\n        path = os.path.join(dirname, name)\n```\n\n```\nif os.path.isfile(path):\n    print path\nelse:\n    walk(path)\n```\nos.path.join takes a directory and a file name and joins them into a complete path. **Exercise 14.1.** *The* os *module provides a function called* walk *that is similar to this one but more versatile. Read the documentation and use it to print the names of the files in a given directory and its subdirectories.*\n\n*Solution:* [http: // thinkpython. com/ code/ walk. py](http://thinkpython.com/code/walk.py) *.*\n\n## <span id=\"page-157-0\"></span>**14.5 Catching exceptions**\n\nA lot of things can go wrong when you try to read and write files. If you try to open a file that doesn't exist, you get an IOError:\n\n```\n>>> fin = open('bad_file')\nIOError: [Errno 2] No such file or directory: 'bad_file'\n```\nIf you don't have permission to access a file:\n\n>>> fout = open('/etc/passwd', 'w') IOError: [Errno 13] Permission denied: '/etc/passwd' And if you try to open a directory for reading, you get\n\n>>> fin = open('/home') IOError: [Errno 21] Is a directory\n\nTo avoid these errors, you could use functions like os.path.exists and os.path.isfile, but it would take a lot of time and code to check all the possibilities (if \"Errno 21\" is any indication, there are at least 21 things that can go wrong).\n\nIt is better to go ahead and try—and deal with problems if they happen—which is exactly what the try statement does. The syntax is similar to an if statement:\n\n```\ntry:\n    fin = open('bad_file')\n    for line in fin:\n        print line\n    fin.close()\nexcept:\n    print 'Something went wrong.'\n```\nPython starts by executing the try clause. If all goes well, it skips the except clause and proceeds. If an exception occurs, it jumps out of the try clause and executes the except clause.\n\nHandling an exception with a try statement is called **catching** an exception. In this example, the except clause prints an error message that is not very helpful. In general, catching an exception gives you a chance to fix the problem, or try again, or at least end the program gracefully.\n\n**Exercise 14.2.** *Write a function called* sed *that takes as arguments a pattern string, a replacement string, and two filenames; it should read the first file and write the contents into the second file (creating it if necessary). If the pattern string appears anywhere in the file, it should be replaced with the replacement string.*\n\n*If an error occurs while opening, reading, writing or closing files, your program should catch the* exception, print an error message, and exit. Solution: [http://thinkpython.com/code/sed.](http://thinkpython.com/code/sed.py) [py](http://thinkpython.com/code/sed.py) *.*\n\n#### <span id=\"page-158-0\"></span>**14.6 Databases**\n\nA **database** is a file that is organized for storing data. Most databases are organized like a dictionary in the sense that they map from keys to values. The biggest difference is that the database is on disk (or other permanent storage), so it persists after the program ends.\n\nThe module anydbm provides an interface for creating and updating database files. As an example, I'll create a database that contains captions for image files.\n\nOpening a database is similar to opening other files:\n\n```\n>>> import anydbm\n>>> db = anydbm.open('captions.db', 'c')\n```\nThe mode 'c' means that the database should be created if it doesn't already exist. The result is a database object that can be used (for most operations) like a dictionary. If you create a new item, anydbm updates the database file.\n\n>>> db['cleese.png'] = 'Photo of John Cleese.'\n\nWhen you access one of the items, anydbm reads the file:\n\n```\n>>> print db['cleese.png']\nPhoto of John Cleese.\n```\nIf you make another assignment to an existing key, anydbm replaces the old value:\n\n```\n>>> db['cleese.png'] = 'Photo of John Cleese doing a silly walk.'\n>>> print db['cleese.png']\nPhoto of John Cleese doing a silly walk.\n```\nMany dictionary methods, like keys and items, also work with database objects. So does iteration with a for statement.\n\nfor key in db: print key\n\nAs with other files, you should close the database when you are done:\n\n```\n>>> db.close()\n```\n#### <span id=\"page-158-1\"></span>**14.7 Pickling**\n\nA limitation of anydbm is that the keys and values have to be strings. If you try to use any other type, you get an error.\n\nThe pickle module can help. It translates almost any type of object into a string suitable for storage in a database, and then translates strings back into objects.\n\npickle.dumps takes an object as a parameter and returns a string representation (dumps is short for \"dump string\"):\n\n```\n>>> import pickle\n>>> t = [1, 2, 3]\n>>> pickle.dumps(t)\n'(lp0\\nI1\\naI2\\naI3\\na.'\n```\nThe format isn't obvious to human readers; it is meant to be easy for pickle to interpret. pickle.loads (\"load string\") reconstitutes the object:\n\n```\n>>> t1 = [1, 2, 3]\n>>> s = pickle.dumps(t1)\n>>> t2 = pickle.loads(s)\n>>> print t2\n[1, 2, 3]\n```\nAlthough the new object has the same value as the old, it is not (in general) the same object:\n\n```\n>>> t1 == t2\nTrue\n>>> t1 is t2\nFalse\n```\nIn other words, pickling and then unpickling has the same effect as copying the object.\n\nYou can use pickle to store non-strings in a database. In fact, this combination is so common that it has been encapsulated in a module called shelve.\n\n**Exercise 14.3.** *If you download my solution to Exercise [12.4](#page-142-2) from* [http: // thinkpython. com/](http://thinkpython.com/code/anagram_sets.py) [code/ anagram_ sets. py](http://thinkpython.com/code/anagram_sets.py) *, you'll see that it creates a dictionary that maps from a sorted string of letters to the list of words that can be spelled with those letters. For example,* 'opst' *maps to the list* ['opts', 'post', 'pots', 'spot', 'stop', 'tops']*.*\n\n*Write a module that imports* anagram_sets *and provides two new functions:* store_anagrams *should store the anagram dictionary in a \"shelf;\"* read_anagrams *should look up a word and return a list of its anagrams. Solution:* [http: // thinkpython. com/ code/ anagram_ db. py](http://thinkpython.com/code/anagram_db.py)\n\n### <span id=\"page-159-0\"></span>**14.8 Pipes**\n\nMost operating systems provide a command-line interface, also known as a **shell**. Shells usually provide commands to navigate the file system and launch applications. For example, in Unix you can change directories with cd, display the contents of a directory with ls, and launch a web browser by typing (for example) firefox.\n\nAny program that you can launch from the shell can also be launched from Python using a **pipe**. A pipe is an object that represents a running program.\n\nFor example, the Unix command ls -l normally displays the contents of the current directory (in long format). You can launch ls with os.popen[1](#page-159-1) :\n\n```\n>>> cmd = 'ls -l'\n>>> fp = os.popen(cmd)\n```\nThe argument is a string that contains a shell command. The return value is an object that behaves just like an open file. You can read the output from the ls process one line at a time with readline or get the whole thing at once with read:\n\n<span id=\"page-159-1\"></span><sup>1</sup>popen is deprecated now, which means we are supposed to stop using it and start using the subprocess module. But for simple cases, I find subprocess more complicated than necessary. So I am going to keep using popen until they take it away.\n\n>>> res = fp.read()\n\nWhen you are done, you close the pipe like a file:\n\n```\n>>> stat = fp.close()\n>>> print stat\nNone\n```\nThe return value is the final status of the ls process; None means that it ended normally (with no errors).\n\nFor example, most Unix systems provide a command called md5sum that reads the contents of a file and computes a \"checksum.\" You can read about MD5 at [http://en.wikipedia.](http://en.wikipedia.org/wiki/Md5) [org/wiki/Md5](http://en.wikipedia.org/wiki/Md5). This command provides an efficient way to check whether two files have the same contents. The probability that different contents yield the same checksum is very small (that is, unlikely to happen before the universe collapses).\n\nYou can use a pipe to run md5sum from Python and get the result:\n\n```\n>>> filename = 'book.tex'\n>>> cmd = 'md5sum ' + filename\n>>> fp = os.popen(cmd)\n>>> res = fp.read()\n>>> stat = fp.close()\n>>> print res\n1e0033f0ed0656636de0d75144ba32e0 book.tex\n>>> print stat\nNone\n```\n<span id=\"page-160-0\"></span>**Exercise 14.4.** *In a large collection of MP3 files, there may be more than one copy of the same song, stored in different directories or with different file names. The goal of this exercise is to search for duplicates.*\n\n- *1. Write a program that searches a directory and all of its subdirectories, recursively, and returns a list of complete paths for all files with a given suffix (like* .mp3*). Hint:* os.path *provides several useful functions for manipulating file and path names.*\n- *2. To recognize duplicates, you can use* md5sum *to compute a \"checksum\" for each files. If two files have the same checksum, they probably have the same contents.*\n- *3. To double-check, you can use the Unix command* diff*.*\n\n*Solution:* [http: // thinkpython. com/ code/ find_ duplicates. py](http://thinkpython.com/code/find_duplicates.py) *.*\n\n#### <span id=\"page-160-1\"></span>**14.9 Writing modules**\n\nAny file that contains Python code can be imported as a module. For example, suppose you have a file named wc.py with the following code:\n\n```\ndef linecount(filename):\n    count = 0\n    for line in open(filename):\n        count += 1\n    return count\n```\nprint linecount('wc.py')\n\nIf you run this program, it reads itself and prints the number of lines in the file, which is 7. You can also import it like this:\n\n```\n>>> import wc\n7\n```\nNow you have a module object wc:\n\n```\n>>> print wc\n<module 'wc' from 'wc.py'>\n```\nThat provides a function called linecount:\n\n```\n>>> wc.linecount('wc.py')\n7\n```\nSo that's how you write modules in Python.\n\nThe only problem with this example is that when you import the module it executes the test code at the bottom. Normally when you import a module, it defines new functions but it doesn't execute them.\n\nPrograms that will be imported as modules often use the following idiom:\n\n```\nif __name__ == '__main__':\n    print linecount('wc.py')\n```\n__name__ is a built-in variable that is set when the program starts. If the program is running as a script, __name__ has the value __main__; in that case, the test code is executed. Otherwise, if the module is being imported, the test code is skipped.\n\n**Exercise 14.5.** *Type this example into a file named* wc.py *and run it as a script. Then run the Python interpreter and* import wc*. What is the value of* __name__ *when the module is being imported?*\n\n*Warning: If you import a module that has already been imported, Python does nothing. It does not re-read the file, even if it has changed.*\n\n*If you want to reload a module, you can use the built-in function* reload*, but it can be tricky, so the safest thing to do is restart the interpreter and then import the module again.*\n\n### <span id=\"page-161-0\"></span>**14.10 Debugging**\n\nWhen you are reading and writing files, you might run into problems with whitespace. These errors can be hard to debug because spaces, tabs and newlines are normally invisible:\n\n```\n>>> s = '1 2\\t 3\\n 4'\n>>> print s\n1 2 3\n 4\n```\nThe built-in function repr can help. It takes any object as an argument and returns a string representation of the object. For strings, it represents whitespace characters with backslash sequences:\n\n```\n>>> print repr(s)\n'1 2\\t 3\\n 4'\n```\nThis can be helpful for debugging.\n\nOne other problem you might run into is that different systems use different characters to indicate the end of a line. Some systems use a newline, represented \\n. Others use a return character, represented \\r. Some use both. If you move files between different systems, these inconsistencies might cause problems.\n\nFor most systems, there are applications to convert from one format to another. You can find them (and read more about this issue) at <http://en.wikipedia.org/wiki/Newline>. Or, of course, you could write one yourself.\n\n#### <span id=\"page-162-0\"></span>**14.11 Glossary**\n\n- **persistent:** Pertaining to a program that runs indefinitely and keeps at least some of its data in permanent storage.\n- **format operator:** An operator, %, that takes a format string and a tuple and generates a string that includes the elements of the tuple formatted as specified by the format string.\n- **format string:** A string, used with the format operator, that contains format sequences.\n- **format sequence:** A sequence of characters in a format string, like %d, that specifies how a value should be formatted.\n- **text file:** A sequence of characters stored in permanent storage like a hard drive.\n- **directory:** A named collection of files, also called a folder.\n- **path:** A string that identifies a file.\n- **relative path:** A path that starts from the current directory.\n- **absolute path:** A path that starts from the topmost directory in the file system.\n- **catch:** To prevent an exception from terminating a program using the try and except statements.\n- **database:** A file whose contents are organized like a dictionary with keys that correspond to values.\n\n#### <span id=\"page-162-1\"></span>**14.12 Exercises**\n\n<span id=\"page-162-2\"></span>**Exercise 14.6.** *The* urllib *module provides methods for manipulating URLs and downloading information from the web. The following example downloads and prints a secret message from* thinkpython.com*:*\n\n```\nimport urllib\n```\n\n```\nconn = urllib.urlopen('http://thinkpython.com/secret.html')\nfor line in conn:\n    print line.strip()\n```\n*Run this code and follow the instructions you see there. Solution:* [http: // thinkpython. com/](http://thinkpython.com/code/zip_code.py) [code/ zip_ code. py](http://thinkpython.com/code/zip_code.py) *.*\n\n# <span id=\"page-164-0\"></span>**Chapter 15**\n\n# **Classes and objects**\n\nCode examples from this chapter are available from [http://thinkpython.com/code/](http://thinkpython.com/code/Point1.py) [Point1.py](http://thinkpython.com/code/Point1.py); solutions to the exercises are available from [http://thinkpython.com/code/](http://thinkpython.com/code/Point1_soln.py) [Point1_soln.py](http://thinkpython.com/code/Point1_soln.py).\n\n#### <span id=\"page-164-1\"></span>**15.1 User-defined types**\n\nWe have used many of Python's built-in types; now we are going to define a new type. As an example, we will create a type called Point that represents a point in two-dimensional space.\n\nIn mathematical notation, points are often written in parentheses with a comma separating the coordinates. For example, (0,0) represents the origin, and ($x$, $y$) represents the point $x $units to the right and *y* units up from the origin.\n\nThere are several ways we might represent points in Python:\n\n- We could store the coordinates separately in two variables, x and y.\n- We could store the coordinates as elements in a list or tuple.\n- We could create a new type to represent points as objects.\n\nCreating a new type is (a little) more complicated than the other options, but it has advantages that will be apparent soon.\n\nA user-defined type is also called a **class**. A class definition looks like this:\n\n```\nclass Point(object):\n    \"\"\"Represents a point in 2-D space.\"\"\"\n```\nThis header indicates that the new class is a Point, which is a kind of object, which is a built-in type.\n\nThe body is a docstring that explains what the class is for. You can define variables and functions inside a class definition, but we will get back to that later.\n\nDefining a class named Point creates a class object.\n\n```\nx\n              y\n                       3.0\n                       4.0\nblank\n            Point\n```\n<span id=\"page-165-1\"></span>Figure 15.1: Object diagram.\n\n```\n>>> print Point\n<class '__main__.Point'>\n```\nBecause Point is defined at the top level, its “full name” is __main__.Point.\n\nThe class object is like a factory for creating objects. To create a Point, you call Point as if it were a function.\n\n```\n>>> blank = Point()\n>>> print blank\n<__main__.Point instance at 0xb7e9d3ac>\n```\nThe return value is a reference to a Point object, which we assign to blank. Creating a new object is called **instantiation**, and the object is an **instance** of the class.\n\nWhen you print an instance, Python tells you what class it belongs to and where it is stored in memory (the prefix 0x means that the following number is in hexadecimal).\n\n### <span id=\"page-165-0\"></span>**15.2 Attributes**\n\nYou can assign values to an instance using dot notation:\n\n```\n>>> blank.x = 3.0\n>>> blank.y = 4.0\n```\nThis syntax is similar to the syntax for selecting a variable from a module, such as math.pi or string.whitespace. In this case, though, we are assigning values to named elements of an object. These elements are called **attributes**.\n\nAs a noun, \"AT-trib-ute\" is pronounced with emphasis on the first syllable, as opposed to \"a-TRIB-ute,\" which is a verb.\n\nThe following diagram shows the result of these assignments. A state diagram that shows an object and its attributes is called an **object diagram**; see Figure [15.1.](#page-165-1)\n\nThe variable blank refers to a Point object, which contains two attributes. Each attribute refers to a floating-point number.\n\nYou can read the value of an attribute using the same syntax:\n\n```\n>>> print blank.y\n4.0\n>>> x = blank.x\n>>> print x\n3.0\n```\nThe expression blank.x means, \"Go to the object blank refers to and get the value of x.\" In this case, we assign that value to a variable named x. There is no conflict between the variable x and the attribute x.\n\nYou can use dot notation as part of any expression. For example:\n\n```\n>>> print '(%g, %g)' % (blank.x, blank.y)\n(3.0, 4.0)\n>>> distance = math.sqrt(blank.x**2 + blank.y**2)\n>>> print distance\n5.0\n```\nYou can pass an instance as an argument in the usual way. For example:\n\ndef print_point(p): print '(%g, %g)' % (p.x, p.y)\n\nprint_point takes a point as an argument and displays it in mathematical notation. To invoke it, you can pass blank as an argument:\n\n>>> print_point(blank) (3.0, 4.0)\n\nInside the function, p is an alias for blank, so if the function modifies p, blank changes. **Exercise 15.1.** *Write a function called* distance_between_points *that takes two Points as arguments and returns the distance between them.*\n\n#### <span id=\"page-166-0\"></span>**15.3 Rectangles**\n\nSometimes it is obvious what the attributes of an object should be, but other times you have to make decisions. For example, imagine you are designing a class to represent rectangles. What attributes would you use to specify the location and size of a rectangle? You can ignore angle; to keep things simple, assume that the rectangle is either vertical or horizontal.\n\nThere are at least two possibilities:\n\n- You could specify one corner of the rectangle (or the center), the width, and the height.\n- You could specify two opposing corners.\n\nAt this point it is hard to say whether either is better than the other, so we'll implement the first one, just as an example.\n\nHere is the class definition:\n\n```\nclass Rectangle(object):\n    \"\"\"Represents a rectangle.\n    attributes: width, height, corner.\n    \"\"\"\n```\nThe docstring lists the attributes: width and height are numbers; corner is a Point object that specifies the lower-left corner.\n\nTo represent a rectangle, you have to instantiate a Rectangle object and assign values to the attributes:\n\nbox = Rectangle() box.width = 100.0 box.height = 200.0\n\n![](_page_167_Figure_1.jpeg)\n\n<span id=\"page-167-2\"></span>Figure 15.2: Object diagram.\n\n```\nbox.corner = Point()\nbox.corner.x = 0.0\nbox.corner.y = 0.0\n```\nThe expression box.corner.x means, \"Go to the object box refers to and select the attribute named corner; then go to that object and select the attribute named x.\"\n\nFigure [15.2](#page-167-2) shows the state of this object. An object that is an attribute of another object is **embedded**.\n\n#### <span id=\"page-167-0\"></span>**15.4 Instances as return values**\n\nFunctions can return instances. For example, find_center takes a Rectangle as an argument and returns a Point that contains the coordinates of the center of the Rectangle:\n\n```\ndef find_center(rect):\n    p = Point()\n    p.x = rect.corner.x + rect.width/2.0\n    p.y = rect.corner.y + rect.height/2.0\n    return p\n```\nHere is an example that passes box as an argument and assigns the resulting Point to center:\n\n```\n>>> center = find_center(box)\n>>> print_point(center)\n(50.0, 100.0)\n```\n#### <span id=\"page-167-1\"></span>**15.5 Objects are mutable**\n\nYou can change the state of an object by making an assignment to one of its attributes. For example, to change the size of a rectangle without changing its position, you can modify the values of width and height:\n\n```\nbox.width = box.width + 50\nbox.height = box.width + 100\n```\nYou can also write functions that modify objects. For example, grow_rectangle takes a Rectangle object and two numbers, dwidth and dheight, and adds the numbers to the width and height of the rectangle:\n\n```\ndef grow_rectangle(rect, dwidth, dheight):\n    rect.width += dwidth\n    rect.height += dheight\n```\nHere is an example that demonstrates the effect:\n\n```\n>>> print box.width\n100.0\n>>> print box.height\n200.0\n>>> grow_rectangle(box, 50, 100)\n>>> print box.width\n150.0\n>>> print box.height\n300.0\n```\nInside the function, rect is an alias for box, so if the function modifies rect, box changes. **Exercise 15.2.** *Write a function named* move_rectangle *that takes a Rectangle and two numbers named* dx *and* dy*. It should change the location of the rectangle by adding* dx *to the* x *coordinate of* corner *and adding* dy *to the* y *coordinate of* corner*.*\n\n#### <span id=\"page-168-0\"></span>**15.6 Copying**\n\nAliasing can make a program difficult to read because changes in one place might have unexpected effects in another place. It is hard to keep track of all the variables that might refer to a given object.\n\nCopying an object is often an alternative to aliasing. The copy module contains a function called copy that can duplicate any object:\n\n```\n>>> p1 = Point()\n>>> p1.x = 3.0\n>>> p1.y = 4.0\n>>> import copy\n>>> p2 = copy.copy(p1)\n```\np1 and p2 contain the same data, but they are not the same Point.\n\n```\n>>> print_point(p1)\n(3.0, 4.0)\n>>> print_point(p2)\n(3.0, 4.0)\n>>> p1 is p2\nFalse\n>>> p1 == p2\nFalse\n```\nThe is operator indicates that p1 and p2 are not the same object, which is what we expected. But you might have expected == to yield True because these points contain the same data. In that case, you will be disappointed to learn that for instances, the default behavior of the == operator is the same as the is operator; it checks object identity, not object equivalence. This behavior can be changed—we'll see how later.\n\nIf you use copy.copy to duplicate a Rectangle, you will find that it copies the Rectangle object but not the embedded Point.\n\n![](_page_169_Figure_1.jpeg)\n\n<span id=\"page-169-1\"></span>Figure 15.3: Object diagram.\n\n```\n>>> box2 = copy.copy(box)\n>>> box2 is box\nFalse\n>>> box2.corner is box.corner\nTrue\n```\nFigure [15.3](#page-169-1) shows what the object diagram looks like. This operation is called a **shallow copy** because it copies the object and any references it contains, but not the embedded objects.\n\nFor most applications, this is not what you want. In this example, invoking grow_rectangle on one of the Rectangles would not affect the other, but invoking move_rectangle on either would affect both! This behavior is confusing and error-prone.\n\nFortunately, the copy module contains a method named deepcopy that copies not only the object but also the objects it refers to, and the objects *they* refer to, and so on. You will not be surprised to learn that this operation is called a **deep copy**.\n\n```\n>>> box3 = copy.deepcopy(box)\n>>> box3 is box\nFalse\n>>> box3.corner is box.corner\nFalse\n```\nbox3 and box are completely separate objects.\n\n**Exercise 15.3.** *Write a version of* move_rectangle *that creates and returns a new Rectangle instead of modifying the old one.*\n\n#### <span id=\"page-169-0\"></span>**15.7 Debugging**\n\nWhen you start working with objects, you are likely to encounter some new exceptions. If you try to access an attribute that doesn't exist, you get an AttributeError:\n\n```\n>>> p = Point()\n>>> print p.z\nAttributeError: Point instance has no attribute 'z'\n```\nIf you are not sure what type an object is, you can ask:\n\n```\n>>> type(p)\n<type '__main__.Point'>\n```\nIf you are not sure whether an object has a particular attribute, you can use the built-in function hasattr:\n\n```\n>>> hasattr(p, 'x')\nTrue\n>>> hasattr(p, 'z')\nFalse\n```\nThe first argument can be any object; the second argument is a *string* that contains the name of the attribute.\n\n#### <span id=\"page-170-0\"></span>**15.8 Glossary**\n\n**class:** A user-defined type. A class definition creates a new class object.\n\n- **class object:** An object that contains information about a user-defined type. The class object can be used to create instances of the type.\n**instance:** An object that belongs to a class.\n\n**attribute:** One of the named values associated with an object.\n\nembedded (object): An object that is stored as an attribute of another object.\n\n- **shallow copy:** To copy the contents of an object, including any references to embedded objects; implemented by the copy function in the copy module.\n- **deep copy:** To copy the contents of an object as well as any embedded objects, and any objects embedded in them, and so on; implemented by the deepcopy function in the copy module.\n- **object diagram:** A diagram that shows objects, their attributes, and the values of the attributes.\n\n#### <span id=\"page-170-1\"></span>**15.9 Exercises**\n\n<span id=\"page-170-2\"></span>**Exercise 15.4.** *Swampy (see Chapter [4)](#page-52-0) provides a module named* World*, which defines a userdefined type also called* World*. You can import it like this:*\n\nfrom swampy.World import World\n\n*Or, depending on how you installed Swampy, like this:*\n\nfrom World import World\n\n*The following code creates a World object and calls the* mainloop *method, which waits for the user.*\n\n*A window should appear with a title bar and an empty square. We will use this window to draw Points, Rectangles and other shapes. Add the following lines before calling* mainloop *and run the program again.*\n\n```\ncanvas = world.ca(width=500, height=500, background='white')\nbbox = [[-150,-100], [150, 100]]\ncanvas.rectangle(bbox, outline='black', width=2, fill='green4')\n```\n*You should see a green rectangle with a black outline. The first line creates a Canvas, which appears in the window as a white square. The Canvas object provides methods like* rectangle *for drawing various shapes.*\n\nbbox *is a list of lists that represents the \"bounding box\" of the rectangle. The first pair of coordinates is the lower-left corner of the rectangle; the second pair is the upper-right corner.*\n\n*You can draw a circle like this:*\n\ncanvas.circle([-25,0], 70, outline=None, fill='red')\n\n*The first parameter is the coordinate pair for the center of the circle; the second parameter is the radius.*\n\n*If you add this line to the program, the result should resemble the national flag of Bangladesh (see* [http: // en. wikipedia. org/ wiki/ Gallery_ of_ sovereign-state_ flags](http://en.wikipedia.org/wiki/Gallery_of_sovereign-state_flags) *).*\n\n- *1. Write a function called* draw_rectangle *that takes a Canvas and a Rectangle as arguments and draws a representation of the Rectangle on the Canvas.*\n- *2. Add an attribute named* color *to your Rectangle objects and modify* draw_rectangle *so that it uses the color attribute as the fill color.*\n- *3. Write a function called* draw_point *that takes a Canvas and a Point as arguments and draws a representation of the Point on the Canvas.*\n- *4. Define a new class called Circle with appropriate attributes and instantiate a few Circle objects. Write a function called* draw_circle *that draws circles on the canvas.*\n- *5. Write a program that draws the national flag of the Czech Republic. Hint: you can draw a polygon like this:*\n\npoints = [[-150,-100], [150, 100], [150, -100]] canvas.polygon(points, fill='blue')\n\n*I have written a small program that lists the available colors; you can download it from* [http:](http://thinkpython.com/code/color_list.py) [// thinkpython. com/ code/ color_ list. py](http://thinkpython.com/code/color_list.py) *.*\n\n# <span id=\"page-172-0\"></span>**Chapter 16**\n\n# **Classes and functions**\n\nCode examples from this chapter are available from [http://thinkpython.com/code/](http://thinkpython.com/code/Time1.py) [Time1.py](http://thinkpython.com/code/Time1.py).\n\n#### <span id=\"page-172-1\"></span>**16.1 Time**\n\nAs another example of a user-defined type, we'll define a class called Time that records the time of day. The class definition looks like this:\n\n```\nclass Time(object):\n    \"\"\"Represents the time of day.\n    attributes: hour, minute, second\n```\nWe can create a new Time object and assign attributes for hours, minutes, and seconds:\n\n```\ntime = Time()\ntime.hour = 11\ntime.minute = 59\ntime.second = 30\n```\n\"\"\"\n\nThe state diagram for the Time object looks like Figure [16.1.](#page-173-0)\n\n<span id=\"page-172-3\"></span>**Exercise 16.1.** *Write a function called* print_time *that takes a Time object and prints it in the form* hour:minute:second*. Hint: the format sequence* '%.2d' *prints an integer using at least two digits, including a leading zero if necessary.*\n\n<span id=\"page-172-4\"></span>**Exercise 16.2.** *Write a boolean function called* is_after *that takes two Time objects,* t1 *and* t2*, and returns* True *if* t1 *follows* t2 *chronologically and* False *otherwise. Challenge: don't use an* if *statement.*\n\n#### <span id=\"page-172-2\"></span>**16.2 Pure functions**\n\nIn the next few sections, we'll write two functions that add time values. They demonstrate two kinds of functions: pure functions and modifiers. They also demonstrate a development plan I'll call **prototype and patch**, which is a way of tackling a complex problem by starting with a simple prototype and incrementally dealing with the complications.\n\n![](_page_173_Figure_1.jpeg)\n\n<span id=\"page-173-0\"></span>Figure 16.1: Object diagram.\n\nHere is a simple prototype of add_time:\n\n```\ndef add_time(t1, t2):\n    sum = Time()\n    sum.hour = t1.hour + t2.hour\n    sum.minute = t1.minute + t2.minute\n    sum.second = t1.second + t2.second\n    return sum\n```\nThe function creates a new Time object, initializes its attributes, and returns a reference to the new object. This is called a **pure function** because it does not modify any of the objects passed to it as arguments and it has no effect, like displaying a value or getting user input, other than returning a value.\n\nTo test this function, I'll create two Time objects: start contains the start time of a movie, like *Monty Python and the Holy Grail*, and duration contains the run time of the movie, which is one hour 35 minutes.\n\nadd_time figures out when the movie will be done.\n\n```\n>>> start = Time()\n>>> start.hour = 9\n>>> start.minute = 45\n>>> start.second = 0\n>>> duration = Time()\n>>> duration.hour = 1\n>>> duration.minute = 35\n>>> duration.second = 0\n>>> done = add_time(start, duration)\n>>> print_time(done)\n10:80:00\n```\nThe result, 10:80:00 might not be what you were hoping for. The problem is that this function does not deal with cases where the number of seconds or minutes adds up to more than sixty. When that happens, we have to “carry” the extra seconds into the minute column or the extra minutes into the hour column.\n\nHere's an improved version:\n\n```\ndef add_time(t1, t2):\n    sum = Time()\n    sum.hour = t1.hour + t2.hour\n    sum.minute = t1.minute + t2.minute\n    sum.second = t1.second + t2.second\n```\n\n```\nif sum.second >= 60:\n    sum.second -= 60\n    sum.minute += 1\nif sum.minute >= 60:\n    sum.minute -= 60\n    sum.hour += 1\n```\nreturn sum\n\nAlthough this function is correct, it is starting to get big. We will see a shorter alternative later.\n\n#### <span id=\"page-174-0\"></span>**16.3 Modifiers**\n\nSometimes it is useful for a function to modify the objects it gets as parameters. In that case, the changes are visible to the caller. Functions that work this way are called **modifiers**.\n\nincrement, which adds a given number of seconds to a Time object, can be written naturally as a modifier. Here is a rough draft:\n\n```\ndef increment(time, seconds):\n    time.second += seconds\n    if time.second >= 60:\n        time.second -= 60\n        time.minute += 1\n    if time.minute >= 60:\n        time.minute -= 60\n        time.hour += 1\n```\nThe first line performs the basic operation; the remainder deals with the special cases we saw before.\n\nIs this function correct? What happens if the parameter seconds is much greater than sixty?\n\nIn that case, it is not enough to carry once; we have to keep doing it until time.second is less than sixty. One solution is to replace the if statements with while statements. That would make the function correct, but not very efficient.\n\n**Exercise 16.3.** *Write a correct version of* increment *that doesn't contain any loops.*\n\nAnything that can be done with modifiers can also be done with pure functions. In fact, some programming languages only allow pure functions. There is some evidence that programs that use pure functions are faster to develop and less error-prone than programs that use modifiers. But modifiers are convenient at times, and functional programs tend to be less efficient.\n\nIn general, I recommend that you write pure functions whenever it is reasonable and resort to modifiers only if there is a compelling advantage. This approach might be called a **functional programming style**.\n\n**Exercise 16.4.** *Write a \"pure\" version of* increment *that creates and returns a new Time object rather than modifying the parameter.*\n\n### <span id=\"page-175-0\"></span>**16.4 Prototyping versus planning**\n\nThe development plan I am demonstrating is called \"prototype and patch.\" For each function, I wrote a prototype that performed the basic calculation and then tested it, patching errors along the way.\n\nThis approach can be effective, especially if you don't yet have a deep understanding of the problem. But incremental corrections can generate code that is unnecessarily complicated—since it deals with many special cases—and unreliable—since it is hard to know if you have found all the errors.\n\nAn alternative is **planned development**, in which high-level insight into the problem can make the programming much easier. In this case, the insight is that a Time object is really a three-digit number in base 60 (see <http://en.wikipedia.org/wiki/Sexagesimal>.)! The second attribute is the \"ones column,\" the minute attribute is the \"sixties column,\" and the hour attribute is the \"thirty-six hundreds column.\"\n\nWhen we wrote add_time and increment, we were effectively doing addition in base 60, which is why we had to carry from one column to the next.\n\nThis observation suggests another approach to the whole problem—we can convert Time objects to integers and take advantage of the fact that the computer knows how to do integer arithmetic.\n\nHere is a function that converts Times to integers:\n\n```\ndef time_to_int(time):\n    minutes = time.hour * 60 + time.minute\n    seconds = minutes * 60 + time.second\n    return seconds\n```\nAnd here is the function that converts integers to Times (recall that divmod divides the first argument by the second and returns the quotient and remainder as a tuple).\n\n```\ndef int_to_time(seconds):\n    time = Time()\n    minutes, time.second = divmod(seconds, 60)\n    time.hour, time.minute = divmod(minutes, 60)\n    return time\n```\nYou might have to think a bit, and run some tests, to convince yourself that these functions are correct. One way to test them is to check that time_to_int(int_to_time(x)) == x for many values of x. This is an example of a consistency check.\n\nOnce you are convinced they are correct, you can use them to rewrite add_time:\n\n```\ndef add_time(t1, t2):\n    seconds = time_to_int(t1) + time_to_int(t2)\n    return int_to_time(seconds)\n```\nThis version is shorter than the original, and easier to verify. **Exercise 16.5.** *Rewrite* increment *using* time_to_int *and* int_to_time*.*\n\nIn some ways, converting from base 60 to base 10 and back is harder than just dealing with times. Base conversion is more abstract; our intuition for dealing with time values is better.\n\nBut if we have the insight to treat times as base 60 numbers and make the investment of writing the conversion functions (time_to_int and int_to_time), we get a program that is shorter, easier to read and debug, and more reliable.\n\nIt is also easier to add features later. For example, imagine subtracting two Times to find the duration between them. The naive approach would be to implement subtraction with borrowing. Using the conversion functions would be easier and more likely to be correct.\n\nIronically, sometimes making a problem harder (or more general) makes it easier (because there are fewer special cases and fewer opportunities for error).\n\n#### <span id=\"page-176-0\"></span>**16.5 Debugging**\n\nA Time object is well-formed if the values of minute and second are between 0 and 60 (including 0 but not 60) and if hour is positive. hour and minute should be integral values, but we might allow second to have a fraction part.\n\nRequirements like these are called **invariants** because they should always be true. To put it a different way, if they are not true, then something has gone wrong.\n\nWriting code to check your invariants can help you detect errors and find their causes. For example, you might have a function like valid_time that takes a Time object and returns False if it violates an invariant:\n\n```\ndef valid_time(time):\n    if time.hour < 0 or time.minute < 0 or time.second < 0:\n        return False\n    if time.minute >= 60 or time.second >= 60:\n        return False\n    return True\n```\nThen at the beginning of each function you could check the arguments to make sure they are valid:\n\n```\ndef add_time(t1, t2):\n    if not valid_time(t1) or not valid_time(t2):\n        raise ValueError('invalid Time object in add_time')\n    seconds = time_to_int(t1) + time_to_int(t2)\n    return int_to_time(seconds)\n```\nOr you could use an assert statement, which checks a given invariant and raises an exception if it fails:\n\n```\ndef add_time(t1, t2):\n    assert valid_time(t1) and valid_time(t2)\n    seconds = time_to_int(t1) + time_to_int(t2)\n    return int_to_time(seconds)\n```\nassert statements are useful because they distinguish code that deals with normal conditions from code that checks for errors.\n\n#### <span id=\"page-176-1\"></span>**16.6 Glossary**\n\n**prototype and patch:** A development plan that involves writing a rough draft of a program, testing, and correcting errors as they are found.\n\n- **planned development:** A development plan that involves high-level insight into the problem and more planning than incremental development or prototype development.\n- **pure function:** A function that does not modify any of the objects it receives as arguments. Most pure functions are fruitful.\n- **modifier:** A function that changes one or more of the objects it receives as arguments. Most modifiers are fruitless.\n- **functional programming style:** A style of program design in which the majority of functions are pure.\n- **invariant:** A condition that should always be true during the execution of a program.\n\n#### <span id=\"page-177-0\"></span>**16.7 Exercises**\n\nCode examples from this chapter are available from [http://thinkpython.com/code/](http://thinkpython.com/code/Time1.py) [Time1.py](http://thinkpython.com/code/Time1.py); solutions to these exercises are available from [http://thinkpython.com/code/](http://thinkpython.com/code/Time1_soln.py) [Time1_soln.py](http://thinkpython.com/code/Time1_soln.py).\n\n**Exercise 16.6.** *Write a function called* mul_time *that takes a Time object and a number and returns a new Time object that contains the product of the original Time and the number.*\n\n*Then use* mul_time *to write a function that takes a Time object that represents the finishing time in a race, and a number that represents the distance, and returns a Time object that represents the average pace (time per mile).*\n\n**Exercise 16.7.** *The* datetime *module provides* date *and* time *objects that are similar to the Date and Time objects in this chapter, but they provide a rich set of methods and operators. Read the documentation at* [http: // docs. python. org/ 2/ library/ datetime. html](http://docs.python.org/2/library/datetime.html) *.*\n\n- *1. Use the* datetime *module to write a program that gets the current date and prints the day of the week.*\n- *2. Write a program that takes a birthday as input and prints the user's age and the number of days, hours, minutes and seconds until their next birthday.*\n- *3. For two people born on different days, there is a day when one is twice as old as the other. That's their Double Day. Write a program that takes two birthdays and computes their Double Day.*\n- *4. For a little more challenge, write the more general version that computes the day when one person is n times older than the other.*\n\n# <span id=\"page-178-0\"></span>**Chapter 17**\n\n# **Classes and methods**\n\nCode examples from this chapter are available from [http://thinkpython.com/code/](http://thinkpython.com/code/Time2.py) [Time2.py](http://thinkpython.com/code/Time2.py).\n\n#### <span id=\"page-178-1\"></span>**17.1 Object-oriented features**\n\nPython is an **object-oriented programming language**, which means that it provides features that support object-oriented programming.\n\nIt is not easy to define object-oriented programming, but we have already seen some of its characteristics:\n\n- Programs are made up of object definitions and function definitions, and most of the computation is expressed in terms of operations on objects.\n- Each object definition corresponds to some object or concept in the real world, and the functions that operate on that object correspond to the ways real-world objects interact.\n\nFor example, the Time class defined in Chapter [16](#page-172-0) corresponds to the way people record the time of day, and the functions we defined correspond to the kinds of things people do with times. Similarly, the Point and Rectangle classes correspond to the mathematical concepts of a point and a rectangle.\n\nSo far, we have not taken advantage of the features Python provides to support objectoriented programming. These features are not strictly necessary; most of them provide alternative syntax for things we have already done. But in many cases, the alternative is more concise and more accurately conveys the structure of the program.\n\nFor example, in the Time program, there is no obvious connection between the class definition and the function definitions that follow. With some examination, it is apparent that every function takes at least one Time object as an argument.\n\nThis observation is the motivation for **methods**; a method is a function that is associated with a particular class. We have seen methods for strings, lists, dictionaries and tuples. In this chapter, we will define methods for user-defined types.\n\nMethods are semantically the same as functions, but there are two syntactic differences:\n\n- Methods are defined inside a class definition in order to make the relationship between the class and the method explicit.\n- The syntax for invoking a method is different from the syntax for calling a function.\n\nIn the next few sections, we will take the functions from the previous two chapters and transform them into methods. This transformation is purely mechanical; you can do it simply by following a sequence of steps. If you are comfortable converting from one form to another, you will be able to choose the best form for whatever you are doing.\n\n### <span id=\"page-179-0\"></span>**17.2 Printing objects**\n\nIn Chapter [16,](#page-172-0) we defined a class named Time and in Exercise [16.1,](#page-172-3) you wrote a function named print_time:\n\n```\nclass Time(object):\n    \"\"\"Represents the time of day.\"\"\"\n```\n\n```\ndef print_time(time):\n    print '%.2d:%.2d:%.2d' % (time.hour, time.minute, time.second)\n```\nTo call this function, you have to pass a Time object as an argument:\n\n```\n>>> start = Time()\n>>> start.hour = 9\n>>> start.minute = 45\n>>> start.second = 00\n>>> print_time(start)\n09:45:00\n```\nTo make print_time a method, all we have to do is move the function definition inside the class definition. Notice the change in indentation.\n\n```\nclass Time(object):\n    def print_time(time):\n        print '%.2d:%.2d:%.2d' % (time.hour, time.minute, time.second)\n```\nNow there are two ways to call print_time. The first (and less common) way is to use function syntax:\n\n```\n>>> Time.print_time(start)\n09:45:00\n```\nIn this use of dot notation, Time is the name of the class, and print_time is the name of the method. start is passed as a parameter.\n\nThe second (and more concise) way is to use method syntax:\n\n```\n>>> start.print_time()\n09:45:00\n```\nIn this use of dot notation, print_time is the name of the method (again), and start is the object the method is invoked on, which is called the **subject**. Just as the subject of a sentence is what the sentence is about, the subject of a method invocation is what the method is about.\n\nInside the method, the subject is assigned to the first parameter, so in this case start is assigned to time.\n\nBy convention, the first parameter of a method is called self, so it would be more common to write print_time like this:\n\n```\nclass Time(object):\n    def print_time(self):\n        print '%.2d:%.2d:%.2d' % (self.hour, self.minute, self.second)\n```\nThe reason for this convention is an implicit metaphor:\n\n- The syntax for a function call, print_time(start), suggests that the function is the active agent. It says something like, \"Hey print_time! Here's an object for you to print.\"\n- In object-oriented programming, the objects are the active agents. A method invocation like start.print_time() says \"Hey start! Please print yourself.\"\n\nThis change in perspective might be more polite, but it is not obvious that it is useful. In the examples we have seen so far, it may not be. But sometimes shifting responsibility from the functions onto the objects makes it possible to write more versatile functions, and makes it easier to maintain and reuse code.\n\n<span id=\"page-180-1\"></span>**Exercise 17.1.** *Rewrite* time_to_int *(from Section [16.4)](#page-175-0) as a method. It is probably not appropriate to rewrite* int_to_time *as a method; what object you would invoke it on?*\n\n#### <span id=\"page-180-0\"></span>**17.3 Another example**\n\nHere's a version of increment (from Section [16.3)](#page-174-0) rewritten as a method:\n\n```\n# inside class Time:\n```\n\n```\ndef increment(self, seconds):\n    seconds += self.time_to_int()\n    return int_to_time(seconds)\n```\nThis version assumes that time_to_int is written as a method, as in Exercise [17.1.](#page-180-1) Also, note that it is a pure function, not a modifier.\n\nHere's how you would invoke increment:\n\n```\n>>> start.print_time()\n09:45:00\n>>> end = start.increment(1337)\n>>> end.print_time()\n10:07:17\n```\nThe subject, start, gets assigned to the first parameter, self. The argument, 1337, gets assigned to the second parameter, seconds.\n\nThis mechanism can be confusing, especially if you make an error. For example, if you invoke increment with two arguments, you get:\n\n```\n>>> end = start.increment(1337, 460)\nTypeError: increment() takes exactly 2 arguments (3 given)\n```\nThe error message is initially confusing, because there are only two arguments in parentheses. But the subject is also considered an argument, so all together that's three.\n\n#### <span id=\"page-181-0\"></span>**17.4 A more complicated example**\n\nis_after (from Exercise [16.2)](#page-172-4) is slightly more complicated because it takes two Time objects as parameters. In this case it is conventional to name the first parameter self and the second parameter other:\n\n```\ndef is_after(self, other):\n    return self.time_to_int() > other.time_to_int()\n```\nTo use this method, you have to invoke it on one object and pass the other as an argument: >>> end.is_after(start)\n\nTrue\n\nOne nice thing about this syntax is that it almost reads like English: \"end is after start?\"\n\n### <span id=\"page-181-1\"></span>**17.5 The init method**\n\n# inside class Time:\n\nThe init method (short for \"initialization\") is a special method that gets invoked when an object is instantiated. Its full name is __init__ (two underscore characters, followed by init, and then two more underscores). An init method for the Time class might look like this:\n\n```\n# inside class Time:\n```\n\n```\ndef __init__(self, hour=0, minute=0, second=0):\n    self.hour = hour\n    self.minute = minute\n    self.second = second\n```\nIt is common for the parameters of __init__ to have the same names as the attributes. The statement\n\n```\nself.hour = hour\n```\nstores the value of the parameter hour as an attribute of self.\n\nThe parameters are optional, so if you call Time with no arguments, you get the default values.\n\n```\n>>> time = Time()\n>>> time.print_time()\n00:00:00\n```\nIf you provide one argument, it overrides hour:\n\n```\n>>> time = Time (9)\n>>> time.print_time()\n09:00:00\n```\nIf you provide two arguments, they override hour and minute.\n\n```\n>>> time = Time(9, 45)\n>>> time.print_time()\n09:45:00\n```\nAnd if you provide three arguments, they override all three default values.\n\n**Exercise 17.2.** *Write an init method for the* Point *class that takes* x *and* y *as optional parameters and assigns them to the corresponding attributes.*\n\n## <span id=\"page-182-0\"></span>**17.6 The** __str__ **method**\n\n__str__ is a special method, like __init__, that is supposed to return a string representation of an object.\n\nFor example, here is a str method for Time objects:\n\n```\n# inside class Time:\n    def __str__(self):\n        return '%.2d:%.2d:%.2d' % (self.hour, self.minute, self.second)\n```\nWhen you print an object, Python invokes the str method:\n\n```\n>>> time = Time(9, 45)\n>>> print time\n09:45:00\n```\nWhen I write a new class, I almost always start by writing __init__, which makes it easier to instantiate objects, and __str__, which is useful for debugging.\n\n**Exercise 17.3.** *Write a* str *method for the* Point *class. Create a Point object and print it.*\n\n#### <span id=\"page-182-1\"></span>**17.7 Operator overloading**\n\nBy defining other special methods, you can specify the behavior of operators on userdefined types. For example, if you define a method named __add__ for the Time class, you can use the + operator on Time objects.\n\nHere is what the definition might look like:\n\n```\n# inside class Time:\n    def __add__(self, other):\n        seconds = self.time_to_int() + other.time_to_int()\n        return int_to_time(seconds)\n```\nAnd here is how you could use it:\n\n```\n>>> start = Time(9, 45)\n>>> duration = Time(1, 35)\n>>> print start + duration\n11:20:00\n```\nWhen you apply the + operator to Time objects, Python invokes __add__. When you print the result, Python invokes __str__. So there is quite a lot happening behind the scenes!\n\nChanging the behavior of an operator so that it works with user-defined types is called **operator overloading**. For every operator in Python there is a corresponding special method, like __add__. For more details, see [http://docs.python.org/2/reference/datamodel.](http://docs.python.org/2/reference/datamodel.html#specialnames) [html#specialnames](http://docs.python.org/2/reference/datamodel.html#specialnames).\n\n**Exercise 17.4.** *Write an* add *method for the Point class.*\n\n#### <span id=\"page-183-0\"></span>**17.8 Type-based dispatch**\n\nIn the previous section we added two Time objects, but you also might want to add an integer to a Time object. The following is a version of __add__ that checks the type of other and invokes either add_time or increment:\n\n```\n# inside class Time:\n```\n\n```\ndef __add__(self, other):\n    if isinstance(other, Time):\n        return self.add_time(other)\n    else:\n        return self.increment(other)\ndef add_time(self, other):\n    seconds = self.time_to_int() + other.time_to_int()\n    return int_to_time(seconds)\ndef increment(self, seconds):\n    seconds += self.time_to_int()\n    return int_to_time(seconds)\n```\nThe built-in function isinstance takes a value and a class object, and returns True if the value is an instance of the class.\n\nIf other is a Time object, __add__ invokes add_time. Otherwise it assumes that the parameter is a number and invokes increment. This operation is called a **type-based dispatch** because it dispatches the computation to different methods based on the type of the arguments.\n\nHere are examples that use the + operator with different types:\n\n```\n>>> start = Time(9, 45)\n>>> duration = Time(1, 35)\n>>> print start + duration\n11:20:00\n>>> print start + 1337\n10:07:17\n```\nUnfortunately, this implementation of addition is not commutative. If the integer is the first operand, you get\n\n```\n>>> print 1337 + start\n```\nThe problem is, instead of asking the Time object to add an integer, Python is asking an integer to add a Time object, and it doesn't know how to do that. But there is a clever solution for this problem: the special method __radd__, which stands for \"right-side add.\" This method is invoked when a Time object appears on the right side of the + operator. Here's the definition:\n\n```\n# inside class Time:\n```\n\n```\ndef __radd__(self, other):\n    return self.__add__(other)\n```\nAnd here's how it's used:\n\n```\n>>> print 1337 + start\n10:07:17\nExercise 17.5. Write an add method for Points that works with either a Point object or a tuple:\n```\n- *If the second operand is a Point, the method should return a new Point whose x coordinate is the sum of the x coordinates of the operands, and likewise for the y coordinates.*\n- *If the second operand is a tuple, the method should add the first element of the tuple to the x coordinate and the second element to the y coordinate, and return a new Point with the result.*\n\n#### <span id=\"page-184-0\"></span>**17.9 Polymorphism**\n\nType-based dispatch is useful when it is necessary, but (fortunately) it is not always necessary. Often you can avoid it by writing functions that work correctly for arguments with different types.\n\nMany of the functions we wrote for strings will actually work for any kind of sequence. For example, in Section [11.1](#page-123-0) we used histogram to count the number of times each letter appears in a word.\n\n```\ndef histogram(s):\n    d = dict()\n    for c in s:\n        if c not in d:\n             d[c] = 1\n        else:\n             d[c] = d[c]+1\n    return d\n```\nThis function also works for lists, tuples, and even dictionaries, as long as the elements of s are hashable, so they can be used as keys in d.\n\n```\n>>> t = ['spam', 'egg', 'spam', 'spam', 'bacon', 'spam']\n>>> histogram(t)\n{'bacon': 1, 'egg': 1, 'spam': 4}\n```\nFunctions that can work with several types are called **polymorphic**. Polymorphism can facilitate code reuse. For example, the built-in function sum, which adds the elements of a sequence, works as long as the elements of the sequence support addition.\n\nSince Time objects provide an add method, they work with sum:\n\n```\n>>> t1 = Time(7, 43)\n>>> t2 = Time(7, 41)\n>>> t3 = Time(7, 37)\n>>> total = sum([t1, t2, t3])\n>>> print total\n23:01:00\n```\nIn general, if all of the operations inside a function work with a given type, then the function works with that type.\n\nThe best kind of polymorphism is the unintentional kind, where you discover that a function you already wrote can be applied to a type you never planned for.\n\n## <span id=\"page-185-0\"></span>**17.10 Debugging**\n\nIt is legal to add attributes to objects at any point in the execution of a program, but if you are a stickler for type theory, it is a dubious practice to have objects of the same type with different attribute sets. It is usually a good idea to initialize all of an object's attributes in the init method.\n\nIf you are not sure whether an object has a particular attribute, you can use the built-in function hasattr (see Section [15.7)](#page-169-0).\n\nAnother way to access the attributes of an object is through the special attribute __dict__, which is a dictionary that maps attribute names (as strings) and values:\n\n```\n>>> p = Point(3, 4)\n>>> print p.__dict__\n{'y': 4, 'x': 3}\n```\nFor purposes of debugging, you might find it useful to keep this function handy:\n\n```\ndef print_attributes(obj):\n    for attr in obj.__dict__:\n        print attr, getattr(obj, attr)\n```\nprint_attributes traverses the items in the object's dictionary and prints each attribute name and its corresponding value.\n\nThe built-in function getattr takes an object and an attribute name (as a string) and returns the attribute's value.\n\n## <span id=\"page-185-1\"></span>**17.11 Interface and implementation**\n\nOne of the goals of object-oriented design is to make software more maintainable, which means that you can keep the program working when other parts of the system change, and modify the program to meet new requirements.\n\nA design principle that helps achieve that goal is to keep interfaces separate from implementations. For objects, that means that the methods a class provides should not depend on how the attributes are represented.\n\nFor example, in this chapter we developed a class that represents a time of day. Methods provided by this class include time_to_int, is_after, and add_time.\n\nWe could implement those methods in several ways. The details of the implementation depend on how we represent time. In this chapter, the attributes of a Time object are hour, minute, and second.\n\nAs an alternative, we could replace these attributes with a single integer representing the number of seconds since midnight. This implementation would make some methods, like is_after, easier to write, but it makes some methods harder.\n\nAfter you deploy a new class, you might discover a better implementation. If other parts of the program are using your class, it might be time-consuming and error-prone to change the interface.\n\nBut if you designed the interface carefully, you can change the implementation without changing the interface, which means that other parts of the program don't have to change. Keeping the interface separate from the implementation means that you have to hide the attributes. Code in other parts of the program (outside the class definition) should use methods to read and modify the state of the object. They should not access the attributes directly. This principle is called **information hiding**; see [http://en.wikipedia.org/wiki/](http://en.wikipedia.org/wiki/Information_hiding) [Information_hiding](http://en.wikipedia.org/wiki/Information_hiding).\n\n**Exercise 17.6.** *Download the code from this chapter (*[http: // thinkpython. com/ code/](http://thinkpython.com/code/Time2.py) [Time2. py](http://thinkpython.com/code/Time2.py) *). Change the attributes of* Time *to be a single integer representing seconds since midnight. Then modify the methods (and the function* int_to_time*) to work with the new implementation. You should not have to modify the test code in* main*. When you are done, the output should be the same as before. Solution:* [http: // thinkpython. com/ code/ Time2_ soln. py](http://thinkpython.com/code/Time2_soln.py)\n\n#### <span id=\"page-186-0\"></span>**17.12 Glossary**\n\n- **object-oriented language:** A language that provides features, such as user-defined classes and method syntax, that facilitate object-oriented programming.\n- **object-oriented programming:** A style of programming in which data and the operations that manipulate it are organized into classes and methods.\n- **method:** A function that is defined inside a class definition and is invoked on instances of that class.\n- **subject:** The object a method is invoked on.\n- **operator overloading:** Changing the behavior of an operator like + so it works with a userdefined type.\n- **type-based dispatch:** A programming pattern that checks the type of an operand and invokes different functions for different types.\n- **polymorphic:** Pertaining to a function that can work with more than one type.\n- **information hiding:** The principle that the interface provided by an object should not depend on its implementation, in particular the representation of its attributes.\n\n#### <span id=\"page-186-1\"></span>**17.13 Exercises**\n\n**Exercise 17.7.** *This exercise is a cautionary tale about one of the most common, and difficult to find, errors in Python. Write a definition for a class named* Kangaroo *with the following methods:*\n\n- *1. An* __init__ *method that initializes an attribute named* pouch_contents *to an empty list.*\n- *2. A method named* put_in_pouch *that takes an object of any type and adds it to* pouch_contents*.*\n- 3. A __str__ method that returns a string representation of the Kangaroo object and the con*tents of the pouch.*\n\n*Test your code by creating two* Kangaroo *objects, assigning them to variables named* kanga *and* roo*, and then adding* roo *to the contents of* kanga*'s pouch.*\n\n*Download* [http: // thinkpython. com/ code/ BadKangaroo. py](http://thinkpython.com/code/BadKangaroo.py) *. It contains a solution to the previous problem with one big, nasty bug. Find and fix the bug.*\n\n*If you get stuck, you can download* [http: // thinkpython. com/ code/ GoodKangaroo. py](http://thinkpython.com/code/GoodKangaroo.py) *, which explains the problem and demonstrates a solution.*\n\n**Exercise 17.8.** *Visual is a Python module that provides 3-D graphics. It is not always included in a Python installation, so you might have to install it from your software repository or, if it's not there, from* [http: // vpython. org](http://vpython.org) *.*\n\n*The following example creates a 3-D space that is 256 units wide, long and high, and sets the \"center\" to be the point* (128, 128, 128)*. Then it draws a blue sphere.*\n\nfrom visual import *\n\nscene.range = (256, 256, 256) scene.center = (128, 128, 128)\n\ncolor = (0.1, 0.1, 0.9) # mostly blue sphere(pos=scene.center, radius=128, color=color)\n\ncolor *is an RGB tuple; that is, the elements are Red-Green-Blue levels between 0.0 and 1.0 (see* [http: // en. wikipedia. org/ wiki/ RGB_ color_ model](http://en.wikipedia.org/wiki/RGB_color_model) *).*\n\n*If you run this code, you should see a window with a black background and a blue sphere. If you drag the middle button up and down, you can zoom in and out. You can also rotate the scene by dragging the right button, but with only one sphere in the world, it is hard to tell the difference.*\n\n*The following loop creates a cube of spheres:*\n\n```\nt = range(0, 256, 51)\nfor x in t:\n    for y in t:\n        for z in t:\n            pos = x, y, z\n            sphere(pos=pos, radius=10, color=color)\n```\n- *1. Put this code in a script and make sure it works for you.*\n- *2. Modify the program so that each sphere in the cube has the color that corresponds to its position in RGB space. Notice that the coordinates are in the range 0–255, but the RGB tuples are in the range 0.0–1.0.*\n- *3. Download* [http: // thinkpython. com/ code/ color_ list. py](http://thinkpython.com/code/color_list.py) *and use the function* read_colors *to generate a list of the available colors on your system, their names and RGB values. For each named color draw a sphere in the position that corresponds to its RGB values.*\n\n*You can see my solution at* [http: // thinkpython. com/ code/ color_ space. py](http://thinkpython.com/code/color_space.py) *.*\n\n# <span id=\"page-188-0\"></span>**Chapter 18**\n\n# **Inheritance**\n\nIn this chapter I present classes to represent playing cards, decks of cards, and poker hands. If you don't play poker, you can read about it at <http://en.wikipedia.org/wiki/Poker>, but you don't have to; I'll tell you what you need to know for the exercises. Code examples from this chapter are available from <http://thinkpython.com/code/Card.py>.\n\nIf you are not familiar with Anglo-American playing cards, you can read about them at <http://en.wikipedia.org/wiki/Playing_cards>.\n\n#### <span id=\"page-188-1\"></span>**18.1 Card objects**\n\nThere are fifty-two cards in a deck, each of which belongs to one of four suits and one of thirteen ranks. The suits are Spades, Hearts, Diamonds, and Clubs (in descending order in bridge). The ranks are Ace, 2, 3, 4, 5, 6, 7, 8, 9, 10, Jack, Queen, and King. Depending on the game that you are playing, an Ace may be higher than King or lower than 2.\n\nIf we want to define a new object to represent a playing card, it is obvious what the attributes should be: rank and suit. It is not as obvious what type the attributes should be. One possibility is to use strings containing words like 'Spade' for suits and 'Queen' for ranks. One problem with this implementation is that it would not be easy to compare cards to see which had a higher rank or suit.\n\nAn alternative is to use integers to **encode** the ranks and suits. In this context, \"encode\" means that we are going to define a mapping between numbers and suits, or between numbers and ranks. This kind of encoding is not meant to be a secret (that would be \"encryption\").\n\nFor example, this table shows the suits and the corresponding integer codes:\n\n| Spades   | → | 3 |\n|----------|---|---|\n| Hearts   | → | 2 |\n| Diamonds | → | 1 |\n| Clubs    | → | 0 |\n\nThis code makes it easy to compare cards; because higher suits map to higher numbers, we can compare suits by comparing their codes.\n\nThe mapping for ranks is fairly obvious; each of the numerical ranks maps to the corresponding integer, and for face cards:\n\nJack 7→ 11 Queen 7→ 12 King 7→ 13\n\nI am using the 7→ symbol to make it clear that these mappings are not part of the Python program. They are part of the program design, but they don't appear explicitly in the code.\n\nThe class definition for Card looks like this:\n\n```\nclass Card(object):\n    \"\"\"Represents a standard playing card.\"\"\"\n    def __init__(self, suit=0, rank=2):\n        self.suit = suit\n        self.rank = rank\n```\nAs usual, the init method takes an optional parameter for each attribute. The default card is the 2 of Clubs.\n\nTo create a Card, you call Card with the suit and rank of the card you want.\n\n```\nqueen_of_diamonds = Card(1, 12)\n```\n#### <span id=\"page-189-0\"></span>**18.2 Class attributes**\n\nIn order to print Card objects in a way that people can easily read, we need a mapping from the integer codes to the corresponding ranks and suits. A natural way to do that is with lists of strings. We assign these lists to **class attributes**:\n\n```\n# inside class Card:\n```\n\n```\nsuit_names = ['Clubs', 'Diamonds', 'Hearts', 'Spades']\nrank_names = [None, 'Ace', '2', '3', '4', '5', '6', '7',\n          '8', '9', '10', 'Jack', 'Queen', 'King']\ndef __str__(self):\n    return '%s of %s' % (Card.rank_names[self.rank],\n                         Card.suit_names[self.suit])\n```\nVariables like suit_names and rank_names, which are defined inside a class but outside of any method, are called class attributes because they are associated with the class object Card.\n\nThis term distinguishes them from variables like suit and rank, which are called **instance attributes** because they are associated with a particular instance.\n\nBoth kinds of attribute are accessed using dot notation. For example, in __str__, self is a Card object, and self.rank is its rank. Similarly, Card is a class object, and Card.rank_names is a list of strings associated with the class.\n\nEvery card has its own suit and rank, but there is only one copy of suit_names and rank_names.\n\n![](_page_190_Figure_1.jpeg)\n\n<span id=\"page-190-1\"></span>Figure 18.1: Object diagram.\n\nPutting it all together, the expression Card.rank_names[self.rank] means \"use the attribute rank from the object self as an index into the list rank_names from the class Card, and select the appropriate string.\"\n\nThe first element of rank_names is None because there is no card with rank zero. By including None as a place-keeper, we get a mapping with the nice property that the index 2 maps to the string '2', and so on. To avoid this tweak, we could have used a dictionary instead of a list.\n\nWith the methods we have so far, we can create and print cards:\n\n```\n>>> card1 = Card(2, 11)\n>>> print card1\nJack of Hearts\n```\nFigure [18.1](#page-190-1) is a diagram of the Card class object and one Card instance. Card is a class object, so it has type type. card1 has type Card. (To save space, I didn't draw the contents of suit_names and rank_names).\n\n#### <span id=\"page-190-0\"></span>**18.3 Comparing cards**\n\nFor built-in types, there are relational operators (<, >, ==, etc.) that compare values and determine when one is greater than, less than, or equal to another. For user-defined types, we can override the behavior of the built-in operators by providing a method named __cmp__.\n\n__cmp__ takes two parameters, self and other, and returns a positive number if the first object is greater, a negative number if the second object is greater, and 0 if they are equal to each other.\n\nThe correct ordering for cards is not obvious. For example, which is better, the 3 of Clubs or the 2 of Diamonds? One has a higher rank, but the other has a higher suit. In order to compare cards, you have to decide whether rank or suit is more important.\n\nThe answer might depend on what game you are playing, but to keep things simple, we'll make the arbitrary choice that suit is more important, so all of the Spades outrank all of the Diamonds, and so on.\n\nWith that decided, we can write __cmp__:\n\n```\n# inside class Card:\n    def __cmp__(self, other):\n        # check the suits\n        if self.suit > other.suit: return 1\n        if self.suit < other.suit: return -1\n        # suits are the same... check ranks\n        if self.rank > other.rank: return 1\n        if self.rank < other.rank: return -1\n        # ranks are the same... it's a tie\n        return 0\n```\nYou can write this more concisely using tuple comparison:\n\n```\n# inside class Card:\n```\n\n```\ndef __cmp__(self, other):\n    t1 = self.suit, self.rank\n    t2 = other.suit, other.rank\n    return cmp(t1, t2)\n```\nThe built-in function cmp has the same interface as the method __cmp__: it takes two values and returns a positive number if the first is larger, a negative number if the second is larger, and 0 if they are equal.\n\nIn Python 3, cmp no longer exists, and the __cmp__ method is not supported. Instead you should provide __lt__, which returns True if self is less than other. You can implement __lt__ using tuples and the < operator.\n\n**Exercise 18.1.** *Write a* __cmp__ *method for Time objects. Hint: you can use tuple comparison, but you also might consider using integer subtraction.*\n\n#### <span id=\"page-191-0\"></span>**18.4 Decks**\n\nNow that we have Cards, the next step is to define Decks. Since a deck is made up of cards, it is natural for each Deck to contain a list of cards as an attribute.\n\nThe following is a class definition for Deck. The init method creates the attribute cards and generates the standard set of fifty-two cards:\n\n```\ndef __init__(self):\n    self.cards = []\n    for suit in range(4):\n        for rank in range(1, 14):\n            card = Card(suit, rank)\n            self.cards.append(card)\n```\nThe easiest way to populate the deck is with a nested loop. The outer loop enumerates the suits from 0 to 3. The inner loop enumerates the ranks from 1 to 13. Each iteration creates a new Card with the current suit and rank, and appends it to self.cards.\n\n#### <span id=\"page-192-0\"></span>**18.5 Printing the deck**\n\nHere is a __str__ method for Deck: #inside class Deck: def __str__(self): res = [] for card in self.cards: res.append(str(card)) return '\\n'.join(res)\n\nThis method demonstrates an efficient way to accumulate a large string: building a list of strings and then using join. The built-in function str invokes the __str__ method on each card and returns the string representation.\n\nSince we invoke join on a newline character, the cards are separated by newlines. Here's what the result looks like:\n\n```\n>>> deck = Deck()\n>>> print deck\nAce of Clubs\n2 of Clubs\n3 of Clubs\n...\n10 of Spades\nJack of Spades\nQueen of Spades\nKing of Spades\n```\nEven though the result appears on 52 lines, it is one long string that contains newlines.\n\n#### <span id=\"page-192-1\"></span>**18.6 Add, remove, shuffle and sort**\n\nTo deal cards, we would like a method that removes a card from the deck and returns it. The list method pop provides a convenient way to do that:\n\n#inside class Deck:\n\n```\ndef pop_card(self):\n    return self.cards.pop()\n```\nSince pop removes the *last* card in the list, we are dealing from the bottom of the deck. In real life \"bottom dealing\" is frowned upon, but in this context it's ok.\n\nTo add a card, we can use the list method append:\n\n#inside class Deck: def add_card(self, card): self.cards.append(card)\n\nA method like this that uses another function without doing much real work is sometimes called a **veneer**. The metaphor comes from woodworking, where it is common to glue a thin layer of good quality wood to the surface of a cheaper piece of wood.\n\nIn this case we are defining a \"thin\" method that expresses a list operation in terms that are appropriate for decks.\n\nAs another example, we can write a Deck method named shuffle using the function shuffle from the random module:\n\n```\ndef shuffle(self):\n    random.shuffle(self.cards)\n```\nDon't forget to import random.\n\n# inside class Deck:\n\n**Exercise 18.2.** *Write a Deck method named* sort *that uses the list method* sort *to sort the cards in a* Deck*.* sort *uses the* __cmp__ *method we defined to determine sort order.*\n\n#### <span id=\"page-193-0\"></span>**18.7 Inheritance**\n\nThe language feature most often associated with object-oriented programming is **inheritance**. Inheritance is the ability to define a new class that is a modified version of an existing class.\n\nIt is called \"inheritance\" because the new class inherits the methods of the existing class. Extending this metaphor, the existing class is called the **parent** and the new class is called the **child**.\n\nAs an example, let's say we want a class to represent a \"hand,\" that is, the set of cards held by one player. A hand is similar to a deck: both are made up of a set of cards, and both require operations like adding and removing cards.\n\nA hand is also different from a deck; there are operations we want for hands that don't make sense for a deck. For example, in poker we might compare two hands to see which one wins. In bridge, we might compute a score for a hand in order to make a bid.\n\nThis relationship between classes—similar, but different—lends itself to inheritance.\n\nThe definition of a child class is like other class definitions, but the name of the parent class appears in parentheses:\n\n```\nclass Hand(Deck):\n```\n\"\"\"Represents a hand of playing cards.\"\"\"\n\nThis definition indicates that Hand inherits from Deck; that means we can use methods like pop_card and add_card for Hands as well as Decks.\n\nHand also inherits __init__ from Deck, but it doesn't really do what we want: instead of populating the hand with 52 new cards, the init method for Hands should initialize cards with an empty list.\n\nIf we provide an init method in the Hand class, it overrides the one in the Deck class:\n\n# inside class Hand:\n\n```\ndef __init__(self, label=''):\n    self.cards = []\n    self.label = label\n```\nSo when you create a Hand, Python invokes this init method:\n\n```\n>>> hand = Hand('new hand')\n>>> print hand.cards\n[]\n>>> print hand.label\nnew hand\n```\nBut the other methods are inherited from Deck, so we can use pop_card and add_card to deal a card:\n\n```\n>>> deck = Deck()\n>>> card = deck.pop_card()\n>>> hand.add_card(card)\n>>> print hand\nKing of Spades\n```\nA natural next step is to encapsulate this code in a method called move_cards:\n\n#inside class Deck:\n\n```\ndef move_cards(self, hand, num):\n    for i in range(num):\n        hand.add_card(self.pop_card())\n```\nmove_cards takes two arguments, a Hand object and the number of cards to deal. It modifies both self and hand, and returns None.\n\nIn some games, cards are moved from one hand to another, or from a hand back to the deck. You can use move_cards for any of these operations: self can be either a Deck or a Hand, and hand, despite the name, can also be a Deck.\n\n**Exercise 18.3.** *Write a Deck method called* deal_hands *that takes two parameters, the number of hands and the number of cards per hand, and that creates new Hand objects, deals the appropriate number of cards per hand, and returns a list of Hand objects.*\n\nInheritance is a useful feature. Some programs that would be repetitive without inheritance can be written more elegantly with it. Inheritance can facilitate code reuse, since you can customize the behavior of parent classes without having to modify them. In some cases, the inheritance structure reflects the natural structure of the problem, which makes the program easier to understand.\n\nOn the other hand, inheritance can make programs difficult to read. When a method is invoked, it is sometimes not clear where to find its definition. The relevant code may be scattered among several modules. Also, many of the things that can be done using inheritance can be done as well or better without it.\n\n#### <span id=\"page-194-0\"></span>**18.8 Class diagrams**\n\nSo far we have seen stack diagrams, which show the state of a program, and object diagrams, which show the attributes of an object and their values. These diagrams represent a snapshot in the execution of a program, so they change as the program runs.\n\nThey are also highly detailed; for some purposes, too detailed. A class diagram is a more abstract representation of the structure of a program. Instead of showing individual objects, it shows classes and the relationships between them.\n\n![](_page_195_Figure_1.jpeg)\n\n<span id=\"page-195-1\"></span>Figure 18.2: Class diagram.\n\nThere are several kinds of relationship between classes:\n\n- Objects in one class might contain references to objects in another class. For example, each Rectangle contains a reference to a Point, and each Deck contains references to many Cards. This kind of relationship is called **HAS-A**, as in, \"a Rectangle has a Point.\"\n- One class might inherit from another. This relationship is called **IS-A**, as in, \"a Hand is a kind of a Deck.\"\n- One class might depend on another in the sense that changes in one class would require changes in the other.\n\nA **class diagram** is a graphical representation of these relationships. For example, Figure [18.2](#page-195-1) shows the relationships between Card, Deck and Hand.\n\nThe arrow with a hollow triangle head represents an IS-A relationship; in this case it indicates that Hand inherits from Deck.\n\nThe standard arrow head represents a HAS-A relationship; in this case a Deck has references to Card objects.\n\nThe star (*) near the arrow head is a **multiplicity**; it indicates how many Cards a Deck has. A multiplicity can be a simple number, like 52, a range, like 5..7 or a star, which indicates that a Deck can have any number of Cards.\n\nA more detailed diagram might show that a Deck actually contains a *list* of Cards, but built-in types like list and dict are usually not included in class diagrams.\n\n**Exercise 18.4.** *Read* TurtleWorld.py*,* World.py *and* Gui.py *and draw a class diagram that shows the relationships among the classes defined there.*\n\n### <span id=\"page-195-0\"></span>**18.9 Debugging**\n\nInheritance can make debugging a challenge because when you invoke a method on an object, you might not know which method will be invoked.\n\nSuppose you are writing a function that works with Hand objects. You would like it to work with all kinds of Hands, like PokerHands, BridgeHands, etc. If you invoke a method like shuffle, you might get the one defined in Deck, but if any of the subclasses override this method, you'll get that version instead.\n\nAny time you are unsure about the flow of execution through your program, the simplest solution is to add print statements at the beginning of the relevant methods. If Deck.shuffle prints a message that says something like Running Deck.shuffle, then as the program runs it traces the flow of execution.\n\nAs an alternative, you could use this function, which takes an object and a method name (as a string) and returns the class that provides the definition of the method:\n\ndef find_defining_class(obj, meth_name): for ty in type(obj).mro(): if meth_name in ty.__dict__: return ty\n\nHere's an example:\n\n```\n>>> hand = Hand()\n>>> print find_defining_class(hand, 'shuffle')\n<class 'Card.Deck'>\n```\nSo the shuffle method for this Hand is the one in Deck.\n\nfind_defining_class uses the mro method to get the list of class objects (types) that will be searched for methods. \"MRO\" stands for \"method resolution order.\"\n\nHere's a program design suggestion: whenever you override a method, the interface of the new method should be the same as the old. It should take the same parameters, return the same type, and obey the same preconditions and postconditions. If you obey this rule, you will find that any function designed to work with an instance of a superclass, like a Deck, will also work with instances of subclasses like a Hand or PokerHand.\n\nIf you violate this rule, your code will collapse like (sorry) a house of cards.\n\n#### <span id=\"page-196-0\"></span>**18.10 Data encapsulation**\n\nChapter [16](#page-172-0) demonstrates a development plan we might call \"object-oriented design.\" We identified objects we needed—Time, Point and Rectangle—and defined classes to represent them. In each case there is an obvious correspondence between the object and some entity in the real world (or at least a mathematical world).\n\nBut sometimes it is less obvious what objects you need and how they should interact. In that case you need a different development plan. In the same way that we discovered function interfaces by encapsulation and generalization, we can discover class interfaces by **data encapsulation**.\n\nMarkov analysis, from Section [13.8,](#page-149-0) provides a good example. If you download my code from <http://thinkpython.com/code/markov.py>, you'll see that it uses two global variables—suffix_map and prefix—that are read and written from several functions.\n\nsuffix_map = {} prefix = ()\n\nBecause these variables are global we can only run one analysis at a time. If we read two texts, their prefixes and suffixes would be added to the same data structures (which makes for some interesting generated text).\n\nTo run multiple analyses, and keep them separate, we can encapsulate the state of each analysis in an object. Here's what that looks like:\n\n```\nclass Markov(object):\n```\n\n```\ndef __init__(self):\n    self.suffix_map = {}\n    self.prefix = ()\n```\nNext, we transform the functions into methods. For example, here's process_word:\n\n```\ndef process_word(self, word, order=2):\n    if len(self.prefix) < order:\n        self.prefix += (word,)\n        return\n    try:\n        self.suffix_map[self.prefix].append(word)\n    except KeyError:\n        # if there is no entry for this prefix, make one\n        self.suffix_map[self.prefix] = [word]\n    self.prefix = shift(self.prefix, word)\n```\nTransforming a program like this—changing the design without changing the function—is another example of refactoring (see Section [4.7)](#page-57-0).\n\nThis example suggests a development plan for designing objects and methods:\n\n- 1. Start by writing functions that read and write global variables (when necessary).\n- 2. Once you get the program working, look for associations between global variables and the functions that use them.\n- 3. Encapsulate related variables as attributes of an object.\n- 4. Transform the associated functions into methods of the new class.\n\n**Exercise 18.5.** *Download my code from Section [13.8](#page-149-0) (*[http: // thinkpython. com/ code/](http://thinkpython.com/code/markov.py) [markov. py](http://thinkpython.com/code/markov.py) *), and follow the steps described above to encapsulate the global variables as attributes of a new class called* Markov*. Solution:* [http: // thinkpython. com/ code/ Markov. py](http://thinkpython.com/code/Markov.py) *(note the capital M).*\n\n#### <span id=\"page-197-0\"></span>**18.11 Glossary**\n\n- **encode:** To represent one set of values using another set of values by constructing a mapping between them.\n- **class attribute:** An attribute associated with a class object. Class attributes are defined inside a class definition but outside any method.\n- **instance attribute:** An attribute associated with an instance of a class.\n- **veneer:** A method or function that provides a different interface to another function without doing much computation.\n- **inheritance:** The ability to define a new class that is a modified version of a previously defined class.\n\n**parent class:** The class from which a child class inherits.\n\n- **child class:** A new class created by inheriting from an existing class; also called a \"subclass.\"\n- **IS-A relationship:** The relationship between a child class and its parent class.\n- **HAS-A relationship:** The relationship between two classes where instances of one class contain references to instances of the other.\n- **class diagram:** A diagram that shows the classes in a program and the relationships between them.\n- **multiplicity:** A notation in a class diagram that shows, for a HAS-A relationship, how many references there are to instances of another class.\n\n#### <span id=\"page-198-0\"></span>**18.12 Exercises**\n\n<span id=\"page-198-1\"></span>**Exercise 18.6.** *The following are the possible hands in poker, in increasing order of value (and decreasing order of probability):*\n\n**pair:** *two cards with the same rank*\n\n**two pair:** *two pairs of cards with the same rank*\n\n**three of a kind:** *three cards with the same rank*\n\n**straight:** *five cards with ranks in sequence (aces can be high or low, so* Ace-2-3-4-5 *is a straight and so is* 10-Jack-Queen-King-Ace*, but* Queen-King-Ace-2-3 *is not.)*\n\n**flush:** *five cards with the same suit*\n\n**full house:** *three cards with one rank, two cards with another*\n\n**four of a kind:** *four cards with the same rank*\n\n**straight flush:** *five cards in sequence (as defined above) and with the same suit*\n\n*The goal of these exercises is to estimate the probability of drawing these various hands.*\n\n- *1. Download the following files from* [http: // thinkpython. com/ code](http://thinkpython.com/code) *:*\nCard.py *: A complete version of the* Card*,* Deck *and* Hand *classes in this chapter.*\n\n- PokerHand.py *: An incomplete implementation of a class that represents a poker hand, and some code that tests it.*\n- *2. If you run* PokerHand.py*, it deals seven 7-card poker hands and checks to see if any of them contains a flush. Read this code carefully before you go on.*\n- *3. Add methods to* PokerHand.py *named* has_pair*,* has_twopair*, etc. that return True or False according to whether or not the hand meets the relevant criteria. Your code should work correctly for \"hands\" that contain any number of cards (although 5 and 7 are the most common sizes).*\n- *4. Write a method named* classify *that figures out the highest-value classification for a hand and sets the* label *attribute accordingly. For example, a 7-card hand might contain a flush and a pair; it should be labeled \"flush\".*\n- *5. When you are convinced that your classification methods are working, the next step is to estimate the probabilities of the various hands. Write a function in* PokerHand.py *that shuffles a deck of cards, divides it into hands, classifies the hands, and counts the number of times various classifications appear.*\n- *6. Print a table of the classifications and their probabilities. Run your program with larger and larger numbers of hands until the output values converge to a reasonable degree of accuracy. Compare your results to the values at* [http: // en. wikipedia. org/ wiki/ Hand_](http://en.wikipedia.org/wiki/Hand_rankings) [rankings](http://en.wikipedia.org/wiki/Hand_rankings) *.*\n\n*Solution:* [http: // thinkpython. com/ code/ PokerHandSoln. py](http://thinkpython.com/code/PokerHandSoln.py) *.*\n\n**Exercise 18.7.** *This exercise uses TurtleWorld from Chapter [4.](#page-52-0) You will write code that makes Turtles play tag. If you are not familiar with the rules of tag, see* [http: // en. wikipedia. org/](http://en.wikipedia.org/wiki/Tag_(game)) [wiki/ Tag_ ( game)](http://en.wikipedia.org/wiki/Tag_(game)) *.*\n\n- 1. Download <http://thinkpython.com/code/Wobbler.py> and run it. You should see a *TurtleWorld with three Turtles. If you press the* Run *button, the Turtles wander at random.*\n- *2. Read the code and make sure you understand how it works. The* Wobbler *class inherits from* Turtle*, which means that the* Turtle *methods* lt*,* rt*,* fd *and* bk *work on Wobblers.*\n\n*The* step *method gets invoked by TurtleWorld. It invokes* steer*, which turns the Turtle in the desired direction,* wobble*, which makes a random turn in proportion to the Turtle's clumsiness, and* move*, which moves forward a few pixels, depending on the Turtle's speed.*\n\n- *3. Create a file named* Tagger.py*. Import everything from* Wobbler*, then define a class named* Tagger *that inherits from* Wobbler*. Call* make_world *passing the* Tagger *class object as an argument.*\n- *4. Add a* steer *method to* Tagger *to override the one in* Wobbler*. As a starting place, write a version that always points the Turtle toward the origin. Hint: use the math function* atan2 *and the Turtle attributes* x*,* y *and* heading*.*\n- *5. Modify* steer *so that the Turtles stay in bounds. For debugging, you might want to use the* Step *button, which invokes* step *once on each Turtle.*\n- *6. Modify* steer *so that each Turtle points toward its nearest neighbor. Hint: Turtles have an attribute,* world*, that is a reference to the TurtleWorld they live in, and the TurtleWorld has an attribute,* animals*, that is a list of all Turtles in the world.*\n- *7. Modify* steer *so the Turtles play tag. You can add methods to* Tagger *and you can override* steer *and* __init__*, but you may not modify or override* step*,* wobble *or* move*. Also,* steer *is allowed to change the heading of the Turtle but not the position.*\n\n*Adjust the rules and your* steer *method for good quality play; for example, it should be possible for the slow Turtle to tag the faster Turtles eventually.*\n\n*Solution:* [http: // thinkpython. com/ code/ Tagger. py](http://thinkpython.com/code/Tagger.py) *.*\n\n# <span id=\"page-200-0\"></span>**Chapter 19**\n\n# **Case study: Tkinter**\n\n#### <span id=\"page-200-1\"></span>**19.1 GUI**\n\nMost of the programs we have seen so far are text-based, but many programs use **graphical user interfaces**, also known as **GUIs**.\n\nPython provides several choices for writing GUI-based programs, including wxPython, Tkinter, and Qt. Each has pros and cons, which is why Python has not converged on a standard.\n\nThe one I will present in this chapter is Tkinter because I think it is the easiest to get started with. Most of the concepts in this chapter apply to the other GUI modules, too.\n\nThere are several books and web pages about Tkinter. One of the best online resources is *An Introduction to Tkinter* by Fredrik Lundh.\n\nI have written a module called Gui.py that comes with Swampy. It provides a simplified interface to the functions and classes in Tkinter. The examples in this chapter are based on this module.\n\nHere is a simple example that creates and displays a Gui:\n\nTo create a GUI, you have to import Gui from Swampy:\n\nfrom swampy.Gui import *\n\nOr, depending on how you installed Swampy, like this:\n\nfrom Gui import *\n\nThen instantiate a Gui object:\n\n```\ng = Gui()\ng.title('Gui')\ng.mainloop()\n```\nWhen you run this code, a window should appear with an empty gray square and the title Gui. mainloop runs the **event loop**, which waits for the user to do something and responds accordingly. It is an infinite loop; it runs until the user closes the window, or presses Control-C, or does something that causes the program to quit.\n\nThis Gui doesn't do much because it doesn't have any **widgets**. Widgets are the elements that make up a GUI; they include:\n\n**Button:** A widget, containing text or an image, that performs an action when pressed.\n\n**Canvas:** A region that can display lines, rectangles, circles and other shapes.\n\n**Entry:** A region where users can type text.\n\n**Scrollbar:** A widget that controls the visible part of another widget.\n\n**Frame:** A container, often invisible, that contains other widgets.\n\nThe empty gray square you see when you create a Gui is a Frame. When you create a new widget, it is added to this Frame.\n\n#### <span id=\"page-201-0\"></span>**19.2 Buttons and callbacks**\n\nThe method bu creates a Button widget:\n\nbutton = g.bu(text='Press me.')\n\nThe return value from bu is a Button object. The button that appears in the Frame is a graphical representation of this object; you can control the button by invoking methods on it.\n\nbu takes up to 32 parameters that control the appearance and function of the button. These parameters are called **options**. Instead of providing values for all 32 options, you can use keyword arguments, like text='Press me.', to specify only the options you need and use the default values for the rest.\n\nWhen you add a widget to the Frame, it gets \"shrink-wrapped;\" that is, the Frame shrinks to the size of the Button. If you add more widgets, the Frame grows to accommodate them.\n\nThe method la creates a Label widget:\n\nlabel = g.la(text='Press the button.')\n\nBy default, Tkinter stacks the widgets top-to-bottom and centers them. We'll see how to override that behavior soon.\n\nIf you press the button, you will see that it doesn't do much. That's because you haven't \"wired it up;\" that is, you haven't told it what to do!\n\nThe option that controls the behavior of a button is command. The value of command is a function that gets executed when the button is pressed. For example, here is a function that creates a new Label:\n\n```\ndef make_label():\n    g.la(text='Thank you.')\n```\nNow we can create a button with this function as its command:\n\nbutton2 = g.bu(text='No, press me!', command=make_label)\n\nWhen you press this button, it should execute make_label and a new label should appear.\n\nThe value of the command option is a function object, which is known as a **callback** because after you call bu to create the button, the flow of execution \"calls back\" when the user presses the button.\n\nThis kind of flow is characteristic of **event-driven programming**. User actions, like button presses and key strokes, are called **events**. In event-driven programming, the flow of execution is determined by user actions rather than by the programmer.\n\nThe challenge of event-driven programming is to construct a set of widgets and callbacks that work correctly (or at least generate appropriate error messages) for any sequence of user actions.\n\n**Exercise 19.1.** *Write a program that creates a GUI with a single button. When the button is pressed it should create a second button. When* that *button is pressed, it should create a label that says, \"Nice job!\".*\n\n*What happens if you press the buttons more than once? Solution:* [http: // thinkpython. com/](http://thinkpython.com/code/button_demo.py) [code/ button_ demo. py](http://thinkpython.com/code/button_demo.py)\n\n#### <span id=\"page-202-0\"></span>**19.3 Canvas widgets**\n\nOne of the most versatile widgets is the Canvas, which creates a region for drawing lines, circles and other shapes. If you did Exercise [15.4](#page-170-2) you are already familiar with canvases.\n\nThe method ca creates a new Canvas:\n\ncanvas = g.ca(width=500, height=500)\n\nwidth and height are the dimensions of the canvas in pixels.\n\nAfter you create a widget, you can still change the values of the options with the config method. For example, the bg option changes the background color:\n\n```\ncanvas.config(bg='white')\n```\nThe value of bg is a string that names a color. The set of legal color names is different for different implementations of Python, but all implementations provide at least:\n\nwhite black red green blue cyan yellow magenta\n\nShapes on a Canvas are called **items**. For example, the Canvas method circle draws (you guessed it) a circle:\n\nitem = canvas.circle([0,0], 100, fill='red')\n\nThe first argument is a coordinate pair that specifies the center of the circle; the second is the radius.\n\nGui.py provides a standard Cartesian coordinate system with the origin at the center of the Canvas and the positive *y* axis pointing up. This is different from some other graphics systems where the origin is in the upper left corner, with the *y* axis pointing down.\n\nThe fill option specifies that the circle should be filled in with red.\n\nThe return value from circle is an Item object that provides methods for modifying the item on the canvas. For example, you can use config to change any of the circle's options: item.config(fill='yellow', outline='orange', width=10)\n\n<span id=\"page-203-2\"></span>width is the thickness of the outline in pixels; outline is the color. **Exercise 19.2.** *Write a program that creates a Canvas and a Button. When the user presses the Button, it should draw a circle on the canvas.*\n\n#### <span id=\"page-203-0\"></span>**19.4 Coordinate sequences**\n\nThe rectangle method takes a sequence of coordinates that specify opposite corners of the rectangle. This example draws a blue rectangle with the lower left corner at the origin and the upper right corner at (200, 100):\n\n```\ncanvas.rectangle([[0, 0], [200, 100]],\n                 fill='blue', outline='orange', width=10)\n```\nThis way of specifying corners is called a **bounding box** because the two points bound the rectangle.\n\noval takes a bounding box and draws an oval within the specified rectangle:\n\ncanvas.oval([[0, 0], [200, 100]], outline='orange', width=10)\n\nline takes a sequence of coordinates and draws a line that connects the points. This example draws two legs of a triangle:\n\ncanvas.line([[0, 100], [100, 200], [200, 100]], width=10)\n\npolygon takes the same arguments, but it draws the last leg of the polygon (if necessary) and fills it in:\n\ncanvas.polygon([[0, 100], [100, 200], [200, 100]], fill='red', outline='orange', width=10)\n\n#### <span id=\"page-203-1\"></span>**19.5 More widgets**\n\nTkinter provides two widgets that let users type text: an Entry, which is a single line, and a Text widget, which has multiple lines.\n\nen creates a new Entry:\n\nentry = g.en(text='Default text.')\n\nThe text option allows you to put text into the entry when it is created. The get method returns the contents of the Entry (which may have been changed by the user):\n\n```\n>>> entry.get()\n'Default text.'\n```\nte creates a Text widget:\n\ntext = g.te(width=100, height=5)\n\nwidth and height are the dimensions of the widget in characters and lines.\n\ninsert puts text into the Text widget:\n\n```\ntext.insert(END, 'A line of text.')\n```\nEND is a special index that indicates the last character in the Text widget.\n\nYou can also specify a character using a dotted index, like 1.1, which has the line number before the dot and the column number after. The following example adds the letters 'nother' after the first character of the first line.\n\n>>> text.insert(1.1, 'nother')\n\nThe get method reads the text in the widget; it takes a start and end index as arguments. The following example returns all the text in the widget, including the newline character:\n\n```\n>>> text.get(0.0, END)\n'Another line of text.\\n'\n```\nThe delete method removes text from the widget; the following example deletes all but the first two characters:\n\n```\n>>> text.delete(1.2, END)\n>>> text.get(0.0, END)\n'An\\n'\n```\n<span id=\"page-204-1\"></span>**Exercise 19.3.** *Modify your solution to Exercise [19.2](#page-203-2) by adding an Entry widget and a second button. When the user presses the second button, it should read a color name from the Entry and use it to change the fill color of the circle. Use* config *to modify the existing circle; don't create a new one.*\n\n*Your program should handle the case where the user tries to change the color of a circle that hasn't been created, and the case where the color name is invalid.*\n\n*You can see my solution at* [http: // thinkpython. com/ code/ circle_ demo. py](http://thinkpython.com/code/circle_demo.py) *.*\n\n#### <span id=\"page-204-0\"></span>**19.6 Packing widgets**\n\nSo far we have been stacking widgets in a single column, but in most GUIs the layout is more complicated. For example, Figure [19.1](#page-205-0) shows a simplified version of TurtleWorld (see Chapter [4)](#page-52-0).\n\nThis section presents the code that creates this GUI, broken into a series of steps. You can download the complete example from [http://thinkpython.com/code/](http://thinkpython.com/code/SimpleTurtleWorld.py) [SimpleTurtleWorld.py](http://thinkpython.com/code/SimpleTurtleWorld.py).\n\nAt the top level, this GUI contains two widgets—a Canvas and a Frame—arranged in a row. So the first step is to create the row.\n\n```\nclass SimpleTurtleWorld(TurtleWorld):\n    \"\"\"This class is identical to TurtleWorld, but the code that\n    lays out the GUI is simplified for explanatory purposes.\"\"\"\n    def setup(self):\n        self.row()\n        ...\n```\nsetup is the function that creates and arranges the widgets. Arranging widgets in a GUI is called **packing**.\n\nrow creates a row Frame and makes it the \"current Frame.\" Until this Frame is closed or another Frame is created, all subsequent widgets are packed in a row.\n\nHere is the code that creates the Canvas and the column Frame that hold the other widgets:\n\n![](_page_205_Figure_1.jpeg)\n\n<span id=\"page-205-0\"></span>Figure 19.1: TurtleWorld after running the snowflake code.\n\n```\nself.canvas = self.ca(width=400, height=400, bg='white')\nself.col()\n```\nThe first widget in the column is a grid Frame, which contains four buttons arranged twoby-two:\n\n```\nself.gr(cols=2)\nself.bu(text='Print canvas', command=self.canvas.dump)\nself.bu(text='Quit', command=self.quit)\nself.bu(text='Make Turtle', command=self.make_turtle)\nself.bu(text='Clear', command=self.clear)\nself.endgr()\n```\ngr creates the grid; the argument is the number of columns. Widgets in the grid are laid out left-to-right, top-to-bottom.\n\nThe first button uses self.canvas.dump as a callback; the second uses self.quit. These are **bound methods**, which means they are associated with a particular object. When they are invoked, they are invoked on the object.\n\nThe next widget in the column is a row Frame that contains a Button and an Entry:\n\n```\nself.row([0,1], pady=30)\nself.bu(text='Run file', command=self.run_file)\nself.en_file = self.en(text='snowflake.py', width=5)\nself.endrow()\n```\nThe first argument to row is a list of weights that determines how extra space is allocated between widgets. The list [0,1] means that all extra space is allocated to the second widget, which is the Entry. If you run this code and resize the window, you will see that the Entry grows and the Button doesn't.\n\nThe option pady \"pads\" this row in the *y* direction, adding 30 pixels of space above and below.\n\nendrow ends this row of widgets, so subsequent widgets are packed in the column Frame. Gui.py keeps a stack of Frames:\n\n- When you use row, col or gr to create a Frame, it goes on top of the stack and becomes the current Frame.\n- When you use endrow, endcol or endgr to close a Frame, it gets popped off the stack and the previous Frame on the stack becomes the current Frame.\n\nThe method run_file reads the contents of the Entry, uses it as a filename, reads the contents and passes it to run_code. self.inter is an Interpreter object that knows how to take a string and execute it as Python code.\n\n```\ndef run_file(self):\n    filename = self.en_file.get()\n    fp = open(filename)\n    source = fp.read()\n    self.inter.run_code(source, filename)\n```\nThe last two widgets are a Text widget and a Button:\n\n```\nself.te_code = self.te(width=25, height=10)\nself.te_code.insert(END, 'world.clear()\\n')\nself.te_code.insert(END, 'bob = Turtle(world)\\n')\n```\n\n```\nself.bu(text='Run code', command=self.run_text)\n```\nrun_text is similar to run_file except that it takes the code from the Text widget instead of from a file:\n\n```\ndef run_text(self):\n    source = self.te_code.get(1.0, END)\n    self.inter.run_code(source, '<user-provided code>')\n```\nUnfortunately, the details of widget layout are different in other languages, and in different Python modules. Tkinter alone provides three different mechanisms for arranging widgets. These mechanisms are called **geometry managers**. The one I demonstrated in this section is the \"grid\" geometry manager; the others are called \"pack\" and \"place\".\n\nFortunately, most of the concepts in this section apply to other GUI modules and other languages.\n\n#### <span id=\"page-206-0\"></span>**19.7 Menus and Callables**\n\nA Menubutton is a widget that looks like a button, but when pressed it pops up a menu. After the user selects an item, the menu disappears.\n\nHere is code that creates a color selection Menubutton (you can download it from [http:](http://thinkpython.com/code/menubutton_demo.py) [//thinkpython.com/code/menubutton_demo.py](http://thinkpython.com/code/menubutton_demo.py)):\n\n```\ng = Gui()\ng.la('Select a color:')\ncolors = ['red', 'green', 'blue']\nmb = g.mb(text=colors[0])\n```\nmb creates the Menubutton. Initially, the text on the button is the name of the default color. The following loop creates one menu item for each color:\n\n```\nfor color in colors:\n    g.mi(mb, text=color, command=Callable(set_color, color))\n```\nThe first argument of mi is the Menubutton these items are associated with.\n\nThe command option is a Callable object, which is something new. So far we have seen functions and bound methods used as callbacks, which works fine if you don't have to pass any arguments to the function. Otherwise you have to construct a Callable object that contains a function, like set_color, and its arguments, like color.\n\nThe Callable object stores a reference to the function and the arguments as attributes. Later, when the user clicks on a menu item, the callback calls the function and passes the stored arguments.\n\nHere is what set_color might look like:\n\n```\ndef set_color(color):\n    mb.config(text=color)\n    print color\n```\nWhen the user selects a menu item and set_color is called, it configures the Menubutton to display the newly-selected color. It also print the color; if you try this example, you can confirm that set_color is called when you select an item (and *not* called when you create the Callable object).\n\n#### <span id=\"page-207-0\"></span>**19.8 Binding**\n\nA **binding** is an association between a widget, an event and a callback: when an event (like a button press) happens on a widget, the callback is invoked.\n\nMany widgets have default bindings. For example, when you press a button, the default binding changes the relief of the button to make it look depressed. When you release the button, the binding restores the appearance of the button and invokes the callback specified with the command option.\n\nYou can use the bind method to override these default bindings or to add new ones. For example, this code creates a binding for a canvas (you can download the code in this section from <http://thinkpython.com/code/draggable_demo.py>):\n\n```\nca.bind('<ButtonPress-1>', make_circle)\n```\nThe first argument is an event string; this event is triggered when the user presses the left mouse button. Other mouse events include ButtonMotion, ButtonRelease and Double-Button.\n\nThe second argument is an event handler. An event handler is a function or bound method, like a callback, but an important difference is that an event handler takes an Event object as a parameter. Here is an example:\n\n```\ndef make_circle(event):\n    pos = ca.canvas_coords([event.x, event.y])\n    item = ca.circle(pos, 5, fill='red')\n```\nThe Event object contains information about the type of event and details like the coordinates of the mouse pointer. In this example the information we need is the location of the mouse click. These values are in \"pixel coordinates,\" which are defined by the underlying graphical system. The method canvas_coords translates them to \"Canvas coordinates,\" which are compatible with Canvas methods like circle.\n\nFor Entry widgets, it is common to bind the <Return> event, which is triggered when the user presses the Return or Enter key. For example, the following code creates a Button and an Entry.\n\n```\nbu = g.bu('Make text item:', make_text)\nen = g.en()\nen.bind('<Return>', make_text)\n```\nmake_text is called when the Button is pressed or when the user hits Return while typing in the Entry. To make this work, we need a function that can be called as a command (with no arguments) or as an event handler (with an Event as an argument):\n\n```\ndef make_text(event=None):\n    text = en.get()\n    item = ca.text([0,0], text)\n```\nmake_text gets the contents of the Entry and displays it as a Text item in the Canvas.\n\nIt is also possible to create bindings for Canvas items. The following is a class definition for Draggable, which is a child class of Item that provides bindings that implement dragand-drop capability.\n\n```\nclass Draggable(Item):\n```\n\n```\ndef __init__(self, item):\n    self.canvas = item.canvas\n    self.tag = item.tag\n    self.bind('<Button-3>', self.select)\n    self.bind('<B3-Motion>', self.drag)\n    self.bind('<Release-3>', self.drop)\n```\nThe init method takes an Item as a parameter. It copies the attributes of the Item and then creates bindings for three events: a button press, button motion, and button release.\n\nThe event handler select stores the coordinates of the current event and the original color of the item, then changes the color to yellow:\n\n```\ndef select(self, event):\n    self.dragx = event.x\n    self.dragy = event.y\n    self.fill = self.cget('fill')\n    self.config(fill='yellow')\n```\ncget stands for \"get configuration;\" it takes the name of an option as a string and returns the current value of that option.\n\ndrag computes how far the object has moved relative to the starting place, updates the stored coordinates, and then moves the item.\n\n```\ndef drag(self, event):\n    dx = event.x - self.dragx\n```\n\n```\ndy = event.y - self.dragy\nself.dragx = event.x\nself.dragy = event.y\nself.move(dx, dy)\n```\nThis computation is done in pixel coordinates; there is no need to convert to Canvas coordinates.\n\nFinally, drop restores the original color of the item:\n\n```\ndef drop(self, event):\n    self.config(fill=self.fill)\n```\nYou can use the Draggable class to add drag-and-drop capability to an existing item. For example, here is a modified version of make_circle that uses circle to create an Item and Draggable to make it draggable:\n\n```\ndef make_circle(event):\n    pos = ca.canvas_coords([event.x, event.y])\n    item = ca.circle(pos, 5, fill='red')\n    item = Draggable(item)\n```\nThis example demonstrates one of the benefits of inheritance: you can modify the capabilities of a parent class without modifying its definition. This is particularly useful if you want to change behavior defined in a module you did not write.\n\n#### <span id=\"page-209-0\"></span>**19.9 Debugging**\n\nOne of the challenges of GUI programming is keeping track of which things happen while the GUI is being built and which things happen later in response to user events.\n\nFor example, when you are setting up a callback, it is a common error to call the function rather than passing a reference to it:\n\n```\ndef the_callback():\n    print 'Called.'\n```\ng.bu(text='This is wrong!', command=the_callback())\n\nIf you run this code, you will see that it calls the_callback immediately, and *then* creates the button. When you press the button, it does nothing because the return value from the_callback is None. Usually you do not want to invoke a callback while you are setting up the GUI; it should only be invoked later in response to a user event.\n\nAnother challenge of GUI programming is that you don't have control of the flow of execution. Which parts of the program execute and their order are determined by user actions. That means that you have to design your program to work correctly for any possible sequence of events.\n\nFor example, the GUI in Exercise [19.3](#page-204-1) has two widgets: one creates a Circle item and the other changes the color of the Circle. If the user creates the circle and then changes its color, there's no problem. But what if the user changes the color of a circle that doesn't exist yet? Or creates more than one circle?\n\nAs the number of widgets grows, it is increasingly difficult to imagine all possible sequences of events. One way to manage this complexity is to encapsulate the state of the system in an object and then consider:\n\n- What are the possible states? In the Circle example, we might consider two states: before and after the user creates the first circle.\n- In each state, what events can occur? In the example, the user can press either of the buttons, or quit.\n- For each state-event pair, what is the desired outcome? Since there are two states and two buttons, there are four state-event pairs to consider.\n- What can cause a transition from one state to another? In this case, there is a transition when the user creates the first circle.\n\nYou might also find it useful to define, and check, invariants that should hold regardless of the sequence of events.\n\nThis approach to GUI programming can help you write correct code without taking the time to test every possible sequence of user events!\n\n#### <span id=\"page-210-0\"></span>**19.10 Glossary**\n\n**GUI:** A graphical user interface.\n\n- **widget:** One of the elements that makes up a GUI, including buttons, menus, text entry fields, etc.\n- **option:** A value that controls the appearance or function of a widget.\n- **keyword argument:** An argument that indicates the parameter name as part of the function call.\n- **callback:** A function associated with a widget that is called when the user performs an action.\n- **bound method:** A method associated with a particular instance.\n- **event-driven programming:** A style of programming in which the flow of execution is determined by user actions.\n- **event:** A user action, like a mouse click or key press, that causes a GUI to respond.\n- **event loop:** An infinite loop that waits for user actions and responds.\n- **item:** A graphical element on a Canvas widget.\n- **bounding box:** A rectangle that encloses a set of items, usually specified by two opposing corners.\n- **pack:** To arrange and display the elements of a GUI.\n- **geometry manager:** A system for packing widgets.\n- **binding:** An association between a widget, an event, and an event handler. The event handler is called when the event occurs in the widget.\n\n## <span id=\"page-211-0\"></span>**19.11 Exercises**\n\n**Exercise 19.4.** *For this exercise, you will write an image viewer. Here is a simple example:*\n\n```\ng = Gui()\ncanvas = g.ca(width=300)\nphoto = PhotoImage(file='danger.gif')\ncanvas.image([0,0], image=photo)\ng.mainloop()\n```\nPhotoImage *reads a file and returns a* PhotoImage *object that Tkinter can display.* Canvas.image *puts the image on the canvas, centered on the given coordinates. You can also put images on labels, buttons, and some other widgets:*\n\n```\ng.la(image=photo)\ng.bu(image=photo)\n```\n*PhotoImage can only handle a few image formats, like GIF and PPM, but we can use the Python Imaging Library (PIL) to read other files.*\n\n*The name of the PIL module is* Image*, but Tkinter defines an object with the same name. To avoid the conflict, you can use* import...as *like this:*\n\nimport Image as PIL import ImageTk\n\n*The first line imports* Image *and gives it the local name* PIL*. The second line imports* ImageTk*, which can translate a PIL image into a Tkinter PhotoImage. Here's an example:*\n\n```\nimage = PIL.open('allen.png')\nphoto2 = ImageTk.PhotoImage(image)\ng.la(image=photo2)\n```\n- *1. Download* image_demo.py*,* danger.gif *and* allen.png *from* [http: // thinkpython.](http://thinkpython.com/code) [com/ code](http://thinkpython.com/code) *. Run* image_demo.py*. You might have to install* PIL *and* ImageTk*. They are probably in your software repository, but if not you can get them from* [http: //](http://pythonware.com/products/pil) [pythonware. com/ products/ pil](http://pythonware.com/products/pil) *.*\n- *2. In* image_demo.py *change the name of the second PhotoImage from* photo2 *to* photo *and run the program again. You should see the second PhotoImage but not the first.*\n\n*The problem is that when you reassign* photo *it overwrites the reference to the first PhotoImage, which then disappears. The same thing happens if you assign a PhotoImage to a local variable; it disappears when the function ends.*\n\n*To avoid this problem, you have to store a reference to each PhotoImage you want to keep. You can use a global variable, or store PhotoImages in a data structure or as an attribute of an object.*\n\n*This behavior can be frustrating, which is why I am warning you (and why the example image says \"Danger!\").*\n\n- *3. Starting with this example, write a program that takes the name of a directory and loops through all the files, displaying any files that PIL recognizes as images. You can use a* try *statement to catch the files PIL doesn't recognize.*\n*When the user clicks on the image, the program should display the next one.*\n\n- *4. PIL provides a variety of methods for manipulating images. You can read about them at* <http://pythonware.com/library/pil/handbook>. As a challenge, choose a few of *these methods and provide a GUI for applying them to images.*\n*Solution:* [http: // thinkpython. com/ code/ ImageBrowser. py](http://thinkpython.com/code/ImageBrowser.py) *.* **Exercise 19.5.** *A vector graphics editor is a program that allows users to draw and edit shapes on the screen and generate output files in vector graphics formats like Postscript and SVG.*\n\n*Write a simple vector graphics editor using Tkinter. At a minimum, it should allow users to draw lines, circles and rectangles, and it should use* Canvas.dump *to generate a Postscript description of the contents of the Canvas.*\n\n*As a challenge, you could allow users to select and resize items on the Canvas.* **Exercise 19.6.** *Use Tkinter to write a basic web browser. It should have a Text widget where the user can enter a URL and a Canvas to display the contents of the page.*\n\n*You can use the* urllib *module to download files (see Exercise [14.6)](#page-162-2) and the* HTMLParser *module to parse the HTML tags (see* [http: // docs. python. org/ 2/ library/ htmlparser. html](http://docs.python.org/2/library/htmlparser.html) *).*\n\n*At a minimum your browser should handle plain text and hyperlinks. As a challenge you could handle background colors, text formatting tags and images.*\n\n**192 Chapter 19. Case study: Tkinter**\n\n# <span id=\"page-214-0\"></span>**Appendix A**\n\n# **Debugging**\n\nDifferent kinds of errors can occur in a program, and it is useful to distinguish among them in order to track them down more quickly:\n\n- Syntax errors are produced by Python when it is translating the source code into byte code. They usually indicate that there is something wrong with the syntax of the program. Example: Omitting the colon at the end of a def statement yields the somewhat redundant message SyntaxError: invalid syntax.\n- Runtime errors are produced by the interpreter if something goes wrong while the program is running. Most runtime error messages include information about where the error occurred and what functions were executing. Example: An infinite recursion eventually causes the runtime error \"maximum recursion depth exceeded.\"\n- Semantic errors are problems with a program that runs without producing error messages but doesn't do the right thing. Example: An expression may not be evaluated in the order you expect, yielding an incorrect result.\n\nThe first step in debugging is to figure out which kind of error you are dealing with. Although the following sections are organized by error type, some techniques are applicable in more than one situation.\n\n#### <span id=\"page-214-1\"></span>**A.1 Syntax errors**\n\nSyntax errors are usually easy to fix once you figure out what they are. Unfortunately, the error messages are often not helpful. The most common messages are SyntaxError: invalid syntax and SyntaxError: invalid token, neither of which is very informative.\n\nOn the other hand, the message does tell you where in the program the problem occurred. Actually, it tells you where Python noticed a problem, which is not necessarily where the error is. Sometimes the error is prior to the location of the error message, often on the preceding line.\n\nIf you are building the program incrementally, you should have a good idea about where the error is. It will be in the last line you added.\n\nIf you are copying code from a book, start by comparing your code to the book's code very carefully. Check every character. At the same time, remember that the book might be wrong, so if you see something that looks like a syntax error, it might be.\n\nHere are some ways to avoid the most common syntax errors:\n\n- 1. Make sure you are not using a Python keyword for a variable name.\n- 2. Check that you have a colon at the end of the header of every compound statement, including for, while, if, and def statements.\n- 3. Make sure that any strings in the code have matching quotation marks.\n- 4. If you have multiline strings with triple quotes (single or double), make sure you have terminated the string properly. An unterminated string may cause an invalid token error at the end of your program, or it may treat the following part of the program as a string until it comes to the next string. In the second case, it might not produce an error message at all!\n- 5. An unclosed opening operator—(, {, or [—makes Python continue with the next line as part of the current statement. Generally, an error occurs almost immediately in the next line.\n- 6. Check for the classic = instead of == inside a conditional.\n- 7. Check the indentation to make sure it lines up the way it is supposed to. Python can handle space and tabs, but if you mix them it can cause problems. The best way to avoid this problem is to use a text editor that knows about Python and generates consistent indentation.\n\nIf nothing works, move on to the next section...\n\n#### **A.1.1 I keep making changes and it makes no difference.**\n\nIf the interpreter says there is an error and you don't see it, that might be because you and the interpreter are not looking at the same code. Check your programming environment to make sure that the program you are editing is the one Python is trying to run.\n\nIf you are not sure, try putting an obvious and deliberate syntax error at the beginning of the program. Now run it again. If the interpreter doesn't find the new error, you are not running the new code.\n\nThere are a few likely culprits:\n\n- You edited the file and forgot to save the changes before running it again. Some programming environments do this for you, but some don't.\n- You changed the name of the file, but you are still running the old name.\n- Something in your development environment is configured incorrectly.\n- If you are writing a module and using import, make sure you don't give your module the same name as one of the standard Python modules.\n- If you are using import to read a module, remember that you have to restart the interpreter or use reload to read a modified file. If you import the module again, it doesn't do anything.\n\nIf you get stuck and you can't figure out what is going on, one approach is to start again with a new program like \"Hello, World!,\" and make sure you can get a known program to run. Then gradually add the pieces of the original program to the new one.\n\n#### <span id=\"page-216-0\"></span>**A.2 Runtime errors**\n\nOnce your program is syntactically correct, Python can compile it and at least start running it. What could possibly go wrong?\n\n#### **A.2.1 My program does absolutely nothing.**\n\nThis problem is most common when your file consists of functions and classes but does not actually invoke anything to start execution. This may be intentional if you only plan to import this module to supply classes and functions.\n\nIf it is not intentional, make sure that you are invoking a function to start execution, or execute one from the interactive prompt. Also see the \"Flow of Execution\" section below.\n\n#### **A.2.2 My program hangs.**\n\nIf a program stops and seems to be doing nothing, it is \"hanging.\" Often that means that it is caught in an infinite loop or infinite recursion.\n\n- If there is a particular loop that you suspect is the problem, add a print statement immediately before the loop that says \"entering the loop\" and another immediately after that says \"exiting the loop.\"\nRun the program. If you get the first message and not the second, you've got an infinite loop. Go to the \"Infinite Loop\" section below.\n\n- Most of the time, an infinite recursion will cause the program to run for a while and then produce a \"RuntimeError: Maximum recursion depth exceeded\" error. If that happens, go to the \"Infinite Recursion\" section below.\nIf you are not getting this error but you suspect there is a problem with a recursive method or function, you can still use the techniques in the \"Infinite Recursion\" section.\n\n- If neither of those steps works, start testing other loops and other recursive functions and methods.\n- If that doesn't work, then it is possible that you don't understand the flow of execution in your program. Go to the \"Flow of Execution\" section below.\n\n#### **Infinite Loop**\n\nIf you think you have an infinite loop and you think you know what loop is causing the problem, add a print statement at the end of the loop that prints the values of the variables in the condition and the value of the condition.\n\nFor example:\n\n```\nwhile x > 0 and y < 0 :\n    # do something to x\n    # do something to y\n    print \"x: \", x\n    print \"y: \", y\n    print \"condition: \", (x > 0 and y < 0)\n```\nNow when you run the program, you will see three lines of output for each time through the loop. The last time through the loop, the condition should be false. If the loop keeps going, you will be able to see the values of x and y, and you might figure out why they are not being updated correctly.\n\n#### **Infinite Recursion**\n\nMost of the time, an infinite recursion will cause the program to run for a while and then produce a Maximum recursion depth exceeded error.\n\nIf you suspect that a function or method is causing an infinite recursion, start by checking to make sure that there is a base case. In other words, there should be some condition that will cause the function or method to return without making a recursive invocation. If not, then you need to rethink the algorithm and identify a base case.\n\nIf there is a base case but the program doesn't seem to be reaching it, add a print statement at the beginning of the function or method that prints the parameters. Now when you run the program, you will see a few lines of output every time the function or method is invoked, and you will see the parameters. If the parameters are not moving toward the base case, you will get some ideas about why not.\n\n#### **Flow of Execution**\n\nIf you are not sure how the flow of execution is moving through your program, add print statements to the beginning of each function with a message like “entering function foo,” where foo is the name of the function.\n\nNow when you run the program, it will print a trace of each function as it is invoked.\n\n#### **A.2.3 When I run the program I get an exception.**\n\nIf something goes wrong during runtime, Python prints a message that includes the name of the exception, the line of the program where the problem occurred, and a traceback.\n\nThe traceback identifies the function that is currently running, and then the function that invoked it, and then the function that invoked that, and so on. In other words, it traces the sequence of function invocations that got you to where you are. It also includes the line number in your file where each of these calls occurs.\n\nThe first step is to examine the place in the program where the error occurred and see if you can figure out what happened. These are some of the most common runtime errors:\n\n- **NameError:** You are trying to use a variable that doesn't exist in the current environment. Remember that local variables are local. You cannot refer to them from outside the function where they are defined.\n**TypeError:** There are several possible causes:\n\n- You are trying to use a value improperly. Example: indexing a string, list, or tuple with something other than an integer.\n- There is a mismatch between the items in a format string and the items passed for conversion. This can happen if either the number of items does not match or an invalid conversion is called for.\n- You are passing the wrong number of arguments to a function or method. For methods, look at the method definition and check that the first parameter is self. Then look at the method invocation; make sure you are invoking the method on an object with the right type and providing the other arguments correctly.\n- **KeyError:** You are trying to access an element of a dictionary using a key that the dictionary does not contain.\n- **AttributeError:** You are trying to access an attribute or method that does not exist. Check the spelling! You can use dir to list the attributes that do exist.\n\nIf an AttributeError indicates that an object has NoneType, that means that it is None. One common cause is forgetting to return a value from a function; if you get to the end of a function without hitting a return statement, it returns None. Another common cause is using the result from a list method, like sort, that returns None.\n\n- **IndexError:** The index you are using to access a list, string, or tuple is greater than its length minus one. Immediately before the site of the error, add a print statement to display the value of the index and the length of the array. Is the array the right size? Is the index the right value?\nThe Python debugger (pdb) is useful for tracking down Exceptions because it allows you to examine the state of the program immediately before the error. You can read about pdb at <http://docs.python.org/2/library/pdb.html>.\n\n#### **A.2.4 I added so many** print **statements I get inundated with output.**\n\nOne of the problems with using print statements for debugging is that you can end up buried in output. There are two ways to proceed: simplify the output or simplify the program.\n\nTo simplify the output, you can remove or comment out print statements that aren't helping, or combine them, or format the output so it is easier to understand.\n\nTo simplify the program, there are several things you can do. First, scale down the problem the program is working on. For example, if you are searching a list, search a *small* list. If the program takes input from the user, give it the simplest input that causes the problem.\n\nSecond, clean up the program. Remove dead code and reorganize the program to make it as easy to read as possible. For example, if you suspect that the problem is in a deeply nested part of the program, try rewriting that part with simpler structure. If you suspect a large function, try splitting it into smaller functions and testing them separately.\n\nOften the process of finding the minimal test case leads you to the bug. If you find that a program works in one situation but not in another, that gives you a clue about what is going on.\n\nSimilarly, rewriting a piece of code can help you find subtle bugs. If you make a change that you think shouldn't affect the program, and it does, that can tip you off.\n\n### <span id=\"page-219-0\"></span>**A.3 Semantic errors**\n\nIn some ways, semantic errors are the hardest to debug, because the interpreter provides no information about what is wrong. Only you know what the program is supposed to do.\n\nThe first step is to make a connection between the program text and the behavior you are seeing. You need a hypothesis about what the program is actually doing. One of the things that makes that hard is that computers run so fast.\n\nYou will often wish that you could slow the program down to human speed, and with some debuggers you can. But the time it takes to insert a few well-placed print statements is often short compared to setting up the debugger, inserting and removing breakpoints, and \"stepping\" the program to where the error is occurring.\n\n#### **A.3.1 My program doesn't work.**\n\nYou should ask yourself these questions:\n\n- Is there something the program was supposed to do but which doesn't seem to be happening? Find the section of the code that performs that function and make sure it is executing when you think it should.\n- Is something happening that shouldn't? Find code in your program that performs that function and see if it is executing when it shouldn't.\n- Is a section of code producing an effect that is not what you expected? Make sure that you understand the code in question, especially if it involves invocations to functions or methods in other Python modules. Read the documentation for the functions you invoke. Try them out by writing simple test cases and checking the results.\n\nIn order to program, you need to have a mental model of how programs work. If you write a program that doesn't do what you expect, very often the problem is not in the program; it's in your mental model.\n\nThe best way to correct your mental model is to break the program into its components (usually the functions and methods) and test each component independently. Once you find the discrepancy between your model and reality, you can solve the problem.\n\nOf course, you should be building and testing components as you develop the program. If you encounter a problem, there should be only a small amount of new code that is not known to be correct.\n\n#### **A.3.2 I've got a big hairy expression and it doesn't do what I expect.**\n\nWriting complex expressions is fine as long as they are readable, but they can be hard to debug. It is often a good idea to break a complex expression into a series of assignments to temporary variables.\n\nFor example:\n\n```\nself.hands[i].addCard(self.hands[self.findNeighbor(i)].popCard())\n```\nThis can be rewritten as:\n\n```\nneighbor = self.findNeighbor(i)\npickedCard = self.hands[neighbor].popCard()\nself.hands[i].addCard(pickedCard)\n```\nThe explicit version is easier to read because the variable names provide additional documentation, and it is easier to debug because you can check the types of the intermediate variables and display their values.\n\nAnother problem that can occur with big expressions is that the order of evaluation may not be what you expect. For example, if you are translating the expression *x* 2*π* into Python, you might write:\n\n$y = x / 2 * math.pi $\n\nThat is not correct because multiplication and division have the same precedence and are evaluated from left to right. So this expression computes *xπ*/2.\n\nA good way to debug expressions is to add parentheses to make the order of evaluation explicit:\n\n$y = x / (2 * math.pi) $\n\nWhenever you are not sure of the order of evaluation, use parentheses. Not only will the program be correct (in the sense of doing what you intended), it will also be more readable for other people who haven't memorized the rules of precedence.\n\n#### **A.3.3 I've got a function or method that doesn't return what I expect.**\n\nIf you have a return statement with a complex expression, you don't have a chance to print the return value before returning. Again, you can use a temporary variable. For example, instead of:\n\n```\nreturn self.hands[i].removeMatches()\nyou could write:\ncount = self.hands[i].removeMatches()\nreturn count\n```\nNow you have the opportunity to display the value of count before returning.\n\n#### **A.3.4 I'm really, really stuck and I need help.**\n\nFirst, try getting away from the computer for a few minutes. Computers emit waves that affect the brain, causing these symptoms:\n\n- Frustration and rage.\n- Superstitious beliefs (\"the computer hates me\") and magical thinking (\"the program only works when I wear my hat backward\").\n- Random walk programming (the attempt to program by writing every possible program and choosing the one that does the right thing).\n\nIf you find yourself suffering from any of these symptoms, get up and go for a walk. When you are calm, think about the program. What is it doing? What are some possible causes of that behavior? When was the last time you had a working program, and what did you do next?\n\nSometimes it just takes time to find a bug. I often find bugs when I am away from the computer and let my mind wander. Some of the best places to find bugs are trains, showers, and in bed, just before you fall asleep.\n\n#### **A.3.5 No, I really need help.**\n\nIt happens. Even the best programmers occasionally get stuck. Sometimes you work on a program so long that you can't see the error. A fresh pair of eyes is just the thing.\n\nBefore you bring someone else in, make sure you are prepared. Your program should be as simple as possible, and you should be working on the smallest input that causes the error. You should have print statements in the appropriate places (and the output they produce should be comprehensible). You should understand the problem well enough to describe it concisely.\n\nWhen you bring someone in to help, be sure to give them the information they need:\n\n- If there is an error message, what is it and what part of the program does it indicate?\n- What was the last thing you did before this error occurred? What were the last lines of code that you wrote, or what is the new test case that fails?\n- What have you tried so far, and what have you learned?\n\nWhen you find the bug, take a second to think about what you could have done to find it faster. Next time you see something similar, you will be able to find the bug more quickly.\n\nRemember, the goal is not just to make the program work. The goal is to learn how to make the program work.\n\n# <span id=\"page-222-0\"></span>**Appendix B**\n\n# **Analysis of Algorithms**\n\nThis appendix is an edited excerpt from *Think Complexity*, by Allen B. Downey, also published by O'Reilly Media (2011). When you are done with this book, you might want to move on to that one.\n\n**Analysis of algorithms** is a branch of computer science that studies the performance of algorithms, especially their run time and space requirements. See [http://en.wikipedia.](http://en.wikipedia.org/wiki/Analysis_of_algorithms) [org/wiki/Analysis_of_algorithms](http://en.wikipedia.org/wiki/Analysis_of_algorithms).\n\nThe practical goal of algorithm analysis is to predict the performance of different algorithms in order to guide design decisions.\n\nDuring the 2008 United States Presidential Campaign, candidate Barack Obama was asked to perform an impromptu analysis when he visited Google. Chief executive Eric Schmidt jokingly asked him for \"the most efficient way to sort a million 32-bit integers.\" Obama had apparently been tipped off, because he quickly replied, \"I think the bubble sort would be the wrong way to go.\" See <http://www.youtube.com/watch?v=k4RRi_ntQc8>.\n\nThis is true: bubble sort is conceptually simple but slow for large datasets. The answer Schmidt was probably looking for is \"radix sort\" ([http://en.wikipedia.org/wiki/](http://en.wikipedia.org/wiki/Radix_sort) [Radix_sort](http://en.wikipedia.org/wiki/Radix_sort)) [1](#page-222-1) .\n\nThe goal of algorithm analysis is to make meaningful comparisons between algorithms, but there are some problems:\n\n- The relative performance of the algorithms might depend on characteristics of the hardware, so one algorithm might be faster on Machine A, another on Machine B. The general solution to this problem is to specify a **machine model** and analyze the number of steps, or operations, an algorithm requires under a given model.\n- Relative performance might depend on the details of the dataset. For example, some sorting algorithms run faster if the data are already partially sorted; other algorithms\n\n<span id=\"page-222-1\"></span><sup>1</sup> But if you get a question like this in an interview, I think a better answer is, \"The fastest way to sort a million integers is to use whatever sort function is provided by the language I'm using. Its performance is good enough for the vast majority of applications, but if it turned out that my application was too slow, I would use a profiler to see where the time was being spent. If it looked like a faster sort algorithm would have a significant effect on performance, then I would look around for a good implementation of radix sort.\"\n\nrun slower in this case. A common way to avoid this problem is to analyze the **worst case** scenario. It is sometimes useful to analyze average case performance, but that's usually harder, and it might not be obvious what set of cases to average over.\n\n- Relative performance also depends on the size of the problem. A sorting algorithm that is fast for small lists might be slow for long lists. The usual solution to this problem is to express run time (or number of operations) as a function of problem size, and to compare the functions **asymptotically** as the problem size increases.\nThe good thing about this kind of comparison that it lends itself to simple classification of algorithms. For example, if I know that the run time of Algorithm A tends to be proportional to the size of the input, *n*, and Algorithm B tends to be proportional to *n* 2 , then I expect A to be faster than B for large values of *n*.\n\nThis kind of analysis comes with some caveats, but we'll get to that later.\n\n### <span id=\"page-223-0\"></span>**B.1 Order of growth**\n\nSuppose you have analyzed two algorithms and expressed their run times in terms of the size of the input: Algorithm A takes $100n + 1$ steps to solve a problem with size $n$; Algorithm B takes $n^2 + n + 1$ steps.\n\nThe following table shows the run time of these algorithms for different problem sizes:\n\n| Input<br>size | Run time of<br>Algorithm A | Run time of<br>Algorithm B |\n|---------------|----------------------------|----------------------------|\n| 10            | 1 001                      | 111                        |\n| 100           | 10 001                     | 10 101                     |\n| 1 000         | 100 001                    | 1 001 001                  |\n| 10 000        | 1 000 001                  | > 1010                     |\n\nAt $n = 10$, Algorithm A looks pretty bad; it takes almost 10 times longer than Algorithm B. But for $n$ = 100 they are about the same, and for larger values A is much better.\n\nThe fundamental reason is that for large values of *n*, any function that contains an *n* 2 term will grow faster than a function whose leading term is *n*. The **leading term** is the term with the highest exponent.\n\nFor Algorithm A, the leading term has a large coefficient, 100, which is why B does better than A for small *n*. But regardless of the coefficients, there will always be some value of *n* where $an^2 > bn$.\n\nThe same argument applies to the non-leading terms. Even if the run time of Algorithm A were $n$ + 1000000, it would still be better than Algorithm B for sufficiently large $n$.\n\nIn general, we expect an algorithm with a smaller leading term to be a better algorithm for large problems, but for smaller problems, there may be a **crossover point** where another algorithm is better. The location of the crossover point depends on the details of the algorithms, the inputs, and the hardware, so it is usually ignored for purposes of algorithmic analysis. But that doesn't mean you can forget about it.\n\nIf two algorithms have the same leading order term, it is hard to say which is better; again, the answer depends on the details. So for algorithmic analysis, functions with the same leading term are considered equivalent, even if they have different coefficients.\n\nAn **order of growth** is a set of functions whose asymptotic growth behavior is considered equivalent. For example, $2n, 100n$ and $n$ + 1 belong to the same order of growth, which is written $O(n)$ in **Big-Oh notation** and often called **linear** because every function in the set grows linearly with *n*.\n\nAll functions with the leading term $n^2$ belong to $O(n^2)$; they are **quadratic**, which is a fancy word for functions with the leading term *n* 2 .\n\nThe following table shows some of the orders of growth that appear most commonly in algorithmic analysis, in increasing order of badness.\n\n| Order of growth | Name                    |\n|-----------------|-------------------------|\n| $O(1)$          | constant                |\n| $O(log_b n)$    | logarithmic (for any b) |\n| $O(n)$          | linear                  |\n| $O(n log_b n)$  | \"en log en\"             |\n| $O(n^2)$        | quadratic               |\n| $O(n^3)$        | cubic                   |\n| $O(c^n)$        | exponential (for any c) |\n\nFor the logarithmic terms, the base of the logarithm doesn't matter; changing bases is the equivalent of multiplying by a constant, which doesn't change the order of growth. Similarly, all exponential functions belong to the same order of growth regardless of the base of the exponent. Exponential functions grow very quickly, so exponential algorithms are only useful for small problems.\n\n**Exercise B.1.** *Read the Wikipedia page on Big-Oh notation at* [http://en.wikipedia.org/](http://en.wikipedia.org/wiki/Big_O_notation) [wiki/Big_O_notation](http://en.wikipedia.org/wiki/Big_O_notation) *and answer the following questions:* \n\n- *1. What is the order of growth of n^3 + n^2? What about 1000000n^3 + n^2? What about n^3 +* 1000000*n* 2*?*\n- *2. What is the order of growth of* ($n^2$ + $n$) · ($n$ + 1)*? Before you start multiplying, remember that you only need the leading term.*\n- 3. If $f$ is in $O(g)$, for some unspecified function $g$, what can we say about $af + b$?\n- 4. If $f_1$ and $f_2$ are in $O(g)$, what can we say about $f_1 + f_2$?\n- 5. If $f_1$ is in $O(g)$ and $f_2$ is in $O(h)$, what can we say about $f_1 + f_2$?\n- 6. If $f_1$ is in $O(g)$ and $f_2$ is $O(h)$, what can we say about $f_1 \n\nf_2$?\n\nProgrammers who care about performance often find this kind of analysis hard to swallow. They have a point: sometimes the coefficients and the non-leading terms make a real difference. Sometimes the details of the hardware, the programming language, and the characteristics of the input make a big difference. And for small problems asymptotic behavior is irrelevant.\n\nBut if you keep those caveats in mind, algorithmic analysis is a useful tool. At least for large problems, the \"better\" algorithms is usually better, and sometimes it is *much* better. The difference between two algorithms with the same order of growth is usually a constant factor, but the difference between a good algorithm and a bad algorithm is unbounded!\n\n### <span id=\"page-225-0\"></span>**B.2 Analysis of basic Python operations**\n\nMost arithmetic operations are constant time; multiplication usually takes longer than addition and subtraction, and division takes even longer, but these run times don't depend on the magnitude of the operands. Very large integers are an exception; in that case the run time increases with the number of digits.\n\nIndexing operations—reading or writing elements in a sequence or dictionary—are also constant time, regardless of the size of the data structure.\n\nA for loop that traverses a sequence or dictionary is usually linear, as long as all of the operations in the body of the loop are constant time. For example, adding up the elements of a list is linear:\n\n```\ntotal = 0\nfor x in t:\n    total += x\n```\nThe built-in function sum is also linear because it does the same thing, but it tends to be faster because it is a more efficient implementation; in the language of algorithmic analysis, it has a smaller leading coefficient.\n\nIf you use the same loop to \"add” a list of strings, the run time is quadratic because string concatenation is linear.\n\nThe string method join is usually faster because it is linear in the total length of the strings.\n\nAs a rule of thumb, if the body of a loop is in $O(n^a)$ then the whole loop is in $O(n^{a+1})$. The exception is if you can show that the loop exits after a constant number of iterations. If a loop runs $k$ times regardless of $n$, then the loop is in $O(n^a)$, even for large $k$.\n\nMultiplying by *k* doesn't change the order of growth, but neither does dividing. So if the body of a loop is in $O(n^a)$ and it runs $n/k$ times, the loop is in $O(n^{a+1})$, even for large $k$.\n\nMost string and tuple operations are linear, except indexing and len, which are constant time. The built-in functions min and max are linear. The run-time of a slice operation is proportional to the length of the output, but independent of the size of the input.\n\nAll string methods are linear, but if the lengths of the strings are bounded by a constant for example, operations on single characters—they are considered constant time.\n\nMost list methods are linear, but there are some exceptions:\n\n- Adding an element to the end of a list is constant time on average; when it runs out of room it occasionally gets copied to a bigger location, but the total time for *n* operations is $O(n)$, so we say that the “amortized” time for one operation is $O(1)$.\n- Removing an element from the end of a list is constant time.\n- Sorting is $O(n \\log n)$.\n\nMost dictionary operations and methods are constant time, but there are some exceptions:\n\n- The run time of copy is proportional to the number of elements, but not the size of the elements (it copies references, not the elements themselves).\n- The run time of update is proportional to the size of the dictionary passed as a parameter, not the dictionary being updated.\n- keys, values and items are linear because they return new lists; iterkeys, itervalues and iteritems are constant time because they return iterators. But if you loop through the iterators, the loop will be linear. Using the \"iter\" functions saves some overhead, but it doesn't change the order of growth unless the number of items you access is bounded.\n\nThe performance of dictionaries is one of the minor miracles of computer science. We will see how they work in Section [B.4.](#page-227-0)\n\n**Exercise B.2.** Read the Wikipedia page on sorting algorithms at [http://en.wikipedia.org/](http://en.wikipedia.org/wiki/Sorting_algorithm) [wiki/ Sorting_ algorithm](http://en.wikipedia.org/wiki/Sorting_algorithm) *and answer the following questions:*\n\n- *1. What is a \"comparison sort?\" What is the best worst-case order of growth for a comparison sort? What is the best worst-case order of growth for any sort algorithm?*\n- *2. What is the order of growth of bubble sort, and why does Barack Obama think it is \"the wrong way to go?\"*\n- *3. What is the order of growth of radix sort? What preconditions do we need to use it?*\n- *4. What is a stable sort and why might it matter in practice?*\n- *5. What is the worst sorting algorithm (that has a name)?*\n- *6. What sort algorithm does the C library use? What sort algorithm does Python use? Are these algorithms stable? You might have to Google around to find these answers.*\n- 7. Many of the non-comparison sorts are linear, so why does Python use an $O(n \\log n) $*comparison sort?*\n\n#### <span id=\"page-226-0\"></span>**B.3 Analysis of search algorithms**\n\nA **search** is an algorithm that takes a collection and a target item and determines whether the target is in the collection, often returning the index of the target.\n\nThe simplest search algorithm is a \"linear search,\" which traverses the items of the collection in order, stopping if it finds the target. In the worst case it has to traverse the entire collection, so the run time is linear.\n\nThe in operator for sequences uses a linear search; so do string methods like find and count.\n\nIf the elements of the sequence are in order, you can use a **bisection search**, which is $O(\\log n)$. Bisection search is similar to the algorithm you probably use to look a word up in a dictionary (a real dictionary, not the data structure). Instead of starting at the beginning and checking each item in order, you start with the item in the middle and check whether the word you are looking for comes before or after. If it comes before, then you search the first half of the sequence. Otherwise you search the second half. Either way, you cut the number of remaining items in half.\n\nIf the sequence has 1,000,000 items, it will take about 20 steps to find the word or conclude that it's not there. So that's about 50,000 times faster than a linear search.\n\n**Exercise B.3.** *Write a function called* bisection *that takes a sorted list and a target value and returns the index of the value in the list, if it's there, or* None *if it's not.*\n\n*Or you could read the documentation of the* bisect *module and use that!*\n\nBisection search can be much faster than linear search, but it requires the sequence to be in order, which might require extra work.\n\nThere is another data structure, called a **hashtable** that is even faster—it can do a search in constant time—and it doesn't require the items to be sorted. Python dictionaries are implemented using hashtables, which is why most dictionary operations, including the in operator, are constant time.\n\n#### <span id=\"page-227-0\"></span>**B.4 Hashtables**\n\nTo explain how hashtables work and why their performance is so good, I start with a simple implementation of a map and gradually improve it until it's a hashtable.\n\nI use Python to demonstrate these implementations, but in real life you wouldn't write code like this in Python; you would just use a dictionary! So for the rest of this chapter, you have to imagine that dictionaries don't exist and you want to implement a data structure that maps from keys to values. The operations you have to implement are:\n\n- add(k, v)**:** Add a new item that maps from key k to value v. With a Python dictionary, d, this operation is written d[k] = v.\n- get(target)**:** Look up and return the value that corresponds to key target. With a Python dictionary, d, this operation is written d[target] or d.get(target).\n\nFor now, I assume that each key only appears once. The simplest implementation of this interface uses a list of tuples, where each tuple is a key-value pair.\n\nclass LinearMap(object):\n\n```\ndef __init__(self):\n    self.items = []\ndef add(self, k, v):\n    self.items.append((k, v))\ndef get(self, k):\n    for key, val in self.items:\n        if key == k:\n            return val\n    raise KeyError\n```\nadd appends a key-value tuple to the list of items, which takes constant time.\n\nget uses a for loop to search the list: if it finds the target key it returns the corresponding value; otherwise it raises a KeyError. So get is linear.\n\nAn alternative is to keep the list sorted by key. Then get could use a bisection search, which is $O$(log $n$). But inserting a new item in the middle of a list is linear, so this might not be the best option. There are other data structures (see [http://en.wikipedia.org/](http://en.wikipedia.org/wiki/Red-black_tree) [wiki/Red-black_tree](http://en.wikipedia.org/wiki/Red-black_tree)) that can implement add and get in log time, but that's still not as good as constant time, so let's move on.\n\nOne way to improve LinearMap is to break the list of key-value pairs into smaller lists. Here's an implementation called BetterMap, which is a list of 100 LinearMaps. As we'll see in a second, the order of growth for get is still linear, but BetterMap is a step on the path toward hashtables:\n\nclass BetterMap(object):\n\n```\ndef __init__(self, n=100):\n        self.maps = []\n        for i in range(n):\n            self.maps.append(LinearMap())\n    def find_map(self, k):\n        index = hash(k) % len(self.maps)\n        return self.maps[index]\n    def add(self, k, v):\n        m = self.find_map(k)\n        m.add(k, v)\n    def get(self, k):\n        m = self.find_map(k)\n        return m.get(k)\n__init__ makes a list of n LinearMaps.\n```\nfind_map is used by add and get to figure out which map to put the new item in, or which map to search.\n\nfind_map uses the built-in function hash, which takes almost any Python object and returns an integer. A limitation of this implementation is that it only works with hashable keys. Mutable types like lists and dictionaries are unhashable.\n\nHashable objects that are considered equal return the same hash value, but the converse is not necessarily true: two different objects can return the same hash value.\n\nfind_map uses the modulus operator to wrap the hash values into the range from 0 to len(self.maps), so the result is a legal index into the list. Of course, this means that many different hash values will wrap onto the same index. But if the hash function spreads things out pretty evenly (which is what hash functions are designed to do), then we expect *n*/100 items per LinearMap.\n\nSince the run time of LinearMap.get is proportional to the number of items, we expect BetterMap to be about 100 times faster than LinearMap. The order of growth is still linear, but the leading coefficient is smaller. That's nice, but still not as good as a hashtable.\n\nHere (finally) is the crucial idea that makes hashtables fast: if you can keep the maximum length of the LinearMaps bounded, LinearMap.get is constant time. All you have to do is keep track of the number of items and when the number of items per LinearMap exceeds a threshold, resize the hashtable by adding more LinearMaps.\n\nHere is an implementation of a hashtable:\n\n```\nclass HashMap(object):\n    def __init__(self):\n        self.maps = BetterMap(2)\n        self.num = 0\n    def get(self, k):\n        return self.maps.get(k)\n    def add(self, k, v):\n        if self.num == len(self.maps.maps):\n            self.resize()\n        self.maps.add(k, v)\n        self.num += 1\n    def resize(self):\n        new_maps = BetterMap(self.num * 2)\n        for m in self.maps.maps:\n            for k, v in m.items:\n                new_maps.add(k, v)\n        self.maps = new_maps\n```\nEach HashMap contains a BetterMap; __init__ starts with just 2 LinearMaps and initializes num, which keeps track of the number of items.\n\nget just dispatches to BetterMap. The real work happens in add, which checks the number of items and the size of the BetterMap: if they are equal, the average number of items per LinearMap is 1, so it calls resize.\n\nresize make a new BetterMap, twice as big as the previous one, and then \"rehashes\" the items from the old map to the new.\n\nRehashing is necessary because changing the number of LinearMaps changes the denominator of the modulus operator in find_map. That means that some objects that used to wrap into the same LinearMap will get split up (which is what we wanted, right?).\n\nRehashing is linear, so resize is linear, which might seem bad, since I promised that add would be constant time. But remember that we don't have to resize every time, so add is usually constant time and only occasionally linear. The total amount of work to run add *n* times is proportional to *n*, so the average time of each add is constant time!\n\nTo see how this works, think about starting with an empty HashTable and adding a sequence of items. We start with 2 LinearMaps, so the first 2 adds are fast (no resizing required). Let's say that they take one unit of work each. The next add requires a resize, so we have to rehash the first two items (let's call that 2 more units of work) and then add the third item (one more unit). Adding the next item costs 1 unit, so the total so far is 6 units of work for 4 items.\n\nThe next add costs 5 units, but the next three are only one unit each, so the total is 14 units for the first 8 adds.\n\n![](_page_230_Figure_1.jpeg)\n\n<span id=\"page-230-0\"></span>Figure B.1: The cost of a hashtable add.\n\nThe next add costs 9 units, but then we can add 7 more before the next resize, so the total is 30 units for the first 16 adds.\n\nAfter 32 adds, the total cost is 62 units, and I hope you are starting to see a pattern. After *n* adds, where $n$ is a power of two, the total cost is $2n - 2$ units, so the average work per add is a little less than 2 units. When *n* is a power of two, that's the best case; for other values of *n* the average work is a little higher, but that's not important. The important thing is that it is $O$(1).\n\nFigure [B.1](#page-230-0) shows how this works graphically. Each block represents a unit of work. The columns show the total work for each add in order from left to right: the first two adds cost 1 units, the third costs 3 units, etc.\n\nThe extra work of rehashing appears as a sequence of increasingly tall towers with increasing space between them. Now if you knock over the towers, amortizing the cost of resizing over all adds, you can see graphically that the total cost after $n$ adds is $2n - 2$.\n\nAn important feature of this algorithm is that when we resize the HashTable it grows geometrically; that is, we multiply the size by a constant. If you increase the size arithmetically—adding a fixed number each time—the average time per add is linear.\n\nYou can download my implementation of HashMap from [http://thinkpython/code/](http://thinkpython/code/Map.py) [Map.py](http://thinkpython/code/Map.py), but remember that there is no reason to use it; if you want a map, just use a Python dictionary.\n\n**210 Appendix B. Analysis of Algorithms**\n\n# <span id=\"page-232-0\"></span>**Appendix C**\n\n# **Lumpy**\n\nThroughout the book, I have used diagrams to represent the state of running programs.\n\nIn Section [2.2,](#page-33-0) we used a state diagram to show the names and values of variables. In Section [3.10](#page-46-0) I introduced a stack diagram, which shows one frame for each function call. Each frame shows the parameters and local variables for the function or method. Stack diagrams for recursive functions appear in Section [5.9](#page-66-0) and Section [6.5.](#page-76-0)\n\nSection [10.2](#page-108-2) shows what a list looks like in a state diagram, Section [11.4](#page-126-0) shows what a dictionary looks like, and Section [12.6](#page-138-0) shows two ways to represent tuples.\n\nSection [15.2](#page-165-0) introduces object diagrams, which show the state of an object's attributes, and their attributes, and so on. Section [15.3](#page-166-0) has object diagrams for Rectangles and their embedded Points. Section [16.1](#page-172-1) shows the state of a Time object. Section [18.2](#page-189-0) has a diagram that includes a class object and an instance, each with their own attributes.\n\nFinally, Section [18.8](#page-194-0) introduces class diagrams, which show the classes that make up a program and the relationships between them.\n\nThese diagrams are based on the Unified Modeling Language (UML), which is a standardized graphical language used by software engineers to communicate about program design, especially for object-oriented programs.\n\nUML is a rich language with many kinds of diagrams that represent many kinds of relationship between objects and classes. What I presented in this book is a small subset of the language, but it is the subset most commonly used in practice.\n\nThe purpose of this appendix is to review the diagrams presented in the previous chapters, and to introduce Lumpy. Lumpy, which stands for \"UML in Python,\" with some of the letters rearranged, is part of Swampy, which you already installed if you worked on the case study in Chapter [4](#page-52-0) or Chapter [19,](#page-200-0) or if you did Exercise [15.4,](#page-170-2)\n\nLumpy uses Python's inspect module to examine the state of a running program and generate object diagrams (including stack diagrams) and class diagrams.\n\n#### <span id=\"page-232-1\"></span>**C.1 State diagram**\n\nHere's an example that uses Lumpy to generate a state diagram.\n\n![](_page_233_Figure_1.jpeg)\n\n<span id=\"page-233-1\"></span>Figure C.1: State diagram generated by Lumpy.\n\n![](_page_233_Figure_3.jpeg)\n\n<span id=\"page-233-2\"></span>Figure C.2: Stack diagram.\n\nfrom swampy.Lumpy import Lumpy\n\n```\nlumpy = Lumpy()\nlumpy.make_reference()\n```\n\n```\nmessage = 'And now for something completely different'\nn = 17\npi = 3.1415926535897932\n```\n\n```\nlumpy.object_diagram()\n```\nThe first line imports the Lumpy class from swampy.Lumpy. If you don't have Swampy installed as a package, make sure the Swampy files are in Python's search path and use this import statement instead:\n\nfrom Lumpy import Lumpy\n\nThe next lines create a Lumpy object and make a \"reference\" point, which means that Lumpy records the objects that have been defined so far.\n\nNext we define new variables and invoke object_diagram, which draws the objects that have been defined since the reference point, in this case message, n and pi.\n\nFigure [C.1](#page-233-1) shows the result. The graphical style is different from what I showed earlier; for example, each reference is represented by a circle next to the variable name and a line to the value. And long strings are truncated. But the information conveyed by the diagram is the same.\n\nThe variable names are in a frame labeled <module>, which indicates that these are modulelevel variables, also known as global.\n\nYou can download this example from <http://thinkpython.com/code/lumpy_demo1.py>. Try adding some additional assignments and see what the diagram looks like.\n\n## <span id=\"page-233-0\"></span>**C.2 Stack diagram**\n\nHere's an example that uses Lumpy to generate a stack diagram. You can download it from <http://thinkpython.com/code/lumpy_demo2.py>.\n\n![](_page_234_Figure_1.jpeg)\n\n<span id=\"page-234-1\"></span>Figure C.3: Object diagram.\n\n```\nfrom swampy.Lumpy import Lumpy\ndef countdown(n):\n    if n <= 0:\n        print 'Blastoff!'\n        lumpy.object_diagram()\n    else:\n        print n\n        countdown(n-1)\nlumpy = Lumpy()\nlumpy.make_reference()\n```\ncountdown(3)\n\nFigure [C.2](#page-233-2) shows the result. Each frame is represented with a box that has the function's name outside and variables inside. Since this function is recursive, there is one frame for each level of recursion.\n\nRemember that a stack diagram shows the state of the program at a particular point in its execution. To get the diagram you want, sometimes you have to think about where to invoke object_diagram.\n\nIn this case I invoke object_diagram after executing the base case of the recursion; that way the stack diagram shows each level of the recursion. You can call object_diagram more than once to get a series of snapshots of the program's execution.\n\n#### <span id=\"page-234-0\"></span>**C.3 Object diagrams**\n\nThis example generates an object diagram showing the lists from Section [10.1.](#page-108-1) You can download it from <http://thinkpython.com/code/lumpy_demo3.py>.\n\nfrom swampy.Lumpy import Lumpy\n\n```\nlumpy = Lumpy()\nlumpy.make_reference()\ncheeses = ['Cheddar', 'Edam', 'Gouda']\n```\n![](_page_235_Figure_1.jpeg)\n\n<span id=\"page-235-0\"></span>Figure C.4: Object diagram.\n\n```\nnumbers = [17, 123]\nempty = []\n```\n\n```\nlumpy.object_diagram()\n```\nFigure [C.3](#page-234-1) shows the result. Lists are represented by a box that shows the indices mapping to the elements. This representation is slightly misleading, since indices are not actually part of the list, but I think they make the diagram easier to read. The empty list is represented by an empty box.\n\nAnd here's an example showing the dictionaries from Section [11.4.](#page-126-0) You can download it from <http://thinkpython.com/code/lumpy_demo4.py>.\n\nfrom swampy.Lumpy import Lumpy\n\nlumpy = Lumpy() lumpy.make_reference()\n\nhist = histogram('parrot') inverse = invert_dict(hist)\n\nlumpy.object_diagram()\n\nFigure [C.4](#page-235-0) shows the result. hist is a dictionary that maps from characters (single-letter strings) to integers; inverse maps from integers to lists of strings.\n\nThis example generates an object diagram for Point and Rectangle objects, as in Section [15.6.](#page-168-0) You can download it from <http://thinkpython.com/code/lumpy_demo5.py>.\n\nimport copy from swampy.Lumpy import Lumpy\n\n![](_page_236_Figure_1.jpeg)\n\n<span id=\"page-236-1\"></span>Figure C.5: Object diagram.\n\n![](_page_236_Figure_3.jpeg)\n\n<span id=\"page-236-2\"></span>Figure C.6: Object diagram.\n\n```\nlumpy = Lumpy()\nlumpy.make_reference()\nbox = Rectangle()\nbox.width = 100.0\nbox.height = 200.0\nbox.corner = Point()\nbox.corner.x = 0.0\nbox.corner.y = 0.0\nbox2 = copy.copy(box)\n```\n\n```\nlumpy.object_diagram()\n```\nFigure [C.5](#page-236-1) shows the result. copy.copy make a shallow copy, so box and box2 have their own width and height, but they share the same embedded Point object. This kind of sharing is usually fine with immutable objects, but with mutable types, it is highly errorprone.\n\n#### <span id=\"page-236-0\"></span>**C.4 Function and class objects**\n\nWhen I use Lumpy to make object diagrams, I usually define the functions and classes before I make the reference point. That way, function and class objects don't appear in the diagram.\n\n![](_page_237_Figure_1.jpeg)\n\n<span id=\"page-237-1\"></span>Figure C.7: Class diagram.\n\nBut if you are passing functions and classes as parameters, you might want them to appear. This example shows what that looks like; you can download it from [http://thinkpython.](http://thinkpython.com/code/lumpy_demo6.py) [com/code/lumpy_demo6.py](http://thinkpython.com/code/lumpy_demo6.py).\n\n```\nimport copy\nfrom swampy.Lumpy import Lumpy\nlumpy = Lumpy()\nlumpy.make_reference()\nclass Point(object):\n    \"\"\"Represents a point in 2-D space.\"\"\"\nclass Rectangle(object):\n    \"\"\"Represents a rectangle.\"\"\"\ndef instantiate(constructor):\n    \"\"\"Instantiates a new object.\"\"\"\n    obj = constructor()\n    lumpy.object_diagram()\n    return obj\n```\n\n```\npoint = instantiate(Point)\n```\nFigure [C.6](#page-236-2) shows the result. Since we invoke object_diagram inside a function, we get a stack diagram with a frame for the module-level variables and for the invocation of instantiate.\n\nAt the module level, Point and Rectangle refer to class objects (which have type type); instantiate refers to a function object.\n\nThis diagram might clarify two points of common confusion: (1) the difference between the class object, Point, and the instance of Point, obj, and (2) the difference between the function object created when instantiate is defined, and the frame created with it is called.\n\n## <span id=\"page-237-0\"></span>**C.5 Class Diagrams**\n\nAlthough I distinguish between state diagrams, stack diagrams and object diagrams, they are mostly the same thing: they show the state of a running program at a point in time.\n\n![](_page_238_Figure_1.jpeg)\n\n<span id=\"page-238-0\"></span>Figure C.8: Class diagram.\n\nClass diagrams are different. They show the classes that make up a program and the relationships between them. They are timeless in the sense that they describe the program as a whole, not any particular point in time. For example, if an instance of Class A generally contains a reference to an instance of Class B, we say there is a \"HAS-A relationship\" between those classes.\n\nHere's an example that shows a HAS-A relationship. You can download it from [http:](http://thinkpython.com/code/lumpy_demo7.py) [//thinkpython.com/code/lumpy_demo7.py](http://thinkpython.com/code/lumpy_demo7.py).\n\n```\nfrom swampy.Lumpy import Lumpy\n```\nlumpy = Lumpy() lumpy.make_reference()\n\n```\nbox = Rectangle()\nbox.width = 100.0\nbox.height = 200.0\nbox.corner = Point()\nbox.corner.x = 0.0\nbox.corner.y = 0.0\n```\n\n```\nlumpy.class_diagram()\n```\nFigure [C.7](#page-237-1) shows the result. Each class is represented with a box that contains the name of the class, any methods the class provides, any class variables, and any instance variables. In this example, Rectangle and Point have instance variables, but no methods or class variables.\n\nThe arrow from Rectangle to Point shows that Rectangles contain an embedded Point. In addition, Rectangle and Point both inherit from object, which is represented in the diagram with a triangle-headed arrow.\n\nHere's a more complex example using my solution to Exercise [18.6.](#page-198-1) You can download the code from <http://thinkpython.com/code/lumpy_demo8.py>; you will also need [http:](http://thinkpython.com/code/PokerHand.py) [//thinkpython.com/code/PokerHand.py](http://thinkpython.com/code/PokerHand.py).\n\n```\nfrom swampy.Lumpy import Lumpy\nfrom PokerHand import *\nlumpy = Lumpy()\nlumpy.make_reference()\ndeck = Deck()\nhand = PokerHand()\ndeck.move_cards(hand, 7)\n```\n\n```\nlumpy.class_diagram()\n```\nFigure [C.8](#page-238-0) shows the result. PokerHand inherits from Hand, which inherits from Deck. Both Deck and PokerHand have Cards.\n\nThis diagram does not show that Hand also has cards, because in the program there are no instances of Hand. This example demonstrates a limitation of Lumpy; it only knows about the attributes and HAS-A relationships of objects that are instantiated."
  },
  {
    "path": "data/examples/markdown/thinkpython/thinkpython_meta.json",
    "content": "{\n  \"table_of_contents\": [\n    {\n      \"title\": \"Think Python\",\n      \"heading_level\": null,\n      \"page_id\": 0,\n      \"polygon\": [\n        [\n          398.935546875,\n          265.095703125\n        ],\n        [\n          525.6013793945312,\n          265.095703125\n        ],\n        [\n          525.6013793945312,\n          289.6333312988281\n        ],\n        [\n          398.935546875,\n          289.6333312988281\n        ]\n      ]\n    },\n    {\n      \"title\": \"How to Think Like a Computer Scientist\",\n      \"heading_level\": null,\n      \"page_id\": 0,\n      \"polygon\": [\n        [\n          267.3017578125,\n          306.861328125\n        ],\n        [\n          525.6033325195312,\n          306.861328125\n        ],\n        [\n          525.6033325195312,\n          323.876953125\n        ],\n        [\n          267.3017578125,\n          323.876953125\n        ]\n      ]\n    },\n    {\n      \"title\": \"Think Python\",\n      \"heading_level\": null,\n      \"page_id\": 2,\n      \"polygon\": [\n        [\n          398.63671875,\n          264.90234375\n        ],\n        [\n          525.6013793945312,\n          264.90234375\n        ],\n        [\n          525.6013793945312,\n          289.6333312988281\n        ],\n        [\n          398.63671875,\n          289.6333312988281\n        ]\n      ]\n    },\n    {\n      \"title\": \"How to Think Like a Computer Scientist\",\n      \"heading_level\": null,\n      \"page_id\": 2,\n      \"polygon\": [\n        [\n          267.451171875,\n          306.66796875\n        ],\n        [\n          525.6033325195312,\n          306.66796875\n        ],\n        [\n          525.6033325195312,\n          323.7117614746094\n        ],\n        [\n          267.451171875,\n          323.7117614746094\n        ]\n      ]\n    },\n    {\n      \"title\": \"Preface\",\n      \"heading_level\": null,\n      \"page_id\": 4,\n      \"polygon\": [\n        [\n          128.49609375,\n          165.322265625\n        ],\n        [\n          213.662109375,\n          165.322265625\n        ],\n        [\n          213.662109375,\n          190.65838623046875\n        ],\n        [\n          128.49609375,\n          190.65838623046875\n        ]\n      ]\n    },\n    {\n      \"title\": \"The strange history of this book\",\n      \"heading_level\": null,\n      \"page_id\": 4,\n      \"polygon\": [\n        [\n          129.31787109375,\n          237.638671875\n        ],\n        [\n          338.8106384277344,\n          237.638671875\n        ],\n        [\n          338.8106384277344,\n          253.55902099609375\n        ],\n        [\n          129.31787109375,\n          253.55902099609375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Acknowledgments\",\n      \"heading_level\": null,\n      \"page_id\": 5,\n      \"polygon\": [\n        [\n          85.83837890625,\n          510.08203125\n        ],\n        [\n          211.5703125,\n          510.08203125\n        ],\n        [\n          211.5703125,\n          526.0249328613281\n        ],\n        [\n          85.83837890625,\n          526.0249328613281\n        ]\n      ]\n    },\n    {\n      \"title\": \"Contributor List\",\n      \"heading_level\": null,\n      \"page_id\": 6,\n      \"polygon\": [\n        [\n          128.0478515625,\n          84.498046875\n        ],\n        [\n          235.97708129882812,\n          84.498046875\n        ],\n        [\n          235.97708129882812,\n          100.29998779296875\n        ],\n        [\n          128.0478515625,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Contents\",\n      \"heading_level\": null,\n      \"page_id\": 12,\n      \"polygon\": [\n        [\n          128.0478515625,\n          165.40826416015625\n        ],\n        [\n          231.47499084472656,\n          165.40826416015625\n        ],\n        [\n          231.47499084472656,\n          190.1953125\n        ],\n        [\n          128.0478515625,\n          190.1953125\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 1\",\n      \"heading_level\": null,\n      \"page_id\": 22,\n      \"polygon\": [\n        [\n          128.197265625,\n          164.801513671875\n        ],\n        [\n          220.84561157226562,\n          164.801513671875\n        ],\n        [\n          220.84561157226562,\n          185.4639892578125\n        ],\n        [\n          128.197265625,\n          185.4639892578125\n        ]\n      ]\n    },\n    {\n      \"title\": \"The way of the program\",\n      \"heading_level\": null,\n      \"page_id\": 22,\n      \"polygon\": [\n        [\n          127.97314453125,\n          220.236328125\n        ],\n        [\n          400.91961669921875,\n          220.236328125\n        ],\n        [\n          400.91961669921875,\n          245.6234130859375\n        ],\n        [\n          127.97314453125,\n          245.6234130859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.1 The Python programming language\",\n      \"heading_level\": null,\n      \"page_id\": 22,\n      \"polygon\": [\n        [\n          128.9443359375,\n          498.8671875\n        ],\n        [\n          395.05078125,\n          498.8671875\n        ],\n        [\n          395.05078125,\n          513.9990234375\n        ],\n        [\n          128.9443359375,\n          513.9990234375\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.2 What is a program?\",\n      \"heading_level\": null,\n      \"page_id\": 24,\n      \"polygon\": [\n        [\n          128.3466796875,\n          85.95379638671875\n        ],\n        [\n          288.8173828125,\n          85.95379638671875\n        ],\n        [\n          288.8173828125,\n          100.29998779296875\n        ],\n        [\n          128.3466796875,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.3 What is debugging?\",\n      \"heading_level\": null,\n      \"page_id\": 24,\n      \"polygon\": [\n        [\n          128.0478515625,\n          439.2318420410156\n        ],\n        [\n          292.5728454589844,\n          439.2318420410156\n        ],\n        [\n          292.5728454589844,\n          453.57806396484375\n        ],\n        [\n          128.0478515625,\n          453.57806396484375\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.3.1 Syntax errors\",\n      \"heading_level\": null,\n      \"page_id\": 24,\n      \"polygon\": [\n        [\n          129.09375,\n          548.9158477783203\n        ],\n        [\n          237.53152465820312,\n          548.9158477783203\n        ],\n        [\n          237.53152465820312,\n          560.8710479736328\n        ],\n        [\n          129.09375,\n          560.8710479736328\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.3.2 Runtime errors\",\n      \"heading_level\": null,\n      \"page_id\": 25,\n      \"polygon\": [\n        [\n          85.53955078125,\n          86.3349609375\n        ],\n        [\n          207.685546875,\n          86.3349609375\n        ],\n        [\n          207.685546875,\n          99.24493408203125\n        ],\n        [\n          85.53955078125,\n          99.24493408203125\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.3.3 Semantic errors\",\n      \"heading_level\": null,\n      \"page_id\": 25,\n      \"polygon\": [\n        [\n          85.9130859375,\n          206.12109375\n        ],\n        [\n          208.1337890625,\n          206.12109375\n        ],\n        [\n          208.1337890625,\n          220.16192626953125\n        ],\n        [\n          85.9130859375,\n          220.16192626953125\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.3.4 Experimental debugging\",\n      \"heading_level\": null,\n      \"page_id\": 25,\n      \"polygon\": [\n        [\n          85.83837890625,\n          364.095703125\n        ],\n        [\n          258.78515625,\n          364.095703125\n        ],\n        [\n          258.78515625,\n          377.6620178222656\n        ],\n        [\n          85.83837890625,\n          377.6620178222656\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.4 Formal and natural languages\",\n      \"heading_level\": null,\n      \"page_id\": 26,\n      \"polygon\": [\n        [\n          127.82373046875,\n          85.95379638671875\n        ],\n        [\n          357.099609375,\n          85.95379638671875\n        ],\n        [\n          357.099609375,\n          100.353515625\n        ],\n        [\n          127.82373046875,\n          100.353515625\n        ]\n      ]\n    },\n    {\n      \"title\": \"Programming languages are formal languages that have been designed to\\nexpress computations.\",\n      \"heading_level\": null,\n      \"page_id\": 26,\n      \"polygon\": [\n        [\n          153.59765625,\n          224.490234375\n        ],\n        [\n          500.8359375,\n          224.490234375\n        ],\n        [\n          500.8359375,\n          246.73370361328125\n        ],\n        [\n          153.59765625,\n          246.73370361328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.5 The first program\",\n      \"heading_level\": null,\n      \"page_id\": 27,\n      \"polygon\": [\n        [\n          85.9130859375,\n          447.3996887207031\n        ],\n        [\n          232.6595001220703,\n          447.3996887207031\n        ],\n        [\n          232.6595001220703,\n          461.74591064453125\n        ],\n        [\n          85.9130859375,\n          461.74591064453125\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.6 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 28,\n      \"polygon\": [\n        [\n          128.42138671875,\n          85.95379638671875\n        ],\n        [\n          236.00576782226562,\n          85.95379638671875\n        ],\n        [\n          236.00576782226562,\n          101.2236328125\n        ],\n        [\n          128.42138671875,\n          101.2236328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.7 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 28,\n      \"polygon\": [\n        [\n          128.0478515625,\n          502.734375\n        ],\n        [\n          220.0527801513672,\n          502.734375\n        ],\n        [\n          220.0527801513672,\n          517.5260620117188\n        ],\n        [\n          128.0478515625,\n          517.5260620117188\n        ]\n      ]\n    },\n    {\n      \"title\": \"1.8 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 30,\n      \"polygon\": [\n        [\n          128.6455078125,\n          85.63177490234375\n        ],\n        [\n          221.63088989257812,\n          85.63177490234375\n        ],\n        [\n          221.63088989257812,\n          99.97796630859375\n        ],\n        [\n          128.6455078125,\n          99.97796630859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 2\",\n      \"heading_level\": null,\n      \"page_id\": 32,\n      \"polygon\": [\n        [\n          128.86962890625,\n          164.935546875\n        ],\n        [\n          221.1328125,\n          164.935546875\n        ],\n        [\n          221.1328125,\n          185.71087646484375\n        ],\n        [\n          128.86962890625,\n          185.71087646484375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Variables, expressions and\\nstatements\",\n      \"heading_level\": null,\n      \"page_id\": 32,\n      \"polygon\": [\n        [\n          128.9443359375,\n          219.462890625\n        ],\n        [\n          430.3125,\n          219.462890625\n        ],\n        [\n          430.3125,\n          276.60333251953125\n        ],\n        [\n          128.9443359375,\n          276.60333251953125\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.1 Values and types\",\n      \"heading_level\": null,\n      \"page_id\": 32,\n      \"polygon\": [\n        [\n          128.794921875,\n          326.390625\n        ],\n        [\n          273.427734375,\n          326.390625\n        ],\n        [\n          273.427734375,\n          340.7639465332031\n        ],\n        [\n          128.794921875,\n          340.7639465332031\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.2 Variables\",\n      \"heading_level\": null,\n      \"page_id\": 33,\n      \"polygon\": [\n        [\n          85.9130859375,\n          272.830078125\n        ],\n        [\n          180.03765869140625,\n          272.830078125\n        ],\n        [\n          180.03765869140625,\n          288.0208435058594\n        ],\n        [\n          85.9130859375,\n          288.0208435058594\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.3 Variable names and keywords\",\n      \"heading_level\": null,\n      \"page_id\": 33,\n      \"polygon\": [\n        [\n          85.98779296875,\n          607.3946685791016\n        ],\n        [\n          315.92486572265625,\n          607.3946685791016\n        ],\n        [\n          315.92486572265625,\n          621.7408599853516\n        ],\n        [\n          85.98779296875,\n          621.7408599853516\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.4 Operators and operands\",\n      \"heading_level\": null,\n      \"page_id\": 34,\n      \"polygon\": [\n        [\n          128.197265625,\n          452.3846435546875\n        ],\n        [\n          319.6728820800781,\n          452.3846435546875\n        ],\n        [\n          319.6728820800781,\n          466.7308654785156\n        ],\n        [\n          128.197265625,\n          466.7308654785156\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.5 Expressions and statements\",\n      \"heading_level\": null,\n      \"page_id\": 35,\n      \"polygon\": [\n        [\n          85.6142578125,\n          198.7734375\n        ],\n        [\n          298.7524108886719,\n          198.7734375\n        ],\n        [\n          298.7524108886719,\n          213.87689208984375\n        ],\n        [\n          85.6142578125,\n          213.87689208984375\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.6 Interactive mode and script mode\",\n      \"heading_level\": null,\n      \"page_id\": 35,\n      \"polygon\": [\n        [\n          85.46484375,\n          400.640625\n        ],\n        [\n          337.83148193359375,\n          400.640625\n        ],\n        [\n          337.83148193359375,\n          415.3359375\n        ],\n        [\n          85.46484375,\n          415.3359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.7 Order of operations\",\n      \"heading_level\": null,\n      \"page_id\": 36,\n      \"polygon\": [\n        [\n          128.42138671875,\n          295.453125\n        ],\n        [\n          291.357421875,\n          295.453125\n        ],\n        [\n          291.357421875,\n          311.4539794921875\n        ],\n        [\n          128.42138671875,\n          311.4539794921875\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.8 String operations\",\n      \"heading_level\": null,\n      \"page_id\": 36,\n      \"polygon\": [\n        [\n          127.82373046875,\n          633.83203125\n        ],\n        [\n          275.4434814453125,\n          633.83203125\n        ],\n        [\n          275.4434814453125,\n          649.3340301513672\n        ],\n        [\n          127.82373046875,\n          649.3340301513672\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.9 Comments\",\n      \"heading_level\": null,\n      \"page_id\": 37,\n      \"polygon\": [\n        [\n          86.13720703125,\n          291.005859375\n        ],\n        [\n          189.60665893554688,\n          291.005859375\n        ],\n        [\n          189.60665893554688,\n          306.1039123535156\n        ],\n        [\n          86.13720703125,\n          306.1039123535156\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.10 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 37,\n      \"polygon\": [\n        [\n          85.53955078125,\n          640.79296875\n        ],\n        [\n          201.41015625,\n          640.79296875\n        ],\n        [\n          201.41015625,\n          655.48828125\n        ],\n        [\n          85.53955078125,\n          655.48828125\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.11 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 38,\n      \"polygon\": [\n        [\n          128.3466796875,\n          389.354736328125\n        ],\n        [\n          227.2259063720703,\n          389.354736328125\n        ],\n        [\n          227.2259063720703,\n          403.7009582519531\n        ],\n        [\n          128.3466796875,\n          403.7009582519531\n        ]\n      ]\n    },\n    {\n      \"title\": \"2.12 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 39,\n      \"polygon\": [\n        [\n          85.39013671875,\n          297.7734375\n        ],\n        [\n          185.60400390625,\n          297.7734375\n        ],\n        [\n          185.60400390625,\n          312.24993896484375\n        ],\n        [\n          85.39013671875,\n          312.24993896484375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 3\",\n      \"heading_level\": null,\n      \"page_id\": 40,\n      \"polygon\": [\n        [\n          128.27197265625,\n          164.6455078125\n        ],\n        [\n          220.84561157226562,\n          164.6455078125\n        ],\n        [\n          220.84561157226562,\n          185.87091064453125\n        ],\n        [\n          128.27197265625,\n          185.87091064453125\n        ]\n      ]\n    },\n    {\n      \"title\": \"Functions\",\n      \"heading_level\": null,\n      \"page_id\": 40,\n      \"polygon\": [\n        [\n          128.49609375,\n          221.65228271484375\n        ],\n        [\n          242.349609375,\n          221.65228271484375\n        ],\n        [\n          242.349609375,\n          246.4393310546875\n        ],\n        [\n          128.49609375,\n          246.4393310546875\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.1 Function calls\",\n      \"heading_level\": null,\n      \"page_id\": 40,\n      \"polygon\": [\n        [\n          128.86962890625,\n          296.033203125\n        ],\n        [\n          253.1064453125,\n          296.033203125\n        ],\n        [\n          253.1064453125,\n          310.75994873046875\n        ],\n        [\n          128.86962890625,\n          310.75994873046875\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.2 Type conversion functions\",\n      \"heading_level\": null,\n      \"page_id\": 40,\n      \"polygon\": [\n        [\n          127.8984375,\n          495.38671875\n        ],\n        [\n          335.12371826171875,\n          495.38671875\n        ],\n        [\n          335.12371826171875,\n          510.4379577636719\n        ],\n        [\n          127.8984375,\n          510.4379577636719\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.3 Math functions\",\n      \"heading_level\": null,\n      \"page_id\": 41,\n      \"polygon\": [\n        [\n          85.83837890625,\n          231.064453125\n        ],\n        [\n          219.475341796875,\n          231.064453125\n        ],\n        [\n          219.475341796875,\n          246.52093505859375\n        ],\n        [\n          85.83837890625,\n          246.52093505859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.4 Composition\",\n      \"heading_level\": null,\n      \"page_id\": 42,\n      \"polygon\": [\n        [\n          129.09375,\n          85.63177490234375\n        ],\n        [\n          247.15277099609375,\n          85.63177490234375\n        ],\n        [\n          247.15277099609375,\n          99.97796630859375\n        ],\n        [\n          129.09375,\n          99.97796630859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.5 Adding new functions\",\n      \"heading_level\": null,\n      \"page_id\": 42,\n      \"polygon\": [\n        [\n          128.197265625,\n          341.8738098144531\n        ],\n        [\n          309.3005065917969,\n          341.8738098144531\n        ],\n        [\n          309.3005065917969,\n          356.22003173828125\n        ],\n        [\n          128.197265625,\n          356.22003173828125\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.6 Definitions and uses\",\n      \"heading_level\": null,\n      \"page_id\": 43,\n      \"polygon\": [\n        [\n          85.98779296875,\n          487.65234375\n        ],\n        [\n          253.33245849609375,\n          487.65234375\n        ],\n        [\n          253.33245849609375,\n          502.0660705566406\n        ],\n        [\n          85.98779296875,\n          502.0660705566406\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.7 Flow of execution\",\n      \"heading_level\": null,\n      \"page_id\": 44,\n      \"polygon\": [\n        [\n          127.8984375,\n          188.74676513671875\n        ],\n        [\n          278.2409973144531,\n          188.74676513671875\n        ],\n        [\n          278.2409973144531,\n          203.09295654296875\n        ],\n        [\n          127.8984375,\n          203.09295654296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.8 Parameters and arguments\",\n      \"heading_level\": null,\n      \"page_id\": 44,\n      \"polygon\": [\n        [\n          128.27197265625,\n          519.7107849121094\n        ],\n        [\n          335.6114196777344,\n          519.7107849121094\n        ],\n        [\n          335.6114196777344,\n          534.0570068359375\n        ],\n        [\n          128.27197265625,\n          534.0570068359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.9 Variables and parameters are local\",\n      \"heading_level\": null,\n      \"page_id\": 45,\n      \"polygon\": [\n        [\n          85.763671875,\n          466.3828125\n        ],\n        [\n          342.60882568359375,\n          466.3828125\n        ],\n        [\n          342.60882568359375,\n          480.94195556640625\n        ],\n        [\n          85.763671875,\n          480.94195556640625\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.10 Stack diagrams\",\n      \"heading_level\": null,\n      \"page_id\": 46,\n      \"polygon\": [\n        [\n          128.3466796875,\n          294.8467102050781\n        ],\n        [\n          269.0947265625,\n          294.8467102050781\n        ],\n        [\n          269.0947265625,\n          309.19293212890625\n        ],\n        [\n          128.3466796875,\n          309.19293212890625\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.11 Fruitful functions and void functions\",\n      \"heading_level\": null,\n      \"page_id\": 47,\n      \"polygon\": [\n        [\n          85.3154296875,\n          139.025390625\n        ],\n        [\n          369.6944274902344,\n          139.025390625\n        ],\n        [\n          369.6944274902344,\n          154.137939453125\n        ],\n        [\n          85.3154296875,\n          154.137939453125\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.12 Why functions?\",\n      \"heading_level\": null,\n      \"page_id\": 47,\n      \"polygon\": [\n        [\n          85.3154296875,\n          584.71875\n        ],\n        [\n          229.04421997070312,\n          584.71875\n        ],\n        [\n          229.04421997070312,\n          599.4089813232422\n        ],\n        [\n          85.3154296875,\n          599.4089813232422\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.13 Importing with from\",\n      \"heading_level\": null,\n      \"page_id\": 48,\n      \"polygon\": [\n        [\n          127.37548828125,\n          168.674072265625\n        ],\n        [\n          302.5994873046875,\n          168.674072265625\n        ],\n        [\n          302.5994873046875,\n          185.096923828125\n        ],\n        [\n          127.37548828125,\n          185.096923828125\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.14 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 48,\n      \"polygon\": [\n        [\n          128.12255859375,\n          565.5196228027344\n        ],\n        [\n          243.24609375,\n          565.5196228027344\n        ],\n        [\n          243.24609375,\n          579.8658142089844\n        ],\n        [\n          128.12255859375,\n          579.8658142089844\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.15 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 49,\n      \"polygon\": [\n        [\n          85.83837890625,\n          186.78515625\n        ],\n        [\n          184.02589416503906,\n          186.78515625\n        ],\n        [\n          184.02589416503906,\n          201.30694580078125\n        ],\n        [\n          85.83837890625,\n          201.30694580078125\n        ]\n      ]\n    },\n    {\n      \"title\": \"3.16 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 50,\n      \"polygon\": [\n        [\n          128.3466796875,\n          199.51275634765625\n        ],\n        [\n          228.80398559570312,\n          199.51275634765625\n        ],\n        [\n          228.80398559570312,\n          213.85894775390625\n        ],\n        [\n          128.3466796875,\n          213.85894775390625\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 4\",\n      \"heading_level\": null,\n      \"page_id\": 52,\n      \"polygon\": [\n        [\n          128.6455078125,\n          165.43450927734375\n        ],\n        [\n          221.2822265625,\n          165.43450927734375\n        ],\n        [\n          221.2822265625,\n          186.09698486328125\n        ],\n        [\n          128.6455078125,\n          186.09698486328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"Case study: interface design\",\n      \"heading_level\": null,\n      \"page_id\": 52,\n      \"polygon\": [\n        [\n          128.6455078125,\n          222.10333251953125\n        ],\n        [\n          448.83984375,\n          222.10333251953125\n        ],\n        [\n          448.83984375,\n          246.890380859375\n        ],\n        [\n          128.6455078125,\n          246.890380859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.1 TurtleWorld\",\n      \"heading_level\": null,\n      \"page_id\": 52,\n      \"polygon\": [\n        [\n          128.794921875,\n          351.9140625\n        ],\n        [\n          241.05563354492188,\n          351.9140625\n        ],\n        [\n          241.05563354492188,\n          366.4170227050781\n        ],\n        [\n          128.794921875,\n          366.4170227050781\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.2 Simple repetition\",\n      \"heading_level\": null,\n      \"page_id\": 53,\n      \"polygon\": [\n        [\n          85.53955078125,\n          451.5947570800781\n        ],\n        [\n          233.82159423828125,\n          451.5947570800781\n        ],\n        [\n          233.82159423828125,\n          465.94097900390625\n        ],\n        [\n          85.53955078125,\n          465.94097900390625\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.3 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 54,\n      \"polygon\": [\n        [\n          128.0478515625,\n          382.1136779785156\n        ],\n        [\n          222.1787109375,\n          382.1136779785156\n        ],\n        [\n          222.1787109375,\n          396.45989990234375\n        ],\n        [\n          128.0478515625,\n          396.45989990234375\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.4 Encapsulation\",\n      \"heading_level\": null,\n      \"page_id\": 55,\n      \"polygon\": [\n        [\n          85.6142578125,\n          224.876953125\n        ],\n        [\n          211.9005126953125,\n          224.876953125\n        ],\n        [\n          211.9005126953125,\n          239.701904296875\n        ],\n        [\n          85.6142578125,\n          239.701904296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.5 Generalization\",\n      \"heading_level\": null,\n      \"page_id\": 55,\n      \"polygon\": [\n        [\n          85.763671875,\n          546.046875\n        ],\n        [\n          216.69219970703125,\n          546.046875\n        ],\n        [\n          216.69219970703125,\n          560.9458923339844\n        ],\n        [\n          85.763671875,\n          560.9458923339844\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.6 Interface design\",\n      \"heading_level\": null,\n      \"page_id\": 56,\n      \"polygon\": [\n        [\n          128.49609375,\n          361.9498291015625\n        ],\n        [\n          267.4669494628906,\n          361.9498291015625\n        ],\n        [\n          267.4669494628906,\n          376.2960510253906\n        ],\n        [\n          128.49609375,\n          376.2960510253906\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.7 Refactoring\",\n      \"heading_level\": null,\n      \"page_id\": 57,\n      \"polygon\": [\n        [\n          85.46484375,\n          244.79296875\n        ],\n        [\n          195.18724060058594,\n          244.79296875\n        ],\n        [\n          195.18724060058594,\n          260.310791015625\n        ],\n        [\n          85.46484375,\n          260.310791015625\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.8 A development plan\",\n      \"heading_level\": null,\n      \"page_id\": 58,\n      \"polygon\": [\n        [\n          128.6455078125,\n          263.548828125\n        ],\n        [\n          295.9892578125,\n          263.548828125\n        ],\n        [\n          295.9892578125,\n          278.6109619140625\n        ],\n        [\n          128.6455078125,\n          278.6109619140625\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.9 docstring\",\n      \"heading_level\": null,\n      \"page_id\": 58,\n      \"polygon\": [\n        [\n          127.97314453125,\n          558.4587707519531\n        ],\n        [\n          223.2376251220703,\n          558.4587707519531\n        ],\n        [\n          223.2376251220703,\n          572.8049621582031\n        ],\n        [\n          127.97314453125,\n          572.8049621582031\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.10 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 59,\n      \"polygon\": [\n        [\n          85.46484375,\n          240.56890869140625\n        ],\n        [\n          201.2607421875,\n          240.56890869140625\n        ],\n        [\n          201.2607421875,\n          255.234375\n        ],\n        [\n          85.46484375,\n          255.234375\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.11 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 59,\n      \"polygon\": [\n        [\n          85.46484375,\n          474.890625\n        ],\n        [\n          184.0259246826172,\n          474.890625\n        ],\n        [\n          184.0259246826172,\n          489.46612548828125\n        ],\n        [\n          85.46484375,\n          489.46612548828125\n        ]\n      ]\n    },\n    {\n      \"title\": \"4.12 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 60,\n      \"polygon\": [\n        [\n          127.8984375,\n          445.11328125\n        ],\n        [\n          228.80401611328125,\n          445.11328125\n        ],\n        [\n          228.80401611328125,\n          459.5309753417969\n        ],\n        [\n          127.8984375,\n          459.5309753417969\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 5\",\n      \"heading_level\": null,\n      \"page_id\": 62,\n      \"polygon\": [\n        [\n          129.01904296875,\n          162.37750244140625\n        ],\n        [\n          220.84561157226562,\n          162.37750244140625\n        ],\n        [\n          220.84561157226562,\n          183.111328125\n        ],\n        [\n          129.01904296875,\n          183.111328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"Conditionals and recursion\",\n      \"heading_level\": null,\n      \"page_id\": 62,\n      \"polygon\": [\n        [\n          128.3466796875,\n          215.982421875\n        ],\n        [\n          438.6796875,\n          215.982421875\n        ],\n        [\n          438.6796875,\n          240.775390625\n        ],\n        [\n          128.3466796875,\n          240.775390625\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.1 Modulus operator\",\n      \"heading_level\": null,\n      \"page_id\": 62,\n      \"polygon\": [\n        [\n          128.0478515625,\n          287.9187927246094\n        ],\n        [\n          280.2350769042969,\n          287.9187927246094\n        ],\n        [\n          280.2350769042969,\n          302.2650146484375\n        ],\n        [\n          128.0478515625,\n          302.2650146484375\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.2 Boolean expressions\",\n      \"heading_level\": null,\n      \"page_id\": 62,\n      \"polygon\": [\n        [\n          128.57080078125,\n          524.77734375\n        ],\n        [\n          295.3703918457031,\n          524.77734375\n        ],\n        [\n          295.3703918457031,\n          539.4530181884766\n        ],\n        [\n          128.57080078125,\n          539.4530181884766\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.3 Logical operators\",\n      \"heading_level\": null,\n      \"page_id\": 63,\n      \"polygon\": [\n        [\n          85.763671875,\n          240.15234375\n        ],\n        [\n          231.890625,\n          240.15234375\n        ],\n        [\n          231.890625,\n          254.84765625\n        ],\n        [\n          85.763671875,\n          254.84765625\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.4 Conditional execution\",\n      \"heading_level\": null,\n      \"page_id\": 63,\n      \"polygon\": [\n        [\n          85.83837890625,\n          471.796875\n        ],\n        [\n          264.1640625,\n          471.796875\n        ],\n        [\n          264.1640625,\n          487.25201416015625\n        ],\n        [\n          85.83837890625,\n          487.25201416015625\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.5 Alternative execution\",\n      \"heading_level\": null,\n      \"page_id\": 64,\n      \"polygon\": [\n        [\n          128.794921875,\n          85.95379638671875\n        ],\n        [\n          302.712890625,\n          85.95379638671875\n        ],\n        [\n          302.712890625,\n          100.29998779296875\n        ],\n        [\n          128.794921875,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.6 Chained conditionals\",\n      \"heading_level\": null,\n      \"page_id\": 64,\n      \"polygon\": [\n        [\n          128.6455078125,\n          282.69140625\n        ],\n        [\n          302.5634765625,\n          282.69140625\n        ],\n        [\n          302.5634765625,\n          297.6069641113281\n        ],\n        [\n          128.6455078125,\n          297.6069641113281\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.7 Nested conditionals\",\n      \"heading_level\": null,\n      \"page_id\": 64,\n      \"polygon\": [\n        [\n          128.42138671875,\n          597.8671875\n        ],\n        [\n          292.94586181640625,\n          597.8671875\n        ],\n        [\n          292.94586181640625,\n          613.0500030517578\n        ],\n        [\n          128.42138671875,\n          613.0500030517578\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.8 Recursion\",\n      \"heading_level\": null,\n      \"page_id\": 65,\n      \"polygon\": [\n        [\n          85.9130859375,\n          372.603515625\n        ],\n        [\n          184.81497192382812,\n          372.603515625\n        ],\n        [\n          184.81497192382812,\n          387.2398681640625\n        ],\n        [\n          85.9130859375,\n          387.2398681640625\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.9 Stack diagrams for recursive functions\",\n      \"heading_level\": null,\n      \"page_id\": 66,\n      \"polygon\": [\n        [\n          128.12255859375,\n          468.1249084472656\n        ],\n        [\n          413.6979064941406,\n          468.1249084472656\n        ],\n        [\n          413.6979064941406,\n          482.47113037109375\n        ],\n        [\n          128.12255859375,\n          482.47113037109375\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.10 Infinite recursion\",\n      \"heading_level\": null,\n      \"page_id\": 67,\n      \"polygon\": [\n        [\n          85.46484375,\n          251.61279296875\n        ],\n        [\n          239.4022216796875,\n          251.61279296875\n        ],\n        [\n          239.4022216796875,\n          265.958984375\n        ],\n        [\n          85.46484375,\n          265.958984375\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.11 Keyboard input\",\n      \"heading_level\": null,\n      \"page_id\": 67,\n      \"polygon\": [\n        [\n          85.53955078125,\n          538.5088043212891\n        ],\n        [\n          229.8620147705078,\n          538.5088043212891\n        ],\n        [\n          229.8620147705078,\n          552.8549957275391\n        ],\n        [\n          85.53955078125,\n          552.8549957275391\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.12 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 68,\n      \"polygon\": [\n        [\n          127.8984375,\n          428.7655944824219\n        ],\n        [\n          243.17886352539062,\n          428.7655944824219\n        ],\n        [\n          243.17886352539062,\n          443.1796875\n        ],\n        [\n          127.8984375,\n          443.1796875\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.13 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 69,\n      \"polygon\": [\n        [\n          86.13720703125,\n          427.601806640625\n        ],\n        [\n          184.0259246826172,\n          427.601806640625\n        ],\n        [\n          184.0259246826172,\n          441.9480285644531\n        ],\n        [\n          86.13720703125,\n          441.9480285644531\n        ]\n      ]\n    },\n    {\n      \"title\": \"5.14 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 70,\n      \"polygon\": [\n        [\n          128.9443359375,\n          235.6197509765625\n        ],\n        [\n          228.80401611328125,\n          235.6197509765625\n        ],\n        [\n          228.80401611328125,\n          249.9659423828125\n        ],\n        [\n          128.9443359375,\n          249.9659423828125\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 6\",\n      \"heading_level\": null,\n      \"page_id\": 72,\n      \"polygon\": [\n        [\n          128.197265625,\n          165.4189453125\n        ],\n        [\n          220.84561157226562,\n          165.4189453125\n        ],\n        [\n          220.84561157226562,\n          186.46197509765625\n        ],\n        [\n          128.197265625,\n          186.46197509765625\n        ]\n      ]\n    },\n    {\n      \"title\": \"Fruitful functions\",\n      \"heading_level\": null,\n      \"page_id\": 72,\n      \"polygon\": [\n        [\n          127.001953125,\n          222.169921875\n        ],\n        [\n          331.2926330566406,\n          222.169921875\n        ],\n        [\n          331.2926330566406,\n          247.620361328125\n        ],\n        [\n          127.001953125,\n          247.620361328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"6.1 Return values\",\n      \"heading_level\": null,\n      \"page_id\": 72,\n      \"polygon\": [\n        [\n          128.49609375,\n          297.7734375\n        ],\n        [\n          253.705078125,\n          297.7734375\n        ],\n        [\n          253.705078125,\n          312.531982421875\n        ],\n        [\n          128.49609375,\n          312.531982421875\n        ]\n      ]\n    },\n    {\n      \"title\": \"6.2 Incremental development\",\n      \"heading_level\": null,\n      \"page_id\": 73,\n      \"polygon\": [\n        [\n          85.39013671875,\n          373.40087890625\n        ],\n        [\n          288.0703125,\n          373.40087890625\n        ],\n        [\n          288.0703125,\n          387.7471008300781\n        ],\n        [\n          85.39013671875,\n          387.7471008300781\n        ]\n      ]\n    },\n    {\n      \"title\": \"6.3 Composition\",\n      \"heading_level\": null,\n      \"page_id\": 75,\n      \"polygon\": [\n        [\n          86.2119140625,\n          230.725830078125\n        ],\n        [\n          203.9527587890625,\n          230.725830078125\n        ],\n        [\n          203.9527587890625,\n          245.072021484375\n        ],\n        [\n          86.2119140625,\n          245.072021484375\n        ]\n      ]\n    },\n    {\n      \"title\": \"6.4 Boolean functions\",\n      \"heading_level\": null,\n      \"page_id\": 75,\n      \"polygon\": [\n        [\n          85.0166015625,\n          584.7738647460938\n        ],\n        [\n          237.82412719726562,\n          584.7738647460938\n        ],\n        [\n          237.82412719726562,\n          599.1200561523438\n        ],\n        [\n          85.0166015625,\n          599.1200561523438\n        ]\n      ]\n    },\n    {\n      \"title\": \"6.5 More recursion\",\n      \"heading_level\": null,\n      \"page_id\": 76,\n      \"polygon\": [\n        [\n          128.49609375,\n          388.5017395019531\n        ],\n        [\n          261.9006652832031,\n          388.5017395019531\n        ],\n        [\n          261.9006652832031,\n          402.84796142578125\n        ],\n        [\n          128.49609375,\n          402.84796142578125\n        ]\n      ]\n    },\n    {\n      \"title\": \"6.6 Leap of faith\",\n      \"heading_level\": null,\n      \"page_id\": 78,\n      \"polygon\": [\n        [\n          128.27197265625,\n          251.32977294921875\n        ],\n        [\n          245.56033325195312,\n          251.32977294921875\n        ],\n        [\n          245.56033325195312,\n          265.67596435546875\n        ],\n        [\n          128.27197265625,\n          265.67596435546875\n        ]\n      ]\n    },\n    {\n      \"title\": \"6.7 One more example\",\n      \"heading_level\": null,\n      \"page_id\": 78,\n      \"polygon\": [\n        [\n          128.3466796875,\n          562.67578125\n        ],\n        [\n          286.1279296875,\n          562.67578125\n        ],\n        [\n          286.1279296875,\n          577.8719329833984\n        ],\n        [\n          128.3466796875,\n          577.8719329833984\n        ]\n      ]\n    },\n    {\n      \"title\": \"6.8 Checking types\",\n      \"heading_level\": null,\n      \"page_id\": 79,\n      \"polygon\": [\n        [\n          85.6142578125,\n          239.4217529296875\n        ],\n        [\n          220.27874755859375,\n          239.4217529296875\n        ],\n        [\n          220.27874755859375,\n          253.7679443359375\n        ],\n        [\n          85.6142578125,\n          253.7679443359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"6.9 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 80,\n      \"polygon\": [\n        [\n          128.3466796875,\n          226.3597412109375\n        ],\n        [\n          236.5224609375,\n          226.3597412109375\n        ],\n        [\n          236.5224609375,\n          240.92578125\n        ],\n        [\n          128.3466796875,\n          240.92578125\n        ]\n      ]\n    },\n    {\n      \"title\": \"6.10 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 81,\n      \"polygon\": [\n        [\n          86.39997863769531,\n          302.02734375\n        ],\n        [\n          184.02586364746094,\n          302.02734375\n        ],\n        [\n          184.02586364746094,\n          316.90087890625\n        ],\n        [\n          86.39997863769531,\n          316.90087890625\n        ]\n      ]\n    },\n    {\n      \"title\": \"6.11 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 81,\n      \"polygon\": [\n        [\n          85.83837890625,\n          538.4977264404297\n        ],\n        [\n          185.60397338867188,\n          538.4977264404297\n        ],\n        [\n          185.60397338867188,\n          552.8439178466797\n        ],\n        [\n          85.83837890625,\n          552.8439178466797\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 7\",\n      \"heading_level\": null,\n      \"page_id\": 84,\n      \"polygon\": [\n        [\n          128.794921875,\n          163.99639892578125\n        ],\n        [\n          221.73046875,\n          163.99639892578125\n        ],\n        [\n          221.73046875,\n          184.65887451171875\n        ],\n        [\n          128.794921875,\n          184.65887451171875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Iteration\",\n      \"heading_level\": null,\n      \"page_id\": 84,\n      \"polygon\": [\n        [\n          128.86962890625,\n          219.22723388671875\n        ],\n        [\n          227.408203125,\n          219.22723388671875\n        ],\n        [\n          227.408203125,\n          244.0142822265625\n        ],\n        [\n          128.86962890625,\n          244.0142822265625\n        ]\n      ]\n    },\n    {\n      \"title\": \"7.1 Multiple assignment\",\n      \"heading_level\": null,\n      \"page_id\": 84,\n      \"polygon\": [\n        [\n          128.72021484375,\n          292.74609375\n        ],\n        [\n          299.126953125,\n          292.74609375\n        ],\n        [\n          299.126953125,\n          307.1228942871094\n        ],\n        [\n          128.72021484375,\n          307.1228942871094\n        ]\n      ]\n    },\n    {\n      \"title\": \"7.2 Updating variables\",\n      \"heading_level\": null,\n      \"page_id\": 85,\n      \"polygon\": [\n        [\n          85.763671875,\n          163.58203125\n        ],\n        [\n          244.19384765625,\n          163.58203125\n        ],\n        [\n          244.19384765625,\n          178.75494384765625\n        ],\n        [\n          85.763671875,\n          178.75494384765625\n        ]\n      ]\n    },\n    {\n      \"title\": \"7.3 The while statement\",\n      \"heading_level\": null,\n      \"page_id\": 85,\n      \"polygon\": [\n        [\n          85.9130859375,\n          421.3271179199219\n        ],\n        [\n          251.50521850585938,\n          421.3271179199219\n        ],\n        [\n          251.50521850585938,\n          437.7499694824219\n        ],\n        [\n          85.9130859375,\n          437.7499694824219\n        ]\n      ]\n    },\n    {\n      \"title\": \"7.4 break\",\n      \"heading_level\": null,\n      \"page_id\": 86,\n      \"polygon\": [\n        [\n          127.599609375,\n          614.340087890625\n        ],\n        [\n          198.31837463378906,\n          614.340087890625\n        ],\n        [\n          198.31837463378906,\n          630.7629089355469\n        ],\n        [\n          127.599609375,\n          630.7629089355469\n        ]\n      ]\n    },\n    {\n      \"title\": \"7.5 Square roots\",\n      \"heading_level\": null,\n      \"page_id\": 87,\n      \"polygon\": [\n        [\n          85.83837890625,\n          377.9056091308594\n        ],\n        [\n          201.16961669921875,\n          377.9056091308594\n        ],\n        [\n          201.16961669921875,\n          392.2518310546875\n        ],\n        [\n          85.83837890625,\n          392.2518310546875\n        ]\n      ]\n    },\n    {\n      \"title\": \"7.6 Algorithms\",\n      \"heading_level\": null,\n      \"page_id\": 88,\n      \"polygon\": [\n        [\n          128.12255859375,\n          594.0\n        ],\n        [\n          236.7947998046875,\n          594.0\n        ],\n        [\n          236.7947998046875,\n          608.9769439697266\n        ],\n        [\n          128.12255859375,\n          608.9769439697266\n        ]\n      ]\n    },\n    {\n      \"title\": \"7.7 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 89,\n      \"polygon\": [\n        [\n          85.53955078125,\n          341.0859375\n        ],\n        [\n          193.04296875,\n          341.0859375\n        ],\n        [\n          193.04296875,\n          357.71484375\n        ],\n        [\n          85.53955078125,\n          357.71484375\n        ]\n      ]\n    },\n    {\n      \"title\": \"7.8 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 89,\n      \"polygon\": [\n        [\n          85.68896484375,\n          653.94140625\n        ],\n        [\n          177.205078125,\n          653.94140625\n        ],\n        [\n          177.205078125,\n          669.645866394043\n        ],\n        [\n          85.68896484375,\n          669.645866394043\n        ]\n      ]\n    },\n    {\n      \"title\": \"7.9 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 90,\n      \"polygon\": [\n        [\n          128.49609375,\n          248.41668701171875\n        ],\n        [\n          221.73046875,\n          248.41668701171875\n        ],\n        [\n          221.73046875,\n          262.76287841796875\n        ],\n        [\n          128.49609375,\n          262.76287841796875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 8\",\n      \"heading_level\": null,\n      \"page_id\": 92,\n      \"polygon\": [\n        [\n          128.197265625,\n          164.62750244140625\n        ],\n        [\n          220.84561157226562,\n          164.62750244140625\n        ],\n        [\n          220.84561157226562,\n          185.28997802734375\n        ],\n        [\n          128.197265625,\n          185.28997802734375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Strings\",\n      \"heading_level\": null,\n      \"page_id\": 92,\n      \"polygon\": [\n        [\n          129.2431640625,\n          220.4903564453125\n        ],\n        [\n          211.1220703125,\n          220.4903564453125\n        ],\n        [\n          211.1220703125,\n          245.27740478515625\n        ],\n        [\n          129.2431640625,\n          245.27740478515625\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.1 A string is a sequence\",\n      \"heading_level\": null,\n      \"page_id\": 92,\n      \"polygon\": [\n        [\n          128.6455078125,\n          294.6708068847656\n        ],\n        [\n          304.5088806152344,\n          294.6708068847656\n        ],\n        [\n          304.5088806152344,\n          309.01702880859375\n        ],\n        [\n          128.6455078125,\n          309.01702880859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.2 len\",\n      \"heading_level\": null,\n      \"page_id\": 92,\n      \"polygon\": [\n        [\n          127.67431640625,\n          661.3962249755859\n        ],\n        [\n          183.7425537109375,\n          661.3962249755859\n        ],\n        [\n          183.7425537109375,\n          677.8190460205078\n        ],\n        [\n          127.67431640625,\n          677.8190460205078\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.3 Traversal with a for loop\",\n      \"heading_level\": null,\n      \"page_id\": 93,\n      \"polygon\": [\n        [\n          85.9130859375,\n          339.75921630859375\n        ],\n        [\n          281.5877685546875,\n          339.75921630859375\n        ],\n        [\n          281.5877685546875,\n          356.18206787109375\n        ],\n        [\n          85.9130859375,\n          356.18206787109375\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.4 String slices\",\n      \"heading_level\": null,\n      \"page_id\": 94,\n      \"polygon\": [\n        [\n          128.86962890625,\n          401.4140625\n        ],\n        [\n          241.945068359375,\n          401.4140625\n        ],\n        [\n          241.945068359375,\n          415.7750244140625\n        ],\n        [\n          128.86962890625,\n          415.7750244140625\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.5 Strings are immutable\",\n      \"heading_level\": null,\n      \"page_id\": 95,\n      \"polygon\": [\n        [\n          85.46484375,\n          150.43359375\n        ],\n        [\n          264.5080871582031,\n          150.43359375\n        ],\n        [\n          264.5080871582031,\n          165.4459228515625\n        ],\n        [\n          85.46484375,\n          165.4459228515625\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.6 Searching\",\n      \"heading_level\": null,\n      \"page_id\": 95,\n      \"polygon\": [\n        [\n          86.13720703125,\n          416.109375\n        ],\n        [\n          184.02597045898438,\n          416.109375\n        ],\n        [\n          184.02597045898438,\n          430.8046875\n        ],\n        [\n          86.13720703125,\n          430.8046875\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.7 Looping and counting\",\n      \"heading_level\": null,\n      \"page_id\": 96,\n      \"polygon\": [\n        [\n          127.82373046875,\n          85.95379638671875\n        ],\n        [\n          307.494140625,\n          85.95379638671875\n        ],\n        [\n          307.494140625,\n          100.546875\n        ],\n        [\n          127.82373046875,\n          100.546875\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.8 String methods\",\n      \"heading_level\": null,\n      \"page_id\": 96,\n      \"polygon\": [\n        [\n          128.3466796875,\n          318.9787292480469\n        ],\n        [\n          262.68975830078125,\n          318.9787292480469\n        ],\n        [\n          262.68975830078125,\n          333.324951171875\n        ],\n        [\n          128.3466796875,\n          333.324951171875\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.9 The in operator\",\n      \"heading_level\": null,\n      \"page_id\": 97,\n      \"polygon\": [\n        [\n          85.9130859375,\n          341.6040344238281\n        ],\n        [\n          220.9252471923828,\n          341.6040344238281\n        ],\n        [\n          220.9252471923828,\n          358.0268859863281\n        ],\n        [\n          85.9130859375,\n          358.0268859863281\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.10 String comparison\",\n      \"heading_level\": null,\n      \"page_id\": 97,\n      \"polygon\": [\n        [\n          85.9130859375,\n          664.7117080688477\n        ],\n        [\n          246.9814453125,\n          664.7117080688477\n        ],\n        [\n          246.9814453125,\n          679.0579071044922\n        ],\n        [\n          85.9130859375,\n          679.0579071044922\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.11 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 98,\n      \"polygon\": [\n        [\n          127.97314453125,\n          319.0566101074219\n        ],\n        [\n          243.17892456054688,\n          319.0566101074219\n        ],\n        [\n          243.17892456054688,\n          333.40283203125\n        ],\n        [\n          127.97314453125,\n          333.40283203125\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.12 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 99,\n      \"polygon\": [\n        [\n          85.763671875,\n          654.71484375\n        ],\n        [\n          184.02589416503906,\n          654.71484375\n        ],\n        [\n          184.02589416503906,\n          669.3321151733398\n        ],\n        [\n          85.763671875,\n          669.3321151733398\n        ]\n      ]\n    },\n    {\n      \"title\": \"8.13 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 100,\n      \"polygon\": [\n        [\n          128.9443359375,\n          389.08367919921875\n        ],\n        [\n          228.80398559570312,\n          389.08367919921875\n        ],\n        [\n          228.80398559570312,\n          403.4299011230469\n        ],\n        [\n          128.9443359375,\n          403.4299011230469\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 9\",\n      \"heading_level\": null,\n      \"page_id\": 102,\n      \"polygon\": [\n        [\n          129.16845703125,\n          162.73150634765625\n        ],\n        [\n          220.84561157226562,\n          162.73150634765625\n        ],\n        [\n          220.84561157226562,\n          183.39398193359375\n        ],\n        [\n          129.16845703125,\n          183.39398193359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Case study: word play\",\n      \"heading_level\": null,\n      \"page_id\": 102,\n      \"polygon\": [\n        [\n          128.42138671875,\n          216.69732666015625\n        ],\n        [\n          381.684814453125,\n          216.69732666015625\n        ],\n        [\n          381.684814453125,\n          241.484375\n        ],\n        [\n          128.42138671875,\n          241.484375\n        ]\n      ]\n    },\n    {\n      \"title\": \"9.1 Reading word lists\",\n      \"heading_level\": null,\n      \"page_id\": 102,\n      \"polygon\": [\n        [\n          128.27197265625,\n          288.9817810058594\n        ],\n        [\n          285.3853759765625,\n          288.9817810058594\n        ],\n        [\n          285.3853759765625,\n          303.3280029296875\n        ],\n        [\n          128.27197265625,\n          303.3280029296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"9.2 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 103,\n      \"polygon\": [\n        [\n          85.6142578125,\n          264.12890625\n        ],\n        [\n          178.430908203125,\n          264.12890625\n        ],\n        [\n          178.430908203125,\n          279.781005859375\n        ],\n        [\n          85.6142578125,\n          279.781005859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"9.3 Search\",\n      \"heading_level\": null,\n      \"page_id\": 103,\n      \"polygon\": [\n        [\n          86.0625,\n          652.78125\n        ],\n        [\n          162.50668334960938,\n          652.78125\n        ],\n        [\n          162.50668334960938,\n          667.7410888671875\n        ],\n        [\n          86.0625,\n          667.7410888671875\n        ]\n      ]\n    },\n    {\n      \"title\": \"9.4 Looping with indices\",\n      \"heading_level\": null,\n      \"page_id\": 104,\n      \"polygon\": [\n        [\n          127.37548828125,\n          652.4447631835938\n        ],\n        [\n          301.3241271972656,\n          652.4447631835938\n        ],\n        [\n          301.3241271972656,\n          666.7909545898438\n        ],\n        [\n          127.37548828125,\n          666.7909545898438\n        ]\n      ]\n    },\n    {\n      \"title\": \"9.5 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 106,\n      \"polygon\": [\n        [\n          128.0478515625,\n          194.90625\n        ],\n        [\n          236.00576782226562,\n          194.90625\n        ],\n        [\n          236.00576782226562,\n          209.6015625\n        ],\n        [\n          128.0478515625,\n          209.6015625\n        ]\n      ]\n    },\n    {\n      \"title\": \"9.6 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 106,\n      \"polygon\": [\n        [\n          128.72021484375,\n          590.9436798095703\n        ],\n        [\n          220.05284118652344,\n          590.9436798095703\n        ],\n        [\n          220.05284118652344,\n          605.2898712158203\n        ],\n        [\n          128.72021484375,\n          605.2898712158203\n        ]\n      ]\n    },\n    {\n      \"title\": \"9.7 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 107,\n      \"polygon\": [\n        [\n          85.6142578125,\n          85.271484375\n        ],\n        [\n          179.4462890625,\n          85.271484375\n        ],\n        [\n          179.4462890625,\n          99.97796630859375\n        ],\n        [\n          85.6142578125,\n          99.97796630859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 10\",\n      \"heading_level\": null,\n      \"page_id\": 108,\n      \"polygon\": [\n        [\n          128.49609375,\n          163.1953125\n        ],\n        [\n          232.787109375,\n          163.1953125\n        ],\n        [\n          232.787109375,\n          184.333984375\n        ],\n        [\n          128.49609375,\n          184.333984375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Lists\",\n      \"heading_level\": null,\n      \"page_id\": 108,\n      \"polygon\": [\n        [\n          127.7490234375,\n          218.57733154296875\n        ],\n        [\n          184.2275390625,\n          218.57733154296875\n        ],\n        [\n          184.2275390625,\n          243.3643798828125\n        ],\n        [\n          127.7490234375,\n          243.3643798828125\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.1 A list is a sequence\",\n      \"heading_level\": null,\n      \"page_id\": 108,\n      \"polygon\": [\n        [\n          128.57080078125,\n          291.8017883300781\n        ],\n        [\n          294.1365661621094,\n          291.8017883300781\n        ],\n        [\n          294.1365661621094,\n          306.14801025390625\n        ],\n        [\n          128.57080078125,\n          306.14801025390625\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.2 Lists are mutable\",\n      \"heading_level\": null,\n      \"page_id\": 108,\n      \"polygon\": [\n        [\n          127.4501953125,\n          612.3318481445312\n        ],\n        [\n          281.39727783203125,\n          612.3318481445312\n        ],\n        [\n          281.39727783203125,\n          626.6780395507812\n        ],\n        [\n          127.4501953125,\n          626.6780395507812\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.3 Traversing a list\",\n      \"heading_level\": null,\n      \"page_id\": 110,\n      \"polygon\": [\n        [\n          128.6455078125,\n          85.95379638671875\n        ],\n        [\n          275.6689453125,\n          85.95379638671875\n        ],\n        [\n          275.6689453125,\n          100.29998779296875\n        ],\n        [\n          128.6455078125,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.4 List operations\",\n      \"heading_level\": null,\n      \"page_id\": 110,\n      \"polygon\": [\n        [\n          129.01904296875,\n          423.2647705078125\n        ],\n        [\n          266.66363525390625,\n          423.2647705078125\n        ],\n        [\n          266.66363525390625,\n          437.6109924316406\n        ],\n        [\n          129.01904296875,\n          437.6109924316406\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.5 List slices\",\n      \"heading_level\": null,\n      \"page_id\": 110,\n      \"polygon\": [\n        [\n          127.1513671875,\n          662.3668518066406\n        ],\n        [\n          233.2353515625,\n          662.3668518066406\n        ],\n        [\n          233.2353515625,\n          676.7130432128906\n        ],\n        [\n          127.1513671875,\n          676.7130432128906\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.6 List methods\",\n      \"heading_level\": null,\n      \"page_id\": 111,\n      \"polygon\": [\n        [\n          85.46484375,\n          379.4886779785156\n        ],\n        [\n          210.70993041992188,\n          379.4886779785156\n        ],\n        [\n          210.70993041992188,\n          393.83489990234375\n        ],\n        [\n          85.46484375,\n          393.83489990234375\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.7 Map, filter and reduce\",\n      \"heading_level\": null,\n      \"page_id\": 112,\n      \"polygon\": [\n        [\n          128.0478515625,\n          85.95379638671875\n        ],\n        [\n          313.76953125,\n          85.95379638671875\n        ],\n        [\n          313.76953125,\n          100.29998779296875\n        ],\n        [\n          128.0478515625,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.8 Deleting elements\",\n      \"heading_level\": null,\n      \"page_id\": 113,\n      \"polygon\": [\n        [\n          85.6142578125,\n          272.443359375\n        ],\n        [\n          245.77203369140625,\n          272.443359375\n        ],\n        [\n          245.77203369140625,\n          287.138671875\n        ],\n        [\n          85.6142578125,\n          287.138671875\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.9 Lists and strings\",\n      \"heading_level\": null,\n      \"page_id\": 114,\n      \"polygon\": [\n        [\n          128.6455078125,\n          85.95379638671875\n        ],\n        [\n          277.4619140625,\n          85.95379638671875\n        ],\n        [\n          277.4619140625,\n          100.29998779296875\n        ],\n        [\n          128.6455078125,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.10 Objects and values\",\n      \"heading_level\": null,\n      \"page_id\": 114,\n      \"polygon\": [\n        [\n          127.8984375,\n          551.84765625\n        ],\n        [\n          300.5208435058594,\n          551.84765625\n        ],\n        [\n          300.5208435058594,\n          566.5540924072266\n        ],\n        [\n          127.8984375,\n          566.5540924072266\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.11 Aliasing\",\n      \"heading_level\": null,\n      \"page_id\": 115,\n      \"polygon\": [\n        [\n          85.6142578125,\n          513.5625\n        ],\n        [\n          189.0087890625,\n          513.5625\n        ],\n        [\n          189.0087890625,\n          528.2919616699219\n        ],\n        [\n          85.6142578125,\n          528.2919616699219\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.12 List arguments\",\n      \"heading_level\": null,\n      \"page_id\": 116,\n      \"polygon\": [\n        [\n          128.197265625,\n          420.4227600097656\n        ],\n        [\n          273.836669921875,\n          420.4227600097656\n        ],\n        [\n          273.836669921875,\n          434.76898193359375\n        ],\n        [\n          128.197265625,\n          434.76898193359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.13 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 117,\n      \"polygon\": [\n        [\n          85.6142578125,\n          428.7527160644531\n        ],\n        [\n          207.15200805664062,\n          428.7527160644531\n        ],\n        [\n          207.15200805664062,\n          443.56640625\n        ],\n        [\n          85.6142578125,\n          443.56640625\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.14 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 118,\n      \"polygon\": [\n        [\n          129.2431640625,\n          471.78265380859375\n        ],\n        [\n          234.4306640625,\n          471.78265380859375\n        ],\n        [\n          234.4306640625,\n          486.1288757324219\n        ],\n        [\n          129.2431640625,\n          486.1288757324219\n        ]\n      ]\n    },\n    {\n      \"title\": \"10.15 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 119,\n      \"polygon\": [\n        [\n          85.6142578125,\n          292.359375\n        ],\n        [\n          192.77706909179688,\n          292.359375\n        ],\n        [\n          192.77706909179688,\n          307.092041015625\n        ],\n        [\n          85.6142578125,\n          307.092041015625\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 11\",\n      \"heading_level\": null,\n      \"page_id\": 122,\n      \"polygon\": [\n        [\n          128.9443359375,\n          162.3251953125\n        ],\n        [\n          232.3388671875,\n          162.3251953125\n        ],\n        [\n          232.3388671875,\n          183.33795166015625\n        ],\n        [\n          128.9443359375,\n          183.33795166015625\n        ]\n      ]\n    },\n    {\n      \"title\": \"Dictionaries\",\n      \"heading_level\": null,\n      \"page_id\": 122,\n      \"polygon\": [\n        [\n          129.16845703125,\n          216.5625\n        ],\n        [\n          268.646484375,\n          216.5625\n        ],\n        [\n          268.646484375,\n          241.371337890625\n        ],\n        [\n          129.16845703125,\n          241.371337890625\n        ]\n      ]\n    },\n    {\n      \"title\": \"11.1 Dictionary as a set of counters\",\n      \"heading_level\": null,\n      \"page_id\": 123,\n      \"polygon\": [\n        [\n          85.46484375,\n          555.328125\n        ],\n        [\n          322.28021240234375,\n          555.328125\n        ],\n        [\n          322.28021240234375,\n          569.7739410400391\n        ],\n        [\n          85.46484375,\n          569.7739410400391\n        ]\n      ]\n    },\n    {\n      \"title\": \"11.2 Looping and dictionaries\",\n      \"heading_level\": null,\n      \"page_id\": 124,\n      \"polygon\": [\n        [\n          127.4501953125,\n          653.94140625\n        ],\n        [\n          333.2156982421875,\n          653.94140625\n        ],\n        [\n          333.2156982421875,\n          668.4161911010742\n        ],\n        [\n          127.4501953125,\n          668.4161911010742\n        ]\n      ]\n    },\n    {\n      \"title\": \"11.3 Reverse lookup\",\n      \"heading_level\": null,\n      \"page_id\": 125,\n      \"polygon\": [\n        [\n          85.46484375,\n          326.1167297363281\n        ],\n        [\n          228.26959228515625,\n          326.1167297363281\n        ],\n        [\n          228.26959228515625,\n          340.46295166015625\n        ],\n        [\n          85.46484375,\n          340.46295166015625\n        ]\n      ]\n    },\n    {\n      \"title\": \"11.4 Dictionaries and lists\",\n      \"heading_level\": null,\n      \"page_id\": 126,\n      \"polygon\": [\n        [\n          127.30078125,\n          337.6007995605469\n        ],\n        [\n          308.4684143066406,\n          337.6007995605469\n        ],\n        [\n          308.4684143066406,\n          351.947021484375\n        ],\n        [\n          127.30078125,\n          351.947021484375\n        ]\n      ]\n    },\n    {\n      \"title\": \"11.5 Memos\",\n      \"heading_level\": null,\n      \"page_id\": 127,\n      \"polygon\": [\n        [\n          85.763671875,\n          653.16796875\n        ],\n        [\n          174.4713134765625,\n          653.16796875\n        ],\n        [\n          174.4713134765625,\n          668.0169982910156\n        ],\n        [\n          85.763671875,\n          668.0169982910156\n        ]\n      ]\n    },\n    {\n      \"title\": \"11.6 Global variables\",\n      \"heading_level\": null,\n      \"page_id\": 129,\n      \"polygon\": [\n        [\n          85.3154296875,\n          84.73974609375\n        ],\n        [\n          234.7294921875,\n          84.73974609375\n        ],\n        [\n          234.7294921875,\n          100.29998779296875\n        ],\n        [\n          85.3154296875,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"11.7 Long integers\",\n      \"heading_level\": null,\n      \"page_id\": 130,\n      \"polygon\": [\n        [\n          127.7490234375,\n          234.62371826171875\n        ],\n        [\n          259.2333984375,\n          234.62371826171875\n        ],\n        [\n          259.2333984375,\n          249.43359375\n        ],\n        [\n          127.7490234375,\n          249.43359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"11.8 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 130,\n      \"polygon\": [\n        [\n          127.52490234375,\n          561.90234375\n        ],\n        [\n          243.17897033691406,\n          561.90234375\n        ],\n        [\n          243.17897033691406,\n          576.4298858642578\n        ],\n        [\n          127.52490234375,\n          576.4298858642578\n        ]\n      ]\n    },\n    {\n      \"title\": \"11.9 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 131,\n      \"polygon\": [\n        [\n          85.68896484375,\n          335.1865539550781\n        ],\n        [\n          184.02589416503906,\n          335.1865539550781\n        ],\n        [\n          184.02589416503906,\n          349.53277587890625\n        ],\n        [\n          85.68896484375,\n          349.53277587890625\n        ]\n      ]\n    },\n    {\n      \"title\": \"11.10 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 132,\n      \"polygon\": [\n        [\n          128.3466796875,\n          180.6627197265625\n        ],\n        [\n          236.5224609375,\n          180.6627197265625\n        ],\n        [\n          236.5224609375,\n          195.0089111328125\n        ],\n        [\n          128.3466796875,\n          195.0089111328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 12\",\n      \"heading_level\": null,\n      \"page_id\": 134,\n      \"polygon\": [\n        [\n          128.9443359375,\n          162.615234375\n        ],\n        [\n          232.6376953125,\n          162.615234375\n        ],\n        [\n          232.6376953125,\n          183.574951171875\n        ],\n        [\n          128.9443359375,\n          183.574951171875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Tuples\",\n      \"heading_level\": null,\n      \"page_id\": 134,\n      \"polygon\": [\n        [\n          128.6455078125,\n          217.059326171875\n        ],\n        [\n          204.87843322753906,\n          217.059326171875\n        ],\n        [\n          204.87843322753906,\n          241.84637451171875\n        ],\n        [\n          128.6455078125,\n          241.84637451171875\n        ]\n      ]\n    },\n    {\n      \"title\": \"12.1 Tuples are immutable\",\n      \"heading_level\": null,\n      \"page_id\": 134,\n      \"polygon\": [\n        [\n          128.27197265625,\n          289.458984375\n        ],\n        [\n          311.4381103515625,\n          289.458984375\n        ],\n        [\n          311.4381103515625,\n          303.8710021972656\n        ],\n        [\n          128.27197265625,\n          303.8710021972656\n        ]\n      ]\n    },\n    {\n      \"title\": \"12.2 Tuple assignment\",\n      \"heading_level\": null,\n      \"page_id\": 135,\n      \"polygon\": [\n        [\n          85.6142578125,\n          315.5625\n        ],\n        [\n          241.53985595703125,\n          315.5625\n        ],\n        [\n          241.53985595703125,\n          330.0780029296875\n        ],\n        [\n          85.6142578125,\n          330.0780029296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"12.3 Tuples as return values\",\n      \"heading_level\": null,\n      \"page_id\": 136,\n      \"polygon\": [\n        [\n          128.86962890625,\n          85.95379638671875\n        ],\n        [\n          319.80194091796875,\n          85.95379638671875\n        ],\n        [\n          319.80194091796875,\n          100.29998779296875\n        ],\n        [\n          128.86962890625,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"12.4 Variable-length argument tuples\",\n      \"heading_level\": null,\n      \"page_id\": 136,\n      \"polygon\": [\n        [\n          128.6455078125,\n          409.53515625\n        ],\n        [\n          381.8205261230469,\n          409.53515625\n        ],\n        [\n          381.8205261230469,\n          423.9659729003906\n        ],\n        [\n          128.6455078125,\n          423.9659729003906\n        ]\n      ]\n    },\n    {\n      \"title\": \"12.5 Lists and tuples\",\n      \"heading_level\": null,\n      \"page_id\": 137,\n      \"polygon\": [\n        [\n          85.763671875,\n          199.16015625\n        ],\n        [\n          229.5,\n          199.16015625\n        ],\n        [\n          229.5,\n          215.7159423828125\n        ],\n        [\n          85.763671875,\n          215.7159423828125\n        ]\n      ]\n    },\n    {\n      \"title\": \"12.6 Dictionaries and tuples\",\n      \"heading_level\": null,\n      \"page_id\": 138,\n      \"polygon\": [\n        [\n          128.57080078125,\n          185.9150390625\n        ],\n        [\n          322.0256042480469,\n          185.9150390625\n        ],\n        [\n          322.0256042480469,\n          200.4730224609375\n        ],\n        [\n          128.57080078125,\n          200.4730224609375\n        ]\n      ]\n    },\n    {\n      \"title\": \"12.7 Comparing tuples\",\n      \"heading_level\": null,\n      \"page_id\": 139,\n      \"polygon\": [\n        [\n          85.53955078125,\n          525.55078125\n        ],\n        [\n          244.19384765625,\n          525.55078125\n        ],\n        [\n          244.19384765625,\n          540.5119476318359\n        ],\n        [\n          85.53955078125,\n          540.5119476318359\n        ]\n      ]\n    },\n    {\n      \"title\": \"12.8 Sequences of sequences\",\n      \"heading_level\": null,\n      \"page_id\": 140,\n      \"polygon\": [\n        [\n          127.97314453125,\n          488.0967102050781\n        ],\n        [\n          326.0281982421875,\n          488.0967102050781\n        ],\n        [\n          326.0281982421875,\n          502.44293212890625\n        ],\n        [\n          127.97314453125,\n          502.44293212890625\n        ]\n      ]\n    },\n    {\n      \"title\": \"12.9 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 141,\n      \"polygon\": [\n        [\n          85.6142578125,\n          222.5216064453125\n        ],\n        [\n          201.2607421875,\n          222.5216064453125\n        ],\n        [\n          201.2607421875,\n          237.251953125\n        ],\n        [\n          85.6142578125,\n          237.251953125\n        ]\n      ]\n    },\n    {\n      \"title\": \"12.10 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 142,\n      \"polygon\": [\n        [\n          129.60000610351562,\n          85.95379638671875\n        ],\n        [\n          234.3990020751953,\n          85.95379638671875\n        ],\n        [\n          234.3990020751953,\n          100.29998779296875\n        ],\n        [\n          129.60000610351562,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"12.11 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 142,\n      \"polygon\": [\n        [\n          128.72021484375,\n          343.4568786621094\n        ],\n        [\n          235.97714233398438,\n          343.4568786621094\n        ],\n        [\n          235.97714233398438,\n          357.8031005859375\n        ],\n        [\n          128.72021484375,\n          357.8031005859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 13\",\n      \"heading_level\": null,\n      \"page_id\": 144,\n      \"polygon\": [\n        [\n          129.01904296875,\n          166.9874267578125\n        ],\n        [\n          231.591796875,\n          166.9874267578125\n        ],\n        [\n          231.591796875,\n          187.64990234375\n        ],\n        [\n          129.01904296875,\n          187.64990234375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Case study: data structure\\nselection\",\n      \"heading_level\": null,\n      \"page_id\": 144,\n      \"polygon\": [\n        [\n          128.6455078125,\n          225.209228515625\n        ],\n        [\n          423.140625,\n          225.209228515625\n        ],\n        [\n          423.140625,\n          280.4812927246094\n        ],\n        [\n          128.6455078125,\n          280.4812927246094\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.1 Word frequency analysis\",\n      \"heading_level\": null,\n      \"page_id\": 144,\n      \"polygon\": [\n        [\n          128.86962890625,\n          331.611328125\n        ],\n        [\n          331.3649597167969,\n          331.611328125\n        ],\n        [\n          331.3649597167969,\n          346.58087158203125\n        ],\n        [\n          128.86962890625,\n          346.58087158203125\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.2 Random numbers\",\n      \"heading_level\": null,\n      \"page_id\": 145,\n      \"polygon\": [\n        [\n          85.39013671875,\n          85.95379638671875\n        ],\n        [\n          243.544921875,\n          85.95379638671875\n        ],\n        [\n          243.544921875,\n          100.546875\n        ],\n        [\n          85.39013671875,\n          100.546875\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.3 Word histogram\",\n      \"heading_level\": null,\n      \"page_id\": 146,\n      \"polygon\": [\n        [\n          127.8984375,\n          85.95379638671875\n        ],\n        [\n          275.220703125,\n          85.95379638671875\n        ],\n        [\n          275.220703125,\n          100.29998779296875\n        ],\n        [\n          127.8984375,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.4 Most common words\",\n      \"heading_level\": null,\n      \"page_id\": 147,\n      \"polygon\": [\n        [\n          85.53955078125,\n          154.7841796875\n        ],\n        [\n          263.7333679199219,\n          154.7841796875\n        ],\n        [\n          263.7333679199219,\n          169.3389892578125\n        ],\n        [\n          85.53955078125,\n          169.3389892578125\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.5 Optional parameters\",\n      \"heading_level\": null,\n      \"page_id\": 147,\n      \"polygon\": [\n        [\n          85.3154296875,\n          540.6328125\n        ],\n        [\n          260.9214782714844,\n          540.6328125\n        ],\n        [\n          260.9214782714844,\n          555.4039306640625\n        ],\n        [\n          85.3154296875,\n          555.4039306640625\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.6 Dictionary subtraction\",\n      \"heading_level\": null,\n      \"page_id\": 148,\n      \"polygon\": [\n        [\n          127.82373046875,\n          209.6015625\n        ],\n        [\n          316.8609924316406,\n          209.6015625\n        ],\n        [\n          316.8609924316406,\n          224.30792236328125\n        ],\n        [\n          127.82373046875,\n          224.30792236328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.7 Random words\",\n      \"heading_level\": null,\n      \"page_id\": 148,\n      \"polygon\": [\n        [\n          127.7490234375,\n          641.8667907714844\n        ],\n        [\n          269.3935546875,\n          641.8667907714844\n        ],\n        [\n          269.3935546875,\n          656.2129821777344\n        ],\n        [\n          127.7490234375,\n          656.2129821777344\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.8 Markov analysis\",\n      \"heading_level\": null,\n      \"page_id\": 149,\n      \"polygon\": [\n        [\n          85.3154296875,\n          417.85174560546875\n        ],\n        [\n          234.6392822265625,\n          417.85174560546875\n        ],\n        [\n          234.6392822265625,\n          432.1979675292969\n        ],\n        [\n          85.3154296875,\n          432.1979675292969\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.9 Data structures\",\n      \"heading_level\": null,\n      \"page_id\": 150,\n      \"polygon\": [\n        [\n          128.3466796875,\n          616.8848419189453\n        ],\n        [\n          268.24176025390625,\n          616.8848419189453\n        ],\n        [\n          268.24176025390625,\n          631.2310333251953\n        ],\n        [\n          128.3466796875,\n          631.2310333251953\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.10 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 152,\n      \"polygon\": [\n        [\n          129.60000610351562,\n          85.95379638671875\n        ],\n        [\n          250.41796875,\n          85.95379638671875\n        ],\n        [\n          250.41796875,\n          100.4501953125\n        ],\n        [\n          129.60000610351562,\n          100.4501953125\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.11 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 153,\n      \"polygon\": [\n        [\n          85.46484375,\n          85.95379638671875\n        ],\n        [\n          191.25,\n          85.95379638671875\n        ],\n        [\n          191.25,\n          100.29998779296875\n        ],\n        [\n          85.46484375,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"13.12 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 153,\n      \"polygon\": [\n        [\n          85.53955078125,\n          265.482421875\n        ],\n        [\n          192.77706909179688,\n          265.482421875\n        ],\n        [\n          192.77706909179688,\n          280.2669677734375\n        ],\n        [\n          85.53955078125,\n          280.2669677734375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 14\",\n      \"heading_level\": null,\n      \"page_id\": 154,\n      \"polygon\": [\n        [\n          128.794921875,\n          162.615234375\n        ],\n        [\n          232.787109375,\n          162.615234375\n        ],\n        [\n          232.787109375,\n          184.32196044921875\n        ],\n        [\n          128.794921875,\n          184.32196044921875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Files\",\n      \"heading_level\": null,\n      \"page_id\": 154,\n      \"polygon\": [\n        [\n          127.8984375,\n          217.916015625\n        ],\n        [\n          184.974609375,\n          217.916015625\n        ],\n        [\n          184.974609375,\n          243.34136962890625\n        ],\n        [\n          127.8984375,\n          243.34136962890625\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.1 Persistence\",\n      \"heading_level\": null,\n      \"page_id\": 154,\n      \"polygon\": [\n        [\n          128.6455078125,\n          291.7667541503906\n        ],\n        [\n          242.4990234375,\n          291.7667541503906\n        ],\n        [\n          242.4990234375,\n          306.11297607421875\n        ],\n        [\n          128.6455078125,\n          306.11297607421875\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.2 Reading and writing\",\n      \"heading_level\": null,\n      \"page_id\": 154,\n      \"polygon\": [\n        [\n          127.8984375,\n          544.88671875\n        ],\n        [\n          305.701171875,\n          544.88671875\n        ],\n        [\n          305.701171875,\n          559.58203125\n        ],\n        [\n          127.8984375,\n          559.58203125\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.3 Format operator\",\n      \"heading_level\": null,\n      \"page_id\": 155,\n      \"polygon\": [\n        [\n          85.763671875,\n          227.187744140625\n        ],\n        [\n          232.189453125,\n          227.187744140625\n        ],\n        [\n          232.189453125,\n          241.533935546875\n        ],\n        [\n          85.763671875,\n          241.533935546875\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.4 Filenames and paths\",\n      \"heading_level\": null,\n      \"page_id\": 156,\n      \"polygon\": [\n        [\n          127.82373046875,\n          172.94970703125\n        ],\n        [\n          303.7198791503906,\n          172.94970703125\n        ],\n        [\n          303.7198791503906,\n          187.2958984375\n        ],\n        [\n          127.82373046875,\n          187.2958984375\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.5 Catching exceptions\",\n      \"heading_level\": null,\n      \"page_id\": 157,\n      \"polygon\": [\n        [\n          85.3154296875,\n          233.19140625\n        ],\n        [\n          258.0380859375,\n          233.19140625\n        ],\n        [\n          258.0380859375,\n          249.285888671875\n        ],\n        [\n          85.3154296875,\n          249.285888671875\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.6 Databases\",\n      \"heading_level\": null,\n      \"page_id\": 158,\n      \"polygon\": [\n        [\n          128.197265625,\n          155.07421875\n        ],\n        [\n          235.97708129882812,\n          155.07421875\n        ],\n        [\n          235.97708129882812,\n          169.46295166015625\n        ],\n        [\n          128.197265625,\n          169.46295166015625\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.7 Pickling\",\n      \"heading_level\": null,\n      \"page_id\": 158,\n      \"polygon\": [\n        [\n          128.0478515625,\n          584.33203125\n        ],\n        [\n          224.02682495117188,\n          584.33203125\n        ],\n        [\n          224.02682495117188,\n          598.7357788085938\n        ],\n        [\n          128.0478515625,\n          598.7357788085938\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.8 Pipes\",\n      \"heading_level\": null,\n      \"page_id\": 159,\n      \"polygon\": [\n        [\n          85.68896484375,\n          460.58203125\n        ],\n        [\n          162.263671875,\n          460.58203125\n        ],\n        [\n          162.263671875,\n          475.7430114746094\n        ],\n        [\n          85.68896484375,\n          475.7430114746094\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.9 Writing modules\",\n      \"heading_level\": null,\n      \"page_id\": 160,\n      \"polygon\": [\n        [\n          127.30078125,\n          564.4838562011719\n        ],\n        [\n          279.703125,\n          564.4838562011719\n        ],\n        [\n          279.703125,\n          578.8300476074219\n        ],\n        [\n          127.30078125,\n          578.8300476074219\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.10 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 161,\n      \"polygon\": [\n        [\n          85.6142578125,\n          524.77734375\n        ],\n        [\n          207.1519775390625,\n          524.77734375\n        ],\n        [\n          207.1519775390625,\n          539.7729644775391\n        ],\n        [\n          85.6142578125,\n          539.7729644775391\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.11 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 162,\n      \"polygon\": [\n        [\n          128.794921875,\n          224.9427490234375\n        ],\n        [\n          234.87890625,\n          224.9427490234375\n        ],\n        [\n          234.87890625,\n          239.2889404296875\n        ],\n        [\n          128.794921875,\n          239.2889404296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"14.12 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 162,\n      \"polygon\": [\n        [\n          128.3466796875,\n          548.1956634521484\n        ],\n        [\n          235.97705078125,\n          548.1956634521484\n        ],\n        [\n          235.97705078125,\n          562.5418548583984\n        ],\n        [\n          128.3466796875,\n          562.5418548583984\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 15\",\n      \"heading_level\": null,\n      \"page_id\": 164,\n      \"polygon\": [\n        [\n          128.6455078125,\n          163.001953125\n        ],\n        [\n          232.6376953125,\n          163.001953125\n        ],\n        [\n          232.6376953125,\n          184.200927734375\n        ],\n        [\n          128.6455078125,\n          184.200927734375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Classes and objects\",\n      \"heading_level\": null,\n      \"page_id\": 164,\n      \"polygon\": [\n        [\n          128.57080078125,\n          218.109375\n        ],\n        [\n          348.4700927734375,\n          218.109375\n        ],\n        [\n          348.4700927734375,\n          243.09832763671875\n        ],\n        [\n          128.57080078125,\n          243.09832763671875\n        ]\n      ]\n    },\n    {\n      \"title\": \"15.1 User-defined types\",\n      \"heading_level\": null,\n      \"page_id\": 164,\n      \"polygon\": [\n        [\n          128.3466796875,\n          353.8217468261719\n        ],\n        [\n          292.1044921875,\n          353.8217468261719\n        ],\n        [\n          292.1044921875,\n          368.16796875\n        ],\n        [\n          128.3466796875,\n          368.16796875\n        ]\n      ]\n    },\n    {\n      \"title\": \"15.2 Attributes\",\n      \"heading_level\": null,\n      \"page_id\": 165,\n      \"polygon\": [\n        [\n          85.763671875,\n          366.416015625\n        ],\n        [\n          192.77703857421875,\n          366.416015625\n        ],\n        [\n          192.77703857421875,\n          381.3328857421875\n        ],\n        [\n          85.763671875,\n          381.3328857421875\n        ]\n      ]\n    },\n    {\n      \"title\": \"15.3 Rectangles\",\n      \"heading_level\": null,\n      \"page_id\": 166,\n      \"polygon\": [\n        [\n          128.0478515625,\n          317.8707580566406\n        ],\n        [\n          240.1083984375,\n          317.8707580566406\n        ],\n        [\n          240.1083984375,\n          332.21697998046875\n        ],\n        [\n          128.0478515625,\n          332.21697998046875\n        ]\n      ]\n    },\n    {\n      \"title\": \"15.4 Instances as return values\",\n      \"heading_level\": null,\n      \"page_id\": 167,\n      \"polygon\": [\n        [\n          85.9130859375,\n          317.4716491699219\n        ],\n        [\n          294.3768615722656,\n          317.4716491699219\n        ],\n        [\n          294.3768615722656,\n          331.81787109375\n        ],\n        [\n          85.9130859375,\n          331.81787109375\n        ]\n      ]\n    },\n    {\n      \"title\": \"15.5 Objects are mutable\",\n      \"heading_level\": null,\n      \"page_id\": 167,\n      \"polygon\": [\n        [\n          85.98779296875,\n          530.023681640625\n        ],\n        [\n          257.888671875,\n          530.023681640625\n        ],\n        [\n          257.888671875,\n          544.3698883056641\n        ],\n        [\n          85.98779296875,\n          544.3698883056641\n        ]\n      ]\n    },\n    {\n      \"title\": \"15.6 Copying\",\n      \"heading_level\": null,\n      \"page_id\": 168,\n      \"polygon\": [\n        [\n          127.7490234375,\n          302.9747009277344\n        ],\n        [\n          225.7646484375,\n          302.9747009277344\n        ],\n        [\n          225.7646484375,\n          317.3209228515625\n        ],\n        [\n          127.7490234375,\n          317.3209228515625\n        ]\n      ]\n    },\n    {\n      \"title\": \"15.7 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 169,\n      \"polygon\": [\n        [\n          85.763671875,\n          493.453125\n        ],\n        [\n          199.9788055419922,\n          493.453125\n        ],\n        [\n          199.9788055419922,\n          508.17291259765625\n        ],\n        [\n          85.763671875,\n          508.17291259765625\n        ]\n      ]\n    },\n    {\n      \"title\": \"15.8 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 170,\n      \"polygon\": [\n        [\n          127.4501953125,\n          138.96173095703125\n        ],\n        [\n          227.2587890625,\n          138.96173095703125\n        ],\n        [\n          227.2587890625,\n          153.30792236328125\n        ],\n        [\n          127.4501953125,\n          153.30792236328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"15.9 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 170,\n      \"polygon\": [\n        [\n          128.49609375,\n          395.608642578125\n        ],\n        [\n          228.80392456054688,\n          395.608642578125\n        ],\n        [\n          228.80392456054688,\n          409.9548645019531\n        ],\n        [\n          128.49609375,\n          409.9548645019531\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 16\",\n      \"heading_level\": null,\n      \"page_id\": 172,\n      \"polygon\": [\n        [\n          128.794921875,\n          162.7974853515625\n        ],\n        [\n          232.787109375,\n          162.7974853515625\n        ],\n        [\n          232.787109375,\n          183.4599609375\n        ],\n        [\n          128.794921875,\n          183.4599609375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Classes and functions\",\n      \"heading_level\": null,\n      \"page_id\": 172,\n      \"polygon\": [\n        [\n          128.86962890625,\n          216.830322265625\n        ],\n        [\n          376.008544921875,\n          216.830322265625\n        ],\n        [\n          376.008544921875,\n          241.61737060546875\n        ],\n        [\n          128.86962890625,\n          241.61737060546875\n        ]\n      ]\n    },\n    {\n      \"title\": \"16.1 Time\",\n      \"heading_level\": null,\n      \"page_id\": 172,\n      \"polygon\": [\n        [\n          128.86962890625,\n          336.0127868652344\n        ],\n        [\n          202.53607177734375,\n          336.0127868652344\n        ],\n        [\n          202.53607177734375,\n          350.3590087890625\n        ],\n        [\n          128.86962890625,\n          350.3590087890625\n        ]\n      ]\n    },\n    {\n      \"title\": \"16.2 Pure functions\",\n      \"heading_level\": null,\n      \"page_id\": 172,\n      \"polygon\": [\n        [\n          127.8984375,\n          628.921875\n        ],\n        [\n          265.0711975097656,\n          628.921875\n        ],\n        [\n          265.0711975097656,\n          643.26806640625\n        ],\n        [\n          127.8984375,\n          643.26806640625\n        ]\n      ]\n    },\n    {\n      \"title\": \"16.3 Modifiers\",\n      \"heading_level\": null,\n      \"page_id\": 174,\n      \"polygon\": [\n        [\n          128.3466796875,\n          262.001953125\n        ],\n        [\n          232.80654907226562,\n          262.001953125\n        ],\n        [\n          232.80654907226562,\n          276.3709716796875\n        ],\n        [\n          128.3466796875,\n          276.3709716796875\n        ]\n      ]\n    },\n    {\n      \"title\": \"16.4 Prototyping versus planning\",\n      \"heading_level\": null,\n      \"page_id\": 175,\n      \"polygon\": [\n        [\n          84.94189453125,\n          85.41650390625\n        ],\n        [\n          314.666015625,\n          85.41650390625\n        ],\n        [\n          314.666015625,\n          100.546875\n        ],\n        [\n          84.94189453125,\n          100.546875\n        ]\n      ]\n    },\n    {\n      \"title\": \"16.5 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 176,\n      \"polygon\": [\n        [\n          127.7490234375,\n          183.3677978515625\n        ],\n        [\n          243.3955078125,\n          183.3677978515625\n        ],\n        [\n          243.3955078125,\n          197.7139892578125\n        ],\n        [\n          127.7490234375,\n          197.7139892578125\n        ]\n      ]\n    },\n    {\n      \"title\": \"16.6 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 176,\n      \"polygon\": [\n        [\n          127.8984375,\n          624.05078125\n        ],\n        [\n          227.22596740722656,\n          624.05078125\n        ],\n        [\n          227.22596740722656,\n          638.39697265625\n        ],\n        [\n          127.8984375,\n          638.39697265625\n        ]\n      ]\n    },\n    {\n      \"title\": \"16.7 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 177,\n      \"polygon\": [\n        [\n          85.68896484375,\n          225.21575927734375\n        ],\n        [\n          185.60400390625,\n          225.21575927734375\n        ],\n        [\n          185.60400390625,\n          239.56195068359375\n        ],\n        [\n          85.68896484375,\n          239.56195068359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 17\",\n      \"heading_level\": null,\n      \"page_id\": 178,\n      \"polygon\": [\n        [\n          128.27197265625,\n          161.26171875\n        ],\n        [\n          232.787109375,\n          161.26171875\n        ],\n        [\n          232.787109375,\n          183.00201416015625\n        ],\n        [\n          128.27197265625,\n          183.00201416015625\n        ]\n      ]\n    },\n    {\n      \"title\": \"Classes and methods\",\n      \"heading_level\": null,\n      \"page_id\": 178,\n      \"polygon\": [\n        [\n          129.16845703125,\n          215.208984375\n        ],\n        [\n          366.662109375,\n          215.208984375\n        ],\n        [\n          366.662109375,\n          240.700439453125\n        ],\n        [\n          129.16845703125,\n          240.700439453125\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.1 Object-oriented features\",\n      \"heading_level\": null,\n      \"page_id\": 178,\n      \"polygon\": [\n        [\n          128.6455078125,\n          333.73828125\n        ],\n        [\n          329.30859375,\n          333.73828125\n        ],\n        [\n          329.30859375,\n          348.3430480957031\n        ],\n        [\n          128.6455078125,\n          348.3430480957031\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.2 Printing objects\",\n      \"heading_level\": null,\n      \"page_id\": 179,\n      \"polygon\": [\n        [\n          85.46484375,\n          216.17578125\n        ],\n        [\n          229.83331298828125,\n          216.17578125\n        ],\n        [\n          229.83331298828125,\n          231.40789794921875\n        ],\n        [\n          85.46484375,\n          231.40789794921875\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.3 Another example\",\n      \"heading_level\": null,\n      \"page_id\": 180,\n      \"polygon\": [\n        [\n          127.52490234375,\n          365.8359375\n        ],\n        [\n          282.09375,\n          365.8359375\n        ],\n        [\n          282.09375,\n          380.197998046875\n        ],\n        [\n          127.52490234375,\n          380.197998046875\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.4 A more complicated example\",\n      \"heading_level\": null,\n      \"page_id\": 181,\n      \"polygon\": [\n        [\n          85.3154296875,\n          85.70654296875\n        ],\n        [\n          317.35546875,\n          85.70654296875\n        ],\n        [\n          317.35546875,\n          100.29998779296875\n        ],\n        [\n          85.3154296875,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.5 The init method\",\n      \"heading_level\": null,\n      \"page_id\": 181,\n      \"polygon\": [\n        [\n          85.763671875,\n          278.4375\n        ],\n        [\n          231.84181213378906,\n          278.4375\n        ],\n        [\n          231.84181213378906,\n          293.90625\n        ],\n        [\n          85.763671875,\n          293.90625\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.6 The __str__ method\",\n      \"heading_level\": null,\n      \"page_id\": 182,\n      \"polygon\": [\n        [\n          128.6455078125,\n          83.87713623046875\n        ],\n        [\n          302.9117126464844,\n          83.87713623046875\n        ],\n        [\n          302.9117126464844,\n          100.29998779296875\n        ],\n        [\n          128.6455078125,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.7 Operator overloading\",\n      \"heading_level\": null,\n      \"page_id\": 182,\n      \"polygon\": [\n        [\n          127.8984375,\n          363.1026611328125\n        ],\n        [\n          311.080078125,\n          363.1026611328125\n        ],\n        [\n          311.080078125,\n          377.4488830566406\n        ],\n        [\n          127.8984375,\n          377.4488830566406\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.8 Type-based dispatch\",\n      \"heading_level\": null,\n      \"page_id\": 183,\n      \"polygon\": [\n        [\n          85.6142578125,\n          85.95379638671875\n        ],\n        [\n          261.3251953125,\n          85.95379638671875\n        ],\n        [\n          261.3251953125,\n          100.29998779296875\n        ],\n        [\n          85.6142578125,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.9 Polymorphism\",\n      \"heading_level\": null,\n      \"page_id\": 184,\n      \"polygon\": [\n        [\n          128.42138671875,\n          223.18475341796875\n        ],\n        [\n          266.29058837890625,\n          223.18475341796875\n        ],\n        [\n          266.29058837890625,\n          237.53094482421875\n        ],\n        [\n          128.42138671875,\n          237.53094482421875\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.10 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 185,\n      \"polygon\": [\n        [\n          85.3154296875,\n          85.12646484375\n        ],\n        [\n          208.1337890625,\n          85.12646484375\n        ],\n        [\n          208.1337890625,\n          101.513671875\n        ],\n        [\n          85.3154296875,\n          101.513671875\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.11 Interface and implementation\",\n      \"heading_level\": null,\n      \"page_id\": 185,\n      \"polygon\": [\n        [\n          85.3154296875,\n          400.640625\n        ],\n        [\n          328.26263427734375,\n          400.640625\n        ],\n        [\n          328.26263427734375,\n          417.40594482421875\n        ],\n        [\n          85.3154296875,\n          417.40594482421875\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.12 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 186,\n      \"polygon\": [\n        [\n          128.3466796875,\n          239.185791015625\n        ],\n        [\n          234.7294921875,\n          239.185791015625\n        ],\n        [\n          234.7294921875,\n          253.531982421875\n        ],\n        [\n          128.3466796875,\n          253.531982421875\n        ]\n      ]\n    },\n    {\n      \"title\": \"17.13 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 186,\n      \"polygon\": [\n        [\n          128.6455078125,\n          522.84375\n        ],\n        [\n          236.2236328125,\n          522.84375\n        ],\n        [\n          236.2236328125,\n          537.4670257568359\n        ],\n        [\n          128.6455078125,\n          537.4670257568359\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 18\",\n      \"heading_level\": null,\n      \"page_id\": 188,\n      \"polygon\": [\n        [\n          129.09375,\n          163.1953125\n        ],\n        [\n          233.68359375,\n          163.1953125\n        ],\n        [\n          233.68359375,\n          184.29296875\n        ],\n        [\n          129.09375,\n          184.29296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Inheritance\",\n      \"heading_level\": null,\n      \"page_id\": 188,\n      \"polygon\": [\n        [\n          128.9443359375,\n          218.302734375\n        ],\n        [\n          259.8310546875,\n          218.302734375\n        ],\n        [\n          259.8310546875,\n          243.2823486328125\n        ],\n        [\n          128.9443359375,\n          243.2823486328125\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.1 Card objects\",\n      \"heading_level\": null,\n      \"page_id\": 188,\n      \"polygon\": [\n        [\n          128.6455078125,\n          395.9047546386719\n        ],\n        [\n          250.8662109375,\n          395.9047546386719\n        ],\n        [\n          250.8662109375,\n          410.30859375\n        ],\n        [\n          128.6455078125,\n          410.30859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.2 Class attributes\",\n      \"heading_level\": null,\n      \"page_id\": 189,\n      \"polygon\": [\n        [\n          85.9130859375,\n          382.46484375\n        ],\n        [\n          227.42312622070312,\n          382.46484375\n        ],\n        [\n          227.42312622070312,\n          396.8459167480469\n        ],\n        [\n          85.9130859375,\n          396.8459167480469\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.3 Comparing cards\",\n      \"heading_level\": null,\n      \"page_id\": 190,\n      \"polygon\": [\n        [\n          128.3466796875,\n          483.01171875\n        ],\n        [\n          281.0240783691406,\n          483.01171875\n        ],\n        [\n          281.0240783691406,\n          497.5999755859375\n        ],\n        [\n          128.3466796875,\n          497.5999755859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.4 Decks\",\n      \"heading_level\": null,\n      \"page_id\": 191,\n      \"polygon\": [\n        [\n          85.763671875,\n          477.44677734375\n        ],\n        [\n          166.48049926757812,\n          477.44677734375\n        ],\n        [\n          166.48049926757812,\n          491.7929992675781\n        ],\n        [\n          85.763671875,\n          491.7929992675781\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.5 Printing the deck\",\n      \"heading_level\": null,\n      \"page_id\": 192,\n      \"polygon\": [\n        [\n          127.8984375,\n          85.95379638671875\n        ],\n        [\n          283.587890625,\n          85.95379638671875\n        ],\n        [\n          283.587890625,\n          100.29998779296875\n        ],\n        [\n          127.8984375,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.6 Add, remove, shuffle and sort\",\n      \"heading_level\": null,\n      \"page_id\": 192,\n      \"polygon\": [\n        [\n          128.49609375,\n          456.9557800292969\n        ],\n        [\n          362.4675598144531,\n          456.9557800292969\n        ],\n        [\n          362.4675598144531,\n          471.302001953125\n        ],\n        [\n          128.49609375,\n          471.302001953125\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.7 Inheritance\",\n      \"heading_level\": null,\n      \"page_id\": 193,\n      \"polygon\": [\n        [\n          85.763671875,\n          266.0625\n        ],\n        [\n          200.7535858154297,\n          266.0625\n        ],\n        [\n          200.7535858154297,\n          280.8150634765625\n        ],\n        [\n          85.763671875,\n          280.8150634765625\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.8 Class diagrams\",\n      \"heading_level\": null,\n      \"page_id\": 194,\n      \"polygon\": [\n        [\n          127.4501953125,\n          596.4488372802734\n        ],\n        [\n          268.25604248046875,\n          596.4488372802734\n        ],\n        [\n          268.25604248046875,\n          610.7950286865234\n        ],\n        [\n          127.4501953125,\n          610.7950286865234\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.9 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 195,\n      \"polygon\": [\n        [\n          85.6142578125,\n          563.0625\n        ],\n        [\n          202.1572265625,\n          563.0625\n        ],\n        [\n          202.1572265625,\n          578.53125\n        ],\n        [\n          85.6142578125,\n          578.53125\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.10 Data encapsulation\",\n      \"heading_level\": null,\n      \"page_id\": 196,\n      \"polygon\": [\n        [\n          128.86962890625,\n          423.11175537109375\n        ],\n        [\n          302.5148010253906,\n          423.11175537109375\n        ],\n        [\n          302.5148010253906,\n          437.4579772949219\n        ],\n        [\n          128.86962890625,\n          437.4579772949219\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.11 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 197,\n      \"polygon\": [\n        [\n          85.39013671875,\n          538.69921875\n        ],\n        [\n          191.19908142089844,\n          538.69921875\n        ],\n        [\n          191.19908142089844,\n          553.2739562988281\n        ],\n        [\n          85.39013671875,\n          553.2739562988281\n        ]\n      ]\n    },\n    {\n      \"title\": \"18.12 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 198,\n      \"polygon\": [\n        [\n          128.9443359375,\n          277.52880859375\n        ],\n        [\n          235.97714233398438,\n          277.52880859375\n        ],\n        [\n          235.97714233398438,\n          291.875\n        ],\n        [\n          128.9443359375,\n          291.875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Chapter 19\",\n      \"heading_level\": null,\n      \"page_id\": 200,\n      \"polygon\": [\n        [\n          128.9443359375,\n          163.58203125\n        ],\n        [\n          232.0400390625,\n          163.58203125\n        ],\n        [\n          232.0400390625,\n          185.2369384765625\n        ],\n        [\n          128.9443359375,\n          185.2369384765625\n        ]\n      ]\n    },\n    {\n      \"title\": \"Case study: Tkinter\",\n      \"heading_level\": null,\n      \"page_id\": 200,\n      \"polygon\": [\n        [\n          128.27197265625,\n          220.236328125\n        ],\n        [\n          352.318359375,\n          220.236328125\n        ],\n        [\n          352.318359375,\n          245.17132568359375\n        ],\n        [\n          128.27197265625,\n          245.17132568359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"19.1 GUI\",\n      \"heading_level\": null,\n      \"page_id\": 200,\n      \"polygon\": [\n        [\n          128.794921875,\n          294.5127258300781\n        ],\n        [\n          198.421875,\n          294.5127258300781\n        ],\n        [\n          198.421875,\n          308.85894775390625\n        ],\n        [\n          128.794921875,\n          308.85894775390625\n        ]\n      ]\n    },\n    {\n      \"title\": \"19.2 Buttons and callbacks\",\n      \"heading_level\": null,\n      \"page_id\": 201,\n      \"polygon\": [\n        [\n          85.68896484375,\n          316.916015625\n        ],\n        [\n          269.2710266113281,\n          316.916015625\n        ],\n        [\n          269.2710266113281,\n          331.5769348144531\n        ],\n        [\n          85.68896484375,\n          331.5769348144531\n        ]\n      ]\n    },\n    {\n      \"title\": \"19.3 Canvas widgets\",\n      \"heading_level\": null,\n      \"page_id\": 202,\n      \"polygon\": [\n        [\n          128.6455078125,\n          335.95166015625\n        ],\n        [\n          272.3818359375,\n          335.95166015625\n        ],\n        [\n          272.3818359375,\n          350.2978820800781\n        ],\n        [\n          128.6455078125,\n          350.2978820800781\n        ]\n      ]\n    },\n    {\n      \"title\": \"19.4 Coordinate sequences\",\n      \"heading_level\": null,\n      \"page_id\": 203,\n      \"polygon\": [\n        [\n          85.53955078125,\n          171.7998046875\n        ],\n        [\n          269.6870422363281,\n          171.7998046875\n        ],\n        [\n          269.6870422363281,\n          186.14697265625\n        ],\n        [\n          85.53955078125,\n          186.14697265625\n        ]\n      ]\n    },\n    {\n      \"title\": \"19.5 More widgets\",\n      \"heading_level\": null,\n      \"page_id\": 203,\n      \"polygon\": [\n        [\n          85.6142578125,\n          465.609375\n        ],\n        [\n          216.30496215820312,\n          465.609375\n        ],\n        [\n          216.30496215820312,\n          480.4320373535156\n        ],\n        [\n          85.6142578125,\n          480.4320373535156\n        ]\n      ]\n    },\n    {\n      \"title\": \"19.6 Packing widgets\",\n      \"heading_level\": null,\n      \"page_id\": 204,\n      \"polygon\": [\n        [\n          128.3466796875,\n          402.5648498535156\n        ],\n        [\n          277.02154541015625,\n          402.5648498535156\n        ],\n        [\n          277.02154541015625,\n          416.91107177734375\n        ],\n        [\n          128.3466796875,\n          416.91107177734375\n        ]\n      ]\n    },\n    {\n      \"title\": \"19.7 Menus and Callables\",\n      \"heading_level\": null,\n      \"page_id\": 206,\n      \"polygon\": [\n        [\n          128.27197265625,\n          565.2227935791016\n        ],\n        [\n          308.091796875,\n          565.2227935791016\n        ],\n        [\n          308.091796875,\n          579.5689849853516\n        ],\n        [\n          128.27197265625,\n          579.5689849853516\n        ]\n      ]\n    },\n    {\n      \"title\": \"19.8 Binding\",\n      \"heading_level\": null,\n      \"page_id\": 207,\n      \"polygon\": [\n        [\n          85.6142578125,\n          404.94476318359375\n        ],\n        [\n          179.7451171875,\n          404.94476318359375\n        ],\n        [\n          179.7451171875,\n          419.2909851074219\n        ],\n        [\n          85.6142578125,\n          419.2909851074219\n        ]\n      ]\n    },\n    {\n      \"title\": \"19.9 Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 209,\n      \"polygon\": [\n        [\n          85.6142578125,\n          400.25390625\n        ],\n        [\n          200.6630859375,\n          400.25390625\n        ],\n        [\n          200.6630859375,\n          414.94921875\n        ],\n        [\n          85.6142578125,\n          414.94921875\n        ]\n      ]\n    },\n    {\n      \"title\": \"19.10 Glossary\",\n      \"heading_level\": null,\n      \"page_id\": 210,\n      \"polygon\": [\n        [\n          128.6455078125,\n          342.93377685546875\n        ],\n        [\n          234.7294921875,\n          342.93377685546875\n        ],\n        [\n          234.7294921875,\n          357.2799987792969\n        ],\n        [\n          128.6455078125,\n          357.2799987792969\n        ]\n      ]\n    },\n    {\n      \"title\": \"19.11 Exercises\",\n      \"heading_level\": null,\n      \"page_id\": 211,\n      \"polygon\": [\n        [\n          85.166015625,\n          84.4013671875\n        ],\n        [\n          194.0888671875,\n          84.4013671875\n        ],\n        [\n          194.0888671875,\n          99.97796630859375\n        ],\n        [\n          85.166015625,\n          99.97796630859375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Appendix A\",\n      \"heading_level\": null,\n      \"page_id\": 214,\n      \"polygon\": [\n        [\n          128.6455078125,\n          163.775390625\n        ],\n        [\n          246.3837890625,\n          163.775390625\n        ],\n        [\n          246.3837890625,\n          185.823974609375\n        ],\n        [\n          128.6455078125,\n          185.823974609375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Debugging\",\n      \"heading_level\": null,\n      \"page_id\": 214,\n      \"polygon\": [\n        [\n          128.794921875,\n          220.236328125\n        ],\n        [\n          259.083984375,\n          220.236328125\n        ],\n        [\n          259.083984375,\n          246.34539794921875\n        ],\n        [\n          128.794921875,\n          246.34539794921875\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.1 Syntax errors\",\n      \"heading_level\": null,\n      \"page_id\": 214,\n      \"polygon\": [\n        [\n          129.392578125,\n          568.3808135986328\n        ],\n        [\n          252.34609985351562,\n          568.3808135986328\n        ],\n        [\n          252.34609985351562,\n          582.7270050048828\n        ],\n        [\n          129.392578125,\n          582.7270050048828\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.1.1 I keep making changes and it makes no difference.\",\n      \"heading_level\": null,\n      \"page_id\": 215,\n      \"polygon\": [\n        [\n          85.9130859375,\n          498.48046875\n        ],\n        [\n          403.41796875,\n          498.48046875\n        ],\n        [\n          403.41796875,\n          511.0899658203125\n        ],\n        [\n          85.9130859375,\n          511.0899658203125\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.2 Runtime errors\",\n      \"heading_level\": null,\n      \"page_id\": 216,\n      \"polygon\": [\n        [\n          128.27197265625,\n          233.96484375\n        ],\n        [\n          265.0855407714844,\n          233.96484375\n        ],\n        [\n          265.0855407714844,\n          248.33489990234375\n        ],\n        [\n          128.27197265625,\n          248.33489990234375\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.2.1 My program does absolutely nothing.\",\n      \"heading_level\": null,\n      \"page_id\": 216,\n      \"polygon\": [\n        [\n          128.3466796875,\n          308.794921875\n        ],\n        [\n          374.3588562011719,\n          308.794921875\n        ],\n        [\n          374.3588562011719,\n          321.02691650390625\n        ],\n        [\n          128.3466796875,\n          321.02691650390625\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.2.2 My program hangs.\",\n      \"heading_level\": null,\n      \"page_id\": 216,\n      \"polygon\": [\n        [\n          129.01904296875,\n          424.6171875\n        ],\n        [\n          276.1171875,\n          424.6171875\n        ],\n        [\n          276.1171875,\n          437.11590576171875\n        ],\n        [\n          129.01904296875,\n          437.11590576171875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Infinite Loop\",\n      \"heading_level\": null,\n      \"page_id\": 217,\n      \"polygon\": [\n        [\n          85.166015625,\n          87.35009765625\n        ],\n        [\n          147.919921875,\n          87.35009765625\n        ],\n        [\n          147.919921875,\n          98.70074462890625\n        ],\n        [\n          85.166015625,\n          98.70074462890625\n        ]\n      ]\n    },\n    {\n      \"title\": \"Infinite Recursion\",\n      \"heading_level\": null,\n      \"page_id\": 217,\n      \"polygon\": [\n        [\n          85.763671875,\n          328.904296875\n        ],\n        [\n          169.2861328125,\n          328.904296875\n        ],\n        [\n          169.2861328125,\n          340.1767883300781\n        ],\n        [\n          85.763671875,\n          340.1767883300781\n        ]\n      ]\n    },\n    {\n      \"title\": \"Flow of Execution\",\n      \"heading_level\": null,\n      \"page_id\": 217,\n      \"polygon\": [\n        [\n          85.763671875,\n          521.68359375\n        ],\n        [\n          168.3896484375,\n          521.68359375\n        ],\n        [\n          168.3896484375,\n          533.2448425292969\n        ],\n        [\n          85.763671875,\n          533.2448425292969\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.2.3 When I run the program I get an exception.\",\n      \"heading_level\": null,\n      \"page_id\": 217,\n      \"polygon\": [\n        [\n          85.53955078125,\n          623.9998321533203\n        ],\n        [\n          359.7890625,\n          623.9998321533203\n        ],\n        [\n          359.7890625,\n          635.9550323486328\n        ],\n        [\n          85.53955078125,\n          635.9550323486328\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.2.4 I added so many print statements I get inundated with output.\",\n      \"heading_level\": null,\n      \"page_id\": 218,\n      \"polygon\": [\n        [\n          128.0478515625,\n          609.0523681640625\n        ],\n        [\n          511.3203430175781,\n          609.0523681640625\n        ],\n        [\n          511.3203430175781,\n          621.1488494873047\n        ],\n        [\n          128.0478515625,\n          621.1488494873047\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.3 Semantic errors\",\n      \"heading_level\": null,\n      \"page_id\": 219,\n      \"polygon\": [\n        [\n          86.2119140625,\n          290.8125\n        ],\n        [\n          225.7646484375,\n          290.8125\n        ],\n        [\n          225.7646484375,\n          306.06982421875\n        ],\n        [\n          86.2119140625,\n          306.06982421875\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.3.1 My program doesn't work.\",\n      \"heading_level\": null,\n      \"page_id\": 219,\n      \"polygon\": [\n        [\n          85.68896484375,\n          472.18359375\n        ],\n        [\n          270.8448791503906,\n          472.18359375\n        ],\n        [\n          270.8448791503906,\n          485.61285400390625\n        ],\n        [\n          85.68896484375,\n          485.61285400390625\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.3.2 I've got a big hairy expression and it doesn't do what I expect.\",\n      \"heading_level\": null,\n      \"page_id\": 220,\n      \"polygon\": [\n        [\n          129.392578125,\n          190.3623046875\n        ],\n        [\n          504.9574279785156,\n          190.3623046875\n        ],\n        [\n          504.9574279785156,\n          202.9779052734375\n        ],\n        [\n          129.392578125,\n          202.9779052734375\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.3.3 I've got a function or method that doesn't return what I expect.\",\n      \"heading_level\": null,\n      \"page_id\": 220,\n      \"polygon\": [\n        [\n          128.197265625,\n          571.5703125\n        ],\n        [\n          509.2732238769531,\n          571.5703125\n        ],\n        [\n          509.2732238769531,\n          583.7809906005859\n        ],\n        [\n          128.197265625,\n          583.7809906005859\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.3.4 I'm really, really stuck and I need help.\",\n      \"heading_level\": null,\n      \"page_id\": 221,\n      \"polygon\": [\n        [\n          84.7177734375,\n          85.80322265625\n        ],\n        [\n          339.46875,\n          85.80322265625\n        ],\n        [\n          339.46875,\n          99.24493408203125\n        ],\n        [\n          84.7177734375,\n          99.24493408203125\n        ]\n      ]\n    },\n    {\n      \"title\": \"A.3.5 No, I really need help.\",\n      \"heading_level\": null,\n      \"page_id\": 221,\n      \"polygon\": [\n        [\n          85.9130859375,\n          351.333984375\n        ],\n        [\n          249.0732421875,\n          351.333984375\n        ],\n        [\n          249.0732421875,\n          364.482421875\n        ],\n        [\n          85.9130859375,\n          364.482421875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Appendix B\",\n      \"heading_level\": null,\n      \"page_id\": 222,\n      \"polygon\": [\n        [\n          128.12255859375,\n          163.388671875\n        ],\n        [\n          243.544921875,\n          163.388671875\n        ],\n        [\n          243.544921875,\n          184.8819580078125\n        ],\n        [\n          128.12255859375,\n          184.8819580078125\n        ]\n      ]\n    },\n    {\n      \"title\": \"Analysis of Algorithms\",\n      \"heading_level\": null,\n      \"page_id\": 222,\n      \"polygon\": [\n        [\n          127.97314453125,\n          219.076171875\n        ],\n        [\n          393.9792175292969,\n          219.076171875\n        ],\n        [\n          393.9792175292969,\n          244.46136474609375\n        ],\n        [\n          127.97314453125,\n          244.46136474609375\n        ]\n      ]\n    },\n    {\n      \"title\": \"B.1 Order of growth\",\n      \"heading_level\": null,\n      \"page_id\": 223,\n      \"polygon\": [\n        [\n          85.09130859375,\n          281.14453125\n        ],\n        [\n          228.603515625,\n          281.14453125\n        ],\n        [\n          228.603515625,\n          296.4639892578125\n        ],\n        [\n          85.09130859375,\n          296.4639892578125\n        ]\n      ]\n    },\n    {\n      \"title\": \"B.2 Analysis of basic Python operations\",\n      \"heading_level\": null,\n      \"page_id\": 225,\n      \"polygon\": [\n        [\n          84.64306640625,\n          85.271484375\n        ],\n        [\n          357.697265625,\n          85.271484375\n        ],\n        [\n          357.697265625,\n          100.29998779296875\n        ],\n        [\n          84.64306640625,\n          100.29998779296875\n        ]\n      ]\n    },\n    {\n      \"title\": \"B.3 Analysis of search algorithms\",\n      \"heading_level\": null,\n      \"page_id\": 226,\n      \"polygon\": [\n        [\n          129.01904296875,\n          453.54278564453125\n        ],\n        [\n          358.3215026855469,\n          453.54278564453125\n        ],\n        [\n          358.3215026855469,\n          467.8890075683594\n        ],\n        [\n          129.01904296875,\n          467.8890075683594\n        ]\n      ]\n    },\n    {\n      \"title\": \"B.4 Hashtables\",\n      \"heading_level\": null,\n      \"page_id\": 227,\n      \"polygon\": [\n        [\n          85.6142578125,\n          248.466796875\n        ],\n        [\n          194.537109375,\n          248.466796875\n        ],\n        [\n          194.537109375,\n          263.1820068359375\n        ],\n        [\n          85.6142578125,\n          263.1820068359375\n        ]\n      ]\n    },\n    {\n      \"title\": \"Appendix C\",\n      \"heading_level\": null,\n      \"page_id\": 232,\n      \"polygon\": [\n        [\n          128.49609375,\n          161.068359375\n        ],\n        [\n          246.533203125,\n          161.068359375\n        ],\n        [\n          246.533203125,\n          182.990966796875\n        ],\n        [\n          128.49609375,\n          182.990966796875\n        ]\n      ]\n    },\n    {\n      \"title\": \"Lumpy\",\n      \"heading_level\": null,\n      \"page_id\": 232,\n      \"polygon\": [\n        [\n          129.09375,\n          215.89129638671875\n        ],\n        [\n          212.765625,\n          215.89129638671875\n        ],\n        [\n          212.765625,\n          241.69921875\n        ],\n        [\n          129.09375,\n          241.69921875\n        ]\n      ]\n    },\n    {\n      \"title\": \"C.1 State diagram\",\n      \"heading_level\": null,\n      \"page_id\": 232,\n      \"polygon\": [\n        [\n          127.30078125,\n          665.9296875\n        ],\n        [\n          256.39453125,\n          665.9296875\n        ],\n        [\n          256.39453125,\n          680.3199615478516\n        ],\n        [\n          127.30078125,\n          680.3199615478516\n        ]\n      ]\n    },\n    {\n      \"title\": \"C.2 Stack diagram\",\n      \"heading_level\": null,\n      \"page_id\": 233,\n      \"polygon\": [\n        [\n          86.0625,\n          649.6875\n        ],\n        [\n          215.5015106201172,\n          649.6875\n        ],\n        [\n          215.5015106201172,\n          665.2679290771484\n        ],\n        [\n          86.0625,\n          665.2679290771484\n        ]\n      ]\n    },\n    {\n      \"title\": \"C.3 Object diagrams\",\n      \"heading_level\": null,\n      \"page_id\": 234,\n      \"polygon\": [\n        [\n          127.8984375,\n          575.82421875\n        ],\n        [\n          273.12890625,\n          575.82421875\n        ],\n        [\n          273.12890625,\n          590.51953125\n        ],\n        [\n          127.8984375,\n          590.51953125\n        ]\n      ]\n    },\n    {\n      \"title\": \"C.4 Function and class objects\",\n      \"heading_level\": null,\n      \"page_id\": 236,\n      \"polygon\": [\n        [\n          128.42138671875,\n          636.92578125\n        ],\n        [\n          335.9700012207031,\n          636.92578125\n        ],\n        [\n          335.9700012207031,\n          651.62109375\n        ],\n        [\n          128.42138671875,\n          651.62109375\n        ]\n      ]\n    },\n    {\n      \"title\": \"C.5 Class Diagrams\",\n      \"heading_level\": null,\n      \"page_id\": 237,\n      \"polygon\": [\n        [\n          85.9130859375,\n          649.30078125\n        ],\n        [\n          225.1669921875,\n          649.30078125\n        ],\n        [\n          225.1669921875,\n          665.6630401611328\n        ],\n        [\n          85.9130859375,\n          665.6630401611328\n        ]\n      ]\n    }\n  ],\n  \"page_stats\": [\n    {\n      \"page_id\": 0,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          7\n        ],\n        [\n          \"Line\",\n          3\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Text\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 7791\n      }\n    },\n    {\n      \"page_id\": 1,\n      \"text_extraction_method\": \"surya\",\n      \"block_counts\": [\n        [\n          \"Text\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 2122\n      }\n    },\n    {\n      \"page_id\": 2,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          12\n        ],\n        [\n          \"Line\",\n          6\n        ],\n        [\n          \"Text\",\n          4\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 3,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          42\n        ],\n        [\n          \"Line\",\n          11\n        ],\n        [\n          \"Text\",\n          5\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 4,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          64\n        ],\n        [\n          \"Line\",\n          31\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"ListItem\",\n          4\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 5,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          72\n        ],\n        [\n          \"Line\",\n          34\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"ListItem\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 6,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          91\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"ListItem\",\n          20\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 7,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          96\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"ListItem\",\n          25\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4024\n      }\n    },\n    {\n      \"page_id\": 8,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          77\n        ],\n        [\n          \"Line\",\n          35\n        ],\n        [\n          \"ListItem\",\n          28\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 9,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          86\n        ],\n        [\n          \"Line\",\n          35\n        ],\n        [\n          \"ListItem\",\n          28\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 10,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          91\n        ],\n        [\n          \"Line\",\n          34\n        ],\n        [\n          \"ListItem\",\n          29\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4048\n      }\n    },\n    {\n      \"page_id\": 11,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Line\",\n          1\n        ],\n        [\n          \"Span\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 12,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"TableCell\",\n          156\n        ],\n        [\n          \"Span\",\n          71\n        ],\n        [\n          \"Line\",\n          24\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"TableOfContents\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 2891\n      }\n    },\n    {\n      \"page_id\": 13,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"TableCell\",\n          124\n        ],\n        [\n          \"Span\",\n          96\n        ],\n        [\n          \"Line\",\n          31\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TableOfContents\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 1,\n        \"llm_tokens_used\": 2353\n      }\n    },\n    {\n      \"page_id\": 14,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"TableCell\",\n          112\n        ],\n        [\n          \"Span\",\n          84\n        ],\n        [\n          \"Line\",\n          28\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TableOfContents\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 1,\n        \"llm_tokens_used\": 2865\n      }\n    },\n    {\n      \"page_id\": 15,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"TableCell\",\n          253\n        ],\n        [\n          \"Span\",\n          116\n        ],\n        [\n          \"Line\",\n          33\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TableOfContents\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 7349\n      }\n    },\n    {\n      \"page_id\": 16,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          85\n        ],\n        [\n          \"TableCell\",\n          84\n        ],\n        [\n          \"Line\",\n          28\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TableOfContents\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 1,\n        \"llm_tokens_used\": 3874\n      }\n    },\n    {\n      \"page_id\": 17,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          95\n        ],\n        [\n          \"TableCell\",\n          93\n        ],\n        [\n          \"Line\",\n          31\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TableOfContents\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 1,\n        \"llm_tokens_used\": 4431\n      }\n    },\n    {\n      \"page_id\": 18,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"TableCell\",\n          165\n        ],\n        [\n          \"Span\",\n          81\n        ],\n        [\n          \"Line\",\n          27\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TableOfContents\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 8554\n      }\n    },\n    {\n      \"page_id\": 19,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"TableCell\",\n          159\n        ],\n        [\n          \"Span\",\n          87\n        ],\n        [\n          \"Line\",\n          28\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TableOfContents\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 8979\n      }\n    },\n    {\n      \"page_id\": 20,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"TableCell\",\n          112\n        ],\n        [\n          \"Span\",\n          85\n        ],\n        [\n          \"Line\",\n          28\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TableOfContents\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 1,\n        \"llm_tokens_used\": 5907\n      }\n    },\n    {\n      \"page_id\": 21,\n      \"text_extraction_method\": \"surya\",\n      \"block_counts\": [\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Line\",\n          2\n        ],\n        [\n          \"Span\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 22,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          58\n        ],\n        [\n          \"Line\",\n          29\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 23,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          139\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 1760\n      }\n    },\n    {\n      \"page_id\": 24,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          105\n        ],\n        [\n          \"Line\",\n          36\n        ],\n        [\n          \"Text\",\n          13\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 25,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          91\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 26,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          155\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4050\n      }\n    },\n    {\n      \"page_id\": 27,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          86\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"ListItem\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 28,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          89\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"ListItem\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3846\n      }\n    },\n    {\n      \"page_id\": 29,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          105\n        ],\n        [\n          \"Line\",\n          32\n        ],\n        [\n          \"ListItem\",\n          19\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3846\n      }\n    },\n    {\n      \"page_id\": 30,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          76\n        ],\n        [\n          \"Line\",\n          18\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 31,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Text\",\n          1\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Line\",\n          1\n        ],\n        [\n          \"Span\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 32,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          116\n        ],\n        [\n          \"Line\",\n          28\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 33,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          118\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4159\n      }\n    },\n    {\n      \"page_id\": 34,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          158\n        ],\n        [\n          \"TableCell\",\n          71\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          13\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 1750\n      }\n    },\n    {\n      \"page_id\": 35,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          99\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          14\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 36,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          144\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"ListItem\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 37,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          153\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3838\n      }\n    },\n    {\n      \"page_id\": 38,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          143\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          13\n        ],\n        [\n          \"ListItem\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 3,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 11442\n      }\n    },\n    {\n      \"page_id\": 39,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          108\n        ],\n        [\n          \"Line\",\n          33\n        ],\n        [\n          \"ListItem\",\n          7\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 40,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          78\n        ],\n        [\n          \"Line\",\n          27\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"SectionHeader\",\n          4\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"Code\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 41,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          140\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 42,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          100\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3073\n      }\n    },\n    {\n      \"page_id\": 43,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          107\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Code\",\n          7\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 44,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          101\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          14\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 45,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          135\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"Code\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 46,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          166\n        ],\n        [\n          \"Line\",\n          47\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 47,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          98\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 48,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          121\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 1747\n      }\n    },\n    {\n      \"page_id\": 49,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          115\n        ],\n        [\n          \"Line\",\n          35\n        ],\n        [\n          \"ListItem\",\n          17\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3840\n      }\n    },\n    {\n      \"page_id\": 50,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          153\n        ],\n        [\n          \"Line\",\n          36\n        ],\n        [\n          \"ListItem\",\n          8\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3792\n      }\n    },\n    {\n      \"page_id\": 51,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          78\n        ],\n        [\n          \"Line\",\n          23\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4044\n      }\n    },\n    {\n      \"page_id\": 52,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          75\n        ],\n        [\n          \"Line\",\n          25\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 53,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          147\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          15\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 1,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 54,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          172\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"ListItem\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 55,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          163\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListItem\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 56,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          163\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 57,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          153\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 58,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          99\n        ],\n        [\n          \"Line\",\n          35\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"ListItem\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 2259\n      }\n    },\n    {\n      \"page_id\": 59,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          108\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"ListItem\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 60,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          119\n        ],\n        [\n          \"Line\",\n          23\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"ListItem\",\n          4\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          2\n        ],\n        [\n          \"Caption\",\n          2\n        ],\n        [\n          \"FigureGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4173\n      }\n    },\n    {\n      \"page_id\": 61,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          61\n        ],\n        [\n          \"Line\",\n          12\n        ],\n        [\n          \"Text\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 62,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          116\n        ],\n        [\n          \"Line\",\n          30\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"SectionHeader\",\n          4\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"Reference\",\n          3\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 698\n      }\n    },\n    {\n      \"page_id\": 63,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          208\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"TableCell\",\n          25\n        ],\n        [\n          \"Text\",\n          13\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Table\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 3,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 9060\n      }\n    },\n    {\n      \"page_id\": 64,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          130\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 65,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          168\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 66,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          217\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          15\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 67,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          110\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 5072\n      }\n    },\n    {\n      \"page_id\": 68,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          102\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 69,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          153\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"ListItem\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3938\n      }\n    },\n    {\n      \"page_id\": 70,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          154\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"ListItem\",\n          8\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Equation\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 7531\n      }\n    },\n    {\n      \"page_id\": 71,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          104\n        ],\n        [\n          \"Line\",\n          30\n        ],\n        [\n          \"ListItem\",\n          10\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 7789\n      }\n    },\n    {\n      \"page_id\": 72,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          79\n        ],\n        [\n          \"Line\",\n          29\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 73,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          221\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          13\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Equation\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 7941\n      }\n    },\n    {\n      \"page_id\": 74,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          163\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 7820\n      }\n    },\n    {\n      \"page_id\": 75,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          109\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 76,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          167\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"TextInlineMath\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Equation\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 77,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          170\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          16\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3937\n      }\n    },\n    {\n      \"page_id\": 78,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          186\n        ],\n        [\n          \"Line\",\n          48\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3978\n      }\n    },\n    {\n      \"page_id\": 79,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          131\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 80,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          116\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 81,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          95\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"ListItem\",\n          6\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 82,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          296\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Equation\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 6226\n      }\n    },\n    {\n      \"page_id\": 83,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          22\n        ],\n        [\n          \"Line\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Text\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 84,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          138\n        ],\n        [\n          \"Line\",\n          29\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3828\n      }\n    },\n    {\n      \"page_id\": 85,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          161\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 86,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          176\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 87,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          132\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Equation\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4325\n      }\n    },\n    {\n      \"page_id\": 88,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          155\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4083\n      }\n    },\n    {\n      \"page_id\": 89,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          105\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 90,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          168\n        ],\n        [\n          \"Line\",\n          51\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Equation\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 91,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          38\n        ],\n        [\n          \"Line\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Text\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 92,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          96\n        ],\n        [\n          \"Line\",\n          26\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"SectionHeader\",\n          4\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"Code\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 93,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          139\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 2534\n      }\n    },\n    {\n      \"page_id\": 94,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          115\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"Text\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 95,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          154\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 96,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          162\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 97,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          166\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 98,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          150\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3993\n      }\n    },\n    {\n      \"page_id\": 99,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          123\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 2075\n      }\n    },\n    {\n      \"page_id\": 100,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          119\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"ListItem\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 101,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          73\n        ],\n        [\n          \"Line\",\n          28\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 102,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          108\n        ],\n        [\n          \"Line\",\n          32\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 103,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          161\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          15\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 757\n      }\n    },\n    {\n      \"page_id\": 104,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          139\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 1805\n      }\n    },\n    {\n      \"page_id\": 105,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          138\n        ],\n        [\n          \"Line\",\n          46\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 106,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          89\n        ],\n        [\n          \"Line\",\n          34\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 107,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          117\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 108,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          90\n        ],\n        [\n          \"Line\",\n          28\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"SectionHeader\",\n          4\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"Code\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 109,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          132\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 110,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          140\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 738\n      }\n    },\n    {\n      \"page_id\": 111,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          208\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"Code\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 4,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 11464\n      }\n    },\n    {\n      \"page_id\": 112,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          144\n        ],\n        [\n          \"Line\",\n          44\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 113,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          214\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 5073\n      }\n    },\n    {\n      \"page_id\": 114,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          184\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4054\n      }\n    },\n    {\n      \"page_id\": 115,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          123\n        ],\n        [\n          \"Line\",\n          44\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"TableCell\",\n          8\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"TableGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 1599\n      }\n    },\n    {\n      \"page_id\": 116,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          128\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"TextInlineMath\",\n          3\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Caption\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Equation\",\n          1\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 117,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          114\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"TextInlineMath\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 118,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          126\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"TableCell\",\n          8\n        ],\n        [\n          \"ListItem\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3321\n      }\n    },\n    {\n      \"page_id\": 119,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          197\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"ListItem\",\n          6\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 120,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          69\n        ],\n        [\n          \"Line\",\n          20\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 121,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Line\",\n          1\n        ],\n        [\n          \"Span\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 122,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          128\n        ],\n        [\n          \"Line\",\n          32\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 8052\n      }\n    },\n    {\n      \"page_id\": 123,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          154\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 124,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          173\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 125,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          132\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4856\n      }\n    },\n    {\n      \"page_id\": 126,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          137\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 127,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          166\n        ],\n        [\n          \"Line\",\n          56\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 128,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          180\n        ],\n        [\n          \"Line\",\n          48\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 129,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          137\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 130,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          124\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListItem\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 131,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          117\n        ],\n        [\n          \"Line\",\n          36\n        ],\n        [\n          \"Text\",\n          14\n        ],\n        [\n          \"ListItem\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3827\n      }\n    },\n    {\n      \"page_id\": 132,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          149\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 133,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Line\",\n          1\n        ],\n        [\n          \"Span\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 134,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          110\n        ],\n        [\n          \"Line\",\n          31\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4051\n      }\n    },\n    {\n      \"page_id\": 135,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          124\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"TextInlineMath\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 6291\n      }\n    },\n    {\n      \"page_id\": 136,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          142\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3681\n      }\n    },\n    {\n      \"page_id\": 137,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          156\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 3,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 6124\n      }\n    },\n    {\n      \"page_id\": 138,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          136\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          13\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4148\n      }\n    },\n    {\n      \"page_id\": 139,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          113\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"TableCell\",\n          37\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Table\",\n          2\n        ],\n        [\n          \"Caption\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"TableGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 3,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 5526\n      }\n    },\n    {\n      \"page_id\": 140,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          111\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 141,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          131\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 142,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          124\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"ListItem\",\n          9\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 143,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          81\n        ],\n        [\n          \"Line\",\n          30\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"ListItem\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 144,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          91\n        ],\n        [\n          \"Line\",\n          27\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 145,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          154\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 2477\n      }\n    },\n    {\n      \"page_id\": 146,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          127\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 147,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          104\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 741\n      }\n    },\n    {\n      \"page_id\": 148,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          137\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 2529\n      }\n    },\n    {\n      \"page_id\": 149,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          110\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"ListItem\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 150,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          91\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"ListItem\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 151,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          114\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 152,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          89\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"ListItem\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 153,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          107\n        ],\n        [\n          \"Line\",\n          27\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"Equation\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 7672\n      }\n    },\n    {\n      \"page_id\": 154,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          76\n        ],\n        [\n          \"Line\",\n          27\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"SectionHeader\",\n          4\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"Code\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 155,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          163\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          13\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4133\n      }\n    },\n    {\n      \"page_id\": 156,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          136\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          13\n        ],\n        [\n          \"Code\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 157,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          162\n        ],\n        [\n          \"Line\",\n          44\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 158,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          136\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"Text\",\n          13\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 2787\n      }\n    },\n    {\n      \"page_id\": 159,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          176\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Footnote\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 160,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          134\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 161,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          125\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"Code\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 162,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          128\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"ListItem\",\n          11\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 163,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Line\",\n          1\n        ],\n        [\n          \"Span\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 164,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          108\n        ],\n        [\n          \"Line\",\n          26\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 165,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          150\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3947\n      }\n    },\n    {\n      \"page_id\": 166,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          121\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 167,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          144\n        ],\n        [\n          \"Line\",\n          44\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 168,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          175\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 169,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          160\n        ],\n        [\n          \"Line\",\n          53\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 170,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          130\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          14\n        ],\n        [\n          \"ListItem\",\n          5\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 4,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 13603\n      }\n    },\n    {\n      \"page_id\": 171,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          64\n        ],\n        [\n          \"Line\",\n          20\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"ListItem\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 172,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          117\n        ],\n        [\n          \"Line\",\n          28\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"Reference\",\n          5\n        ],\n        [\n          \"SectionHeader\",\n          4\n        ],\n        [\n          \"Code\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 1742\n      }\n    },\n    {\n      \"page_id\": 173,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          123\n        ],\n        [\n          \"Line\",\n          46\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 174,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          116\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 175,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          142\n        ],\n        [\n          \"Line\",\n          45\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 176,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          121\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListItem\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 177,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          102\n        ],\n        [\n          \"Line\",\n          29\n        ],\n        [\n          \"ListItem\",\n          8\n        ],\n        [\n          \"Text\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 178,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          85\n        ],\n        [\n          \"Line\",\n          29\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 179,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          143\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 180,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          143\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 181,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          144\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          13\n        ],\n        [\n          \"Code\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 1,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 182,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          150\n        ],\n        [\n          \"Line\",\n          36\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 183,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          137\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"Code\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3832\n      }\n    },\n    {\n      \"page_id\": 184,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          124\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3848\n      }\n    },\n    {\n      \"page_id\": 185,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          120\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          13\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4030\n      }\n    },\n    {\n      \"page_id\": 186,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          147\n        ],\n        [\n          \"Line\",\n          36\n        ],\n        [\n          \"ListItem\",\n          11\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 187,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          102\n        ],\n        [\n          \"Line\",\n          35\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 188,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          98\n        ],\n        [\n          \"Line\",\n          29\n        ],\n        [\n          \"TableCell\",\n          24\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Table\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 830\n      }\n    },\n    {\n      \"page_id\": 189,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          189\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 190,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          165\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 191,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          138\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 3,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 11008\n      }\n    },\n    {\n      \"page_id\": 192,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          126\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3916\n      }\n    },\n    {\n      \"page_id\": 193,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          155\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          16\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 194,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          128\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 195,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          126\n        ],\n        [\n          \"Line\",\n          35\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 196,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          127\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 197,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          103\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"ListItem\",\n          9\n        ],\n        [\n          \"Text\",\n          4\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 198,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          152\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"ListItem\",\n          10\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3828\n      }\n    },\n    {\n      \"page_id\": 199,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          233\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"ListItem\",\n          9\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"ListGroup\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 200,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          77\n        ],\n        [\n          \"Line\",\n          26\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 201,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          111\n        ],\n        [\n          \"Line\",\n          36\n        ],\n        [\n          \"Text\",\n          19\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 202,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          163\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          20\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3853\n      }\n    },\n    {\n      \"page_id\": 203,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          120\n        ],\n        [\n          \"Line\",\n          36\n        ],\n        [\n          \"Text\",\n          18\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 204,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          125\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          14\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 205,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          93\n        ],\n        [\n          \"Line\",\n          28\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 7820\n      }\n    },\n    {\n      \"page_id\": 206,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          139\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"Code\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 207,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          136\n        ],\n        [\n          \"Line\",\n          41\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 208,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          143\n        ],\n        [\n          \"Line\",\n          44\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"Code\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3947\n      }\n    },\n    {\n      \"page_id\": 209,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          110\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 210,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          101\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"ListItem\",\n          17\n        ],\n        [\n          \"Text\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 211,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          156\n        ],\n        [\n          \"Line\",\n          42\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 212,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          63\n        ],\n        [\n          \"Line\",\n          17\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 213,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Text\",\n          1\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Line\",\n          1\n        ],\n        [\n          \"Span\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 214,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          63\n        ],\n        [\n          \"Line\",\n          27\n        ],\n        [\n          \"Text\",\n          4\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 215,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          106\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"ListItem\",\n          10\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 216,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          84\n        ],\n        [\n          \"Line\",\n          36\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"ListItem\",\n          6\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 217,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          114\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"SectionHeader\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4025\n      }\n    },\n    {\n      \"page_id\": 218,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          133\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"ListItem\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 219,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          81\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"ListItem\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 220,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          106\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"TextInlineMath\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 221,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          68\n        ],\n        [\n          \"Line\",\n          33\n        ],\n        [\n          \"Text\",\n          8\n        ],\n        [\n          \"ListItem\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 222,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          82\n        ],\n        [\n          \"Line\",\n          33\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"SectionHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Footnote\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 223,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          223\n        ],\n        [\n          \"Line\",\n          46\n        ],\n        [\n          \"TableCell\",\n          33\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 6180\n      }\n    },\n    {\n      \"page_id\": 224,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          402\n        ],\n        [\n          \"Line\",\n          53\n        ],\n        [\n          \"TableCell\",\n          36\n        ],\n        [\n          \"ListItem\",\n          6\n        ],\n        [\n          \"Text\",\n          4\n        ],\n        [\n          \"TextInlineMath\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Table\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 2,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 6657\n      }\n    },\n    {\n      \"page_id\": 225,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          237\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          12\n        ],\n        [\n          \"ListItem\",\n          4\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 4070\n      }\n    },\n    {\n      \"page_id\": 226,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          144\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"ListItem\",\n          9\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 227,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          161\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          11\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"ListItem\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"Code\",\n          1\n        ],\n        [\n          \"ListGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3961\n      }\n    },\n    {\n      \"page_id\": 228,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          145\n        ],\n        [\n          \"Line\",\n          43\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 229,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          136\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          7\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 230,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          102\n        ],\n        [\n          \"Line\",\n          21\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 231,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Text\",\n          1\n        ],\n        [\n          \"PageHeader\",\n          1\n        ],\n        [\n          \"Line\",\n          1\n        ],\n        [\n          \"Span\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 232,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          86\n        ],\n        [\n          \"Line\",\n          29\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"SectionHeader\",\n          3\n        ],\n        [\n          \"Reference\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 233,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          113\n        ],\n        [\n          \"Line\",\n          40\n        ],\n        [\n          \"Text\",\n          10\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          2\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3868\n      }\n    },\n    {\n      \"page_id\": 234,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          103\n        ],\n        [\n          \"Line\",\n          39\n        ],\n        [\n          \"Text\",\n          6\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 235,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          103\n        ],\n        [\n          \"Line\",\n          38\n        ],\n        [\n          \"Text\",\n          9\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 236,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          117\n        ],\n        [\n          \"Line\",\n          44\n        ],\n        [\n          \"Reference\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          2\n        ],\n        [\n          \"Caption\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Text\",\n          2\n        ],\n        [\n          \"FigureGroup\",\n          2\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3794\n      }\n    },\n    {\n      \"page_id\": 237,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          109\n        ],\n        [\n          \"Line\",\n          37\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ],\n        [\n          \"Reference\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"SectionHeader\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    },\n    {\n      \"page_id\": 238,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          140\n        ],\n        [\n          \"Line\",\n          51\n        ],\n        [\n          \"Text\",\n          5\n        ],\n        [\n          \"Code\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Figure\",\n          1\n        ],\n        [\n          \"Caption\",\n          1\n        ],\n        [\n          \"FigureGroup\",\n          1\n        ],\n        [\n          \"Reference\",\n          1\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 1,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 3419\n      }\n    },\n    {\n      \"page_id\": 239,\n      \"text_extraction_method\": \"pdftext\",\n      \"block_counts\": [\n        [\n          \"Span\",\n          63\n        ],\n        [\n          \"Line\",\n          17\n        ],\n        [\n          \"Text\",\n          3\n        ],\n        [\n          \"PageHeader\",\n          2\n        ],\n        [\n          \"Code\",\n          2\n        ]\n      ],\n      \"block_metadata\": {\n        \"llm_request_count\": 0,\n        \"llm_error_count\": 0,\n        \"llm_tokens_used\": 0\n      }\n    }\n  ],\n  \"debug_data_path\": \"debug_data/thinkpython\"\n}"
  },
  {
    "path": "data/latex_to_md.sh",
    "content": "#!/bin/bash\n\n# List all .tex files in the latex folder\nFILES=$(find latex -name \"*.tex\")\n\nfor f in $FILES\ndo\n  echo \"Processing $f file...\"\n  base_name=$(basename \"$f\" .tex)\n  out_file=\"references/${base_name}.md\"\n\n pandoc --wrap=none \\\n         --no-highlight \\\n         --strip-comments \\\n         --from=latex \\\n         --to=commonmark_x+pipe_tables \\\n         \"$f\" \\\n         -o \"$out_file\"\n  # Replace non-breaking spaces\n  sed -i .bak 's/ / /g' \"$out_file\"\n  sed -i .bak 's/ / /g' \"$out_file\"\n  sed -i .bak 's/ / /g' \"$out_file\"\n  sed -i .bak 's/ / /g' \"$out_file\"\n  sed -i.bak -E 's/`\\\\cite`//g; s/<[^>]*>//g; s/\\{[^}]*\\}//g; s/\\\\cite\\{[^}]*\\}//g' \"$out_file\"\n    sed -i.bak -E '\n    s/`\\\\cite`//g;   # Remove \\cite commands inside backticks\n    s/::: //g;       # Remove the leading ::: for content markers\n    s/\\[//g;         # Remove opening square bracket\n    s/\\]//g;         # Remove closing square bracket\n  ' \"$out_file\"\n  # Remove .bak file\n  rm \"$out_file.bak\"\ndone\n\n"
  },
  {
    "path": "examples/README.md",
    "content": "## Usage Examples\n\nThis directory contains examples of running `marker` in different contexts.\n\n### Usage with Modal\n\nWe have a [self-contained example](./marker_modal_deployment.py) that shows how you can quickly use [Modal](https://modal.com) to deploy `marker` by provisioning a container with a GPU, and expose that with an API so you can submit PDFs for conversion into Markdown, HTML, or JSON.\n\nIt's a limited example that you can extend into different use cases.\n\n#### Pre-requisites\n\nMake sure you have the `modal` client installed by [following their instructions here](https://modal.com/docs/guide#getting-started).\n\nModal's [Starter Plan](https://modal.com/pricing) includes $30 of free compute each month.\nModal is [serverless](https://arxiv.org/abs/1902.03383), so you only pay for resources when you are using them.\n\n#### Running the example\n\nOnce `modal` is configured, you can deploy it to your workspace by running:\n\n> modal deploy marker_modal_deployment.py\n\nNotes:\n- `marker` has a few models it uses. By default, the endpoint will check if these models are loaded and download them if not (first request will be slow). You can avoid this by running\n\n> modal run marker_modal_deployment.py::download_models\n\nWhich will create a [`Modal Volume`](https://modal.com/docs/guide/Volumes) to store them for re-use.\n\nOnce the deploy is finished, you can:\n- Test a file upload locally through your CLI using an `invoke_conversion` command we expose through Modal's [`local_entrypoint`](https://modal.com/docs/reference/modal.App#local_entrypoint)\n- Get the URL of your endpoint and make a request through a client of your choice.\n\n**Test from your CLI with `invoke_conversion`**\n\nIf your endpoint is live, simply run this command:\n\n```\n$ modal run marker_modal_deployment.py::invoke_conversion --pdf-file <PDF_FILE_PATH> --output-format markdown\n```\n\nAnd it'll automatically detect the URL of your new endpoint using [`.get_web_url()`](https://modal.com/docs/guide/webhook-urls#determine-the-url-of-a-web-endpoint-from-code), make sure it's healthy, submit your file, and store its output on your machine (in the same directory).\n\n**Making a request using your own client**\n\nIf you want to make requests elsewhere e.g. with cURL or a client like Insomnia, you'll need to get the URL.\n\nWhen your `modal deploy` command from earlier finishes, it'll include your endpoint URL at the end. For example:\n\n```\n$ modal deploy marker_modal_deployment.py\n...\n✓ Created objects.\n├── 🔨 Created mount /marker/examples/marker_modal_deployment.py\n├── 🔨 Created function download_models.\n├── 🔨 Created function MarkerModalDemoService.*.\n└── 🔨 Created web endpoint for MarkerModalDemoService.fastapi_app => <YOUR_ENDPOINT_URL>\n✓ App deployed in 149.877s! 🎉\n```\n\nIf you accidentally close your terminal session, you can also always go into Modal's dashboard and:\n  - Find the app (default name: `datalab-marker-modal-demo`)\n  - Click on `MarkerModalDemoService`\n  - Find your endpoint URL\n\nOnce you have your URL, make a request to `{YOUR_ENDPOINT_URL}/convert` like this (you can also use Insomnia, etc.):\n```\ncurl --request POST \\\n  --url {BASE_URL}/convert \\\n  --header 'Content-Type: multipart/form-data' \\\n  --form file=@/Users/cooldev/sample.pdf \\\n  --form output_format=html\n  ```\n\nYou should get a response like this\n\n```\n{\n\t\"success\": true,\n\t\"filename\": \"sample.pdf\",\n\t\"output_format\": \"html\",\n\t\"json\": null,\n\t\"html\": \"<YOUR_RESPONSE_CONTENT>\",\n\t\"markdown\": null,\n\t\"images\": {},\n\t\"metadata\": {... page level metadata ...},\n\t\"page_count\": 2\n}\n```\n\n[Modal](https://modal.com) makes deploying and scaling models and inference workloads much easier.\n\nIf you're interested in Datalab's managed API or on-prem document intelligence solution, check out [our platform here](https://datalab.to/?utm_source=gh-marker).\n"
  },
  {
    "path": "examples/marker_modal_deployment.py",
    "content": "\"\"\"\nModal deployment for Datalab Marker PDF conversion service.\n\"\"\"\n\nimport modal\nimport os\nfrom typing import Optional\n\n# Define the Modal app\napp = modal.App(\"datalab-marker-modal-demo\")\nGPU_TYPE = \"L40S\"\nMODEL_PATH_PREFIX = \"/root/.cache/datalab/models\"\n\n# Define the container image with all dependencies\nimage = (\n    modal.Image.debian_slim(python_version=\"3.10\")\n    .apt_install([\"git\", \"wget\"])\n    .env({\"TORCH_DEVICE\": \"cuda\"})\n    .pip_install([\n        \"marker-pdf[full]\",\n        \"fastapi==0.104.1\",\n        \"uvicorn==0.24.0\",\n        \"python-multipart==0.0.6\",\n        \"torch>=2.2.2,<3.0.0\",\n        \"torchvision>=0.17.0\",\n        \"torchaudio>=2.2.0\",\n    ])\n)\n\n# Create a persistent volume for model caching\nmodels_volume = modal.Volume.from_name(\"marker-models-modal-demo\", create_if_missing=True)\n\ndef setup_models_with_cache_check(logger, commit_volume=False):\n    \"\"\"\n    Shared function to create models and handle cache checking/logging.\n    \"\"\"\n    import os\n    import gc\n    from marker.models import create_model_dict\n\n    # Check if models exist in cache\n    models_dir_exists = os.path.exists(MODEL_PATH_PREFIX)\n    models_dir_contents = os.listdir(MODEL_PATH_PREFIX) if models_dir_exists else []\n\n    logger.info(f\"Models cache directory exists: {models_dir_exists}\")\n    logger.info(f\"Models cache directory contents: {models_dir_contents}\")\n\n    if models_dir_exists and models_dir_contents:\n        logger.info(\"Found existing models in volume cache, loading from cache...\")\n    else:\n        logger.warning(\"No models found in volume cache. Models will be downloaded now (this may take several minutes).\")\n\n    # Create/load models\n    models = create_model_dict()\n    logger.info(f\"Successfully loaded {len(models)} models\")\n\n    # Check what was downloaded/cached\n    if os.path.exists(MODEL_PATH_PREFIX):\n        contents = os.listdir(MODEL_PATH_PREFIX)\n        logger.info(f\"Models in cache: {contents}\")\n\n    # Commit volume if requested (for download function)\n    if commit_volume:\n        gc.collect()\n        logger.info(\"Attempting to commit volume...\")\n        models_volume.commit()\n        logger.info(\"Volume committed successfully\")\n\n    return models\n\n@app.function(\n    image=image,\n    volumes={MODEL_PATH_PREFIX: models_volume},\n    gpu=GPU_TYPE,\n    timeout=600,\n)\ndef download_models():\n    \"\"\"\n    Helper function to download models used in marker into a Modal volume.\n    \"\"\"\n    import logging\n\n    logging.basicConfig(level=logging.INFO)\n    logger = logging.getLogger(__name__)\n\n    logger.info(\"Downloading models to persistent volume...\")\n    logger.info(f\"Volume mounted at: {MODEL_PATH_PREFIX}\")\n\n    try:\n        models = setup_models_with_cache_check(logger, commit_volume=True)\n        return f\"Models downloaded successfully: {list(models.keys())}\"\n    except Exception as e:\n        logger.error(f\"Failed to download models: {e}\")\n        raise\n\n@app.cls(\n    image=image,\n    gpu=GPU_TYPE,\n    memory=16384,\n    timeout=600,   # 10 minute timeout for large documents\n    volumes={MODEL_PATH_PREFIX: models_volume},\n    scaledown_window=300,\n)\nclass MarkerModalDemoService:\n    @modal.enter()\n    def load_models(self):\n        \"\"\"Load models once per container using @modal.enter() for efficiency.\"\"\"\n        import logging\n        import traceback\n\n        logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')\n        logger = logging.getLogger(__name__)\n\n        logger.info(\"Loading Marker models using @modal.enter()...\")\n        try:\n            self.models = setup_models_with_cache_check(logger, commit_volume=True)\n        except Exception as e:\n            logger.error(f\"Error loading models: {e}\")\n            traceback.print_exc()\n            self.models = None\n\n    @modal.asgi_app()\n    def marker_api(self):\n        import traceback\n        import io\n        import base64\n        import logging\n        from contextlib import asynccontextmanager\n        from typing import Optional\n        from pathlib import Path\n\n        from fastapi import FastAPI, Form, File, UploadFile, HTTPException\n        from fastapi.responses import JSONResponse\n\n        from marker.converters.pdf import PdfConverter\n        from marker.config.parser import ConfigParser\n        from marker.settings import settings\n\n        logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')\n        logger = logging.getLogger(__name__)\n\n        @asynccontextmanager\n        async def lifespan(app: FastAPI):\n            # Models are already loaded in @modal.enter()\n            logger.info(\"Datalab Marker / Modal demo app starting up...\")\n            yield\n            logger.info(\"Datalab Marker / Modal demo app shutting down...\")\n\n        # Create FastAPI app\n        web_app = FastAPI(\n            title=\"Datalab Marker PDF Conversion Service - Modal Demo\",\n            description=\"Convert PDFs and documents to markdown, JSON, or HTML using Marker, deployed on Modal\",\n            version=\"1.0.0\",\n            lifespan=lifespan\n        )\n\n        @web_app.get(\"/health\")\n        async def health_check():\n            models_loaded = hasattr(self, 'models') and self.models is not None\n            model_count = len(self.models) if models_loaded else 0\n\n            # Check volume contents for debugging\n            cache_exists = os.path.exists(MODEL_PATH_PREFIX)\n            cache_contents = os.listdir(MODEL_PATH_PREFIX) if cache_exists else []\n\n            return {\n                \"status\": \"healthy\" if models_loaded else \"loading\",\n                \"models_loaded\": models_loaded,\n                \"model_count\": model_count,\n                \"cache_dir\": MODEL_PATH_PREFIX,\n                \"cache_exists\": cache_exists,\n                \"cache_contents\": cache_contents[:10]\n            }\n\n        @web_app.post(\"/convert\")\n        async def convert_document(\n            file: UploadFile = File(..., description=\"Document to convert\"),\n            page_range: Optional[str] = Form(None),\n            force_ocr: bool = Form(False),\n            paginate_output: bool = Form(False),\n            output_format: str = Form(\"markdown\"),\n            use_llm: bool = Form(False),\n        ):\n            \"\"\"Convert uploaded document to specified format.\"\"\"\n\n            if not hasattr(self, 'models') or self.models is None:\n                logger.error(\"Models not available for conversion\")\n                raise HTTPException(status_code=503, detail=\"Models not loaded yet. Please wait for model initialization.\")\n\n            # Validate file type\n            allowed_extensions = {'.pdf', '.png', '.jpg', '.jpeg', '.tiff', '.bmp'}\n            file_ext = Path(file.filename).suffix.lower()\n            if file_ext not in allowed_extensions:\n                raise HTTPException(\n                    status_code=400,\n                    detail=f\"Unsupported file type: {file_ext}. Supported: {allowed_extensions}\"\n                )\n\n            # Validate output format\n            if output_format not in [\"markdown\", \"json\", \"html\", \"chunks\"]:\n                raise HTTPException(\n                    status_code=400,\n                    detail=\"Output format must be one of: markdown, json, html, chunks\"\n                )\n\n            try:\n                # Read file content\n                file_content = await file.read()\n\n                # Save to temporary file\n                temp_path = f\"/tmp/{file.filename}\"\n                with open(temp_path, \"wb\") as temp_file:\n                    temp_file.write(file_content)\n\n                # Configure conversion parameters\n                config = {\n                    \"filepath\": temp_path,\n                    \"page_range\": page_range,\n                    \"force_ocr\": force_ocr,\n                    \"paginate_output\": paginate_output,\n                    \"output_format\": output_format,\n                    \"use_llm\": use_llm,\n                }\n\n                # Create converter\n                config_parser = ConfigParser(config)\n                config_dict = config_parser.generate_config_dict()\n                config_dict[\"pdftext_workers\"] = 1\n\n                converter = PdfConverter(\n                    config=config_dict,\n                    artifact_dict=self.models,\n                    processor_list=config_parser.get_processors(),\n                    renderer=config_parser.get_renderer(),\n                    llm_service=config_parser.get_llm_service() if use_llm else None,\n                )\n\n                # Convert document - converter already applies the appropriate renderer\n                logger.info(f\"Converting {file.filename} to {output_format}...\")\n                rendered_output = converter(temp_path)\n\n                # Extract content based on output format\n                json_content = None\n                html_content = None\n                markdown_content = None\n                encoded_images = {}\n\n                if output_format == \"json\":\n                    # For JSON, return the structured data directly\n                    json_content = rendered_output.model_dump()\n                else:\n                    from marker.output import text_from_rendered\n                    text, _, images = text_from_rendered(rendered_output)\n\n                    # Assign to appropriate content field\n                    if output_format == \"html\":\n                        html_content = text\n                    else:\n                        markdown_content = text\n\n                    # Encode images as base64\n                    for img_name, img_obj in images.items():\n                        byte_stream = io.BytesIO()\n                        img_obj.save(byte_stream, format=settings.OUTPUT_IMAGE_FORMAT)\n                        encoded_images[img_name] = base64.b64encode(byte_stream.getvalue()).decode('utf-8')\n\n                metadata = rendered_output.metadata\n\n                logger.info(f\"Conversion completed for {file.filename}\")\n\n                # Clean up temp file\n                os.unlink(temp_path)\n\n                return JSONResponse({\n                    \"success\": True,\n                    \"filename\": file.filename,\n                    \"output_format\": output_format,\n                    \"json\": json_content,\n                    \"html\": html_content,\n                    \"markdown\": markdown_content,\n                    \"images\": encoded_images,\n                    \"metadata\": metadata,\n                    \"page_count\": len(metadata.get(\"page_stats\", [])),\n                })\n\n            except Exception as e:\n                # Clean up temp file if it exists\n                if os.path.exists(temp_path):\n                    os.unlink(temp_path)\n\n                logger.error(f\"Conversion error for {file.filename}: {str(e)}\")\n                traceback.print_exc()\n\n                raise HTTPException(\n                    status_code=500,\n                    detail=f\"Conversion failed: {str(e)}\"\n                )\n\n        return web_app\n\n\n#\n# This does not get deployed. It's a useful entrypoint from your local CLI\n#    that you can use to test your deployment. It'll store the\n#    API response in a new file on your machine.\n#\n@app.local_entrypoint()\nasync def invoke_conversion(\n    pdf_file: Optional[str] = None,\n    output_format: str = \"markdown\",\n    env: str = 'main'\n):\n    \"\"\"\n    Local entrypoint to test your deployed Marker endpoint in Modal.\n\n    Usage:\n        modal run marker_modal_deployment.py::invoke_conversion --pdf-file /path/to/file.pdf --output-format markdown\n    \"\"\"\n    import requests\n    import json\n    from pathlib import Path\n\n    if not pdf_file:\n        print(\"No PDF file specified. Use --pdf-file /path/to/your.pdf\")\n        return\n\n    pdf_path = Path(pdf_file)\n    if not pdf_path.exists():\n        print(f\"File not found: {pdf_file}\")\n        return\n\n    #\n    # Get the web URL for our deployed service\n    #\n    try:\n        service = modal.Cls.from_name(\n            \"datalab-marker-modal-demo\",\n            \"MarkerModalDemoService\",\n            environment_name=env\n        )\n        web_url = service().marker_api.get_web_url()\n        print(f\"Found deployed service at: {web_url}\")\n    except Exception as e:\n        print(f\"Error getting web URL: {e}\")\n        print(\"Make sure you've deployed the service first with: modal deploy marker_modal_deployment.py\")\n        return\n\n    print(f\"Testing conversion of: {pdf_path.name}\")\n    print(f\"Output format: {output_format}\")\n\n    #\n    # Test health endpoint first\n    #\n    try:\n        health_response = requests.get(f\"{web_url}/health\")\n        health_data = health_response.json()\n        print(f\"Service health: {health_data['status']}\")\n        print(f\"Models loaded: {health_data['models_loaded']} ({health_data['model_count']} models)\")\n\n        if not health_data['models_loaded']:\n            print(\"Warning: Models not loaded yet. First request may be slow.\")\n\n    except Exception as e:\n        print(f\"Health check failed: {e}\")\n\n    #\n    # Make conversion request\n    #\n    try:\n        with open(pdf_path, 'rb') as f:\n            files = {'file': (pdf_path.name, f, 'application/pdf')}\n            data = {'output_format': output_format}\n\n            print(f\"Sending request to {web_url}/convert...\")\n            response = requests.post(f\"{web_url}/convert\", files=files, data=data)\n\n        if response.status_code == 200:\n            result = response.json()\n            print(f\"✅ Conversion successful!\")\n            print(f\"Filename: {result['filename']}\")\n            print(f\"Format: {result['output_format']}\")\n            print(f\"Pages: {result['page_count']}\")\n\n            output_file = f\"{pdf_path.stem}_response.json\"\n            with open(output_file, 'w', encoding='utf-8') as f:\n                json.dump(result, f, indent=2, ensure_ascii=False)\n            print(f\"Full API response saved to: {output_file}\")\n\n            if result['images']:\n                print(f\"Images extracted: {len(result['images'])}\")\n\n        else:\n            print(f\"❌ Conversion failed: {response.status_code}\")\n            print(f\"Error: {response.text}\")\n\n    except Exception as e:\n        print(f\"Request failed: {e}\")\n"
  },
  {
    "path": "extraction_app.py",
    "content": "from marker.scripts.run_streamlit_app import extraction_app_cli\n\nif __name__ == \"__main__\":\n    extraction_app_cli()\n"
  },
  {
    "path": "marker/builders/__init__.py",
    "content": "from typing import Optional\n\nfrom pydantic import BaseModel\n\nfrom marker.util import assign_config\n\n\nclass BaseBuilder:\n    def __init__(self, config: Optional[BaseModel | dict] = None):\n        assign_config(self, config)\n\n    def __call__(self, data, *args, **kwargs):\n        raise NotImplementedError\n"
  },
  {
    "path": "marker/builders/document.py",
    "content": "from typing import Annotated\n\nfrom marker.builders import BaseBuilder\nfrom marker.builders.layout import LayoutBuilder\nfrom marker.builders.line import LineBuilder\nfrom marker.builders.ocr import OcrBuilder\nfrom marker.providers.pdf import PdfProvider\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\nfrom marker.schema.groups.page import PageGroup\nfrom marker.schema.registry import get_block_class\n\n\nclass DocumentBuilder(BaseBuilder):\n    \"\"\"\n    Constructs a Document given a PdfProvider, LayoutBuilder, and OcrBuilder.\n    \"\"\"\n    lowres_image_dpi: Annotated[\n        int,\n        \"DPI setting for low-resolution page images used for Layout and Line Detection.\",\n    ] = 96\n    highres_image_dpi: Annotated[\n        int,\n        \"DPI setting for high-resolution page images used for OCR.\",\n    ] = 192\n    disable_ocr: Annotated[\n        bool,\n        \"Disable OCR processing.\",\n    ] = False\n\n    def __call__(self, provider: PdfProvider, layout_builder: LayoutBuilder, line_builder: LineBuilder, ocr_builder: OcrBuilder):\n        document = self.build_document(provider)\n        layout_builder(document, provider)\n        line_builder(document, provider)\n        if not self.disable_ocr:\n            ocr_builder(document, provider)\n        return document\n\n    def build_document(self, provider: PdfProvider):\n        PageGroupClass: PageGroup = get_block_class(BlockTypes.Page)\n        lowres_images = provider.get_images(provider.page_range, self.lowres_image_dpi)\n        highres_images = provider.get_images(provider.page_range, self.highres_image_dpi)\n        initial_pages = [\n            PageGroupClass(\n                page_id=p,\n                lowres_image=lowres_images[i],\n                highres_image=highres_images[i],\n                polygon=provider.get_page_bbox(p),\n                refs=provider.get_page_refs(p)\n            ) for i, p in enumerate(provider.page_range)\n        ]\n        DocumentClass: Document = get_block_class(BlockTypes.Document)\n        return DocumentClass(filepath=provider.filepath, pages=initial_pages)\n"
  },
  {
    "path": "marker/builders/layout.py",
    "content": "from typing import Annotated, List\n\nfrom surya.layout import LayoutPredictor\nfrom surya.layout.schema import LayoutResult, LayoutBox\n\nfrom marker.builders import BaseBuilder\nfrom marker.providers.pdf import PdfProvider\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\nfrom marker.schema.groups.page import PageGroup\nfrom marker.schema.polygon import PolygonBox\nfrom marker.schema.registry import get_block_class\nfrom marker.settings import settings\n\n\nclass LayoutBuilder(BaseBuilder):\n    \"\"\"\n    A builder for performing layout detection on PDF pages and merging the results into the document.\n    \"\"\"\n\n    layout_batch_size: Annotated[\n        int,\n        \"The batch size to use for the layout model.\",\n        \"Default is None, which will use the default batch size for the model.\",\n    ] = None\n    force_layout_block: Annotated[\n        str,\n        \"Skip layout and force every page to be treated as a specific block type.\",\n    ] = None\n    disable_tqdm: Annotated[\n        bool,\n        \"Disable tqdm progress bars.\",\n    ] = False\n    expand_block_types: Annotated[\n        List[BlockTypes],\n        \"Block types whose bounds should be expanded to accomodate missing regions\",\n    ] = [\n        BlockTypes.Picture,\n        BlockTypes.Figure,\n        BlockTypes.ComplexRegion,\n    ]  # Does not include groups since they are only injected later\n    max_expand_frac: Annotated[\n        float, \"The maximum fraction to expand the layout box bounds by\"\n    ] = 0.05\n\n    def __init__(self, layout_model: LayoutPredictor, config=None):\n        self.layout_model = layout_model\n\n        super().__init__(config)\n\n    def __call__(self, document: Document, provider: PdfProvider):\n        if self.force_layout_block is not None:\n            # Assign the full content of every page to a single layout type\n            layout_results = self.forced_layout(document.pages)\n        else:\n            layout_results = self.surya_layout(document.pages)\n        self.add_blocks_to_pages(document.pages, layout_results)\n        self.expand_layout_blocks(document)\n\n    def get_batch_size(self):\n        if self.layout_batch_size is not None:\n            return self.layout_batch_size\n        elif settings.TORCH_DEVICE_MODEL == \"cuda\":\n            return 12\n        return 6\n\n    def forced_layout(self, pages: List[PageGroup]) -> List[LayoutResult]:\n        layout_results = []\n        for page in pages:\n            layout_results.append(\n                LayoutResult(\n                    image_bbox=page.polygon.bbox,\n                    bboxes=[\n                        LayoutBox(\n                            label=self.force_layout_block,\n                            position=0,\n                            top_k={self.force_layout_block: 1},\n                            polygon=page.polygon.polygon,\n                        ),\n                    ],\n                    sliced=False,\n                )\n            )\n        return layout_results\n\n    def surya_layout(self, pages: List[PageGroup]) -> List[LayoutResult]:\n        self.layout_model.disable_tqdm = self.disable_tqdm\n        layout_results = self.layout_model(\n            [p.get_image(highres=False) for p in pages],\n            batch_size=int(self.get_batch_size()),\n        )\n        return layout_results\n\n    def expand_layout_blocks(self, document: Document):\n        for page in document.pages:\n            # Collect all blocks on this page as PolygonBox for easy access\n            page_blocks = [document.get_block(bid) for bid in page.structure]\n            page_size = page.polygon.size\n\n            for block_id in page.structure:\n                block = document.get_block(block_id)\n                if block.block_type in self.expand_block_types:\n                    other_blocks = [b for b in page_blocks if b != block]\n                    if not other_blocks:\n                        block.polygon = block.polygon.expand(\n                            self.max_expand_frac, self.max_expand_frac\n                        ).fit_to_bounds((0, 0, *page_size))\n                        continue\n\n                    min_gap = min(\n                        block.polygon.minimum_gap(other.polygon)\n                        for other in other_blocks\n                    )\n                    if min_gap <= 0:\n                        continue\n\n                    x_expand_frac = (\n                        min_gap / block.polygon.width if block.polygon.width > 0 else 0\n                    )\n                    y_expand_frac = (\n                        min_gap / block.polygon.height\n                        if block.polygon.height > 0\n                        else 0\n                    )\n\n                    block.polygon = block.polygon.expand(\n                        min(self.max_expand_frac, x_expand_frac),\n                        min(self.max_expand_frac, y_expand_frac),\n                    ).fit_to_bounds((0, 0, *page_size))\n\n    def add_blocks_to_pages(\n        self, pages: List[PageGroup], layout_results: List[LayoutResult]\n    ):\n        for page, layout_result in zip(pages, layout_results):\n            layout_page_size = PolygonBox.from_bbox(layout_result.image_bbox).size\n            provider_page_size = page.polygon.size\n            page.layout_sliced = (\n                layout_result.sliced\n            )  # This indicates if the page was sliced by the layout model\n            for bbox in sorted(layout_result.bboxes, key=lambda x: x.position):\n                block_cls = get_block_class(BlockTypes[bbox.label])\n                layout_block = page.add_block(\n                    block_cls, PolygonBox(polygon=bbox.polygon)\n                )\n                layout_block.polygon = layout_block.polygon.rescale(\n                    layout_page_size, provider_page_size\n                ).fit_to_bounds((0, 0, *provider_page_size))\n                layout_block.top_k = {\n                    BlockTypes[label]: prob\n                    for (label, prob) in bbox.top_k.items()\n                    if label in BlockTypes.__members__\n                }\n                page.add_structure(layout_block)\n\n            # Ensure page has non-empty structure\n            if page.structure is None:\n                page.structure = []\n\n            # Ensure page has non-empty children\n            if page.children is None:\n                page.children = []\n"
  },
  {
    "path": "marker/builders/line.py",
    "content": "from copy import deepcopy\nfrom typing import Annotated, List, Tuple\n\nimport numpy as np\nfrom PIL import Image\nimport cv2\n\nfrom surya.detection import DetectionPredictor\nfrom surya.ocr_error import OCRErrorPredictor\n\nfrom marker.builders import BaseBuilder\nfrom marker.providers import ProviderOutput, ProviderPageLines\nfrom marker.providers.pdf import PdfProvider\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\nfrom marker.schema.groups.page import PageGroup\nfrom marker.schema.polygon import PolygonBox\nfrom marker.schema.registry import get_block_class\nfrom marker.schema.text.line import Line\nfrom marker.settings import settings\nfrom marker.util import matrix_intersection_area, sort_text_lines\nfrom marker.utils.image import is_blank_image\n\n\nclass LineBuilder(BaseBuilder):\n    \"\"\"\n    A builder for detecting text lines. Merges the detected lines with the lines from the provider\n    \"\"\"\n\n    detection_batch_size: Annotated[\n        int,\n        \"The batch size to use for the detection model.\",\n        \"Default is None, which will use the default batch size for the model.\",\n    ] = None\n    ocr_error_batch_size: Annotated[\n        int,\n        \"The batch size to use for the ocr error detection model.\",\n        \"Default is None, which will use the default batch size for the model.\",\n    ] = None\n    layout_coverage_min_lines: Annotated[\n        int,\n        \"The minimum number of PdfProvider lines that must be covered by the layout model\",\n        \"to consider the lines from the PdfProvider valid.\",\n    ] = 1\n    layout_coverage_threshold: Annotated[\n        float,\n        \"The minimum coverage ratio required for the layout model to consider\",\n        \"the lines from the PdfProvider valid.\",\n    ] = 0.25\n    min_document_ocr_threshold: Annotated[\n        float,\n        \"If less pages than this threshold are good, OCR will happen in the document.  Otherwise it will not.\",\n    ] = 0.85\n    provider_line_provider_line_min_overlap_pct: Annotated[\n        float,\n        \"The percentage of a provider line that has to be covered by a detected line\",\n    ] = 0.1\n    excluded_for_coverage: Annotated[\n        Tuple[BlockTypes],\n        \"A list of block types to exclude from the layout coverage check.\",\n    ] = (\n        BlockTypes.Figure,\n        BlockTypes.Picture,\n        BlockTypes.Table,\n        BlockTypes.FigureGroup,\n        BlockTypes.TableGroup,\n        BlockTypes.PictureGroup,\n    )\n    ocr_remove_blocks: Tuple[BlockTypes, ...] = (\n        BlockTypes.Table,\n        BlockTypes.Form,\n        BlockTypes.TableOfContents,\n    )\n    disable_tqdm: Annotated[\n        bool,\n        \"Disable tqdm progress bars.\",\n    ] = False\n    disable_ocr: Annotated[\n        bool,\n        \"Disable OCR for the document. This will only use the lines from the provider.\",\n    ] = False\n    keep_chars: Annotated[bool, \"Keep individual characters.\"] = False\n    detection_line_min_confidence: Annotated[float, \"Minimum confidence for a detected line to be included\"] = 0.8\n\n    def __init__(\n        self,\n        detection_model: DetectionPredictor,\n        ocr_error_model: OCRErrorPredictor,\n        config=None,\n    ):\n        super().__init__(config)\n\n        self.detection_model = detection_model\n        self.ocr_error_model = ocr_error_model\n\n    def __call__(self, document: Document, provider: PdfProvider):\n        # Disable inline detection for documents where layout model doesn't detect any equations\n        # Also disable if we won't use the inline detections (if we aren't using the LLM)\n        provider_lines, ocr_lines = self.get_all_lines(document, provider)\n        self.merge_blocks(document, provider_lines, ocr_lines)\n\n    def get_detection_batch_size(self):\n        if self.detection_batch_size is not None:\n            return self.detection_batch_size\n        elif settings.TORCH_DEVICE_MODEL == \"cuda\":\n            return 10\n        return 4\n\n    def get_ocr_error_batch_size(self):\n        if self.ocr_error_batch_size is not None:\n            return self.ocr_error_batch_size\n        elif settings.TORCH_DEVICE_MODEL == \"cuda\":\n            return 14\n        return 4\n\n    def get_detection_results(\n        self, page_images: List[Image.Image], run_detection: List[bool]\n    ):\n        self.detection_model.disable_tqdm = self.disable_tqdm\n        page_detection_results = self.detection_model(\n            images=page_images, batch_size=self.get_detection_batch_size()\n        )\n\n        assert len(page_detection_results) == sum(run_detection)\n        detection_results = []\n        idx = 0\n        for good in run_detection:\n            if good:\n                detection_results.append(page_detection_results[idx])\n                idx += 1\n            else:\n                detection_results.append(None)\n        assert idx == len(page_images)\n\n        assert len(run_detection) == len(detection_results)\n        return detection_results\n\n    def get_all_lines(self, document: Document, provider: PdfProvider):\n        ocr_error_detection_results = self.ocr_error_detection(\n            document.pages, provider.page_lines\n        )\n\n        boxes_to_ocr = {page.page_id: [] for page in document.pages}\n        page_lines = {page.page_id: [] for page in document.pages}\n\n        LineClass: Line = get_block_class(BlockTypes.Line)\n\n        layout_good = []\n        for document_page, ocr_error_detection_label in zip(\n            document.pages, ocr_error_detection_results.labels\n        ):\n            document_page.ocr_errors_detected = ocr_error_detection_label == \"bad\"\n            provider_lines: List[ProviderOutput] = provider.page_lines.get(\n                document_page.page_id, []\n            )\n            provider_lines_good = all(\n                [\n                    bool(provider_lines),\n                    not document_page.ocr_errors_detected,\n                    self.check_layout_coverage(document_page, provider_lines),\n                    self.check_line_overlaps(\n                        document_page, provider_lines\n                    ),  # Ensure provider lines don't overflow the page or intersect\n                ]\n            )\n            if self.disable_ocr:\n                provider_lines_good = True\n\n            layout_good.append(provider_lines_good)\n\n        run_detection = [not good for good in layout_good]\n        page_images = [\n            page.get_image(highres=False, remove_blocks=self.ocr_remove_blocks)\n            for page, bad in zip(document.pages, run_detection)\n            if bad\n        ]\n\n        # Note: run_detection is longer than page_images, since it has a value for each page, not just good ones\n        # Detection results and inline detection results are for every page (we use run_detection to make the list full length)\n        detection_results = self.get_detection_results(page_images, run_detection)\n\n        assert len(detection_results) == len(layout_good) == len(document.pages)\n        for document_page, detection_result, provider_lines_good in zip(\n            document.pages, detection_results, layout_good\n        ):\n            provider_lines: List[ProviderOutput] = provider.page_lines.get(\n                document_page.page_id, []\n            )\n\n            # Setup detection results\n            detection_boxes = []\n            if detection_result:\n                detection_boxes = [\n                    PolygonBox(polygon=box.polygon) for box in detection_result.bboxes if box.confidence > self.detection_line_min_confidence\n                ]\n\n            detection_boxes = sort_text_lines(detection_boxes)\n\n            if provider_lines_good:\n                document_page.text_extraction_method = \"pdftext\"\n\n                # Mark extraction method as pdftext, since all lines are good\n                for provider_line in provider_lines:\n                    provider_line.line.text_extraction_method = \"pdftext\"\n\n                page_lines[document_page.page_id] = provider_lines\n            else:\n                document_page.text_extraction_method = \"surya\"\n                boxes_to_ocr[document_page.page_id].extend(detection_boxes)\n\n        # Dummy lines to merge into the document - Contains no spans, will be filled in later by OCRBuilder\n        ocr_lines = {document_page.page_id: [] for document_page in document.pages}\n        for page_id, page_ocr_boxes in boxes_to_ocr.items():\n            page_size = provider.get_page_bbox(page_id).size\n            image_size = document.get_page(page_id).get_image(highres=False).size\n            for box_to_ocr in page_ocr_boxes:\n                line_polygon = PolygonBox(polygon=box_to_ocr.polygon).rescale(\n                    image_size, page_size\n                )\n                ocr_lines[page_id].append(\n                    ProviderOutput(\n                        line=LineClass(\n                            polygon=line_polygon,\n                            page_id=page_id,\n                            text_extraction_method=\"surya\",\n                        ),\n                        spans=[],\n                        chars=[],\n                    )\n                )\n\n        return page_lines, ocr_lines\n\n    def ocr_error_detection(\n        self, pages: List[PageGroup], provider_page_lines: ProviderPageLines\n    ):\n        page_texts = []\n        for document_page in pages:\n            provider_lines = provider_page_lines.get(document_page.page_id, [])\n            page_text = \"\\n\".join(\n                \" \".join(s.text for s in line.spans) for line in provider_lines\n            )\n            page_texts.append(page_text)\n\n        self.ocr_error_model.disable_tqdm = self.disable_tqdm\n        ocr_error_detection_results = self.ocr_error_model(\n            page_texts, batch_size=int(self.get_ocr_error_batch_size())\n        )\n        return ocr_error_detection_results\n\n    def check_line_overlaps(\n        self, document_page: PageGroup, provider_lines: List[ProviderOutput]\n    ) -> bool:\n        provider_bboxes = [line.line.polygon.bbox for line in provider_lines]\n        # Add a small margin to account for minor overflows\n        page_bbox = document_page.polygon.expand(5, 5).bbox\n\n        for bbox in provider_bboxes:\n            if bbox[0] < page_bbox[0]:\n                return False\n            if bbox[1] < page_bbox[1]:\n                return False\n            if bbox[2] > page_bbox[2]:\n                return False\n            if bbox[3] > page_bbox[3]:\n                return False\n\n        intersection_matrix = matrix_intersection_area(provider_bboxes, provider_bboxes)\n        for i, line in enumerate(provider_lines):\n            intersect_counts = np.sum(\n                intersection_matrix[i]\n                > self.provider_line_provider_line_min_overlap_pct\n            )\n\n            # There should be one intersection with itself\n            if intersect_counts > 2:\n                return False\n\n        return True\n\n    def check_layout_coverage(\n        self,\n        document_page: PageGroup,\n        provider_lines: List[ProviderOutput],\n    ):\n        covered_blocks = 0\n        total_blocks = 0\n        large_text_blocks = 0\n\n        layout_blocks = [\n            document_page.get_block(block) for block in document_page.structure\n        ]\n        layout_blocks = [\n            b for b in layout_blocks if b.block_type not in self.excluded_for_coverage\n        ]\n\n        layout_bboxes = [block.polygon.bbox for block in layout_blocks]\n        provider_bboxes = [line.line.polygon.bbox for line in provider_lines]\n\n        if len(layout_bboxes) == 0:\n            return True\n\n        if len(provider_bboxes) == 0:\n            return False\n\n        intersection_matrix = matrix_intersection_area(layout_bboxes, provider_bboxes)\n\n        for idx, layout_block in enumerate(layout_blocks):\n            total_blocks += 1\n            intersecting_lines = np.count_nonzero(intersection_matrix[idx] > 0)\n\n            if intersecting_lines >= self.layout_coverage_min_lines:\n                covered_blocks += 1\n\n            if (\n                layout_block.polygon.intersection_pct(document_page.polygon) > 0.8\n                and layout_block.block_type == BlockTypes.Text\n            ):\n                large_text_blocks += 1\n\n        coverage_ratio = covered_blocks / total_blocks if total_blocks > 0 else 1\n        text_okay = coverage_ratio >= self.layout_coverage_threshold\n\n        # Model will sometimes say there is a single block of text on the page when it is blank\n        if not text_okay and (total_blocks == 1 and large_text_blocks == 1):\n            text_okay = True\n        return text_okay\n\n    def filter_blank_lines(self, page: PageGroup, lines: List[ProviderOutput]):\n        page_size = (page.polygon.width, page.polygon.height)\n        page_image = page.get_image()\n        image_size = page_image.size\n\n        good_lines = []\n        for line in lines:\n            line_polygon_rescaled = deepcopy(line.line.polygon).rescale(\n                page_size, image_size\n            )\n            line_bbox = line_polygon_rescaled.fit_to_bounds((0, 0, *image_size)).bbox\n\n            if not is_blank_image(page_image.crop(line_bbox)):\n                good_lines.append(line)\n\n        return good_lines\n\n    def merge_blocks(\n        self,\n        document: Document,\n        page_provider_lines: ProviderPageLines,\n        page_ocr_lines: ProviderPageLines,\n    ):\n        for document_page in document.pages:\n            provider_lines: List[ProviderOutput] = page_provider_lines[\n                document_page.page_id\n            ]\n            ocr_lines: List[ProviderOutput] = page_ocr_lines[document_page.page_id]\n\n            # Only one or the other will have lines\n            # Filter out blank lines which come from bad provider boxes, or invisible text\n            merged_lines = self.filter_blank_lines(\n                document_page, provider_lines + ocr_lines\n            )\n\n            # Text extraction method is overridden later for OCRed documents\n            document_page.merge_blocks(\n                merged_lines,\n                text_extraction_method=\"pdftext\" if provider_lines else \"surya\",\n                keep_chars=self.keep_chars,\n            )\n"
  },
  {
    "path": "marker/builders/ocr.py",
    "content": "import copy\nfrom typing import Annotated, List\n\nfrom ftfy import fix_text\nfrom PIL import Image\nfrom surya.common.surya.schema import TaskNames\nfrom surya.recognition import RecognitionPredictor, OCRResult, TextChar\n\nfrom marker.builders import BaseBuilder\nfrom marker.providers.pdf import PdfProvider\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import BlockId\nfrom marker.schema.blocks.base import Block\nfrom marker.schema.document import Document\nfrom marker.schema.groups import PageGroup\nfrom marker.schema.registry import get_block_class\nfrom marker.schema.text.char import Char\nfrom marker.schema.text.line import Line\nfrom marker.schema.text.span import Span\nfrom marker.settings import settings\nfrom marker.schema.polygon import PolygonBox\nfrom marker.util import get_opening_tag_type, get_closing_tag_type\n\n\nclass OcrBuilder(BaseBuilder):\n    \"\"\"\n    A builder for performing OCR on PDF pages and merging the results into the document.\n    \"\"\"\n\n    recognition_batch_size: Annotated[\n        int,\n        \"The batch size to use for the recognition model.\",\n        \"Default is None, which will use the default batch size for the model.\",\n    ] = None\n    disable_tqdm: Annotated[\n        bool,\n        \"Disable tqdm progress bars.\",\n    ] = False\n    # We can skip tables here, since the TableProcessor will re-OCR\n    skip_ocr_blocks: Annotated[\n        List[BlockTypes],\n        \"Blocktypes to skip OCRing by the model in this stage.\"\n        \"By default, this avoids recognizing lines inside equations/tables (handled later), figures, and pictures\",\n        \"Note that we **do not** have to skip group types, since they are not built by this point\"\n    ] = [\n        BlockTypes.Equation,\n        BlockTypes.Figure,\n        BlockTypes.Picture,\n        BlockTypes.Table,\n        BlockTypes.Form,\n        BlockTypes.TableOfContents,\n    ]\n    full_ocr_block_types: Annotated[\n        List[BlockTypes],\n        \"Blocktypes for which OCR is done at the **block level** instead of line-level.\"\n        \"This feature is still in beta, and should be used sparingly.\"\n    ] = [\n        BlockTypes.SectionHeader,\n        BlockTypes.ListItem,\n        BlockTypes.Footnote,\n        BlockTypes.Text,\n        BlockTypes.TextInlineMath,\n        BlockTypes.Code,\n        BlockTypes.Caption,\n    ]\n    ocr_task_name: Annotated[\n        str,\n        \"The OCR mode to use, see surya for details.  Set to 'ocr_without_boxes' for potentially better performance, at the expense of formatting.\",\n    ] = TaskNames.ocr_with_boxes\n    keep_chars: Annotated[bool, \"Keep individual characters.\"] = False\n    disable_ocr_math: Annotated[bool, \"Disable inline math recognition in OCR\"] = False\n    drop_repeated_text: Annotated[bool, \"Drop repeated text in OCR results.\"] = False\n    block_mode_intersection_thresh: Annotated[float, \"Max intersection before falling back to line mode\"] = 0.5\n    block_mode_max_lines: Annotated[int, \"Max lines within a block before falling back to line mode\"] = 15\n    block_mode_max_height_frac: Annotated[float, \"Max height of a block as a percentage of the page before falling back to line mode\"] = 0.5\n\n    def __init__(self, recognition_model: RecognitionPredictor, config=None):\n        super().__init__(config)\n\n        self.recognition_model = recognition_model\n\n    def __call__(self, document: Document, provider: PdfProvider):\n        pages_to_ocr = [page for page in document.pages if page.text_extraction_method == 'surya']\n        ocr_page_images, block_polygons, block_ids, block_original_texts = (\n            self.get_ocr_images_polygons_ids(document, pages_to_ocr, provider)\n        )\n        self.ocr_extraction(\n            document,\n            pages_to_ocr,\n            ocr_page_images,\n            block_polygons,\n            block_ids,\n            block_original_texts,\n        )\n\n    def get_recognition_batch_size(self):\n        if self.recognition_batch_size is not None:\n            return self.recognition_batch_size\n        elif settings.TORCH_DEVICE_MODEL == \"cuda\":\n            return 48\n        elif settings.TORCH_DEVICE_MODEL == \"mps\":\n            return 16\n        return 32\n\n    def select_ocr_blocks_by_mode(\n        self, page: PageGroup, block: Block, block_lines: List[Block], page_max_intersection_pct: float\n    ):\n        if any([\n            page_max_intersection_pct > self.block_mode_intersection_thresh,\n            block.block_type not in self.full_ocr_block_types,\n            len(block_lines) > self.block_mode_max_lines,\n            block.polygon.height >= self.block_mode_max_height_frac * page.polygon.height\n        ]):\n            # Line mode\n            return block_lines\n\n        # Block mode\n        return [block]\n\n    def get_ocr_images_polygons_ids(\n        self, document: Document, pages: List[PageGroup], provider: PdfProvider\n    ):\n        highres_images, highres_polys, block_ids, block_original_texts = [], [], [], []\n        for document_page in pages:\n            page_highres_image = document_page.get_image(highres=True)\n            page_highres_polys = []\n            page_block_ids = []\n            page_block_original_texts = []\n\n            page_size = provider.get_page_bbox(document_page.page_id).size\n            image_size = page_highres_image.size\n            max_intersection_pct = document_page.compute_max_structure_block_intersection_pct()\n            for block in document_page.structure_blocks(document):\n                if block.block_type in self.skip_ocr_blocks:\n                    # Skip OCR\n                    continue\n\n                block_lines = block.contained_blocks(document, [BlockTypes.Line])\n                blocks_to_ocr = self.select_ocr_blocks_by_mode(document_page, block, block_lines, max_intersection_pct)\n\n                block.text_extraction_method = \"surya\"\n                for block in blocks_to_ocr:\n                    # Fit the polygon to image bounds since PIL image crop expands by default which might create bad images for the OCR model.\n                    block_polygon_rescaled = (\n                        copy.deepcopy(block.polygon)\n                        .rescale(page_size, image_size)\n                        .fit_to_bounds((0, 0, *image_size))\n                    )\n                    block_bbox_rescaled = block_polygon_rescaled.polygon\n                    block_bbox_rescaled = [\n                        [int(x) for x in point] for point in block_bbox_rescaled\n                    ]\n\n                    page_highres_polys.append(block_bbox_rescaled)\n                    page_block_ids.append(block.id)\n                    page_block_original_texts.append(\"\")\n\n            highres_images.append(page_highres_image)\n            highres_polys.append(page_highres_polys)\n            block_ids.append(page_block_ids)\n            block_original_texts.append(page_block_original_texts)\n\n        return highres_images, highres_polys, block_ids, block_original_texts\n\n    def ocr_extraction(\n        self,\n        document: Document,\n        pages: List[PageGroup],\n        images: List[any],\n        block_polygons: List[List[List[List[int]]]],  # polygons\n        block_ids: List[List[BlockId]],\n        block_original_texts: List[List[str]],\n    ):\n        if sum(len(b) for b in block_polygons) == 0:\n            return\n\n        self.recognition_model.disable_tqdm = self.disable_tqdm\n        recognition_results: List[OCRResult] = self.recognition_model(\n            images=images,\n            task_names=[self.ocr_task_name] * len(images),\n            polygons=block_polygons,\n            input_text=block_original_texts,\n            recognition_batch_size=int(self.get_recognition_batch_size()),\n            sort_lines=False,\n            math_mode=not self.disable_ocr_math,\n            drop_repeated_text=self.drop_repeated_text,\n            max_sliding_window=2148,\n            max_tokens=2048\n        )\n\n        assert len(recognition_results) == len(images) == len(pages) == len(block_ids), (\n            f\"Mismatch in OCR lengths: {len(recognition_results)}, {len(images)}, {len(pages)}, {len(block_ids)}\"\n        )\n        for document_page, page_recognition_result, page_block_ids, image in zip(\n            pages, recognition_results, block_ids, images\n        ):\n            for block_id, block_ocr_result in zip(\n                page_block_ids, page_recognition_result.text_lines\n            ):\n                if block_ocr_result.original_text_good:\n                    continue\n                if not fix_text(block_ocr_result.text):\n                    continue\n                \n                block = document_page.get_block(block_id)\n                # This is a nested list of spans, so multiple lines are supported\n                all_line_spans = self.spans_from_html_chars(\n                    block_ocr_result.chars, document_page, image\n                )\n                if block.block_type == BlockTypes.Line:\n                    # flatten all spans across lines\n                    flat_spans = [s for line_spans in all_line_spans for s in line_spans]\n                    self.replace_line_spans(document, document_page, block, flat_spans)\n                else:\n                    # Clear out any old lines. Mark as removed for the json ocr renderer\n                    for line in block.contained_blocks(document_page, block_types=[BlockTypes.Line]):\n                        line.removed = True\n                    block.structure = []\n\n                    for line_spans in all_line_spans:\n                        # TODO Replace this polygon with the polygon for each line, constructed from the spans\n                        # This needs the OCR model bbox predictions to improve first\n                        new_line = Line(\n                            polygon=block.polygon,\n                            page_id=block.page_id,\n                            text_extraction_method=\"surya\"\n                        )\n                        document_page.add_full_block(new_line)\n                        block.add_structure(new_line)\n                        self.replace_line_spans(document, document_page, new_line, line_spans)\n\n    # TODO Fix polygons when we cut the span into multiple spans\n    def link_and_break_span(self, span: Span, text: str, match_text, url: str):\n        before_text, _, after_text = text.partition(match_text)\n        before_span, after_span = None, None\n        if before_text:\n            before_span = copy.deepcopy(span)\n            before_span.structure = []  # Avoid duplicate characters\n            before_span.text = before_text\n        if after_text:\n            after_span = copy.deepcopy(span)\n            after_span.text = after_text\n            after_span.structure = []  # Avoid duplicate characters\n\n        match_span = copy.deepcopy(span)\n        match_span.text = match_text\n        match_span.url = url\n\n        return before_span, match_span, after_span\n\n    # Pull all refs from old spans and attempt to insert back into appropriate place in new spans\n    def replace_line_spans(\n        self, document: Document, page: PageGroup, line: Line, new_spans: List[Span]\n    ):\n        old_spans = line.contained_blocks(document, [BlockTypes.Span])\n        text_ref_matching = {span.text: span.url for span in old_spans if span.url}\n\n        # Insert refs into new spans, since the OCR model does not (cannot) generate these\n        final_new_spans = []\n        for span in new_spans:\n            # Use for copying attributes into new spans\n            original_span = copy.deepcopy(span)\n            remaining_text = span.text\n            while remaining_text:\n                matched = False\n                for match_text, url in text_ref_matching.items():\n                    if match_text in remaining_text:\n                        matched = True\n                        before, current, after = self.link_and_break_span(\n                            original_span, remaining_text, match_text, url\n                        )\n                        if before:\n                            final_new_spans.append(before)\n                        final_new_spans.append(current)\n                        if after:\n                            remaining_text = after.text\n                        else:\n                            remaining_text = \"\"  # No more text left\n                        # Prevent repeat matches\n                        del text_ref_matching[match_text]\n                        break\n                if not matched:\n                    remaining_span = copy.deepcopy(original_span)\n                    remaining_span.text = remaining_text\n                    final_new_spans.append(remaining_span)\n                    break\n\n        # Clear the old spans from the line\n        line.structure = []\n        for span in final_new_spans:\n            page.add_full_block(span)\n            line.structure.append(span.id)\n\n    def assign_chars(self, span: Span, current_chars: List[Char]):\n        if self.keep_chars:\n            span.structure = [c.id for c in current_chars]\n\n        return []\n\n    def store_char(self, char: Char, current_chars: List[Char], page: PageGroup):\n        if self.keep_chars:\n            current_chars.append(char)\n            page.add_full_block(char)\n\n    def spans_from_html_chars(\n        self, chars: List[TextChar], page: PageGroup, image: Image.Image\n    ) -> List[List[Span]]:\n        # Turn input characters from surya into spans - also store the raw characters\n        SpanClass: Span = get_block_class(BlockTypes.Span)\n        CharClass: Char = get_block_class(BlockTypes.Char)\n\n        all_line_spans = []\n        current_line_spans = []\n        formats = {\"plain\"}\n        current_span = None\n        current_chars = []\n        image_size = image.size\n\n        for idx, char in enumerate(chars):\n            char_box = PolygonBox(polygon=char.polygon).rescale(\n                image_size, page.polygon.size\n            )\n            marker_char = CharClass(\n                text=char.text,\n                idx=idx,\n                page_id=page.page_id,\n                polygon=char_box,\n            )\n\n            if char.text == \"<br>\":\n                if current_span:\n                    current_chars = self.assign_chars(current_span, current_chars)\n                    current_line_spans.append(current_span)\n                    current_span = None\n                if current_line_spans:\n                    current_line_spans[-1].text += \"\\n\"\n                    all_line_spans.append(current_line_spans)\n                    current_line_spans = []\n                continue\n\n            is_opening_tag, format = get_opening_tag_type(char.text)\n            if is_opening_tag and format not in formats:\n                formats.add(format)\n                if current_span:\n                    current_chars = self.assign_chars(current_span, current_chars)\n                    current_line_spans.append(current_span)\n                    current_span = None\n\n                if format == \"math\":\n                    current_span = SpanClass(\n                        text=\"\",\n                        formats=list(formats),\n                        page_id=page.page_id,\n                        polygon=char_box,\n                        minimum_position=0,\n                        maximum_position=0,\n                        font=\"Unknown\",\n                        font_weight=0,\n                        font_size=0,\n                    )\n                    self.store_char(marker_char, current_chars, page)\n                continue\n\n            is_closing_tag, format = get_closing_tag_type(char.text)\n            if is_closing_tag:\n                # Useful since the OCR model sometimes returns closing tags without an opening tag\n                try:\n                    formats.remove(format)\n                except Exception:\n                    continue\n                if current_span:\n                    current_chars = self.assign_chars(current_span, current_chars)\n                    current_line_spans.append(current_span)\n                    current_span = None\n                continue\n\n            if not current_span:\n                current_span = SpanClass(\n                    text=fix_text(char.text),\n                    formats=list(formats),\n                    page_id=page.page_id,\n                    polygon=char_box,\n                    minimum_position=0,\n                    maximum_position=0,\n                    font=\"Unknown\",\n                    font_weight=0,\n                    font_size=0,\n                )\n                self.store_char(marker_char, current_chars, page)\n                continue\n\n            current_span.text = fix_text(current_span.text + char.text)\n            self.store_char(marker_char, current_chars, page)\n\n            # Tokens inside a math span don't have valid boxes, so we skip the merging\n            if \"math\" not in formats:\n                current_span.polygon = current_span.polygon.merge([char_box])\n\n        # Add the last span to the list\n        if current_span:\n            self.assign_chars(current_span, current_chars)\n            current_line_spans.append(current_span)\n\n        # flush last line\n        if current_line_spans:\n            current_line_spans[-1].text += \"\\n\"\n            all_line_spans.append(current_line_spans)\n\n        return all_line_spans\n"
  },
  {
    "path": "marker/builders/structure.py",
    "content": "from typing import Annotated\n\nfrom marker.builders import BaseBuilder\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Text\nfrom marker.schema.document import Document\nfrom marker.schema.groups import ListGroup\nfrom marker.schema.groups.page import PageGroup\nfrom marker.schema.registry import get_block_class\n\n\nclass StructureBuilder(BaseBuilder):\n    \"\"\"\n    A builder for grouping blocks together based on their structure.\n    \"\"\"\n    gap_threshold: Annotated[\n        float,\n        \"The minimum gap between blocks to consider them part of the same group.\",\n    ] = 0.05\n    list_gap_threshold: Annotated[\n        float,\n        \"The minimum gap between list items to consider them part of the same group.\",\n    ] = 0.1\n\n    def __init__(self, config=None):\n        super().__init__(config)\n\n    def __call__(self, document: Document):\n        for page in document.pages:\n            self.group_caption_blocks(page)\n            self.group_lists(page)\n            self.unmark_lists(page)\n\n    def group_caption_blocks(self, page: PageGroup):\n        gap_threshold_px = self.gap_threshold * page.polygon.height\n        static_page_structure = page.structure.copy()\n        remove_ids = list()\n\n        for i, block_id in enumerate(static_page_structure):\n            block = page.get_block(block_id)\n            if block.block_type not in [BlockTypes.Table, BlockTypes.Figure, BlockTypes.Picture]:\n                continue\n\n            if block.id in remove_ids:\n                continue\n\n            block_structure = [block_id]\n            selected_polygons = [block.polygon]\n            caption_types = [BlockTypes.Caption, BlockTypes.Footnote]\n\n            prev_block = page.get_prev_block(block)\n            next_block = page.get_next_block(block)\n\n            if prev_block and \\\n                prev_block.block_type in caption_types and \\\n                prev_block.polygon.minimum_gap(block.polygon) < gap_threshold_px and \\\n                    prev_block.id not in remove_ids:\n                block_structure.insert(0, prev_block.id)\n                selected_polygons.append(prev_block.polygon)\n\n            if next_block and \\\n                    next_block.block_type in caption_types and \\\n                    next_block.polygon.minimum_gap(block.polygon) < gap_threshold_px:\n                block_structure.append(next_block.id)\n                selected_polygons.append(next_block.polygon)\n\n            if len(block_structure) > 1:\n                # Create a merged block\n                new_block_cls = get_block_class(BlockTypes[block.block_type.name + \"Group\"])\n                new_polygon = block.polygon.merge(selected_polygons)\n                group_block = page.add_block(new_block_cls, new_polygon)\n                group_block.structure = block_structure\n\n                # Update the structure of the page to reflect the new block\n                page.update_structure_item(block_id, group_block.id)\n                remove_ids.extend(block_structure)\n        page.remove_structure_items(remove_ids)\n\n    def group_lists(self, page: PageGroup):\n        gap_threshold_px = self.list_gap_threshold * page.polygon.height\n        static_page_structure = page.structure.copy()\n        remove_ids = list()\n        for i, block_id in enumerate(static_page_structure):\n            block = page.get_block(block_id)\n            if block.block_type not in [BlockTypes.ListItem]:\n                continue\n\n            if block.id in remove_ids:\n                continue\n\n            block_structure = [block_id]\n            selected_polygons = [block.polygon]\n\n            for j, next_block_id in enumerate(page.structure[i + 1:]):\n                next_block = page.get_block(next_block_id)\n                if all([\n                    next_block.block_type == BlockTypes.ListItem,\n                    next_block.polygon.minimum_gap(selected_polygons[-1]) < gap_threshold_px\n                ]):\n                    block_structure.append(next_block_id)\n                    selected_polygons.append(next_block.polygon)\n                else:\n                    break\n\n            if len(block_structure) > 1:\n                new_polygon = block.polygon.merge(selected_polygons)\n                group_block = page.add_block(ListGroup, new_polygon)\n                group_block.structure = block_structure\n\n                # Update the structure of the page to reflect the new block\n                page.update_structure_item(block_id, group_block.id)\n                remove_ids.extend(block_structure)\n\n        page.remove_structure_items(remove_ids)\n\n    def unmark_lists(self, page: PageGroup):\n        # If lists aren't grouped, unmark them as list items\n        for block_id in page.structure:\n            block = page.get_block(block_id)\n            if block.block_type == BlockTypes.ListItem:\n                generated_block = Text(\n                    polygon=block.polygon,\n                    page_id=block.page_id,\n                    structure=block.structure,\n                )\n                page.replace_block(block, generated_block)\n"
  },
  {
    "path": "marker/config/__init__.py",
    "content": ""
  },
  {
    "path": "marker/config/crawler.py",
    "content": "import importlib\nimport inspect\nimport pkgutil\nfrom functools import cached_property\nfrom typing import Annotated, Dict, Set, Type, get_args, get_origin\n\nfrom marker.builders import BaseBuilder\nfrom marker.converters import BaseConverter\nfrom marker.extractors import BaseExtractor\nfrom marker.processors import BaseProcessor\nfrom marker.providers import BaseProvider\nfrom marker.renderers import BaseRenderer\nfrom marker.services import BaseService\n\n\nclass ConfigCrawler:\n    def __init__(\n        self,\n        base_classes=(\n            BaseBuilder,\n            BaseProcessor,\n            BaseConverter,\n            BaseProvider,\n            BaseRenderer,\n            BaseService,\n            BaseExtractor,\n        ),\n    ):\n        self.base_classes = base_classes\n        self.class_config_map: Dict[str, dict] = {}\n\n        self._crawl_config()\n\n    def _crawl_config(self):\n        for base in self.base_classes:\n            base_class_type = base.__name__.removeprefix(\"Base\")\n            self.class_config_map.setdefault(base_class_type, {})\n            for class_name, class_type in self._find_subclasses(base).items():\n                if class_name.startswith(\"Base\"):\n                    continue\n\n                self.class_config_map[base_class_type].setdefault(\n                    class_name, {\"class_type\": class_type, \"config\": {}}\n                )\n                for attr, attr_type in self._gather_super_annotations(\n                    class_type\n                ).items():\n                    default = getattr(class_type, attr)\n                    metadata = (f\"Default is {default}.\",)\n\n                    if get_origin(attr_type) is Annotated:\n                        if any(\"Default\" in desc for desc in attr_type.__metadata__):\n                            metadata = attr_type.__metadata__\n                        else:\n                            metadata = attr_type.__metadata__ + metadata\n                        attr_type = get_args(attr_type)[0]\n\n                    formatted_type = self._format_type(attr_type)\n                    self.class_config_map[base_class_type][class_name][\"config\"][\n                        attr\n                    ] = (attr_type, formatted_type, default, metadata)\n\n    @staticmethod\n    def _gather_super_annotations(cls: Type) -> Dict[str, Type]:\n        \"\"\"\n        Collect all annotated attributes from `cls` and its superclasses, bottom-up.\n        Subclass attributes overwrite superclass attributes with the same name.\n        \"\"\"\n        # We'll walk the MRO from base -> derived so subclass attributes overwrite\n        # the same attribute name from superclasses.\n        annotations = {}\n        for base in reversed(cls.__mro__):\n            if base is object:\n                continue\n            if hasattr(base, \"__annotations__\"):\n                for name, annotation in base.__annotations__.items():\n                    annotations[name] = annotation\n        return annotations\n\n    @cached_property\n    def attr_counts(self) -> Dict[str, int]:\n        counts: Dict[str, int] = {}\n        for base_type_dict in self.class_config_map.values():\n            for class_map in base_type_dict.values():\n                for attr in class_map[\"config\"].keys():\n                    counts[attr] = counts.get(attr, 0) + 1\n        return counts\n\n    @cached_property\n    def attr_set(self) -> Set[str]:\n        attr_set: Set[str] = set()\n        for base_type_dict in self.class_config_map.values():\n            for class_name, class_map in base_type_dict.items():\n                for attr in class_map[\"config\"].keys():\n                    attr_set.add(attr)\n                    attr_set.add(f\"{class_name}_{attr}\")\n        return attr_set\n\n    def _find_subclasses(self, base_class):\n        subclasses = {}\n        module_name = base_class.__module__\n        package = importlib.import_module(module_name)\n        if hasattr(package, \"__path__\"):\n            for _, module_name, _ in pkgutil.walk_packages(\n                package.__path__, module_name + \".\"\n            ):\n                try:\n                    module = importlib.import_module(module_name)\n                    for name, obj in inspect.getmembers(module, inspect.isclass):\n                        if issubclass(obj, base_class) and obj is not base_class:\n                            subclasses[name] = obj\n                except ImportError:\n                    pass\n        return subclasses\n\n    def _format_type(self, t: Type) -> str:\n        \"\"\"Format a typing type like Optional[int] into a readable string.\"\"\"\n\n        if get_origin(t):  # Handle Optional and types with origins separately\n            return f\"{t}\".removeprefix(\"typing.\")\n        else:  # Regular types like int, str\n            return t.__name__\n\n\ncrawler = ConfigCrawler()\n"
  },
  {
    "path": "marker/config/parser.py",
    "content": "import json\nimport os\nfrom typing import Dict\n\nimport click\n\nfrom marker.converters.pdf import PdfConverter\nfrom marker.logger import get_logger\nfrom marker.renderers.chunk import ChunkRenderer\nfrom marker.renderers.html import HTMLRenderer\nfrom marker.renderers.json import JSONRenderer\nfrom marker.renderers.markdown import MarkdownRenderer\nfrom marker.settings import settings\nfrom marker.util import classes_to_strings, parse_range_str, strings_to_classes\n\nlogger = get_logger()\n\n\nclass ConfigParser:\n    def __init__(self, cli_options: dict):\n        self.cli_options = cli_options\n\n    @staticmethod\n    def common_options(fn):\n        fn = click.option(\n            \"--output_dir\",\n            type=click.Path(exists=False),\n            required=False,\n            default=settings.OUTPUT_DIR,\n            help=\"Directory to save output.\",\n        )(fn)\n        fn = click.option(\"--debug\", \"-d\", is_flag=True, help=\"Enable debug mode.\")(fn)\n        fn = click.option(\n            \"--output_format\",\n            type=click.Choice([\"markdown\", \"json\", \"html\", \"chunks\"]),\n            default=\"markdown\",\n            help=\"Format to output results in.\",\n        )(fn)\n        fn = click.option(\n            \"--processors\",\n            type=str,\n            default=None,\n            help=\"Comma separated list of processors to use.  Must use full module path.\",\n        )(fn)\n        fn = click.option(\n            \"--config_json\",\n            type=str,\n            default=None,\n            help=\"Path to JSON file with additional configuration.\",\n        )(fn)\n        fn = click.option(\n            \"--disable_multiprocessing\",\n            is_flag=True,\n            default=False,\n            help=\"Disable multiprocessing.\",\n        )(fn)\n        fn = click.option(\n            \"--disable_image_extraction\",\n            is_flag=True,\n            default=False,\n            help=\"Disable image extraction.\",\n        )(fn)\n        # these are options that need a list transformation, i.e splitting/parsing a string\n        fn = click.option(\n            \"--page_range\",\n            type=str,\n            default=None,\n            help=\"Page range to convert, specify comma separated page numbers or ranges.  Example: 0,5-10,20\",\n        )(fn)\n\n        # we put common options here\n        fn = click.option(\n            \"--converter_cls\",\n            type=str,\n            default=None,\n            help=\"Converter class to use.  Defaults to PDF converter.\",\n        )(fn)\n        fn = click.option(\n            \"--llm_service\",\n            type=str,\n            default=None,\n            help=\"LLM service to use - should be full import path, like marker.services.gemini.GoogleGeminiService\",\n        )(fn)\n        return fn\n\n    def generate_config_dict(self) -> Dict[str, any]:\n        config = {}\n        output_dir = self.cli_options.get(\"output_dir\", settings.OUTPUT_DIR)\n        for k, v in self.cli_options.items():\n            if not v:\n                continue\n\n            match k:\n                case \"debug\":\n                    config[\"debug_pdf_images\"] = True\n                    config[\"debug_layout_images\"] = True\n                    config[\"debug_json\"] = True\n                    config[\"debug_data_folder\"] = output_dir\n                case \"page_range\":\n                    config[\"page_range\"] = parse_range_str(v)\n                case \"config_json\":\n                    with open(v, \"r\", encoding=\"utf-8\") as f:\n                        config.update(json.load(f))\n                case \"disable_multiprocessing\":\n                    config[\"pdftext_workers\"] = 1\n                case \"disable_image_extraction\":\n                    config[\"extract_images\"] = False\n                case _:\n                    config[k] = v\n\n        # Backward compatibility for google_api_key\n        if settings.GOOGLE_API_KEY:\n            config[\"gemini_api_key\"] = settings.GOOGLE_API_KEY\n\n        return config\n\n    def get_llm_service(self):\n        # Only return an LLM service when use_llm is enabled\n        if not self.cli_options.get(\"use_llm\", False):\n            return None\n\n        service_cls = self.cli_options.get(\"llm_service\", None)\n        if service_cls is None:\n            service_cls = \"marker.services.gemini.GoogleGeminiService\"\n        return service_cls\n\n    def get_renderer(self):\n        match self.cli_options[\"output_format\"]:\n            case \"json\":\n                r = JSONRenderer\n            case \"markdown\":\n                r = MarkdownRenderer\n            case \"html\":\n                r = HTMLRenderer\n            case \"chunks\":\n                r = ChunkRenderer\n            case _:\n                raise ValueError(\"Invalid output format\")\n        return classes_to_strings([r])[0]\n\n    def get_processors(self):\n        processors = self.cli_options.get(\"processors\", None)\n        if processors is not None:\n            processors = processors.split(\",\")\n            for p in processors:\n                try:\n                    strings_to_classes([p])\n                except Exception as e:\n                    logger.error(f\"Error loading processor: {p} with error: {e}\")\n                    raise\n\n        return processors\n\n    def get_converter_cls(self):\n        converter_cls = self.cli_options.get(\"converter_cls\", None)\n        if converter_cls is not None:\n            try:\n                return strings_to_classes([converter_cls])[0]\n            except Exception as e:\n                logger.error(\n                    f\"Error loading converter: {converter_cls} with error: {e}\"\n                )\n                raise\n\n        return PdfConverter\n\n    def get_output_folder(self, filepath: str):\n        output_dir = self.cli_options.get(\"output_dir\", settings.OUTPUT_DIR)\n        fname_base = os.path.splitext(os.path.basename(filepath))[0]\n        output_dir = os.path.join(output_dir, fname_base)\n        os.makedirs(output_dir, exist_ok=True)\n        return output_dir\n\n    def get_base_filename(self, filepath: str):\n        basename = os.path.basename(filepath)\n        return os.path.splitext(basename)[0]\n"
  },
  {
    "path": "marker/config/printer.py",
    "content": "from typing import Optional\n\nimport click\n\nfrom marker.config.crawler import crawler\n\n\nclass CustomClickPrinter(click.Command):\n    def parse_args(self, ctx, args):\n        display_help = \"config\" in args and \"--help\" in args\n        if display_help:\n            click.echo(\n                \"Here is a list of all the Builders, Processors, Converters, Providers and Renderers in Marker along with their attributes:\"\n            )\n\n        # Keep track of shared attributes and their types\n        shared_attrs = {}\n\n        # First pass: identify shared attributes and verify compatibility\n        for base_type, base_type_dict in crawler.class_config_map.items():\n            for class_name, class_map in base_type_dict.items():\n                for attr, (attr_type, formatted_type, default, metadata) in class_map[\n                    \"config\"\n                ].items():\n                    if attr not in shared_attrs:\n                        shared_attrs[attr] = {\n                            \"classes\": [],\n                            \"type\": attr_type,\n                            \"is_flag\": attr_type in [bool, Optional[bool]]\n                            and not default,\n                            \"metadata\": metadata,\n                            \"default\": default,\n                        }\n                    shared_attrs[attr][\"classes\"].append(class_name)\n\n        # These are the types of attrs that can be set from the command line\n        attr_types = [\n            str,\n            int,\n            float,\n            bool,\n            Optional[int],\n            Optional[float],\n            Optional[str],\n        ]\n\n        # Add shared attribute options first\n        for attr, info in shared_attrs.items():\n            if info[\"type\"] in attr_types:\n                ctx.command.params.append(\n                    click.Option(\n                        [\"--\" + attr],\n                        type=info[\"type\"],\n                        help=\" \".join(info[\"metadata\"])\n                        + f\" (Applies to: {', '.join(info['classes'])})\",\n                        default=None,  # This is important, or it sets all the default keys again in config\n                        is_flag=info[\"is_flag\"],\n                        flag_value=True if info[\"is_flag\"] else None,\n                    )\n                )\n\n        # Second pass: create class-specific options\n        for base_type, base_type_dict in crawler.class_config_map.items():\n            if display_help:\n                click.echo(f\"{base_type}s:\")\n            for class_name, class_map in base_type_dict.items():\n                if display_help and class_map[\"config\"]:\n                    click.echo(\n                        f\"\\n  {class_name}: {class_map['class_type'].__doc__ or ''}\"\n                    )\n                    click.echo(\" \" * 4 + \"Attributes:\")\n                for attr, (attr_type, formatted_type, default, metadata) in class_map[\n                    \"config\"\n                ].items():\n                    class_name_attr = class_name + \"_\" + attr\n\n                    if display_help:\n                        click.echo(\" \" * 8 + f\"{attr} ({formatted_type}):\")\n                        click.echo(\n                            \"\\n\".join([f\"{' ' * 12}\" + desc for desc in metadata])\n                        )\n\n                    if attr_type in attr_types:\n                        is_flag = attr_type in [bool, Optional[bool]] and not default\n\n                        # Only add class-specific options\n                        ctx.command.params.append(\n                            click.Option(\n                                [\"--\" + class_name_attr, class_name_attr],\n                                type=attr_type,\n                                help=\" \".join(metadata),\n                                is_flag=is_flag,\n                                default=None,  # This is important, or it sets all the default keys again in config\n                            )\n                        )\n\n        if display_help:\n            ctx.exit()\n\n        super().parse_args(ctx, args)\n"
  },
  {
    "path": "marker/converters/__init__.py",
    "content": "import inspect\nfrom typing import Optional, List, Type\n\nfrom pydantic import BaseModel\n\nfrom marker.processors import BaseProcessor\nfrom marker.processors.llm import BaseLLMSimpleBlockProcessor\nfrom marker.processors.llm.llm_meta import LLMSimpleBlockMetaProcessor\nfrom marker.util import assign_config, download_font\n\n\nclass BaseConverter:\n    def __init__(self, config: Optional[BaseModel | dict] = None):\n        assign_config(self, config)\n        self.config = config\n        self.llm_service = None\n\n        # Download render font, needed for some providers\n        download_font()\n\n    def __call__(self, *args, **kwargs):\n        raise NotImplementedError\n\n    def resolve_dependencies(self, cls):\n        init_signature = inspect.signature(cls.__init__)\n        parameters = init_signature.parameters\n\n        resolved_kwargs = {}\n        for param_name, param in parameters.items():\n            if param_name == 'self':\n                continue\n            elif param_name == 'config':\n                resolved_kwargs[param_name] = self.config\n            elif param.name in self.artifact_dict:\n                resolved_kwargs[param_name] = self.artifact_dict[param_name]\n            elif param.default != inspect.Parameter.empty:\n                resolved_kwargs[param_name] = param.default\n            else:\n                raise ValueError(f\"Cannot resolve dependency for parameter: {param_name}\")\n\n        return cls(**resolved_kwargs)\n\n    def initialize_processors(self, processor_cls_lst: List[Type[BaseProcessor]]) -> List[BaseProcessor]:\n        processors = []\n        for processor_cls in processor_cls_lst:\n            processors.append(self.resolve_dependencies(processor_cls))\n\n        simple_llm_processors = [p for p in processors if issubclass(type(p), BaseLLMSimpleBlockProcessor)]\n        other_processors = [p for p in processors if not issubclass(type(p), BaseLLMSimpleBlockProcessor)]\n\n        if not simple_llm_processors:\n            return processors\n\n        llm_positions = [i for i, p in enumerate(processors) if issubclass(type(p), BaseLLMSimpleBlockProcessor)]\n        insert_position = max(0, llm_positions[-1] - len(simple_llm_processors) + 1)\n\n        meta_processor = LLMSimpleBlockMetaProcessor(\n            processor_lst=simple_llm_processors,\n            llm_service=self.llm_service,\n            config=self.config,\n        )\n        other_processors.insert(insert_position, meta_processor)\n        return other_processors"
  },
  {
    "path": "marker/converters/extraction.py",
    "content": "import re\nfrom typing import Annotated\n\nfrom marker.builders.document import DocumentBuilder\nfrom marker.builders.line import LineBuilder\nfrom marker.builders.ocr import OcrBuilder\nfrom marker.builders.structure import StructureBuilder\nfrom marker.converters.pdf import PdfConverter\nfrom marker.extractors.document import DocumentExtractor\nfrom marker.extractors.page import PageExtractor\nfrom marker.providers.registry import provider_from_filepath\n\nfrom marker.renderers.extraction import ExtractionRenderer, ExtractionOutput\nfrom marker.renderers.markdown import MarkdownRenderer\n\nfrom marker.logger import get_logger\n\nlogger = get_logger()\n\n\nclass ExtractionConverter(PdfConverter):\n    pattern: str = r\"{\\d+\\}-{48}\\n\\n\"\n    existing_markdown: Annotated[\n        str, \"Markdown that was already converted for extraction.\"\n    ] = None\n\n    def build_document(self, filepath: str):\n        provider_cls = provider_from_filepath(filepath)\n        layout_builder = self.resolve_dependencies(self.layout_builder_class)\n        line_builder = self.resolve_dependencies(LineBuilder)\n        ocr_builder = self.resolve_dependencies(OcrBuilder)\n        provider = provider_cls(filepath, self.config)\n        document = DocumentBuilder(self.config)(\n            provider, layout_builder, line_builder, ocr_builder\n        )\n        structure_builder_cls = self.resolve_dependencies(StructureBuilder)\n        structure_builder_cls(document)\n\n        for processor in self.processor_list:\n            processor(document)\n\n        return document, provider\n\n    def __call__(self, filepath: str) -> ExtractionOutput:\n        self.config[\"paginate_output\"] = True  # Ensure we can split the output properly\n        self.config[\"output_format\"] = (\n            \"markdown\"  # Output must be markdown for extraction\n        )\n        markdown = self.existing_markdown\n\n        if not markdown:\n            document, provider = self.build_document(filepath)\n            self.page_count = len(document.pages)\n            renderer = self.resolve_dependencies(MarkdownRenderer)\n            output = renderer(document)\n            markdown = output.markdown\n\n        output_pages = re.split(self.pattern, markdown)[1:]  # Split output into pages\n\n        # This needs an LLM service for extraction, this sets it in the extractor\n        if self.artifact_dict.get(\"llm_service\") is None:\n            self.artifact_dict[\"llm_service\"] = self.resolve_dependencies(\n                self.default_llm_service\n            )\n\n        page_extractor = self.resolve_dependencies(PageExtractor)\n        document_extractor = self.resolve_dependencies(DocumentExtractor)\n        renderer = self.resolve_dependencies(ExtractionRenderer)\n\n        # Inference in parallel\n        notes = page_extractor(output_pages)\n        document_output = document_extractor(notes)\n\n        merged = renderer(document_output, markdown)\n        return merged\n"
  },
  {
    "path": "marker/converters/ocr.py",
    "content": "from typing import Tuple\n\nfrom marker.builders.document import DocumentBuilder\nfrom marker.builders.line import LineBuilder\nfrom marker.builders.ocr import OcrBuilder\nfrom marker.converters.pdf import PdfConverter\nfrom marker.processors import BaseProcessor\nfrom marker.processors.equation import EquationProcessor\nfrom marker.providers.registry import provider_from_filepath\nfrom marker.renderers.ocr_json import OCRJSONRenderer\n\n\nclass OCRConverter(PdfConverter):\n    default_processors: Tuple[BaseProcessor, ...] = (EquationProcessor,)\n\n    def __init__(self, *args, **kwargs):\n        super().__init__(*args, **kwargs)\n\n        if not self.config:\n            self.config = {}\n\n        self.config[\"force_ocr\"] = True\n        self.renderer = OCRJSONRenderer\n\n    def build_document(self, filepath: str):\n        provider_cls = provider_from_filepath(filepath)\n        layout_builder = self.resolve_dependencies(self.layout_builder_class)\n        line_builder = self.resolve_dependencies(LineBuilder)\n        ocr_builder = self.resolve_dependencies(OcrBuilder)\n        document_builder = DocumentBuilder(self.config)\n\n        provider = provider_cls(filepath, self.config)\n        document = document_builder(provider, layout_builder, line_builder, ocr_builder)\n\n        for processor in self.processor_list:\n            processor(document)\n\n        return document\n\n    def __call__(self, filepath: str):\n        document = self.build_document(filepath)\n        self.page_count = len(document.pages)\n        renderer = self.resolve_dependencies(self.renderer)\n        return renderer(document)\n"
  },
  {
    "path": "marker/converters/pdf.py",
    "content": "import os\n\nfrom marker.schema.document import Document\n\nos.environ[\"TOKENIZERS_PARALLELISM\"] = \"false\"  # disables a tokenizers warning\n\nfrom collections import defaultdict\nfrom typing import Annotated, Any, Dict, List, Optional, Type, Tuple, Union\nimport io\nfrom contextlib import contextmanager\nimport tempfile\n\nfrom marker.processors import BaseProcessor\nfrom marker.services import BaseService\nfrom marker.processors.llm.llm_table_merge import LLMTableMergeProcessor\nfrom marker.providers.registry import provider_from_filepath\nfrom marker.builders.document import DocumentBuilder\nfrom marker.builders.layout import LayoutBuilder\nfrom marker.builders.line import LineBuilder\nfrom marker.builders.ocr import OcrBuilder\nfrom marker.builders.structure import StructureBuilder\nfrom marker.converters import BaseConverter\nfrom marker.processors.blockquote import BlockquoteProcessor\nfrom marker.processors.code import CodeProcessor\nfrom marker.processors.debug import DebugProcessor\nfrom marker.processors.document_toc import DocumentTOCProcessor\nfrom marker.processors.equation import EquationProcessor\nfrom marker.processors.footnote import FootnoteProcessor\nfrom marker.processors.ignoretext import IgnoreTextProcessor\nfrom marker.processors.line_numbers import LineNumbersProcessor\nfrom marker.processors.list import ListProcessor\nfrom marker.processors.llm.llm_complex import LLMComplexRegionProcessor\nfrom marker.processors.llm.llm_form import LLMFormProcessor\nfrom marker.processors.llm.llm_image_description import LLMImageDescriptionProcessor\nfrom marker.processors.llm.llm_table import LLMTableProcessor\nfrom marker.processors.page_header import PageHeaderProcessor\nfrom marker.processors.reference import ReferenceProcessor\nfrom marker.processors.sectionheader import SectionHeaderProcessor\nfrom marker.processors.table import TableProcessor\nfrom marker.processors.text import TextProcessor\nfrom marker.processors.block_relabel import BlockRelabelProcessor\nfrom marker.processors.blank_page import BlankPageProcessor\nfrom marker.processors.llm.llm_equation import LLMEquationProcessor\nfrom marker.renderers.markdown import MarkdownRenderer\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\nfrom marker.schema.registry import register_block_class\nfrom marker.util import strings_to_classes\nfrom marker.processors.llm.llm_handwriting import LLMHandwritingProcessor\nfrom marker.processors.order import OrderProcessor\nfrom marker.services.gemini import GoogleGeminiService\nfrom marker.processors.line_merge import LineMergeProcessor\nfrom marker.processors.llm.llm_mathblock import LLMMathBlockProcessor\nfrom marker.processors.llm.llm_page_correction import LLMPageCorrectionProcessor\nfrom marker.processors.llm.llm_sectionheader import LLMSectionHeaderProcessor\n\n\nclass PdfConverter(BaseConverter):\n    \"\"\"\n    A converter for processing and rendering PDF files into Markdown, JSON, HTML and other formats.\n    \"\"\"\n\n    override_map: Annotated[\n        Dict[BlockTypes, Type[Block]],\n        \"A mapping to override the default block classes for specific block types.\",\n        \"The keys are `BlockTypes` enum values, representing the types of blocks,\",\n        \"and the values are corresponding `Block` class implementations to use\",\n        \"instead of the defaults.\",\n    ] = defaultdict()\n    use_llm: Annotated[\n        bool,\n        \"Enable higher quality processing with LLMs.\",\n    ] = False\n    default_processors: Tuple[BaseProcessor, ...] = (\n        OrderProcessor,\n        BlockRelabelProcessor,\n        LineMergeProcessor,\n        BlockquoteProcessor,\n        CodeProcessor,\n        DocumentTOCProcessor,\n        EquationProcessor,\n        FootnoteProcessor,\n        IgnoreTextProcessor,\n        LineNumbersProcessor,\n        ListProcessor,\n        PageHeaderProcessor,\n        SectionHeaderProcessor,\n        TableProcessor,\n        LLMTableProcessor,\n        LLMTableMergeProcessor,\n        LLMFormProcessor,\n        TextProcessor,\n        LLMComplexRegionProcessor,\n        LLMImageDescriptionProcessor,\n        LLMEquationProcessor,\n        LLMHandwritingProcessor,\n        LLMMathBlockProcessor,\n        LLMSectionHeaderProcessor,\n        LLMPageCorrectionProcessor,\n        ReferenceProcessor,\n        BlankPageProcessor,\n        DebugProcessor,\n    )\n    default_llm_service: BaseService = GoogleGeminiService\n\n    def __init__(\n        self,\n        artifact_dict: Dict[str, Any],\n        processor_list: Optional[List[str]] = None,\n        renderer: str | None = None,\n        llm_service: str | None = None,\n        config=None,\n    ):\n        super().__init__(config)\n\n        if config is None:\n            config = {}\n\n        for block_type, override_block_type in self.override_map.items():\n            register_block_class(block_type, override_block_type)\n\n        if processor_list is not None:\n            processor_list = strings_to_classes(processor_list)\n        else:\n            processor_list = self.default_processors\n\n        if renderer:\n            renderer = strings_to_classes([renderer])[0]\n        else:\n            renderer = MarkdownRenderer\n\n        # Put here so that resolve_dependencies can access it\n        self.artifact_dict = artifact_dict\n\n        if llm_service:\n            llm_service_cls = strings_to_classes([llm_service])[0]\n            llm_service = self.resolve_dependencies(llm_service_cls)\n        elif config.get(\"use_llm\", False):\n            llm_service = self.resolve_dependencies(self.default_llm_service)\n\n        # Inject llm service into artifact_dict so it can be picked up by processors, etc.\n        self.artifact_dict[\"llm_service\"] = llm_service\n        self.llm_service = llm_service\n\n        self.renderer = renderer\n\n        processor_list = self.initialize_processors(processor_list)\n        self.processor_list = processor_list\n\n        self.layout_builder_class = LayoutBuilder\n        self.page_count = None  # Track how many pages were converted\n\n    @contextmanager\n    def filepath_to_str(self, file_input: Union[str, io.BytesIO]):\n        temp_file = None\n        try:\n            if isinstance(file_input, str):\n                yield file_input\n            else:\n                with tempfile.NamedTemporaryFile(\n                    delete=False, suffix=\".pdf\"\n                ) as temp_file:\n                    if isinstance(file_input, io.BytesIO):\n                        file_input.seek(0)\n                        temp_file.write(file_input.getvalue())\n                    else:\n                        raise TypeError(\n                            f\"Expected str or BytesIO, got {type(file_input)}\"\n                        )\n\n                yield temp_file.name\n        finally:\n            if temp_file is not None and os.path.exists(temp_file.name):\n                os.unlink(temp_file.name)\n\n    def build_document(self, filepath: str) -> Document:\n        provider_cls = provider_from_filepath(filepath)\n        layout_builder = self.resolve_dependencies(self.layout_builder_class)\n        line_builder = self.resolve_dependencies(LineBuilder)\n        ocr_builder = self.resolve_dependencies(OcrBuilder)\n        provider = provider_cls(filepath, self.config)\n        document = DocumentBuilder(self.config)(\n            provider, layout_builder, line_builder, ocr_builder\n        )\n        structure_builder_cls = self.resolve_dependencies(StructureBuilder)\n        structure_builder_cls(document)\n\n        for processor in self.processor_list:\n            processor(document)\n\n        return document\n\n    def __call__(self, filepath: str | io.BytesIO):\n        with self.filepath_to_str(filepath) as temp_path:\n            document = self.build_document(temp_path)\n            self.page_count = len(document.pages)\n            renderer = self.resolve_dependencies(self.renderer)\n            rendered = renderer(document)\n        return rendered\n"
  },
  {
    "path": "marker/converters/table.py",
    "content": "from typing import Tuple, List\n\nfrom marker.builders.document import DocumentBuilder\nfrom marker.builders.line import LineBuilder\nfrom marker.builders.ocr import OcrBuilder\nfrom marker.converters.pdf import PdfConverter\nfrom marker.processors import BaseProcessor\nfrom marker.processors.llm.llm_complex import LLMComplexRegionProcessor\nfrom marker.processors.llm.llm_form import LLMFormProcessor\nfrom marker.processors.llm.llm_table import LLMTableProcessor\nfrom marker.processors.llm.llm_table_merge import LLMTableMergeProcessor\nfrom marker.processors.table import TableProcessor\nfrom marker.providers.registry import provider_from_filepath\nfrom marker.schema import BlockTypes\n\n\nclass TableConverter(PdfConverter):\n    default_processors: Tuple[BaseProcessor, ...] = (\n        TableProcessor,\n        LLMTableProcessor,\n        LLMTableMergeProcessor,\n        LLMFormProcessor,\n        LLMComplexRegionProcessor,\n    )\n    converter_block_types: List[BlockTypes] = (\n        BlockTypes.Table,\n        BlockTypes.Form,\n        BlockTypes.TableOfContents,\n    )\n\n    def build_document(self, filepath: str):\n        provider_cls = provider_from_filepath(filepath)\n        layout_builder = self.resolve_dependencies(self.layout_builder_class)\n        line_builder = self.resolve_dependencies(LineBuilder)\n        ocr_builder = self.resolve_dependencies(OcrBuilder)\n        document_builder = DocumentBuilder(self.config)\n        document_builder.disable_ocr = True\n\n        provider = provider_cls(filepath, self.config)\n        document = document_builder(provider, layout_builder, line_builder, ocr_builder)\n\n        for page in document.pages:\n            page.structure = [\n                p for p in page.structure if p.block_type in self.converter_block_types\n            ]\n\n        for processor in self.processor_list:\n            processor(document)\n\n        return document\n\n    def __call__(self, filepath: str):\n        document = self.build_document(filepath)\n        self.page_count = len(document.pages)\n\n        renderer = self.resolve_dependencies(self.renderer)\n        return renderer(document)\n"
  },
  {
    "path": "marker/extractors/__init__.py",
    "content": "from typing import Annotated, Sequence\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\nfrom marker.schema.groups import PageGroup\nfrom PIL import Image\n\nfrom marker.services import BaseService\nfrom marker.util import assign_config\n\n\nclass BaseExtractor:\n    \"\"\"\n    An extractor that uses a provided service to extract structured data from documents.\n    \"\"\"\n\n    max_concurrency: Annotated[\n        int,\n        \"The maximum number of concurrent requests to make to the Gemini model.\",\n    ] = 3\n    disable_tqdm: Annotated[\n        bool,\n        \"Whether to disable the tqdm progress bar.\",\n    ] = False\n\n    def __init__(self, llm_service: BaseService, config=None):\n        assign_config(self, config)\n        self.llm_service = llm_service\n\n    def extract_image(\n        self,\n        document: Document,\n        page: PageGroup,\n        remove_blocks: Sequence[BlockTypes] | None = None,\n        highres: bool = False,  # Default False to save tokens\n    ) -> Image.Image:\n        return page.get_image(\n            document,\n            highres=highres,\n            remove_blocks=remove_blocks,\n        )\n\n    def __call__(self, document: Document, *args, **kwargs):\n        raise NotImplementedError\n"
  },
  {
    "path": "marker/extractors/document.py",
    "content": "import json\n\nfrom pydantic import BaseModel\nfrom typing import Annotated, Optional, List\n\nfrom marker.extractors import BaseExtractor\nfrom marker.extractors.page import PageExtractionSchema\nfrom marker.logger import get_logger\n\nlogger = get_logger()\n\n\nclass DocumentExtractionSchema(BaseModel):\n    analysis: str\n    document_json: str\n\n\nclass DocumentExtractor(BaseExtractor):\n    \"\"\"\n    An extractor that combines data from across all pages.\n    \"\"\"\n\n    page_schema: Annotated[\n        str,\n        \"The JSON schema to be extracted from the page.\",\n    ] = \"\"\n\n    page_extraction_prompt = \"\"\"You are an expert document analyst who reads documents and pulls data out in JSON format. You will receive your detailed notes from all the pages of a document, and a JSON schema that we want to extract from the document. Your task is to extract all the information properly into the JSON schema.\n\nSome notes:\n- The schema may contain a single object to extract from the entire document, or an array of objects. \n- The schema may contain nested objects, arrays, and other complex structures.\n\nSome guidelines:\n- Some entities will span multiple pages, so make sure to consult your notes thoroughly.\n- In the case of potential conflicting values, pull out the values you have the most confidence in, from your notes.\n- If you cannot find a value for a field, leave it blank in the JSON.\n\n**Instructions:**\n1. Analyze your provided notes.\n2. Analyze the JSON schema.\n3. Write a detailed analysis of the notes, and the associated values in the schema.  Make sure to reference which page each piece of information comes from.\n4. Write the output in the JSON schema format, ensuring all required fields are filled out.  Output only the json data, without any additional text or formatting.\n\n**Example:**\nInput:\n\nDetailed Notes\nPage 0\nOn this page, I see a table with car makes and sales. The makes are Honda and Toyota, with sales of 100 and 200 respectively. The color is not present in the table, so I will leave it blank in the JSON.  That information may be present on another page.  Some JSON snippets I may find useful later are:\n```json\n{\n    \"make\": \"Honda\",\n    \"sales\": 100,\n}\n```\n```json\n{\n    \"make\": \"Toyota\",\n    \"sales\": 200,\n}\n```\n\nHonda is the first row in the table, and Toyota is the second row.  Make is the first column, and sales is the second.\n\nPage 1\nI see a table that contains 2 rows, and has a color header.  The first row has the color red, and the second row has the color blue.  Here are some useful snippets:\n\nSchema\n\n```json\n{'$defs': {'Cars': {'properties': {'make': {'title': 'Make', 'type': 'string'}, 'sales': {'title': 'Sales', 'type': 'integer'}, 'color': {'title': 'Color', 'type': 'string'}}, 'required': ['make', 'sales', 'color'], 'title': 'Cars', 'type': 'object'}}, 'properties': {'cars': {'items': {'$ref': '#/$defs/Cars'}, 'title': 'Cars', 'type': 'array'}}, 'required': ['cars'], 'title': 'CarsList', 'type': 'object'}\n```\n\nOutput:\n\nAnalysis: From the notes, it looks like the information I need is in a table that spans 2 pages.  The first page has the makes and sales, while the second page has the colors.  I will combine this information into the JSON schema.\nJSON\n\n{\n    \"cars\": [\n        {\n            \"make\": \"Honda\",\n            \"sales\": 100,\n            \"color\": \"red\"\n        },\n        {\n            \"make\": \"Toyota\",\n            \"sales\": 200,\n            \"color\": \"blue\"\n        }\n    ]\n}\n\n**Input:**\n\nDetailed Notes\n{{document_notes}}\n\nSchema\n```json\n{{schema}}\n```\n\"\"\"\n\n    def assemble_document_notes(self, page_notes: List[PageExtractionSchema]) -> str:\n        notes = \"\"\n        for i, page_schema in enumerate(page_notes):\n            if not page_notes:\n                continue\n            notes += f\"Page {i + 1}\\n{page_schema.detailed_notes}\\n\\n\"\n        return notes.strip()\n\n    def __call__(\n        self,\n        page_notes: List[PageExtractionSchema],\n        **kwargs,\n    ) -> Optional[DocumentExtractionSchema]:\n        if not self.page_schema:\n            raise ValueError(\n                \"Page schema must be defined for structured extraction to work.\"\n            )\n\n        prompt = self.page_extraction_prompt.replace(\n            \"{{document_notes}}\", self.assemble_document_notes(page_notes)\n        ).replace(\"{{schema}}\", json.dumps(self.page_schema))\n        response = self.llm_service(prompt, None, None, DocumentExtractionSchema)\n\n        logger.debug(f\"Document extraction response: {response}\")\n\n        if not response or any(\n            [\n                key not in response\n                for key in [\n                    \"analysis\",\n                    \"document_json\",\n                ]\n            ]\n        ):\n            return None\n\n        json_data = response[\"document_json\"].strip().lstrip(\"```json\").rstrip(\"```\")\n\n        return DocumentExtractionSchema(\n            analysis=response[\"analysis\"], document_json=json_data\n        )\n"
  },
  {
    "path": "marker/extractors/page.py",
    "content": "import json\nfrom concurrent.futures import ThreadPoolExecutor\n\nfrom pydantic import BaseModel\nfrom typing import Annotated, Optional, List\n\nfrom tqdm import tqdm\n\nfrom marker.extractors import BaseExtractor\nfrom marker.logger import get_logger\n\nlogger = get_logger()\n\n\nclass PageExtractionSchema(BaseModel):\n    description: str\n    detailed_notes: str\n\n\nclass PageExtractor(BaseExtractor):\n    \"\"\"\n    An extractor that pulls data from a single page.\n    \"\"\"\n\n    extraction_page_chunk_size: Annotated[\n        int, \"The number of pages to chunk together for extraction.\"\n    ] = 3\n\n    page_schema: Annotated[\n        str,\n        \"The JSON schema to be extracted from the page.\",\n    ] = \"\"\n\n    page_extraction_prompt = \"\"\"You are an expert document analyst who reads documents and pulls data out in JSON format. You will receive the markdown representation of a document page, and a JSON schema that we want to extract from the document. Your task is to write detailed notes on this page, so that when you look at all your notes from across the document, you can fill in the schema.\n    \nSome notes:\n- The schema may contain a single object to extract from the entire document, or an array of objects. \n- The schema may contain nested objects, arrays, and other complex structures.\n\nSome guidelines:\n- Write very thorough notes, and include specific JSON snippets that can be extracted from the page.\n- You may need information from prior or subsequent pages to fully fill in the schema, so make sure to write detailed notes that will let you join entities across pages later on.\n- Estimate your confidence in the values you extract, so you can reconstruct the JSON later when you only have your notes.\n- Some tables and other data structures may continue on a subsequent page, so make sure to store the positions that data comes from where appropriate.\n\n**Instructions:**\n1. Analyze the provided markdown representation of the page.\n2. Analyze the JSON schema.\n3. Write a short description of the fields in the schema, and the associated values in the markdown.\n4. Write detailed notes on the page, including any values that can be extracted from the markdown.  Include snippets of JSON that can be extracted from the page where possible.\n\n**Example:**\nInput:\n\nMarkdown\n```markdown\n| Make   | Sales |\n|--------|-------|\n| Honda  | 100   |\n| Toyota | 200   |\n```\n\nSchema\n\n```json\n{'$defs': {'Cars': {'properties': {'make': {'title': 'Make', 'type': 'string'}, 'sales': {'title': 'Sales', 'type': 'integer'}, 'color': {'title': 'Color', 'type': 'string'}}, 'required': ['make', 'sales', 'color'], 'title': 'Cars', 'type': 'object'}}, 'properties': {'cars': {'items': {'$ref': '#/$defs/Cars'}, 'title': 'Cars', 'type': 'array'}}, 'required': ['cars'], 'title': 'CarsList', 'type': 'object'}\n```\n\nOutput:\n\nDescription: The schema has a list of cars, each with a make, sales, and color. The image and markdown contain a table with 2 cars: Honda with 100 sales and Toyota with 200 sales. The color is not present in the table.\nDetailed Notes: On this page, I see a table with car makes and sales. The makes are Honda and Toyota, with sales of 100 and 200 respectively. The color is not present in the table, so I will leave it blank in the JSON.  That information may be present on another page.  Some JSON snippets I may find useful later are:\n```json\n{\n    \"make\": \"Honda\",\n    \"sales\": 100,\n}\n```\n```json\n{\n    \"make\": \"Toyota\",\n    \"sales\": 200,\n}\n```\n\nHonda is the first row in the table, and Toyota is the second row.  Make is the first column, and sales is the second.\n\n**Input:**\n\nMarkdown\n```markdown\n{{page_md}}\n```\n\nSchema\n```json\n{{schema}}\n```\n\"\"\"\n\n    def chunk_page_markdown(self, page_markdown: List[str]) -> List[str]:\n        \"\"\"\n        Chunk the page markdown into smaller pieces for processing.\n        \"\"\"\n\n        chunks = []\n        for i in range(0, len(page_markdown), self.extraction_page_chunk_size):\n            chunk = page_markdown[i : i + self.extraction_page_chunk_size]\n            chunks.append(\"\\n\\n\".join(chunk))\n\n        return chunks\n\n    def inference_single_chunk(\n        self, page_markdown: str\n    ) -> Optional[PageExtractionSchema]:\n        prompt = self.page_extraction_prompt.replace(\n            \"{{page_md}}\", page_markdown\n        ).replace(\"{{schema}}\", json.dumps(self.page_schema))\n        response = self.llm_service(prompt, None, None, PageExtractionSchema)\n        logger.debug(f\"Page extraction response: {response}\")\n\n        if not response or any(\n            [\n                key not in response\n                for key in [\n                    \"description\",\n                    \"detailed_notes\",\n                ]\n            ]\n        ):\n            return None\n\n        return PageExtractionSchema(\n            description=response[\"description\"],\n            detailed_notes=response[\"detailed_notes\"],\n        )\n\n    def __call__(\n        self,\n        page_markdown: List[str],\n        **kwargs,\n    ) -> List[PageExtractionSchema]:\n        if not self.page_schema:\n            raise ValueError(\n                \"Page schema must be defined for structured extraction to work.\"\n            )\n\n        chunks = self.chunk_page_markdown(page_markdown)\n        results = []\n        pbar = tqdm(\n            desc=\"Running page extraction\",\n            disable=self.disable_tqdm,\n            total=len(chunks),\n        )\n\n        with ThreadPoolExecutor(max_workers=self.max_concurrency) as executor:\n            for future in [\n                executor.submit(self.inference_single_chunk, chunk) for chunk in chunks\n            ]:\n                results.append(future.result())  # Raise exceptions if any occurred\n                pbar.update(1)\n\n        pbar.close()\n        return results\n"
  },
  {
    "path": "marker/logger.py",
    "content": "import logging\nimport warnings\n\nfrom marker.settings import settings\n\n\ndef configure_logging():\n    # Setup marker logger\n    logger = get_logger()\n\n    if not logger.handlers:\n        handler = logging.StreamHandler()\n        formatter = logging.Formatter(\n            \"%(asctime)s [%(levelname)s] %(name)s: %(message)s\"\n        )\n        handler.setFormatter(formatter)\n        logger.addHandler(handler)\n\n    logger.setLevel(settings.LOGLEVEL)\n\n    # Ignore future warnings\n    warnings.simplefilter(action=\"ignore\", category=FutureWarning)\n\n    # Set component loglevels\n    logging.getLogger(\"PIL\").setLevel(logging.ERROR)\n    logging.getLogger(\"fontTools.subset\").setLevel(logging.ERROR)\n    logging.getLogger(\"fontTools.ttLib.ttFont\").setLevel(logging.ERROR)\n    logging.getLogger(\"weasyprint\").setLevel(logging.CRITICAL)\n\n\ndef get_logger():\n    return logging.getLogger(\"marker\")\n"
  },
  {
    "path": "marker/models.py",
    "content": "import os\n\nos.environ[\"PYTORCH_ENABLE_MPS_FALLBACK\"] = (\n    \"1\"  # Transformers uses .isin for an op, which is not supported on MPS\n)\n\nfrom surya.foundation import FoundationPredictor\nfrom surya.detection import DetectionPredictor\nfrom surya.layout import LayoutPredictor\nfrom surya.ocr_error import OCRErrorPredictor\nfrom surya.recognition import RecognitionPredictor\nfrom surya.table_rec import TableRecPredictor\nfrom surya.settings import settings as surya_settings\n\n\ndef create_model_dict(\n    device=None, dtype=None, attention_implementation: str | None = None\n) -> dict:\n    return {\n        \"layout_model\": LayoutPredictor(FoundationPredictor(checkpoint=surya_settings.LAYOUT_MODEL_CHECKPOINT, attention_implementation=attention_implementation, device=device, dtype=dtype)),\n        \"recognition_model\": RecognitionPredictor(FoundationPredictor(checkpoint=surya_settings.RECOGNITION_MODEL_CHECKPOINT, attention_implementation=attention_implementation, device=device, dtype=dtype)),\n        \"table_rec_model\": TableRecPredictor(device=device, dtype=dtype),\n        \"detection_model\": DetectionPredictor(device=device, dtype=dtype),\n        \"ocr_error_model\": OCRErrorPredictor(device=device, dtype=dtype),\n    }\n"
  },
  {
    "path": "marker/output.py",
    "content": "import json\nimport os\n\nfrom bs4 import BeautifulSoup, Tag\nfrom pydantic import BaseModel\nfrom PIL import Image\n\nfrom marker.renderers.extraction import ExtractionOutput\nfrom marker.renderers.html import HTMLOutput\nfrom marker.renderers.json import JSONOutput, JSONBlockOutput\nfrom marker.renderers.markdown import MarkdownOutput\nfrom marker.renderers.ocr_json import OCRJSONOutput\nfrom marker.schema.blocks import BlockOutput\nfrom marker.settings import settings\n\n\ndef unwrap_outer_tag(html: str):\n    soup = BeautifulSoup(html, \"html.parser\")\n    contents = list(soup.contents)\n    if len(contents) == 1 and isinstance(contents[0], Tag) and contents[0].name == \"p\":\n        # Unwrap the p tag\n        soup.p.unwrap()\n\n    return str(soup)\n\n\ndef json_to_html(block: JSONBlockOutput | BlockOutput):\n    # Utility function to take in json block output and give html for the block.\n    if not getattr(block, \"children\", None):\n        return block.html\n    else:\n        child_html = [json_to_html(child) for child in block.children]\n        child_ids = [child.id for child in block.children]\n\n        soup = BeautifulSoup(block.html, \"html.parser\")\n        content_refs = soup.find_all(\"content-ref\")\n        for ref in content_refs:\n            src_id = ref.attrs[\"src\"]\n            if src_id in child_ids:\n                child_soup = BeautifulSoup(\n                    child_html[child_ids.index(src_id)], \"html.parser\"\n                )\n                ref.replace_with(child_soup)\n        return str(soup)\n\n\ndef output_exists(output_dir: str, fname_base: str):\n    exts = [\"md\", \"html\", \"json\"]\n    for ext in exts:\n        if os.path.exists(os.path.join(output_dir, f\"{fname_base}.{ext}\")):\n            return True\n    return False\n\n\ndef text_from_rendered(rendered: BaseModel):\n    from marker.renderers.chunk import ChunkOutput  # Has an import from this file\n\n    if isinstance(rendered, MarkdownOutput):\n        return rendered.markdown, \"md\", rendered.images\n    elif isinstance(rendered, HTMLOutput):\n        return rendered.html, \"html\", rendered.images\n    elif isinstance(rendered, JSONOutput):\n        return rendered.model_dump_json(exclude=[\"metadata\"], indent=2), \"json\", {}\n    elif isinstance(rendered, ChunkOutput):\n        return rendered.model_dump_json(exclude=[\"metadata\"], indent=2), \"json\", {}\n    elif isinstance(rendered, OCRJSONOutput):\n        return rendered.model_dump_json(exclude=[\"metadata\"], indent=2), \"json\", {}\n    elif isinstance(rendered, ExtractionOutput):\n        return rendered.document_json, \"json\", {}\n    else:\n        raise ValueError(\"Invalid output type\")\n\n\ndef convert_if_not_rgb(image: Image.Image) -> Image.Image:\n    if image.mode != \"RGB\":\n        image = image.convert(\"RGB\")\n    return image\n\n\ndef save_output(rendered: BaseModel, output_dir: str, fname_base: str):\n    text, ext, images = text_from_rendered(rendered)\n    text = text.encode(settings.OUTPUT_ENCODING, errors=\"replace\").decode(\n        settings.OUTPUT_ENCODING\n    )\n\n    with open(\n        os.path.join(output_dir, f\"{fname_base}.{ext}\"),\n        \"w+\",\n        encoding=settings.OUTPUT_ENCODING,\n    ) as f:\n        f.write(text)\n    with open(\n        os.path.join(output_dir, f\"{fname_base}_meta.json\"),\n        \"w+\",\n        encoding=settings.OUTPUT_ENCODING,\n    ) as f:\n        f.write(json.dumps(rendered.metadata, indent=2))\n\n    for img_name, img in images.items():\n        img = convert_if_not_rgb(img)  # RGBA images can't save as JPG\n        img.save(os.path.join(output_dir, img_name), settings.OUTPUT_IMAGE_FORMAT)\n"
  },
  {
    "path": "marker/processors/__init__.py",
    "content": "from typing import Optional, Tuple\n\nfrom pydantic import BaseModel\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\nfrom marker.util import assign_config\n\n\nclass BaseProcessor:\n    block_types: Tuple[BlockTypes] | None = None  # What block types this processor is responsible for\n\n    def __init__(self, config: Optional[BaseModel | dict] = None):\n        assign_config(self, config)\n\n    def __call__(self, document: Document, *args, **kwargs):\n        raise NotImplementedError\n"
  },
  {
    "path": "marker/processors/blank_page.py",
    "content": "from typing import Annotated\n\nfrom PIL import Image\nimport numpy as np\nimport cv2\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\nfrom marker.schema.document import Document\n\nfrom marker.logger import get_logger\n\nlogger = get_logger()\n\n\nclass BlankPageProcessor(BaseProcessor):\n    \"\"\"\n    A processor to filter out blank pages detected as a single layout block\n    \"\"\"\n\n    full_page_block_intersection_threshold: Annotated[\n        float, \"Threshold to detect blank pages at\"\n    ] = 0.8\n    filter_blank_pages: Annotated[bool, \"Remove blank pages detected as images.\"] = (\n        False\n    )\n\n    def is_blank(self, image: Image.Image):\n        image = np.asarray(image)\n        if image.size == 0 or image.shape[0] == 0 or image.shape[1] == 0:\n            # Handle empty image case\n            return True\n\n        gray = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY)\n        gray = cv2.GaussianBlur(gray, (7, 7), 0)\n\n        # Adaptive threshold (inverse for text as white)\n        binarized = cv2.adaptiveThreshold(\n            gray, 255, cv2.ADAPTIVE_THRESH_GAUSSIAN_C, cv2.THRESH_BINARY_INV, 31, 15\n        )\n\n        num_labels, labels, stats, _ = cv2.connectedComponentsWithStats(\n            binarized, connectivity=8\n        )\n        cleaned = np.zeros_like(binarized)\n        for i in range(1, num_labels):  # skip background\n            cleaned[labels == i] = 255\n\n        kernel = np.ones((1, 5), np.uint8)\n        dilated = cv2.dilate(cleaned, kernel, iterations=3)\n        b = dilated / 255\n        return b.sum() == 0\n\n    def __call__(self, document: Document):\n        if not self.filter_blank_pages:\n            return\n\n        for page in document.pages:\n            structure_blocks = page.structure_blocks(document)\n            if not structure_blocks or len(structure_blocks) > 1:\n                continue\n\n            full_page_block: Block = structure_blocks[0]\n\n            conditions = [\n                full_page_block.block_type in [BlockTypes.Picture, BlockTypes.Figure],\n                self.is_blank(full_page_block.get_image(document)),\n                page.polygon.intersection_area(full_page_block.polygon)\n                > self.full_page_block_intersection_threshold,\n            ]\n\n            if all(conditions):\n                logger.debug(f\"Removing blank block {full_page_block.id}\")\n                page.remove_structure_items([full_page_block.id])\n                full_page_block.removed = True\n"
  },
  {
    "path": "marker/processors/block_relabel.py",
    "content": "from copy import deepcopy\nfrom typing import Annotated\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import BlockId\nfrom marker.schema.document import Document\nfrom marker.schema.registry import get_block_class\n\nfrom marker.logger import get_logger\nlogger = get_logger()\n\nclass BlockRelabelProcessor(BaseProcessor):\n    \"\"\"\n    A processor to heuristically relabel blocks based on a confidence threshold.\n    \n    Each rule in the relabel string maps an original block label to a new one\n    if the confidence exceeds a given threshold.\n    \"\"\"\n    \n    block_relabel_str: Annotated[\n        str,\n        \"Comma-separated relabeling rules in the format '<original_label>:<new_label>:<confidence_threshold>'.\",\n        \"Each rule defines how blocks of a certain type should be relabeled when the confidence exceeds the threshold.\",\n        \"Example: 'Table:Picture:0.85,Form:Picture:0.9'\"\n    ] = \"\"\n\n    def __init__(self, config=None):\n        super().__init__(config)\n        self.block_relabel_map = {}\n\n        if not self.block_relabel_str:\n            return\n\n        for i, block_config_str in enumerate(self.block_relabel_str.split(',')):\n            block_config_str = block_config_str.strip()\n            if not block_config_str:\n                continue  # Skip empty segments\n\n            try:\n                parts = block_config_str.split(':')\n                if len(parts) != 3:\n                    raise ValueError(f\"Expected 3 parts, got {len(parts)}\")\n\n                block_label, block_relabel, confidence_str = parts\n                confidence_thresh = float(confidence_str)\n\n                block_type = BlockTypes[block_label]\n                relabel_block_type = BlockTypes[block_relabel]\n\n                self.block_relabel_map[block_type] = (\n                    confidence_thresh,\n                    relabel_block_type\n                )\n            except Exception as e:\n                logger.warning(f\"Failed to parse relabel rule '{block_config_str}' at index {i}: {e}. Expected format is <original_label>:<new_label>:<confidence_threshold>\")\n\n    def __call__(self, document: Document):\n        if len(self.block_relabel_map) == 0:\n            return\n\n        for page in document.pages:\n            for block in page.structure_blocks(document):\n                if block.block_type not in self.block_relabel_map:\n                    continue\n                \n                block_id = BlockId(page_id=page.page_id, block_id=block.block_id, block_type=block.block_type)\n                confidence_thresh, relabel_block_type = self.block_relabel_map[block.block_type]\n                confidence = block.top_k.get(block.block_type)\n                if confidence > confidence_thresh:\n                    logger.debug(f\"Skipping relabel for {block_id}; Confidence: {confidence} > Confidence Threshold {confidence_thresh} for re-labelling\")\n                    continue\n\n                new_block_cls = get_block_class(relabel_block_type)\n                new_block = new_block_cls(\n                    polygon=deepcopy(block.polygon),\n                    page_id=block.page_id,\n                    structure=deepcopy(block.structure),\n                    text_extraction_method=block.text_extraction_method,\n                    source=\"heuristics\",\n                    top_k=block.top_k,\n                    metadata=block.metadata\n                )\n                page.replace_block(block, new_block)\n                logger.debug(f\"Relabelled {block_id} to {relabel_block_type}\")"
  },
  {
    "path": "marker/processors/blockquote.py",
    "content": "from typing import Annotated, Tuple\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\n\nclass BlockquoteProcessor(BaseProcessor):\n    \"\"\"\n    A processor for tagging blockquotes.\n    \"\"\"\n    block_types: Annotated[\n        Tuple[BlockTypes],\n        \"The block types to process.\",\n    ] = (BlockTypes.Text, BlockTypes.TextInlineMath)\n    min_x_indent: Annotated[\n        float,\n        \"The minimum horizontal indentation required to consider a block as part of a blockquote.\",\n        \"Expressed as a percentage of the block width.\",\n    ] = 0.1\n    x_start_tolerance: Annotated[\n        float,\n        \"The maximum allowable difference between the starting x-coordinates of consecutive blocks to consider them aligned.\",\n        \"Expressed as a percentage of the block width.\",\n    ] = 0.01\n    x_end_tolerance: Annotated[\n        float,\n        \"The maximum allowable difference between the ending x-coordinates of consecutive blocks to consider them aligned.\",\n        \"Expressed as a percentage of the block width.\",\n    ] = 0.01\n\n    def __init__(self, config):\n        super().__init__(config)\n\n    def __call__(self, document: Document):\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                if block.structure is None:\n                    continue\n\n                if not len(block.structure) >= 2:\n                    continue\n\n                next_block = page.get_next_block(block)\n                if next_block is None:\n                    continue\n                if next_block.block_type not in self.block_types:\n                    continue\n                if next_block.structure is None:\n                    continue\n                if next_block.ignore_for_output:\n                    continue\n\n                matching_x_end = abs(next_block.polygon.x_end - block.polygon.x_end) < self.x_end_tolerance * block.polygon.width\n                matching_x_start = abs(next_block.polygon.x_start - block.polygon.x_start) < self.x_start_tolerance * block.polygon.width\n                x_indent = next_block.polygon.x_start > block.polygon.x_start + (self.min_x_indent * block.polygon.width)\n                y_indent = next_block.polygon.y_start > block.polygon.y_end\n\n                if block.blockquote:\n                    next_block.blockquote = (matching_x_end and matching_x_start) or (x_indent and y_indent)\n                    next_block.blockquote_level = block.blockquote_level\n                    if (x_indent and y_indent):\n                        next_block.blockquote_level += 1\n                elif len(next_block.structure) >= 2 and (x_indent and y_indent):\n                    next_block.blockquote = True\n                    next_block.blockquote_level = 1"
  },
  {
    "path": "marker/processors/code.py",
    "content": "from marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Code\nfrom marker.schema.document import Document\n\n\nclass CodeProcessor(BaseProcessor):\n    \"\"\"\n    A processor for formatting code blocks.\n    \"\"\"\n    block_types = (BlockTypes.Code, )\n\n    def __call__(self, document: Document):\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                self.format_block(document, block)\n\n\n    def format_block(self, document: Document, block: Code):\n        min_left = 9999  # will contain x- coord of column 0\n        total_width = 0\n        total_chars = 0\n        \n        contained_lines = block.contained_blocks(document, (BlockTypes.Line,))\n        for line in contained_lines:\n            min_left = min(line.polygon.bbox[0], min_left)\n            total_width += line.polygon.width\n            total_chars += len(line.raw_text(document))\n\n        avg_char_width = total_width / max(total_chars, 1)\n        code_text = \"\"\n        is_new_line = False\n        for line in contained_lines:\n            text = line.raw_text(document)\n            if avg_char_width == 0:\n                prefix = \"\"\n            else:\n                total_spaces = int((line.polygon.bbox[0] - min_left) / avg_char_width)\n                prefix = \" \" * max(0, total_spaces)\n\n            if is_new_line:\n                text = prefix + text\n\n            code_text += text\n            is_new_line = text.endswith(\"\\n\")\n\n        block.code = code_text.rstrip()\n"
  },
  {
    "path": "marker/processors/debug.py",
    "content": "import json\nimport os\nfrom typing import Annotated\n\nfrom PIL import Image, ImageDraw, ImageFont\nfrom marker.logger import get_logger\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\nfrom marker.settings import settings\n\nlogger = get_logger()\n\n\nclass DebugProcessor(BaseProcessor):\n    \"\"\"\n    A processor for debugging the document.\n    \"\"\"\n\n    block_types: Annotated[\n        tuple, \"The block types to process.\", \"Default is an empty tuple.\"\n    ] = tuple()\n    debug_data_folder: Annotated[\n        str,\n        \"The folder to dump debug data to.\",\n    ] = \"debug_data\"\n    debug_layout_images: Annotated[\n        bool,\n        \"Whether to dump layout debug images.\",\n    ] = False\n    debug_pdf_images: Annotated[\n        bool,\n        \"Whether to dump PDF debug images.\",\n    ] = False\n    debug_json: Annotated[\n        bool,\n        \"Whether to dump block debug data.\",\n    ] = False\n\n    def __call__(self, document: Document):\n        # Remove extension from doc name\n        doc_base = os.path.basename(document.filepath).rsplit(\".\", 1)[0]\n        self.debug_folder = os.path.join(self.debug_data_folder, doc_base)\n        if any([self.debug_layout_images, self.debug_pdf_images, self.debug_json]):\n            os.makedirs(self.debug_folder, exist_ok=True)\n\n        document.debug_data_path = self.debug_folder\n\n        if self.debug_layout_images:\n            self.draw_layout_debug_images(document)\n            logger.info(f\"Dumped layout debug images to {self.debug_data_folder}\")\n\n        if self.debug_pdf_images:\n            self.draw_pdf_debug_images(document)\n            logger.info(f\"Dumped PDF debug images to {self.debug_data_folder}\")\n\n        if self.debug_json:\n            self.dump_block_debug_data(document)\n            logger.info(f\"Dumped block debug data to {self.debug_data_folder}\")\n\n    def draw_pdf_debug_images(self, document: Document):\n        for page in document.pages:\n            png_image = page.get_image(highres=True).copy()\n\n            line_bboxes = []\n            span_bboxes = []\n            line_ids = []\n            for child in page.children:\n                # Skip any blocks that have been removed\n                if child.removed:\n                    continue\n\n                if child.block_type == BlockTypes.Line:\n                    bbox = child.polygon.rescale(page.polygon.size, png_image.size).bbox\n                    line_bboxes.append(bbox)\n                    line_ids.append(child.block_id)\n                elif child.block_type == BlockTypes.Span:\n                    bbox = child.polygon.rescale(page.polygon.size, png_image.size).bbox\n                    span_bboxes.append(bbox)\n\n            self.render_on_image(\n                line_bboxes,\n                png_image,\n                color=\"blue\",\n                draw_bbox=True,\n                label_font_size=24,\n                labels=[str(i) for i in line_ids],\n            )\n\n            png_image = self.render_layout_boxes(page, png_image)\n\n            debug_file = os.path.join(self.debug_folder, f\"pdf_page_{page.page_id}.png\")\n            png_image.save(debug_file)\n\n    def draw_layout_debug_images(self, document: Document, pdf_mode=False):\n        for page in document.pages:\n            img_size = page.get_image(highres=True).size\n            png_image = Image.new(\"RGB\", img_size, color=\"white\")\n\n            line_bboxes = []\n            line_text = []\n            for child in page.children:\n                if child.removed:\n                    continue\n\n                if child.block_type != BlockTypes.Line:\n                    continue\n\n                bbox = child.polygon.rescale(page.polygon.size, img_size).bbox\n                line_bboxes.append(bbox)\n                line_text.append(child.raw_text(document))\n\n            self.render_on_image(\n                line_bboxes,\n                png_image,\n                labels=line_text,\n                color=\"black\",\n                draw_bbox=False,\n                label_font_size=24,\n            )\n\n            png_image = self.render_layout_boxes(page, png_image)\n\n            debug_file = os.path.join(\n                self.debug_folder, f\"layout_page_{page.page_id}.png\"\n            )\n            png_image.save(debug_file)\n\n    def render_layout_boxes(self, page, png_image):\n        layout_bboxes = []\n        layout_labels = []\n        for block_id in page.structure:\n            child = page.get_block(block_id)\n            if child.block_type in [BlockTypes.Line, BlockTypes.Span]:\n                continue\n\n            bbox = child.polygon.rescale(page.polygon.size, png_image.size).bbox\n            layout_bboxes.append(bbox)\n            layout_labels.append(str(child.block_type))\n\n        self.render_on_image(\n            layout_bboxes,\n            png_image,\n            labels=layout_labels,\n            color=\"red\",\n            label_font_size=24,\n        )\n\n        order_labels = [str(i) for i in range(len(layout_bboxes))]\n        self.render_on_image(\n            layout_bboxes,\n            png_image,\n            labels=order_labels,\n            color=\"green\",\n            draw_bbox=False,\n            label_offset=5,\n            label_font_size=24,\n        )\n        return png_image\n\n    def dump_block_debug_data(self, document: Document):\n        debug_file = os.path.join(self.debug_folder, \"blocks.json\")\n        debug_data = []\n        for page in document.pages:\n            page_data = page.model_dump(\n                exclude={\n                    \"lowres_image\": True,\n                    \"highres_image\": True,\n                    \"children\": {\n                        \"__all__\": {\"lowres_image\": True, \"highres_image\": True}\n                    },\n                }\n            )\n            debug_data.append(page_data)\n\n        with open(debug_file, \"w+\") as f:\n            json.dump(debug_data, f)\n\n    def get_text_size(self, text, font):\n        im = Image.new(mode=\"P\", size=(0, 0))\n        draw = ImageDraw.Draw(im)\n        _, _, width, height = draw.textbbox((0, 0), text=text, font=font)\n        return width, height\n\n    def render_on_image(\n        self,\n        bboxes,\n        image,\n        labels=None,\n        label_offset=1,\n        label_font_size=10,\n        color: str | list = \"red\",\n        draw_bbox=True,\n    ):\n        draw = ImageDraw.Draw(image)\n        font_path = settings.FONT_PATH\n        label_font = ImageFont.truetype(font_path, label_font_size)\n\n        for i, bbox in enumerate(bboxes):\n            bbox = [int(p) for p in bbox]\n            if draw_bbox:\n                draw.rectangle(\n                    bbox,\n                    outline=color[i] if isinstance(color, list) else color,\n                    width=1,\n                )\n\n            if labels is not None:\n                label = labels[i]\n                text_position = (bbox[0] + label_offset, bbox[1] + label_offset)\n                text_size = self.get_text_size(label, label_font)\n                if text_size[0] <= 0 or text_size[1] <= 0:\n                    continue\n                box_position = (\n                    text_position[0],\n                    text_position[1],\n                    text_position[0] + text_size[0],\n                    text_position[1] + text_size[1],\n                )\n                draw.rectangle(box_position, fill=\"white\")\n                draw.text(\n                    text_position,\n                    label,\n                    fill=color[i] if isinstance(color, list) else color,\n                    font=label_font,\n                )\n\n        return image\n"
  },
  {
    "path": "marker/processors/document_toc.py",
    "content": "from marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\n\nclass DocumentTOCProcessor(BaseProcessor):\n    \"\"\"\n    A processor for generating a table of contents for the document.\n    \"\"\"\n    block_types = (BlockTypes.SectionHeader, )\n\n    def __call__(self, document: Document):\n        toc = []\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                toc.append({\n                    \"title\": block.raw_text(document).strip(),\n                    \"heading_level\": block.heading_level,\n                    \"page_id\": page.page_id,\n                    \"polygon\": block.polygon.polygon\n                })\n        document.table_of_contents = toc\n"
  },
  {
    "path": "marker/processors/equation.py",
    "content": "from typing import Annotated, List, Tuple\nfrom PIL import Image\nimport re\nfrom bs4 import BeautifulSoup\n\nfrom ftfy import fix_text, TextFixerConfig\nfrom surya.recognition import RecognitionPredictor, OCRResult\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\nfrom marker.settings import settings\n\nMATH_TAG_PATTERN = re.compile(r\"<math[^>]*>(.*?)</math>\")\n\n\nclass EquationProcessor(BaseProcessor):\n    \"\"\"\n    A processor for recognizing equations in the document.\n    \"\"\"\n\n    block_types: Annotated[\n        Tuple[BlockTypes],\n        \"The block types to process.\",\n    ] = (BlockTypes.Equation,)\n    model_max_length: Annotated[\n        int,\n        \"The maximum number of tokens to allow for the Recognition model.\",\n    ] = 1024\n    equation_batch_size: Annotated[\n        int,\n        \"The batch size to use for the recognition model while processing equations.\",\n        \"Default is None, which will use the default batch size for the model.\",\n    ] = None\n    disable_tqdm: Annotated[\n        bool,\n        \"Whether to disable the tqdm progress bar.\",\n    ] = False\n    drop_repeated_text: Annotated[bool, \"Drop repeated text in OCR results.\"] = False\n\n    def __init__(self, recognition_model: RecognitionPredictor, config=None):\n        super().__init__(config)\n\n        self.recognition_model = recognition_model\n\n    def get_batch_size(self):\n        # Set to 1/4th of OCR batch size due to sequence length with tiling\n        if self.equation_batch_size is not None:\n            return self.equation_batch_size\n        elif settings.TORCH_DEVICE_MODEL == \"cuda\":\n            return 32\n        elif settings.TORCH_DEVICE_MODEL == \"mps\":\n            return 6\n        return 6\n\n    def __call__(self, document: Document):\n        images = []\n        equation_boxes = []\n        equation_block_ids = []\n        total_equation_blocks = 0\n\n        for page in document.pages:\n            page_image = page.get_image(highres=True)\n            page_size = page.polygon.width, page.polygon.height\n            image_size = page_image.size\n\n            page_equation_boxes = []\n            page_equation_block_ids = []\n            equation_blocks = page.contained_blocks(document, self.block_types)\n            for block in equation_blocks:\n                page_equation_boxes.append(\n                    block.polygon.rescale(page_size, image_size).bbox\n                )\n                page_equation_block_ids.append(block.id)\n                total_equation_blocks += 1\n\n            images.append(page_image)\n            equation_boxes.append(page_equation_boxes)\n            equation_block_ids.append(page_equation_block_ids)\n\n        if total_equation_blocks == 0:\n            return\n\n        predictions = self.get_latex_batched(images, equation_boxes)\n        for page_predictions, page_equation_block_ids in zip(\n            predictions, equation_block_ids\n        ):\n            assert len(page_predictions) == len(page_equation_block_ids), (\n                \"Every equation block should have a corresponding prediction\"\n            )\n            for block_prediction, block_id in zip(\n                page_predictions, page_equation_block_ids\n            ):\n                block = document.get_block(block_id)\n                block.html = self.fix_latex(block_prediction)\n\n    def fix_latex(self, math_html: str):\n        math_html = math_html.strip()\n        soup = BeautifulSoup(math_html, \"html.parser\")\n        opening_math_tag = soup.find(\"math\")\n\n        # No math block found\n        if not opening_math_tag:\n            return \"\"\n\n        # Force block format\n        opening_math_tag.attrs[\"display\"] = \"block\"\n        fixed_math_html = str(soup)\n\n        # Sometimes model outputs newlines at the beginning/end of tags\n        fixed_math_html = re.sub(\n            r\"^<math display=\\\"block\\\">\\\\n(?![a-zA-Z])\",\n            '<math display=\"block\">',\n            fixed_math_html,\n        )\n        fixed_math_html = re.sub(r\"\\\\n</math>$\", \"</math>\", fixed_math_html)\n        fixed_math_html = re.sub(r\"<br>\", \"\", fixed_math_html)\n        fixed_math_html = fix_text(\n            fixed_math_html, config=TextFixerConfig(unescape_html=True)\n        )\n        return fixed_math_html\n\n    def get_latex_batched(\n        self,\n        page_images: List[Image.Image],\n        bboxes: List[List[List[float]]],\n    ):\n        self.recognition_model.disable_tqdm = self.disable_tqdm\n        predictions: List[OCRResult] = self.recognition_model(\n            images=page_images,\n            bboxes=bboxes,\n            task_names=[\"ocr_with_boxes\"] * len(page_images),\n            recognition_batch_size=self.get_batch_size(),\n            sort_lines=False,\n            drop_repeated_text=self.drop_repeated_text,\n            max_tokens=2048,\n            max_sliding_window=2148,\n        )\n\n        equation_predictions = [\n            [line.text.strip() for line in page_prediction.text_lines]\n            for page_prediction in predictions\n        ]\n\n        return equation_predictions\n"
  },
  {
    "path": "marker/processors/footnote.py",
    "content": "import re\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\nfrom marker.schema.groups import PageGroup\n\n\nclass FootnoteProcessor(BaseProcessor):\n    \"\"\"\n    A processor for pushing footnotes to the bottom, and relabeling mislabeled text blocks.\n    \"\"\"\n    block_types = (BlockTypes.Footnote,)\n\n    def __call__(self, document: Document):\n        for page in document.pages:\n            self.push_footnotes_to_bottom(page, document)\n            self.assign_superscripts(page, document)\n\n    def push_footnotes_to_bottom(self, page: PageGroup, document: Document):\n        footnote_blocks = page.contained_blocks(document, self.block_types)\n\n        # Push footnotes to the bottom\n        for block in footnote_blocks:\n            # Check if it is top-level\n            if block.id in page.structure:\n                # Move to bottom if it is\n                page.structure.remove(block.id)\n                page.add_structure(block)\n\n    def assign_superscripts(self, page: PageGroup, document: Document):\n        footnote_blocks = page.contained_blocks(document, self.block_types)\n\n        for block in footnote_blocks:\n            for span in block.contained_blocks(document, (BlockTypes.Span,)):\n                if re.match(r\"^[0-9\\W]+\", span.text):\n                    span.has_superscript = True\n                break\n"
  },
  {
    "path": "marker/processors/ignoretext.py",
    "content": "import re\nfrom collections import Counter\nfrom itertools import groupby\nfrom typing import Annotated, List\n\nfrom rapidfuzz import fuzz\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\nfrom marker.schema.document import Document\n\n\nclass IgnoreTextProcessor(BaseProcessor):\n    \"\"\"\n    A processor for identifying and ignoring common text blocks in a document. \n    These blocks often represent repetitive or non-essential elements, such as headers, footers, or page numbers.\n    \"\"\"\n    block_types = (\n        BlockTypes.Text, BlockTypes.SectionHeader,\n        BlockTypes.TextInlineMath\n    )\n    common_element_threshold: Annotated[\n        float,\n        \"The minimum ratio of pages a text block must appear on to be considered a common element.\",\n        \"Blocks that meet or exceed this threshold are marked as common elements.\",\n    ] = 0.2\n    common_element_min_blocks: Annotated[\n        int,\n        \"The minimum number of occurrences of a text block within a document to consider it a common element.\",\n        \"This ensures that rare blocks are not mistakenly flagged.\",\n    ] = 3\n    max_streak: Annotated[\n        int,\n        \"The maximum number of consecutive occurrences of a text block allowed before it is classified as a common element.\",\n        \"Helps to identify patterns like repeated headers or footers.\",\n    ] = 3\n    text_match_threshold: Annotated[\n        int,\n        \"The minimum fuzzy match score (0-100) required to classify a text block as similar to a common element.\",\n        \"Higher values enforce stricter matching.\",\n    ] = 90\n\n    def __call__(self, document: Document):\n        first_blocks = []\n        last_blocks = []\n        for page in document.pages:\n            initial_block = None\n            last_block = None\n            for block in page.contained_blocks(document, self.block_types):\n                if block.structure is not None:\n                    if initial_block is None:\n                        initial_block = block\n\n                    last_block = block\n\n            if initial_block is not None:\n                first_blocks.append(initial_block)\n            if last_block is not None:\n                last_blocks.append(last_block)\n\n        self.filter_common_elements(document, first_blocks)\n        self.filter_common_elements(document, last_blocks)\n\n    @staticmethod\n    def clean_text(text):\n        text = text.replace(\"\\n\", \"\").strip()\n        text = re.sub(r\"^\\d+\\s*\", \"\", text)  # remove numbers at the start of the line\n        text = re.sub(r\"\\s*\\d+$\", \"\", text)  # remove numbers at the end of the line\n        return text\n\n    def filter_common_elements(self, document, blocks: List[Block]):\n        # We can't filter if we don't have enough pages to find common elements\n        if len(blocks) < self.common_element_min_blocks:\n            return\n\n        text = [self.clean_text(b.raw_text(document)) for b in blocks]\n\n        streaks = {}\n        for key, group in groupby(text):\n            streaks[key] = max(streaks.get(key, 0), len(list(group)))\n\n        counter = Counter(text)\n        common = [\n            k for k, v in counter.items()\n            if (v >= len(blocks) * self.common_element_threshold or streaks[k] >= self.max_streak)\n            and v > self.common_element_min_blocks\n        ]\n        if len(common) == 0:\n            return\n\n        for t, b in zip(text, blocks):\n            # Check against all common elements\n            if any(fuzz.ratio(t, common_element) > self.text_match_threshold for common_element in common):\n                b.ignore_for_output = True\n"
  },
  {
    "path": "marker/processors/line_merge.py",
    "content": "from typing import Annotated, List\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\nfrom marker.schema.document import Document\nfrom marker.schema.text import Line\nfrom marker.util import matrix_intersection_area\n\n\nclass LineMergeProcessor(BaseProcessor):\n    \"\"\"\n    A processor for merging inline math lines.\n    \"\"\"\n    block_types = (BlockTypes.Text, BlockTypes.TextInlineMath, BlockTypes.Caption, BlockTypes.Footnote, BlockTypes.SectionHeader)\n    min_merge_pct: Annotated[\n        float,\n        \"The minimum percentage of intersection area to consider merging.\"\n    ] = .015\n    block_expand_threshold: Annotated[\n        float,\n        \"The percentage of the block width to expand the bounding box.\"\n    ] = .05\n    min_merge_ydist: Annotated[\n        float,\n        \"The minimum y distance between lines to consider merging.\"\n    ] = 5\n    intersection_pct_threshold: Annotated[\n        float,\n        \"The total amount of intersection area concentrated in the max intersection block.\"\n    ] = .5\n    vertical_overlap_pct_threshold: Annotated[\n        float,\n        \"The minimum percentage of vertical overlap to consider merging.\"\n    ] = .8\n    use_llm: Annotated[\n        bool,\n        \"Whether to use LLMs to improve accuracy.\"\n    ] = False\n\n    def __init__(self, config):\n        super().__init__(config)\n\n    def merge_lines(self, lines: List[Line], block: Block):\n        lines = [l for l in lines if l.polygon.width * 5 > l.polygon.height]  # Skip vertical lines\n        line_bboxes = [l.polygon.expand(self.block_expand_threshold, 0).bbox for l in lines]  # Expand horizontally\n        intersections = matrix_intersection_area(line_bboxes, line_bboxes)\n\n        merges = []\n        merge = []\n        for i in range(len(line_bboxes)):\n            intersection_row = intersections[i]\n            intersection_row[i] = 0  # Zero out the current idx\n\n            if i < len(line_bboxes) - 1:\n                intersection_row[i+1] = 0 # Zero out the next idx, so we only evaluate merge from the left\n\n            if len(merge) == 0:\n                merge.append(i)\n                continue\n\n            # Zero out previous merge segments\n            merge_intersection = sum([intersection_row[m] for m in merge])\n            line_area = lines[i].polygon.area\n            intersection_pct = merge_intersection / max(1, line_area)\n\n            total_intersection = max(1, sum(intersection_row))\n\n            line_start = lines[merge[0]].polygon.y_start\n            line_end = lines[merge[0]].polygon.y_end\n\n            vertical_overlap_start = max(line_start, lines[i].polygon.y_start)\n            vertical_overlap_end = min(line_end, lines[i].polygon.y_end)\n            vertical_overlap = max(0, vertical_overlap_end - vertical_overlap_start)\n            vertical_overlap_pct = vertical_overlap / max(1, lines[i].polygon.height)\n\n            if all([\n                # Overlaps enough\n                intersection_pct >= self.min_merge_pct,\n                # Within same line\n                vertical_overlap_pct > self.vertical_overlap_pct_threshold,\n                # doesn't overlap with anything else\n                merge_intersection / total_intersection > self.intersection_pct_threshold\n            ]):\n                merge.append(i)\n            else:\n                merges.append(merge)\n                merge = []\n\n        if merge:\n            merges.append(merge)\n\n        merges = [m for m in merges if len(m) > 1]\n        merged = set()\n        for merge in merges:\n            merge = [m for m in merge if m not in merged]\n            if len(merge) < 2:\n                continue\n\n            line: Line = lines[merge[0]]\n            merged.add(merge[0])\n            for idx in merge[1:]:\n                other_line: Line = lines[idx]\n                line.merge(other_line)\n                block.structure.remove(other_line.id)\n                other_line.removed = True  # Mark line as removed\n                merged.add(idx)\n\n            # It is probably math if we are merging provider lines like this\n            if not line.formats:\n                line.formats = [\"math\"]\n            elif \"math\" not in line.formats:\n                line.formats.append(\"math\")\n\n\n    def __call__(self, document: Document):\n        # Merging lines only needed for inline math\n        if not self.use_llm:\n            return\n\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                if block.structure is None:\n                    continue\n\n                if not len(block.structure) >= 2:  # Skip single lines\n                    continue\n\n                lines = block.contained_blocks(document, (BlockTypes.Line,))\n                self.merge_lines(lines, block)\n"
  },
  {
    "path": "marker/processors/line_numbers.py",
    "content": "from typing import Annotated\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\n\nclass LineNumbersProcessor(BaseProcessor):\n    \"\"\"\n    A processor for ignoring line numbers.\n    \"\"\"\n    block_types = (BlockTypes.Text, BlockTypes.TextInlineMath)\n    strip_numbers_threshold: Annotated[\n        float,\n        \"The fraction of lines or tokens in a block that must be numeric to consider them as line numbers.\",\n    ] = 0.6\n    min_lines_in_block: Annotated[\n        int,\n        \"The minimum number of lines required in a block for it to be considered during processing.\",\n        \"Ensures that small blocks are ignored as they are unlikely to contain meaningful line numbers.\",\n    ] = 4\n    min_line_length: Annotated[\n        int,\n        \"The minimum length of a line (in characters) to consider it significant when checking for\",\n        \"numeric prefixes or suffixes. Prevents false positives for short lines.\",\n    ] = 10\n    min_line_number_span_ratio: Annotated[\n        float,\n        \"The minimum ratio of detected line number spans to total lines required to treat them as line numbers.\",\n    ] = .6\n\n    def __init__(self, config):\n        super().__init__(config)\n\n    def __call__(self, document: Document):\n        self.ignore_line_number_spans(document)\n        self.ignore_line_starts_ends(document)\n        self.ignore_line_number_blocks(document)\n\n    def ignore_line_number_spans(self, document: Document):\n        for page in document.pages:\n            line_count = 0\n            line_number_spans = []\n            for block in page.contained_blocks(document, (BlockTypes.Line,)):\n                if block.structure is None:\n                    continue\n\n                line_count += 1\n                leftmost_span = None\n                for span in block.contained_blocks(document, (BlockTypes.Span,)):\n                    if leftmost_span is None or span.polygon.x_start < leftmost_span.polygon.x_start:\n                        leftmost_span = span\n\n                if leftmost_span is not None and leftmost_span.text.strip().isnumeric():\n                    line_number_spans.append(leftmost_span)\n\n            if line_count > 0 and len(line_number_spans) / line_count > self.min_line_number_span_ratio:\n                for span in line_number_spans:\n                    span.ignore_for_output = True\n\n    def ignore_line_number_blocks(self, document: Document):\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                raw_text = block.raw_text(document)\n                tokens = raw_text.strip().split()\n                if len(tokens) < 4:\n                    continue\n\n                tokens_are_numbers = [token.isdigit() for token in tokens]\n                if all([\n                    sum(tokens_are_numbers) / len(tokens) > self.strip_numbers_threshold,\n                    block.polygon.height > block.polygon.width  # Ensure block is taller than it is wide, like vertical page numbers\n                ]):\n                    block.ignore_for_output = True\n\n    def ignore_line_starts_ends(self, document: Document):\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                if block.structure is None:\n                    continue\n\n                all_lines = block.structure_blocks(document)\n                if len(all_lines) < self.min_lines_in_block:\n                    continue\n\n                starts_with_number = []\n                ends_with_number = []\n                for line in all_lines:\n                    spans = line.structure_blocks(document)\n                    if len(spans) < 2:\n                        starts_with_number.append(False)\n                        ends_with_number.append(False)\n                        continue\n\n                    raw_text = line.raw_text(document)\n                    starts = all([\n                        spans[0].text.strip().isdigit(),\n                        len(raw_text) - len(spans[0].text.strip()) > self.min_line_length\n                    ])\n\n                    ends = all([\n                        spans[-1].text.strip().isdigit(),\n                        len(raw_text) - len(spans[-1].text.strip()) > self.min_line_length\n                    ])\n\n                    starts_with_number.append(starts)\n                    ends_with_number.append(ends)\n\n                if sum(starts_with_number) / len(starts_with_number) > self.strip_numbers_threshold:\n                    for starts, line in zip(starts_with_number, all_lines):\n                        if starts:\n                            span = page.get_block(line.structure[0])\n                            span.ignore_for_output = True\n\n                if sum(ends_with_number) / len(ends_with_number) > self.strip_numbers_threshold:\n                    for ends, line in zip(ends_with_number, all_lines):\n                        if ends:\n                            span = page.get_block(line.structure[-1])\n                            span.ignore_for_output = True\n"
  },
  {
    "path": "marker/processors/list.py",
    "content": "from typing import Annotated, List, Tuple\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import ListItem\nfrom marker.schema.document import Document\n\n\nclass ListProcessor(BaseProcessor):\n    \"\"\"\n    A processor for merging lists across pages and columns\n    \"\"\"\n    block_types = (BlockTypes.ListGroup,)\n    ignored_block_types: Annotated[\n        Tuple[BlockTypes],\n        \"The list of block types to ignore when merging lists.\",\n    ] = (BlockTypes.PageHeader, BlockTypes.PageFooter)\n    min_x_indent: Annotated[\n        float, \"The minimum horizontal indentation required to consider a block as a nested list item.\",\n        \"This is expressed as a percentage of the page width and is used to determine hierarchical relationships within a list.\",\n    ] = 0.01\n\n    def __init__(self, config):\n        super().__init__(config)\n\n    def __call__(self, document: Document):\n        self.list_group_continuation(document)\n        self.list_group_indentation(document)\n\n    def list_group_continuation(self, document: Document):\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                next_block = document.get_next_block(block, self.ignored_block_types)\n                if next_block is None:\n                    continue\n                if next_block.block_type not in self.block_types:\n                    continue\n                if next_block.structure is None:\n                    continue\n                if next_block.ignore_for_output:\n                    continue\n\n                column_break, page_break = False, False\n                next_block_in_first_quadrant = False\n\n                if next_block.page_id == block.page_id:  # block on the same page\n                    # we check for a column break\n                    column_break = next_block.polygon.y_start <= block.polygon.y_end\n                else:\n                    page_break = True\n                    next_page = document.get_page(next_block.page_id)\n                    next_block_in_first_quadrant = (next_block.polygon.x_start < next_page.polygon.width // 2) and \\\n                        (next_block.polygon.y_start < next_page.polygon.height // 2)\n\n                block.has_continuation = column_break or (page_break and next_block_in_first_quadrant)\n\n    def list_group_indentation(self, document: Document):\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                if block.structure is None:\n                    continue\n                if block.ignore_for_output:\n                    continue\n\n                stack: List[ListItem] = [block.get_next_block(page, None)]\n                for list_item_id in block.structure:\n                    list_item_block: ListItem = page.get_block(list_item_id)\n\n                    # This can be a line sometimes\n                    if list_item_block.block_type != BlockTypes.ListItem:\n                        continue\n\n                    while stack and list_item_block.polygon.x_start <= stack[-1].polygon.x_start + (self.min_x_indent * page.polygon.width):\n                        stack.pop()\n\n                    if stack and list_item_block.polygon.y_start > stack[-1].polygon.y_start:\n                        list_item_block.list_indent_level = stack[-1].list_indent_level\n                        if list_item_block.polygon.x_start > stack[-1].polygon.x_start + (self.min_x_indent * page.polygon.width):\n                            list_item_block.list_indent_level += 1\n\n                    next_list_item_block = block.get_next_block(page, list_item_block)\n                    if next_list_item_block is not None and next_list_item_block.polygon.x_start > list_item_block.polygon.x_end:\n                        stack = [next_list_item_block]  # reset stack on column breaks\n                    else:\n                        stack.append(list_item_block)\n\n                stack: List[ListItem] = [block.get_next_block(page, None)]\n                for list_item_id in block.structure.copy():\n                    list_item_block: ListItem = page.get_block(list_item_id)\n\n                    while stack and list_item_block.list_indent_level <= stack[-1].list_indent_level:\n                        stack.pop()\n\n                    if stack:\n                        current_parent = stack[-1]\n                        current_parent.add_structure(list_item_block)\n                        current_parent.polygon = current_parent.polygon.merge([list_item_block.polygon])\n\n                        block.remove_structure_items([list_item_id])\n                    stack.append(list_item_block)\n"
  },
  {
    "path": "marker/processors/llm/__init__.py",
    "content": "import json\nimport traceback\nfrom concurrent.futures import ThreadPoolExecutor, as_completed\nfrom typing import Annotated, TypedDict, List, Sequence\n\nfrom pydantic import BaseModel\nfrom tqdm import tqdm\nfrom PIL import Image\n\nfrom marker.output import json_to_html\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block, BlockId\nfrom marker.schema.document import Document\nfrom marker.schema.groups import PageGroup\nfrom marker.services import BaseService\nfrom marker.util import assign_config\nfrom marker.logger import get_logger\n\nlogger = get_logger()\n\n\nclass PromptData(TypedDict):\n    prompt: str\n    image: Image.Image\n    block: Block\n    schema: BaseModel\n    page: PageGroup\n    additional_data: dict | None\n\n\nclass BlockData(TypedDict):\n    page: PageGroup\n    block: Block\n\n\nclass BaseLLMProcessor(BaseProcessor):\n    \"\"\"\n    A processor for using LLMs to convert blocks.\n    \"\"\"\n\n    max_concurrency: Annotated[\n        int,\n        \"The maximum number of concurrent requests to make to the Gemini model.\",\n    ] = 3\n    image_expansion_ratio: Annotated[\n        float,\n        \"The ratio to expand the image by when cropping.\",\n    ] = 0.01\n    use_llm: Annotated[\n        bool,\n        \"Whether to use the LLM model.\",\n    ] = False\n    disable_tqdm: Annotated[\n        bool,\n        \"Whether to disable the tqdm progress bar.\",\n    ] = False\n    block_types = None\n\n    def __init__(self, llm_service: BaseService, config=None):\n        super().__init__(config)\n\n        self.llm_service = None\n        if not self.use_llm:\n            return\n\n        self.llm_service = llm_service\n\n    def extract_image(\n        self,\n        document: Document,\n        image_block: Block,\n        remove_blocks: Sequence[BlockTypes] | None = None,\n    ) -> Image.Image:\n        return image_block.get_image(\n            document,\n            highres=True,\n            expansion=(self.image_expansion_ratio, self.image_expansion_ratio),\n            remove_blocks=remove_blocks,\n        )\n\n    def normalize_block_json(self, block: Block, document: Document, page: PageGroup):\n        \"\"\"\n        Get the normalized JSON representation of a block for the LLM.\n        \"\"\"\n        page_width = page.polygon.width\n        page_height = page.polygon.height\n        block_bbox = block.polygon.bbox\n\n        # Normalize bbox to 0-1000 range\n        normalized_bbox = [\n            (block_bbox[0] / page_width) * 1000,\n            (block_bbox[1] / page_height) * 1000,\n            (block_bbox[2] / page_width) * 1000,\n            (block_bbox[3] / page_height) * 1000,\n        ]\n\n        block_json = {\n            \"id\": str(block.id),\n            \"block_type\": str(block.id.block_type),\n            \"bbox\": normalized_bbox,\n            \"html\": json_to_html(block.render(document)),\n        }\n\n        return block_json\n\n    def load_blocks(self, response: dict):\n        return [json.loads(block) for block in response[\"blocks\"]]\n\n    def handle_rewrites(self, blocks: list, document: Document):\n        for block_data in blocks:\n            try:\n                block_id = block_data[\"id\"].strip().lstrip(\"/\")\n                _, page_id, block_type, block_id = block_id.split(\"/\")\n                block_id = BlockId(\n                    page_id=page_id,\n                    block_id=block_id,\n                    block_type=getattr(BlockTypes, block_type),\n                )\n                block = document.get_block(block_id)\n                if not block:\n                    logger.debug(f\"Block {block_id} not found in document\")\n                    continue\n\n                if hasattr(block, \"html\"):\n                    block.html = block_data[\"html\"]\n            except Exception as e:\n                logger.debug(f\"Error parsing block ID {block_data['id']}: {e}\")\n                continue\n\n\nclass BaseLLMComplexBlockProcessor(BaseLLMProcessor):\n    \"\"\"\n    A processor for using LLMs to convert blocks with more complex logic.\n    \"\"\"\n\n    def __call__(self, document: Document):\n        if not self.use_llm or self.llm_service is None:\n            return\n\n        try:\n            self.rewrite_blocks(document)\n        except Exception as e:\n            logger.warning(f\"Error rewriting blocks in {self.__class__.__name__}: {e}\")\n\n    def process_rewriting(self, document: Document, page: PageGroup, block: Block):\n        raise NotImplementedError()\n\n    def rewrite_blocks(self, document: Document):\n        # Don't show progress if there are no blocks to process\n        total_blocks = sum(\n            len(page.contained_blocks(document, self.block_types))\n            for page in document.pages\n        )\n        if total_blocks == 0:\n            return\n\n        pbar = tqdm(\n            total=total_blocks,\n            desc=f\"{self.__class__.__name__} running\",\n            disable=self.disable_tqdm\n        )\n        with ThreadPoolExecutor(max_workers=self.max_concurrency) as executor:\n            for future in as_completed(\n                [\n                    executor.submit(self.process_rewriting, document, page, block)\n                    for page in document.pages\n                    for block in page.contained_blocks(document, self.block_types)\n                ]\n            ):\n                future.result()  # Raise exceptions if any occurred\n                pbar.update(1)\n\n        pbar.close()\n\n\nclass BaseLLMSimpleBlockProcessor(BaseLLMProcessor):\n    \"\"\"\n    A processor for using LLMs to convert single blocks.\n    \"\"\"\n\n    # Override init since we don't need an llmservice here\n    def __init__(self, config=None):\n        assign_config(self, config)\n\n    def __call__(self, result: dict, prompt_data: PromptData, document: Document):\n        try:\n            self.rewrite_block(result, prompt_data, document)\n        except Exception as e:\n            logger.warning(f\"Error rewriting block in {self.__class__.__name__}: {e}\")\n            traceback.print_exc()\n\n    def inference_blocks(self, document: Document) -> List[BlockData]:\n        blocks = []\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                blocks.append({\"page\": page, \"block\": block})\n        return blocks\n\n    def block_prompts(self, document: Document) -> List[PromptData]:\n        raise NotImplementedError()\n\n    def rewrite_block(\n        self, response: dict, prompt_data: PromptData, document: Document\n    ):\n        raise NotImplementedError()\n"
  },
  {
    "path": "marker/processors/llm/llm_complex.py",
    "content": "from typing import List\n\nimport markdown2\nfrom pydantic import BaseModel\n\nfrom marker.processors.llm import PromptData, BaseLLMSimpleBlockProcessor\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\n\nclass LLMComplexRegionProcessor(BaseLLMSimpleBlockProcessor):\n    block_types = (BlockTypes.ComplexRegion,)\n    complex_region_prompt = \"\"\"You are a text correction expert specializing in accurately reproducing text from images.\nYou will receive an image of a text block and the text that can be extracted from the image.\nYour task is to generate markdown to properly represent the content of the image.  Do not omit any text present in the image - make sure everything is included in the markdown representation.  The markdown representation should be as faithful to the original image as possible.\n\nFormatting should be in markdown, with the following rules:\n- * for italics, ** for bold, and ` for inline code.\n- Use <sup>...</sup> for superscripts.\n- Headers should be formatted with #, with one # for the largest header, and up to 6 for the smallest.\n- Lists should be formatted with either - or 1. for unordered and ordered lists, respectively.\n- Links should be formatted with [text](url).\n- Use ``` for code blocks.\n- Inline math should be formatted with <math>math expression</math>.\n- Display math should be formatted with <math display=\"block\">math expression</math>.\n- Values and labels should be extracted from forms, and put into markdown tables, with the labels on the left side, and values on the right.  The headers should be \"Labels\" and \"Values\".  Other text in the form can appear between the tables.\n- Tables should be formatted with markdown tables, with the headers bolded.\n\n**Instructions:**\n1. Carefully examine the provided block image.\n2. Analyze the existing text representation.\n3. Generate the markdown representation of the content in the image.\n**Example:**\nInput:\n```text\nTable 1: Car Sales\n```\nOutput:\n```markdown\n## Table 1: Car Sales\n\n| Car | Sales |\n| --- | --- |\n| Honda | 100 |\n| Toyota | 200 |\n```\n**Input:**\n```text\n{extracted_text}\n```\n\"\"\"\n\n    def block_prompts(self, document: Document) -> List[PromptData]:\n        prompt_data = []\n        for block in self.inference_blocks(document):\n            text = block[\"block\"].raw_text(document)\n            prompt = self.complex_region_prompt.replace(\"{extracted_text}\", text)\n            image = self.extract_image(document, block[\"block\"])\n            prompt_data.append({\n                \"prompt\": prompt,\n                \"image\": image,\n                \"block\": block[\"block\"],\n                \"schema\": ComplexSchema,\n                \"page\": block[\"page\"]\n            })\n        return prompt_data\n\n    def rewrite_block(self, response: dict, prompt_data: PromptData, document: Document):\n        block = prompt_data[\"block\"]\n        text = block.raw_text(document)\n\n        if not response or \"corrected_markdown\" not in response:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        corrected_markdown = response[\"corrected_markdown\"]\n\n        # The original table is okay\n        if \"no corrections\" in corrected_markdown.lower():\n            return\n\n        # Potentially a partial response\n        if len(corrected_markdown) < len(text) * .5:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        # Convert LLM markdown to html\n        corrected_markdown = corrected_markdown.strip().lstrip(\"```markdown\").rstrip(\"```\").strip()\n        block.html = markdown2.markdown(corrected_markdown, extras=[\"tables\"])\n\nclass ComplexSchema(BaseModel):\n    corrected_markdown: str"
  },
  {
    "path": "marker/processors/llm/llm_equation.py",
    "content": "from pydantic import BaseModel\n\nfrom marker.processors.llm import BaseLLMSimpleBlockProcessor, PromptData, BlockData\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\nfrom typing import Annotated, List\n\n\nclass LLMEquationProcessor(BaseLLMSimpleBlockProcessor):\n    block_types = (BlockTypes.Equation,)\n    min_equation_height: Annotated[\n        float,\n        \"The minimum ratio between equation height and page height to consider for processing.\",\n     ] = 0.06\n    image_expansion_ratio: Annotated[\n        float,\n        \"The ratio to expand the image by when cropping.\",\n    ] = 0.05 # Equations sometimes get bboxes that are too tight\n    redo_inline_math: Annotated[\n        bool,\n        \"Whether to redo inline math blocks.\",\n    ] = False\n    equation_latex_prompt: Annotated[\n        str,\n        \"The prompt to use for generating LaTeX from equations.\",\n        \"Default is a string containing the Gemini prompt.\"\n    ] = r\"\"\"You're an expert mathematician who is good at writing LaTeX code and html for equations.\nYou'll receive an image of a math block, along with the text extracted from the block.  It may contain one or more equations. Your job is to write html that represents the content of the image, with the equations in LaTeX format.\n\nSome guidelines:\n- Output valid html, where all the equations can render properly.\n- Use <math display=\"block\"> as a block equation delimiter and <math> for inline equations.  Do not use $ or $$ as delimiters.\n- Keep the LaTeX code inside the math tags simple, concise, and KaTeX compatible.\n- Enclose all equations in the correct math tags. Use multiple math tags inside the html to represent multiple equations.\n- Only use the html tags math, i, b, p, and br.\n- Make sure to include all the equations in the image in the html output.\n- Make sure to include other text in the image in the correct positions along with the equations.\n\n**Instructions:**\n1. Carefully examine the provided image.\n2. Analyze the existing html, which may include LaTeX code.\n3. Write a short analysis of how the html should be corrected to represent the image.\n4. If the html and LaTeX are correct, write \"No corrections needed.\"\n5. If the html and LaTeX are incorrect, generate the corrected html.\n6. Output only the analysis, then the corrected html or \"No corrections needed.\"\n**Example:**\nInput:\n```html\nThe following equation illustrates the Pythagorean theorem:\nx2 + y2 = z2\n\nAnd this equation is a bit more complex:\n(ab * x5 + x2 + 2 * x + 123)/t\n```\nOutput:\nanalysis: The equations are not formatted as LaTeX, or enclosed in math tags.\n```html\n<p>The following equation illustrates the Pythagorean theorem:</p> \n<math display=\"block\">x^{2} + y^{2} = z^{2}</math>\n\n<p>And this equation is a bit more complex, and contains <math>ab \\cdot x^{5}</math>:</p>\n<math display=\"block\">\\frac{ab \\cdot x^{5} + x^{2} + 2 \\cdot x + 123}{t}</math>\n```\n**Input:**\n```html\n{equation}\n```\n\"\"\"\n\n    def inference_blocks(self, document: Document) -> List[BlockData]:\n        blocks = super().inference_blocks(document)\n        out_blocks = []\n        for block_data in blocks:\n            block = block_data[\"block\"]\n            page = block_data[\"page\"]\n\n            # If we redo inline math, we redo all equations\n            if all([\n                block.polygon.height / page.polygon.height < self.min_equation_height,\n                not self.redo_inline_math\n            ]):\n                continue\n            out_blocks.append(block_data)\n        return out_blocks\n\n    def block_prompts(self, document: Document) -> List[PromptData]:\n        prompt_data = []\n        for block_data in self.inference_blocks(document):\n            block = block_data[\"block\"]\n            text = block.html if block.html else block.raw_text(document)\n            prompt = self.equation_latex_prompt.replace(\"{equation}\", text)\n            image = self.extract_image(document, block)\n\n            prompt_data.append({\n                \"prompt\": prompt,\n                \"image\": image,\n                \"block\": block,\n                \"schema\": EquationSchema,\n                \"page\": block_data[\"page\"]\n            })\n\n        return prompt_data\n\n\n    def rewrite_block(self, response: dict, prompt_data: PromptData, document: Document):\n        block = prompt_data[\"block\"]\n        text = block.html if block.html else block.raw_text(document)\n\n        if not response or \"corrected_equation\" not in response:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        html_equation = response[\"corrected_equation\"]\n\n        if \"no corrections needed\" in html_equation.lower():\n            return\n\n        balanced_tags = html_equation.count(\"<math\") == html_equation.count(\"</math>\")\n        if not all([\n            html_equation,\n            balanced_tags,\n            len(html_equation) > len(text) * .3,\n        ]):\n            block.update_metadata(llm_error_count=1)\n            return\n\n        block.html = html_equation\n\nclass EquationSchema(BaseModel):\n    analysis: str\n    corrected_equation: str"
  },
  {
    "path": "marker/processors/llm/llm_form.py",
    "content": "from typing import List\n\nfrom pydantic import BaseModel\n\nfrom marker.output import json_to_html\nfrom marker.processors.llm import PromptData, BaseLLMSimpleBlockProcessor, BlockData\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\n\nclass LLMFormProcessor(BaseLLMSimpleBlockProcessor):\n    block_types = (BlockTypes.Form,)\n    form_rewriting_prompt = \"\"\"You are a text correction expert specializing in accurately reproducing text from images.\nYou will receive an image of a text block and an html representation of the form in the image.\nYour task is to correct any errors in the html representation, and format it properly.\nValues and labels should appear in html tables, with the labels on the left side, and values on the right.  Other text in the form can appear between the tables.  Only use the tags `table, p, span, i, b, th, td, tr, and div`.  Do not omit any text from the form - make sure everything is included in the html representation.  It should be as faithful to the original form as possible.\n**Instructions:**\n1. Carefully examine the provided form block image.\n2. Analyze the html representation of the form.\n3. Compare the html representation to the image.\n4. If the html representation is correct, or you cannot read the image properly, then write \"No corrections needed.\"\n5. If the html representation contains errors, generate the corrected html representation.\n6. Output only either the corrected html representation or \"No corrections needed.\"\n**Example:**\nInput:\n```html\n<table>\n    <tr>\n        <td>Label 1</td>\n        <td>Label 2</td>\n        <td>Label 3</td>\n    </tr>\n    <tr>\n        <td>Value 1</td>\n        <td>Value 2</td>\n        <td>Value 3</td>\n    </tr>\n</table> \n```\nOutput:\nComparison: The html representation has the labels in the first row and the values in the second row.  It should be corrected to have the labels on the left side and the values on the right side.\n```html\n<table>\n    <tr>\n        <td>Label 1</td>\n        <td>Value 1</td>\n    </tr>\n    <tr>\n        <td>Label 2</td>\n        <td>Value 2</td>\n    </tr>\n    <tr>\n        <td>Label 3</td>\n        <td>Value 3</td>\n    </tr>\n</table>\n```\n**Input:**\n```html\n{block_html}\n```\n\"\"\"\n\n    def inference_blocks(self, document: Document) -> List[BlockData]:\n        blocks = super().inference_blocks(document)\n        out_blocks = []\n        for block_data in blocks:\n            block = block_data[\"block\"]\n            children = block.contained_blocks(document, (BlockTypes.TableCell,))\n            if not children:\n                continue\n            out_blocks.append(block_data)\n        return out_blocks\n\n\n    def block_prompts(self, document: Document) -> List[PromptData]:\n        prompt_data = []\n        for block_data in self.inference_blocks(document):\n            block = block_data[\"block\"]\n            block_html = json_to_html(block.render(document))\n            prompt = self.form_rewriting_prompt.replace(\"{block_html}\", block_html)\n            image = self.extract_image(document, block)\n            prompt_data.append({\n                \"prompt\": prompt,\n                \"image\": image,\n                \"block\": block,\n                \"schema\": FormSchema,\n                \"page\": block_data[\"page\"]\n            })\n        return prompt_data\n\n\n    def rewrite_block(self, response: dict, prompt_data: PromptData, document: Document):\n        block = prompt_data[\"block\"]\n        block_html = json_to_html(block.render(document))\n\n        if not response or \"corrected_html\" not in response:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        corrected_html = response[\"corrected_html\"]\n\n        # The original table is okay\n        if \"no corrections needed\" in corrected_html.lower():\n            return\n\n        # Potentially a partial response\n        if len(corrected_html) < len(block_html) * .33:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        corrected_html = corrected_html.strip().lstrip(\"```html\").rstrip(\"```\").strip()\n        block.html = corrected_html\n\nclass FormSchema(BaseModel):\n    comparison: str\n    corrected_html: str"
  },
  {
    "path": "marker/processors/llm/llm_handwriting.py",
    "content": "import markdown2\nfrom pydantic import BaseModel\nfrom marker.processors.llm import PromptData, BaseLLMSimpleBlockProcessor, BlockData\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\nfrom typing import Annotated, List\n\n\nclass LLMHandwritingProcessor(BaseLLMSimpleBlockProcessor):\n    block_types = (BlockTypes.Handwriting, BlockTypes.Text)\n    handwriting_generation_prompt: Annotated[\n        str,\n        \"The prompt to use for OCRing handwriting.\",\n        \"Default is a string containing the Gemini prompt.\"\n    ] = \"\"\"You are an expert editor specializing in accurately reproducing text from images.\nYou will receive an image of a text block. Your task is to generate markdown to properly represent the content of the image.  Do not omit any text present in the image - make sure everything is included in the markdown representation.  The markdown representation should be as faithful to the original image as possible.\n\nFormatting should be in markdown, with the following rules:\n- * for italics, ** for bold, and ` for inline code.\n- Headers should be formatted with #, with one # for the largest header, and up to 6 for the smallest.\n- Lists should be formatted with either - or 1. for unordered and ordered lists, respectively.\n- Links should be formatted with [text](url).\n- Use ``` for code blocks.\n- Inline math should be formatted with <math>math expression</math>.\n- Display math should be formatted with <math display=\"block\">math expression</math>.\n- Values and labels should be extracted from forms, and put into markdown tables, with the labels on the left side, and values on the right.  The headers should be \"Labels\" and \"Values\".  Other text in the form can appear between the tables.\n- Tables should be formatted with markdown tables, with the headers bolded.\n\n**Instructions:**\n1. Carefully examine the provided block image.\n2. Output the markdown representing the content of the image.\n\"\"\"\n\n    def inference_blocks(self, document: Document) -> List[BlockData]:\n        blocks = super().inference_blocks(document)\n        out_blocks = []\n        for block_data in blocks:\n            raw_text = block_data[\"block\"].raw_text(document)\n            block = block_data[\"block\"]\n\n            # Don't process text blocks that contain lines already\n            if block.block_type == BlockTypes.Text:\n                lines = block.contained_blocks(document, (BlockTypes.Line,))\n                if len(lines) > 0 or len(raw_text.strip()) > 0:\n                    continue\n            out_blocks.append(block_data)\n        return out_blocks\n\n\n    def block_prompts(self, document: Document) -> List[PromptData]:\n        prompt_data = []\n        for block_data in self.inference_blocks(document):\n            block = block_data[\"block\"]\n            prompt = self.handwriting_generation_prompt\n            image = self.extract_image(document, block)\n\n            prompt_data.append({\n                \"prompt\": prompt,\n                \"image\": image,\n                \"block\": block,\n                \"schema\": HandwritingSchema,\n                \"page\": block_data[\"page\"]\n            })\n        return prompt_data\n\n    def rewrite_block(self, response: dict, prompt_data: PromptData, document: Document):\n        block = prompt_data[\"block\"]\n        raw_text = block.raw_text(document)\n\n        if not response or \"markdown\" not in response:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        markdown = response[\"markdown\"]\n        if len(markdown) < len(raw_text) * .5:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        markdown = markdown.strip().lstrip(\"```markdown\").rstrip(\"```\").strip()\n        block.html = markdown2.markdown(markdown, extras=[\"tables\"])\n\nclass HandwritingSchema(BaseModel):\n    markdown: str\n"
  },
  {
    "path": "marker/processors/llm/llm_image_description.py",
    "content": "from pydantic import BaseModel\n\nfrom marker.processors.llm import PromptData, BaseLLMSimpleBlockProcessor, BlockData\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\nfrom typing import Annotated, List\n\n\nclass LLMImageDescriptionProcessor(BaseLLMSimpleBlockProcessor):\n    block_types = (\n        BlockTypes.Picture,\n        BlockTypes.Figure,\n    )\n    extract_images: Annotated[bool, \"Extract images from the document.\"] = True\n    image_description_prompt: Annotated[\n        str,\n        \"The prompt to use for generating image descriptions.\",\n        \"Default is a string containing the Gemini prompt.\",\n    ] = \"\"\"You are a document analysis expert who specializes in creating text descriptions for images.\nYou will receive an image of a picture or figure.  Your job will be to create a short description of the image.\n**Instructions:**\n1. Carefully examine the provided image.\n2. Analyze any text that was extracted from within the image.\n3. Output a faithful description of the image.  Make sure there is enough specific detail to accurately reconstruct the image.  If the image is a figure or contains numeric data, include the numeric data in the output.\n**Example:**\nInput:\n```text\n\"Fruit Preference Survey\"\n20, 15, 10\nApples, Bananas, Oranges\n```\nOutput:\nIn this figure, a bar chart titled \"Fruit Preference Survey\" is showing the number of people who prefer different types of fruits.  The x-axis shows the types of fruits, and the y-axis shows the number of people.  The bar chart shows that most people prefer apples, followed by bananas and oranges.  20 people prefer apples, 15 people prefer bananas, and 10 people prefer oranges.\n**Input:**\n```text\n{raw_text}\n```\n\"\"\"\n\n    def inference_blocks(self, document: Document) -> List[BlockData]:\n        blocks = super().inference_blocks(document)\n        if self.extract_images:\n            return []\n        return blocks\n\n    def block_prompts(self, document: Document) -> List[PromptData]:\n        prompt_data = []\n        for block_data in self.inference_blocks(document):\n            block = block_data[\"block\"]\n            prompt = self.image_description_prompt.replace(\n                \"{raw_text}\", block.raw_text(document)\n            )\n            image = self.extract_image(document, block)\n\n            prompt_data.append(\n                {\n                    \"prompt\": prompt,\n                    \"image\": image,\n                    \"block\": block,\n                    \"schema\": ImageSchema,\n                    \"page\": block_data[\"page\"],\n                }\n            )\n\n        return prompt_data\n\n    def rewrite_block(\n        self, response: dict, prompt_data: PromptData, document: Document\n    ):\n        block = prompt_data[\"block\"]\n\n        if not response or \"image_description\" not in response:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        image_description = response[\"image_description\"]\n        if len(image_description) < 10:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        block.description = image_description\n\n\nclass ImageSchema(BaseModel):\n    image_description: str\n"
  },
  {
    "path": "marker/processors/llm/llm_mathblock.py",
    "content": "from concurrent.futures import ThreadPoolExecutor, as_completed\nfrom typing import List, Tuple, Annotated\n\nfrom pydantic import BaseModel\nfrom tqdm import tqdm\n\nfrom marker.output import json_to_html, unwrap_outer_tag\nfrom marker.processors.llm import BaseLLMComplexBlockProcessor\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block, InlineMath\nfrom marker.schema.document import Document\nfrom marker.schema.groups import PageGroup\n\n\nclass LLMMathBlockProcessor(BaseLLMComplexBlockProcessor):\n    redo_inline_math: Annotated[\n        bool,\n        \"If True, the inline math will be re-done, otherwise it will be left as is.\",\n    ] = False\n    inlinemath_min_ratio: Annotated[\n        float,\n        \"If more than this ratio of blocks are inlinemath blocks, assume everything has math.\",\n    ] = 0.4\n\n    block_types = (BlockTypes.TextInlineMath,)  # Primary block type\n    additional_block_types = (\n        BlockTypes.Text,\n        BlockTypes.Caption,\n        BlockTypes.SectionHeader,\n        BlockTypes.Footnote,\n    )  # Seconday, can also contain math\n\n    text_math_rewriting_prompt = \"\"\"You are a text correction expert specializing in accurately reproducing text from images.\nYou will receive an image of a text block and extracted text corresponding to the text in the image.\nYour task is to correct any errors in the extracted text, including math, formatting, and other inaccuracies, and output the corrected block in html format.  Stay as faithful to the text in the image as possible.\n\n**Instructions:**\n\n1. Carefully examine the provided text block image .\n2. Analyze the text that has been extracted from the block.\n3. Compare the extracted text to the corresponding text in the image.\n4. Write a short analysis of the text block, including any errors you see in the extracted text.\n5. If there are no errors in any of the extracted text, output \"No corrections needed\".\n6. Correct any errors in the extracted text, including:\n    * Inline math: Ensure all mathematical expressions are correctly formatted and rendered.  Surround them with <math>...</math> tags.  The math expressions should be rendered in simple, concise, KaTeX-compatible LaTeX.  Do not use $ or $$ as delimiters.\n    * If a math expression is not in LaTeX format, convert it to LaTeX format, and surround it with <math>...</math> tags.\n    * Formatting: Maintain consistent formatting with the text block image, including spacing, indentation, subscripts/superscripts, and special characters.  Use the <i>, <b>, <sup>, <sub>, and <span> tags to format the text as needed.\n    * Other inaccuracies:  If the image is handwritten then you may correct any spelling errors, or other discrepancies.\n    * Ensure lines wrap properly, and that newlines are not in the middle of sentences.\n7. Do not remove any formatting i.e bold, italics, math, superscripts, subscripts, etc from the extracted text unless it is necessary to correct an error.\n8. Output the corrected text in html format, as shown in the example below.  Only use the p, math, br, a, i, b, sup, sub, and span tags.\n9. You absolutely cannot remove any <a href='#...'>...</a> tags, those are extremely important for references and are coming directly from the document, you MUST always preserve them.\n\n**Example:**\n\nInput:\n```html\nAdversarial training (AT) <a href='#page-9-1'>[23]</a>, which aims to minimize the model's risk under the worst-case perturbations, \nis currently the most effective approach for improving the robustness of deep neural networks. For a given neural network f(x, w) \nwith parameters w, the optimization objective of AT can be formulated as follows:\n```\n\nOutput:\nanalysis: The inline math is not in LaTeX format and is not surrounded by <math>...</math> tags.\n```html\nAdversarial training <i>(AT)</i> <a href='#page-9-1'>[23]</a>, which aims to minimize the model's risk under the worst-case perturbations, is currently the most effective approach for improving the robustness of deep neural networks. For a given neural network <math>f(x, w)</math> with parameters <math>w</math>, the optimization objective of AT can be formulated as follows:\n```\n\n**Input:**\n```html\n{extracted_html}\n```\n\"\"\"\n\n    def rewrite_blocks(self, document: Document):\n        if not self.redo_inline_math:\n            return\n\n        # Get inline math blocks\n        inline_blocks: List[InlineMath] = [\n            (page, block)\n            for page in document.pages\n            for block in page.contained_blocks(document, self.block_types)\n        ]\n\n        # Get other blocks with detected math in them\n        detected_blocks = [\n            (page, block)\n            for page in document.pages\n            for block in page.contained_blocks(\n                document,\n                (\n                    BlockTypes.Text,\n                    BlockTypes.Caption,\n                    BlockTypes.SectionHeader,\n                    BlockTypes.Footnote,\n                    BlockTypes.ListItem,\n                ),\n            )\n            if any(\n                [\n                    b.formats and \"math\" in b.formats\n                    for b in block.contained_blocks(document, (BlockTypes.Line,))\n                ]\n            )\n        ]\n\n        # If a page has enough math blocks, assume all blocks can contain math\n        additional_text_blocks = []\n        for page in document.pages:\n            # Check for inline math blocks\n            page_inlinemath_blocks = [\n                im for im in inline_blocks if im[0].page_id == page.page_id\n            ]\n            page_detected_blocks = [\n                db for db in detected_blocks if db[0].page_id == page.page_id\n            ]\n            math_block_count = len(page_inlinemath_blocks) + len(page_detected_blocks)\n\n            # Find all potential blocks\n            additional_blocks = page.contained_blocks(\n                document, self.additional_block_types + self.block_types\n            )\n\n            # Check if the ratio of math blocks to additional blocks is high enough\n            if (\n                math_block_count / max(1, len(additional_blocks))\n                < self.inlinemath_min_ratio\n            ):\n                continue\n\n            for b in additional_blocks:\n                if b not in detected_blocks and b not in inline_blocks:\n                    additional_text_blocks.append((page, b))\n\n        inference_blocks = inline_blocks + detected_blocks + additional_text_blocks\n\n        # Don't show progress if there are no blocks to process\n        total_blocks = len(inference_blocks)\n        if total_blocks == 0:\n            return\n\n        pbar = tqdm(\n            total=total_blocks,\n            desc=f\"{self.__class__.__name__} running\",\n            disable=self.disable_tqdm\n        )\n        with ThreadPoolExecutor(max_workers=self.max_concurrency) as executor:\n            for future in as_completed(\n                [\n                    executor.submit(self.process_rewriting, document, b[0], b[1])\n                    for b in inference_blocks\n                ]\n            ):\n                future.result()  # Raise exceptions if any occurred\n                pbar.update(1)\n\n        pbar.close()\n\n    def get_block_text(self, block: Block, document: Document) -> str:\n        html = json_to_html(block.render(document))\n        html = unwrap_outer_tag(html)  # Remove an outer p tag if it exists\n        return html\n\n    def get_block_lines(self, block: Block, document: Document) -> Tuple[list, list]:\n        text_lines = block.contained_blocks(document, (BlockTypes.Line,))\n        extracted_lines = [line.formatted_text(document) for line in text_lines]\n        return text_lines, extracted_lines\n\n    def process_rewriting(self, document: Document, page: PageGroup, block: Block):\n        block_text = self.get_block_text(block, document)\n        prompt = self.text_math_rewriting_prompt.replace(\"{extracted_html}\", block_text)\n\n        image = self.extract_image(document, block)\n        response = self.llm_service(prompt, image, block, LLMTextSchema)\n\n        if not response or \"corrected_html\" not in response:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        corrected_html = response[\"corrected_html\"]\n        if not corrected_html:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        # Block is fine\n        if \"no corrections needed\" in corrected_html.lower():\n            return\n\n        if len(corrected_html) < len(block_text) * 0.6:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        block.html = corrected_html\n\n\nclass LLMTextSchema(BaseModel):\n    analysis: str\n    corrected_html: str\n"
  },
  {
    "path": "marker/processors/llm/llm_meta.py",
    "content": "from concurrent.futures import ThreadPoolExecutor\nfrom typing import List, Dict, Any\n\nfrom marker.logger import get_logger\nfrom tqdm import tqdm\n\nfrom marker.processors.llm import BaseLLMSimpleBlockProcessor, BaseLLMProcessor\nfrom marker.schema.document import Document\nfrom marker.services import BaseService\n\nlogger = get_logger()\n\n\nclass LLMSimpleBlockMetaProcessor(BaseLLMProcessor):\n    \"\"\"\n    A wrapper for simple LLM processors, so they can all run in parallel.\n    \"\"\"\n\n    def __init__(\n        self,\n        processor_lst: List[BaseLLMSimpleBlockProcessor],\n        llm_service: BaseService,\n        config=None,\n    ):\n        super().__init__(llm_service, config)\n        self.processors = processor_lst\n\n    def __call__(self, document: Document):\n        if not self.use_llm or self.llm_service is None:\n            return\n\n        total = sum(\n            [len(processor.inference_blocks(document)) for processor in self.processors]\n        )\n        pbar = tqdm(\n            desc=\"LLM processors running\", disable=self.disable_tqdm, total=total\n        )\n\n        all_prompts = [\n            processor.block_prompts(document) for processor in self.processors\n        ]\n        pending = []\n        futures_map = {}\n        with ThreadPoolExecutor(max_workers=self.max_concurrency) as executor:\n            for i, prompt_lst in enumerate(all_prompts):\n                for prompt in prompt_lst:\n                    future = executor.submit(self.get_response, prompt)\n                    pending.append(future)\n                    futures_map[future] = {\"processor_idx\": i, \"prompt_data\": prompt}\n\n            for future in pending:\n                try:\n                    result = future.result()\n                    future_data = futures_map.pop(future)\n                    processor: BaseLLMSimpleBlockProcessor = self.processors[\n                        future_data[\"processor_idx\"]\n                    ]\n                    # finalize the result\n                    processor(result, future_data[\"prompt_data\"], document)\n                except Exception as e:\n                    logger.warning(f\"Error processing LLM response: {e}\")\n\n                pbar.update(1)\n\n        pbar.close()\n\n    def get_response(self, prompt_data: Dict[str, Any]):\n        return self.llm_service(\n            prompt_data[\"prompt\"],\n            prompt_data[\"image\"],\n            prompt_data[\"block\"],\n            prompt_data[\"schema\"],\n        )\n"
  },
  {
    "path": "marker/processors/llm/llm_page_correction.py",
    "content": "import json\nfrom concurrent.futures import ThreadPoolExecutor, as_completed\nfrom typing import List, Annotated\n\nfrom marker.logger import get_logger\nfrom marker.processors.llm import BaseLLMComplexBlockProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import BlockId\nfrom marker.schema.document import Document\nfrom marker.schema.groups import PageGroup\nfrom pydantic import BaseModel\nfrom tqdm import tqdm\n\nlogger = get_logger()\n\nFORMAT_TAGS = [\"b\", \"i\", \"u\", \"del\", \"math\", \"sub\", \"sup\", \"a\", \"code\", \"p\", \"img\"]\nBLOCK_MAP = {\n    \"Text\": [],\n    \"TextInlineMath\": [],\n    \"Table\": [\"table\", \"tbody\", \"tr\", \"td\", \"th\"],\n    \"ListGroup\": [\"ul\", \"li\"],\n    \"SectionHeader\": [],\n    \"Form\": [\"form\", \"input\", \"select\", \"textarea\", \"table\", \"tbody\", \"tr\", \"td\", \"th\"],\n    \"Figure\": [],\n    \"Picture\": [],\n    \"Code\": [\"pre\"],\n    \"TableOfContents\": [\"table\", \"tbody\", \"tr\", \"td\", \"th\"],\n}\nALL_TAGS = FORMAT_TAGS + [tag for tags in BLOCK_MAP.values() for tag in tags]\n\n\nclass LLMPageCorrectionProcessor(BaseLLMComplexBlockProcessor):\n    block_correction_prompt: Annotated[\n        str, \"The user prompt to guide the block correction process.\"\n    ] = None\n    default_user_prompt = \"\"\"Your goal is to reformat the blocks to be as correct as possible, without changing the underlying meaning of the text within the blocks.  Mostly focus on reformatting the content.  Ignore minor formatting issues like extra <i> tags.\"\"\"\n    page_prompt = \"\"\"You're a text correction expert specializing in accurately reproducing text from PDF pages. You will be given a JSON list of blocks on a PDF page, along with the image for that page.  The blocks will be formatted like the example below.  The blocks will be presented in reading order.\n\n```json\n[\n    {\n        \"bbox\": [x1, y1, x2, y2],\n        \"id\": \"/page/0/Text/1\",\n        \"block_type\": \"Text\",\n        \"html\": \"<p>Some text here</p>\",\n    }, ...\n]\n```\n\nYou will also be given a prompt from the user that tells you how to correct the blocks.  Your task is to analyze the blocks and the image, then follow the prompt to correct the blocks.\n\nHere are the types of changes you can make in response to the prompt:\n\n- Reorder the blocks to reflect the correct reading order.\n- Change the block type to the correct type - the potential types are \"SectionHeader\", \"Form\", \"Text\", \"Table\", \"Figure\", \"Picture\", \"ListGroup\", \"PageFooter\", \"PageHeader\", \"Footnote\", or \"Equation\".  In this case, update the html as well to match the new block type.\n- Make edits to block content by changing the HTML.\n\nGuidelines:\n- Only use the following tags: {{format_tags}}.  Do not use any other tags.  \n- The math tag can have the attribute `display=\"block\"` to indicate display math, the a tag can have the attribute `href=\"...\"` to indicate a link, and td and th tags can have the attribute `colspan=\"...\"` and `rowspan=\"...\"` to indicate table cells that span multiple columns or rows.  There can be a \"block-type\" attribute on p tags.  Do not use any other attributes.\n- Keep LaTeX formulas inside <math> tags - these are important for downstream processing.\n- Bboxes are normalized 0-1000\n- The order of the JSON list is the reading order for the blocks\n- Follow the user prompt faithfully, and only make additional changes if there is a significant issue with correctness.\n- Stay faithful to the original image, and do not insert any content that is not present in the image or the blocks, unless specifically requested by the user prompt.\n\n**Instructions:**\n1. Carefully examine the provided JSON representation of the page, along with the image.\n2. Analyze the user prompt.\n3. Identify any issues you'll need to fix, and write a short analysis.\n4. If everything is fine, output \"no_corrections\"  Otherwise, output the type of correction needed: [\"reorder\", \"rewrite\", \"reorder_first\"].  Rewrite includes rewriting html and changing the block type.  If you need to do both, then perform only the reordering, and output \"reorder_first\", so we can do the rewriting later.\n5. If corrections are needed, output any blocks that need updates:\n    a. If reading order needs to be changed, output the IDs of the blocks in the correct order, and keep block_type and html blank, like this:\n    ```json\n    [\n        {\n            \"id\": \"/page/0/Text/1\",\n            \"block_type\": \"\",\n            \"html\": \"\"\n        },\n        ...\n    ]\n\n    b. If blocks need to be rewritten, output the block ids and new HTML for the blocks, like this:\n        ```json\n        [\n            {\n                \"id\": \"/page/0/Text/1\",\n                \"block_type\": \"Text\",\n                \"html\": \"<p>New HTML content here</p>\"\n            },\n            ...\n        ]\n        ```\n\n**Example:**\nInput:\nBlocks\n```json\n[\n    {\n        \"bbox\": [x1, y1, x2, y2],\n        \"id\": \"/page/0/Text/1\",\n        \"block_type\": \"Text\",\n        \"html\": \"1.14 Vector Operations\",\n    },\n    {\n        \"bbox\": [x1, y1, x2, y2],\n        \"id\": \"/page/0/Text/2\",\n        \"block_type\": \"Text\",\n        \"html\": \"<p>You can perform many operations on a vector, including...</p>\",\n    },\n]\n```\nUser Prompt\nEnsure that all blocks have the correct labels, and that reading order is correct.\nOutput:\nAnalysis: The blocks are in the correct reading order, but the first block should actually be a SectionHeader.\n```json\n[\n    {\n        \"id\": \"/page/0/Text/1\",\n        \"block_type\": \"SectionHeader\",\n        \"html\": \"<h1>1.14 Vector Operations</h1>\"\n    }\n]\n```\n\n**Input:**\nBlocks\n```json\n{{page_json}}\n```\nUser Prompt\n{{user_prompt}}\n\"\"\"\n\n    def get_selected_blocks(\n        self,\n        document: Document,\n        page: PageGroup,\n    ) -> List[dict]:\n        selected_blocks = page.structure_blocks(document)\n        json_blocks = [\n            self.normalize_block_json(block, document, page)\n            for i, block in enumerate(selected_blocks)\n        ]\n        return json_blocks\n\n    def process_rewriting(self, document: Document, page1: PageGroup):\n        page_blocks = self.get_selected_blocks(document, page1)\n        image = page1.get_image(document, highres=False)\n\n        prompt = (\n            self.page_prompt.replace(\"{{page_json}}\", json.dumps(page_blocks))\n            .replace(\"{{format_tags}}\", json.dumps(ALL_TAGS))\n            .replace(\"{{user_prompt}}\", self.block_correction_prompt)\n        )\n        response = self.llm_service(prompt, image, page1, PageSchema)\n        logger.debug(f\"Got reponse from LLM: {response}\")\n\n        if not response or \"correction_type\" not in response:\n            logger.warning(\"LLM did not return a valid response\")\n            return\n\n        correction_type = response[\"correction_type\"]\n        if correction_type == \"no_corrections\":\n            return\n        elif correction_type in [\"reorder\", \"reorder_first\"]:\n            self.load_blocks(response)\n            self.handle_reorder(response[\"blocks\"], page1)\n\n            # If we needed to reorder first, we will handle the rewriting next\n            if correction_type == \"reorder_first\":\n                self.process_rewriting(document, page1)\n        elif correction_type == \"rewrite\":\n            self.load_blocks(response)\n            self.handle_rewrites(response[\"blocks\"], document)\n        else:\n            logger.warning(f\"Unknown correction type: {correction_type}\")\n            return\n\n    def load_blocks(self, response):\n        if isinstance(response[\"blocks\"], str):\n            response[\"blocks\"] = json.loads(response[\"blocks\"])\n\n    def handle_reorder(self, blocks: list, page1: PageGroup):\n        unique_page_ids = set()\n        document_page_ids = [str(page1.page_id)]\n        document_pages = [page1]\n\n        for block_data in blocks:\n            try:\n                page_id, _, _ = block_data[\"id\"].split(\"/\")\n                unique_page_ids.add(page_id)\n            except Exception as e:\n                logger.debug(f\"Error parsing block ID {block_data['id']}: {e}\")\n                continue\n\n        if set(document_page_ids) != unique_page_ids:\n            logger.debug(\n                \"Some page IDs in the response do not match the document's pages\"\n            )\n            return\n\n        for page_id, document_page in zip(unique_page_ids, document_pages):\n            block_ids_for_page = []\n            for block_data in blocks:\n                try:\n                    page_id, block_type, block_id = block_data[\"id\"].split(\"/\")\n                    block_id = BlockId(\n                        page_id=page_id,\n                        block_id=block_id,\n                        block_type=getattr(BlockTypes, block_type),\n                    )\n                    block_ids_for_page.append(block_id)\n                except Exception as e:\n                    logger.debug(f\"Error parsing block ID {block_data['id']}: {e}\")\n                    continue\n\n                # Both sides should have the same values, just be reordered\n                if not all(\n                    [\n                        block_id in document_page.structure\n                        for block_id in block_ids_for_page\n                    ]\n                ):\n                    logger.debug(\n                        f\"Some blocks for page {page_id} not found in document\"\n                    )\n                    continue\n\n                if not all(\n                    [\n                        block_id in block_ids_for_page\n                        for block_id in document_page.structure\n                    ]\n                ):\n                    logger.debug(\n                        f\"Some blocks in document page {page_id} not found in response\"\n                    )\n                    continue\n\n                # Swap the order of blocks in the document page\n                document_page.structure = block_ids_for_page\n\n    def handle_rewrites(self, blocks: list, document: Document):\n        for block_data in blocks:\n            try:\n                block_id = block_data[\"id\"].strip().lstrip(\"/\")\n                _, page_id, block_type, block_id = block_id.split(\"/\")\n                block_id = BlockId(\n                    page_id=page_id,\n                    block_id=block_id,\n                    block_type=getattr(BlockTypes, block_type),\n                )\n                block = document.get_block(block_id)\n                if not block:\n                    logger.debug(f\"Block {block_id} not found in document\")\n                    continue\n\n                if hasattr(block, \"html\"):\n                    block.html = block_data[\"html\"]\n            except Exception as e:\n                logger.debug(f\"Error parsing block ID {block_data['id']}: {e}\")\n                continue\n\n    def rewrite_blocks(self, document: Document):\n        if not self.block_correction_prompt:\n            return\n\n        # Don't show progress if there are no blocks to process\n        total_blocks = len(document.pages)\n        if total_blocks == 0:\n            return\n\n        pbar = tqdm(\n            total=max(1, total_blocks - 1),\n            desc=f\"{self.__class__.__name__} running\",\n            disable=self.disable_tqdm,\n        )\n\n        with ThreadPoolExecutor(max_workers=self.max_concurrency) as executor:\n            for future in as_completed(\n                [\n                    executor.submit(self.process_rewriting, document, page)\n                    for page in document.pages\n                ]\n            ):\n                future.result()  # Raise exceptions if any occurred\n                pbar.update(1)\n\n        pbar.close()\n\n\nclass BlockSchema(BaseModel):\n    id: str\n    html: str\n    block_type: str\n\n\nclass PageSchema(BaseModel):\n    analysis: str\n    correction_type: str\n    blocks: List[BlockSchema]\n"
  },
  {
    "path": "marker/processors/llm/llm_sectionheader.py",
    "content": "import json\nfrom typing import List, Tuple\n\nfrom tqdm import tqdm\n\nfrom marker.logger import get_logger\nfrom marker.processors.llm import BaseLLMComplexBlockProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\nfrom marker.schema.document import Document\nfrom marker.schema.groups import PageGroup\nfrom pydantic import BaseModel\n\nlogger = get_logger()\n\n\nclass LLMSectionHeaderProcessor(BaseLLMComplexBlockProcessor):\n    page_prompt = \"\"\"You're a text correction expert specializing in accurately analyzing complex PDF documents. You will be given a list of all of the section headers from a document, along with their page number and approximate dimensions.  The headers will be formatted like below, and will be presented in order.\n\n```json\n[\n    {\n        \"bbox\": [x1, y1, x2, y2],\n        \"width\": x2 - x1,\n        \"height\": y2 - y1,\n        \"page\": 0,\n        \"id\": \"/page/0/SectionHeader/1\",\n        \"html\": \"<h1>Introduction</h1>\",\n    }, ...\n]\n```\n\nBboxes have been normalized to 0-1000.\n\nYour goal is to make sure that the section headers have the correct levels (h1, h2, h3, h4, h5, or h6).  If a section header does not have the right level, edit the html to fix it.\n\nGuidelines:\n- Edit the blocks to ensure that the section headers have the correct levels.\n- Only edit the h1, h2, h3, h4, h5, and h6 tags.  Do not change any other tags or content in the headers.\n- Only output the headers that changed (if nothing changed, output nothing).\n- Every header you output needs to have one and only one level tag (h1, h2, h3, h4, h5, or h6).\n\n**Instructions:**\n1. Carefully examine the provided section headers and JSON.\n2. Identify any changes you'll need to make, and write a short analysis.\n3. Output \"no_corrections\", or \"corrections_needed\", depending on whether you need to make changes.\n4. If corrections are needed, output any blocks that need updates.  Only output the block ids and html, like this:\n        ```json\n        [\n            {\n                \"id\": \"/page/0/SectionHeader/1\",\n                \"html\": \"<h2>Introduction</h2>\"\n            },\n            ...\n        ]\n        ```\n\n**Example:**\nInput:\nSection Headers\n```json\n[\n    {\n        \"bbox\": [x1, y1, x2, y2],\n        \"id\": \"/page/0/SectionHeader/1\",\n        \"page\": 0,\n        \"html\": \"1 Vector Operations\",\n    },\n    {\n        \"bbox\": [x1, y1, x2, y2],\n        \"id\": \"/page/0/SectionHeader/2\",\n        \"page\": 0,\n        \"html\": \"1.1 Vector Addition\",\n    },\n]\n```\nOutput:\nAnalysis: The first section header is missing the h1 tag, and the second section header is missing the h2 tag.\n```json\n[\n    {\n        \"id\": \"/page/0/SectionHeader/1\",\n        \"html\": \"<h1>1 Vector Operations</h1>\"\n    },\n    {\n        \"id\": \"/page/0/SectionHeader/2\",\n        \"html\": \"<h2>1.1 Vector Addition</h2>\"\n    }\n]\n```\n\n**Input:**\nSection Headers\n```json\n{{section_header_json}}\n```\n\"\"\"\n\n    def get_selected_blocks(\n        self,\n        document: Document,\n        page: PageGroup,\n    ) -> List[dict]:\n        selected_blocks = page.structure_blocks(document)\n        json_blocks = [\n            self.normalize_block_json(block, document, page, i)\n            for i, block in enumerate(selected_blocks)\n        ]\n        return json_blocks\n\n    def process_rewriting(\n        self, document: Document, section_headers: List[Tuple[Block, dict]]\n    ):\n        section_header_json = [sh[1] for sh in section_headers]\n        for item in section_header_json:\n            _, _, page_id, block_type, block_id = item[\"id\"].split(\"/\")\n            item[\"page\"] = page_id\n            item[\"width\"] = item[\"bbox\"][2] - item[\"bbox\"][0]\n            item[\"height\"] = item[\"bbox\"][3] - item[\"bbox\"][1]\n            del item[\"block_type\"]  # Not needed, since they're all section headers\n\n        prompt = self.page_prompt.replace(\n            \"{{section_header_json}}\", json.dumps(section_header_json)\n        )\n        response = self.llm_service(\n            prompt, None, document.pages[0], SectionHeaderSchema\n        )\n        logger.debug(f\"Got section header reponse from LLM: {response}\")\n\n        if not response or \"correction_type\" not in response:\n            logger.warning(\"LLM did not return a valid response\")\n            return\n\n        correction_type = response[\"correction_type\"]\n        if correction_type == \"no_corrections\":\n            return\n\n        self.load_blocks(response)\n        self.handle_rewrites(response[\"blocks\"], document)\n\n    def load_blocks(self, response):\n        if isinstance(response[\"blocks\"], str):\n            response[\"blocks\"] = json.loads(response[\"blocks\"])\n\n    def rewrite_blocks(self, document: Document):\n        # Don't show progress if there are no blocks to process\n        section_headers = [\n            (block, self.normalize_block_json(block, document, page))\n            for page in document.pages\n            for block in page.structure_blocks(document)\n            if block.block_type == BlockTypes.SectionHeader\n        ]\n        if len(section_headers) == 0:\n            return\n\n        pbar = tqdm(\n            total=1,\n            desc=f\"Running {self.__class__.__name__}\",\n            disable=self.disable_tqdm,\n        )\n\n        self.process_rewriting(document, section_headers)\n        pbar.update(1)\n        pbar.close()\n\n\nclass BlockSchema(BaseModel):\n    id: str\n    html: str\n\n\nclass SectionHeaderSchema(BaseModel):\n    analysis: str\n    correction_type: str\n    blocks: List[BlockSchema]\n"
  },
  {
    "path": "marker/processors/llm/llm_table.py",
    "content": "from typing import Annotated, List, Tuple\n\nfrom bs4 import BeautifulSoup\nfrom PIL import Image\nfrom marker.logger import get_logger\nfrom pydantic import BaseModel\n\nfrom marker.processors.llm import BaseLLMComplexBlockProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block, TableCell, Table\nfrom marker.schema.document import Document\nfrom marker.schema.groups.page import PageGroup\nfrom marker.schema.polygon import PolygonBox\n\nlogger = get_logger()\n\n\nclass LLMTableProcessor(BaseLLMComplexBlockProcessor):\n    block_types: Annotated[\n        Tuple[BlockTypes],\n        \"The block types to process.\",\n    ] = (BlockTypes.Table, BlockTypes.TableOfContents)\n    max_rows_per_batch: Annotated[\n        int,\n        \"If the table has more rows than this, chunk the table. (LLMs can be inaccurate with a lot of rows)\",\n    ] = 60\n    max_table_rows: Annotated[\n        int,\n        \"The maximum number of rows in a table to process with the LLM processor.  Beyond this will be skipped.\",\n    ] = 175\n    table_image_expansion_ratio: Annotated[\n        float,\n        \"The ratio to expand the image by when cropping.\",\n    ] = 0\n    rotation_max_wh_ratio: Annotated[\n        float,\n        \"The maximum width/height ratio for table cells for a table to be considered rotated.\",\n    ] = 0.6\n    max_table_iterations: Annotated[\n        int,\n        \"The maximum number of iterations to attempt rewriting a table.\",\n    ] = 2\n    table_rewriting_prompt: Annotated[\n        str,\n        \"The prompt to use for rewriting text.\",\n        \"Default is a string containing the Gemini rewriting prompt.\",\n    ] = \"\"\"You are a text correction expert specializing in accurately reproducing text from images.\nYou will receive an image and an html representation of the table in the image.\nYour task is to correct any errors in the html representation.  The html representation should be as faithful to the original table image as possible.  The table image may be rotated, but ensure the html representation is not rotated.  Make sure to include HTML for the full table, including the opening and closing table tags.\n\nSome guidelines:\n- Reproduce the original values from the image as faithfully as possible.  \n- There may be stray characters in the html representation that don't match the image - fix these.\n- Ensure column headers match the correct column values.\n- If you see any inline math in a table cell, fence it with the <math> tag.  Block math should be fenced with <math display=\"block\">.\n- Replace any images in table cells with a description, like \"Image: [description]\".\n- Only use the tags th, td, tr, br, span, sup, sub, i, b, math, and table.  Only use the attributes display, style, colspan, and rowspan if necessary.  You can use br to break up text lines in cells.\n- Make sure the columns and rows match the image faithfully, and are easily readable and interpretable by a human.\n\n**Instructions:**\n1. Carefully examine the provided text block image.\n2. Analyze the html representation of the table.\n3. Write a comparison of the image and the html representation, paying special attention to the column headers matching the correct column values.\n4. If the html representation is completely correct, or you cannot read the image properly, then write \"No corrections needed.\"  If the html representation has errors, generate the corrected html representation.  Output only either the corrected html representation or \"No corrections needed.\"\n5. If you made corrections, analyze your corrections against the original image, and provide a score from 1-5, indicating how well the corrected html matches the image, with 5 being perfect.\n**Example:**\nInput:\n```html\n<table>\n    <tr>\n        <th>First Name</th>\n        <th>Last Name</th>\n        <th>Age</th>\n    </tr>\n    <tr>\n        <td>John</td>\n        <td>Doe</td>\n    </tr>\n</table>\n```\nOutput:\ncomparison: The image shows a table with 2 rows and 3 columns.  The text and formatting of the html table matches the image.  The column headers match the correct column values.\n```html\nNo corrections needed.\n```\nanalysis: I did not make any corrections, as the html representation was already accurate.\nscore: 5\n**Input:**\n```html\n{block_html}\n```\n\"\"\"\n\n    def handle_image_rotation(self, children: List[TableCell], image: Image.Image):\n        ratios = [c.polygon.width / c.polygon.height for c in children]\n        if len(ratios) < 2:\n            return image\n\n        is_rotated = all([r < self.rotation_max_wh_ratio for r in ratios])\n        if not is_rotated:\n            return image\n\n        first_col_id = min([c.col_id for c in children])\n        first_col = [c for c in children if c.col_id == first_col_id]\n        first_col_cell = first_col[0]\n\n        last_col_id = max([c.col_id for c in children])\n        if last_col_id == first_col_id:\n            return image\n\n        last_col_cell = [c for c in children if c.col_id == last_col_id][0]\n        cell_diff = first_col_cell.polygon.y_start - last_col_cell.polygon.y_start\n        if cell_diff == 0:\n            return image\n\n        if cell_diff > 0:\n            return image.rotate(270, expand=True)\n        else:\n            return image.rotate(90, expand=True)\n\n    def process_rewriting(self, document: Document, page: PageGroup, block: Table):\n        children: List[TableCell] = block.contained_blocks(\n            document, (BlockTypes.TableCell,)\n        )\n        if not children:\n            # Happens if table/form processors didn't run\n            return\n\n        # LLMs don't handle tables with a lot of rows very well\n        unique_rows = set([cell.row_id for cell in children])\n        row_count = len(unique_rows)\n        row_idxs = sorted(list(unique_rows))\n\n        if row_count > self.max_table_rows:\n            return\n\n        # Inference by chunk to handle long tables better\n        parsed_cells = []\n        row_shift = 0\n        block_image = self.extract_image(document, block)\n        block_rescaled_bbox = block.polygon.rescale(\n            page.polygon.size, page.get_image(highres=True).size\n        ).bbox\n        for i in range(0, row_count, self.max_rows_per_batch):\n            batch_row_idxs = row_idxs[i : i + self.max_rows_per_batch]\n            batch_cells = [cell for cell in children if cell.row_id in batch_row_idxs]\n            batch_cell_bboxes = [\n                cell.polygon.rescale(\n                    page.polygon.size, page.get_image(highres=True).size\n                ).bbox\n                for cell in batch_cells\n            ]\n            # bbox relative to the block\n            batch_bbox = [\n                min([bbox[0] for bbox in batch_cell_bboxes]) - block_rescaled_bbox[0],\n                min([bbox[1] for bbox in batch_cell_bboxes]) - block_rescaled_bbox[1],\n                max([bbox[2] for bbox in batch_cell_bboxes]) - block_rescaled_bbox[0],\n                max([bbox[3] for bbox in batch_cell_bboxes]) - block_rescaled_bbox[1],\n            ]\n            if i == 0:\n                # Ensure first image starts from the beginning\n                batch_bbox[0] = 0\n                batch_bbox[1] = 0\n            elif i > row_count - self.max_rows_per_batch + 1:\n                # Ensure final image grabs the entire height and width\n                batch_bbox[2] = block_image.size[0]\n                batch_bbox[3] = block_image.size[1]\n\n            batch_image = block_image.crop(batch_bbox)\n            block_html = block.format_cells(document, [], None, batch_cells)\n            batch_image = self.handle_image_rotation(batch_cells, batch_image)\n            batch_parsed_cells = self.rewrite_single_chunk(\n                page, block, block_html, batch_cells, batch_image\n            )\n            if batch_parsed_cells is None:\n                return  # Error occurred or no corrections needed\n\n            for cell in batch_parsed_cells:\n                cell.row_id += row_shift\n                parsed_cells.append(cell)\n            row_shift += max([cell.row_id for cell in batch_parsed_cells])\n\n        block.structure = []\n        for cell in parsed_cells:\n            page.add_full_block(cell)\n            block.add_structure(cell)\n\n    def rewrite_single_chunk(\n        self,\n        page: PageGroup,\n        block: Block,\n        block_html: str,\n        children: List[TableCell],\n        image: Image.Image,\n        total_iterations: int = 0,\n    ):\n        prompt = self.table_rewriting_prompt.replace(\"{block_html}\", block_html)\n\n        response = self.llm_service(prompt, image, block, TableSchema)\n\n        if not response or \"corrected_html\" not in response:\n            block.update_metadata(llm_error_count=1)\n            return\n\n        corrected_html = response[\"corrected_html\"]\n\n        # The original table is okay\n        if \"no corrections needed\" in corrected_html.lower():\n            return\n\n        corrected_html = corrected_html.strip().lstrip(\"```html\").rstrip(\"```\").strip()\n\n        # Re-iterate if low score\n        total_iterations += 1\n        score = response.get(\"score\", 5)\n        analysis = response.get(\"analysis\", \"\")\n        logger.debug(f\"Got table rewriting score {score} with analysis: {analysis}\")\n        if total_iterations < self.max_table_iterations and score < 4:\n            logger.info(\n                f\"Table rewriting low score {score}, on iteration {total_iterations}\"\n            )\n            block_html = corrected_html\n            return self.rewrite_single_chunk(\n                page, block, block_html, children, image, total_iterations\n            )\n\n        parsed_cells = self.parse_html_table(corrected_html, block, page)\n        if len(parsed_cells) <= 1:\n            block.update_metadata(llm_error_count=1)\n            logger.debug(f\"Table parsing issue, only {len(parsed_cells)} cells found\")\n            return\n\n        if not corrected_html.endswith(\"</table>\"):\n            logger.debug(\n                \"Table parsing issue, corrected html does not end with </table>\"\n            )\n            block.update_metadata(llm_error_count=1)\n            return\n\n        return parsed_cells\n\n    @staticmethod\n    def get_cell_text(element, keep_tags=(\"br\", \"i\", \"b\", \"span\", \"math\")) -> str:\n        for tag in element.find_all(True):\n            if tag.name not in keep_tags:\n                tag.unwrap()\n        return element.decode_contents()\n\n    def parse_html_table(\n        self, html_text: str, block: Block, page: PageGroup\n    ) -> List[TableCell]:\n        soup = BeautifulSoup(html_text, \"html.parser\")\n        table = soup.find(\"table\")\n        if not table:\n            return []\n\n        # Initialize grid\n        rows = table.find_all(\"tr\")\n        cells = []\n\n        # Find maximum number of columns in colspan-aware way\n        max_cols = 0\n        for row in rows:\n            row_tds = row.find_all([\"td\", \"th\"])\n            curr_cols = 0\n            for cell in row_tds:\n                colspan = int(cell.get(\"colspan\", 1))\n                curr_cols += colspan\n            if curr_cols > max_cols:\n                max_cols = curr_cols\n\n        grid = [[True] * max_cols for _ in range(len(rows))]\n\n        for i, row in enumerate(rows):\n            cur_col = 0\n            row_cells = row.find_all([\"td\", \"th\"])\n            for j, cell in enumerate(row_cells):\n                while cur_col < max_cols and not grid[i][cur_col]:\n                    cur_col += 1\n\n                if cur_col >= max_cols:\n                    logger.info(\"Table parsing warning: too many columns found\")\n                    break\n\n                cell_text = self.get_cell_text(cell).strip()\n                rowspan = min(int(cell.get(\"rowspan\", 1)), len(rows) - i)\n                colspan = min(int(cell.get(\"colspan\", 1)), max_cols - cur_col)\n                cell_rows = list(range(i, i + rowspan))\n                cell_cols = list(range(cur_col, cur_col + colspan))\n\n                if colspan == 0 or rowspan == 0:\n                    logger.info(\"Table parsing issue: invalid colspan or rowspan\")\n                    continue\n\n                for r in cell_rows:\n                    for c in cell_cols:\n                        grid[r][c] = False\n\n                cell_bbox = [\n                    block.polygon.bbox[0] + cur_col,\n                    block.polygon.bbox[1] + i,\n                    block.polygon.bbox[0] + cur_col + colspan,\n                    block.polygon.bbox[1] + i + rowspan,\n                ]\n                cell_polygon = PolygonBox.from_bbox(cell_bbox)\n\n                cell_obj = TableCell(\n                    text_lines=[cell_text],\n                    row_id=i,\n                    col_id=cur_col,\n                    rowspan=rowspan,\n                    colspan=colspan,\n                    is_header=cell.name == \"th\",\n                    polygon=cell_polygon,\n                    page_id=page.page_id,\n                )\n                cells.append(cell_obj)\n                cur_col += colspan\n\n        return cells\n\n\nclass TableSchema(BaseModel):\n    comparison: str\n    corrected_html: str\n    analysis: str\n    score: int\n"
  },
  {
    "path": "marker/processors/llm/llm_table_merge.py",
    "content": "from concurrent.futures import ThreadPoolExecutor, as_completed\nfrom typing import Annotated, List, Tuple, Literal\n\nfrom pydantic import BaseModel\nfrom tqdm import tqdm\nfrom PIL import Image\n\nfrom marker.output import json_to_html\nfrom marker.processors.llm import BaseLLMComplexBlockProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block, TableCell\nfrom marker.schema.document import Document\nfrom marker.logger import get_logger\n\nlogger = get_logger()\n\nclass LLMTableMergeProcessor(BaseLLMComplexBlockProcessor):\n    block_types: Annotated[\n        Tuple[BlockTypes],\n        \"The block types to process.\",\n    ] = (BlockTypes.Table, BlockTypes.TableOfContents)\n    table_height_threshold: Annotated[\n        float,\n        \"The minimum height ratio relative to the page for the first table in a pair to be considered for merging.\",\n    ] = 0.6\n    table_start_threshold: Annotated[\n        float,\n        \"The maximum percentage down the page the second table can start to be considered for merging.\"\n    ] = 0.2\n    vertical_table_height_threshold: Annotated[\n        float,\n        \"The height tolerance for 2 adjacent tables to be merged into one.\"\n    ] = 0.25\n    vertical_table_distance_threshold: Annotated[\n        int,\n        \"The maximum distance between table edges for adjacency.\"\n    ] = 20\n    horizontal_table_width_threshold: Annotated[\n        float,\n        \"The width tolerance for 2 adjacent tables to be merged into one.\"\n    ] = 0.25\n    horizontal_table_distance_threshold: Annotated[\n        int,\n        \"The maximum distance between table edges for adjacency.\"\n    ] = 10\n    column_gap_threshold: Annotated[\n        int,\n        \"The maximum gap between columns to merge tables\"\n    ] = 50\n    disable_tqdm: Annotated[\n        bool,\n        \"Whether to disable the tqdm progress bar.\",\n    ] = False\n    no_merge_tables_across_pages: Annotated[\n        bool,\n        \"Whether to disable merging tables across pages and keep page delimiters.\",\n    ] = False\n    table_merge_prompt: Annotated[\n        str,\n        \"The prompt to use for rewriting text.\",\n        \"Default is a string containing the Gemini rewriting prompt.\"\n    ] = \"\"\"You're a text correction expert specializing in accurately reproducing tables from PDFs.\nYou'll receive two images of tables from successive pages of a PDF.  Table 1 is from the first page, and Table 2 is from the second page.  Both tables may actually be part of the same larger table. Your job is to decide if Table 2 should be merged with Table 1, and how they should be joined.  The should only be merged if they're part of the same larger table, and Table 2 cannot be interpreted without merging.\n\nYou'll specify your judgement in json format - first whether Table 2 should be merged with Table 1, then the direction of the merge, either `bottom` or `right`.  A bottom merge means that the rows of Table 2 are joined to the rows of Table 1. A right merge means that the columns of Table 2 are joined to the columns of Table 1.  (bottom merge is equal to np.vstack, right merge is equal to np.hstack)\n\nTable 2 should be merged at the bottom of Table 1 if Table 2 has no headers, and the rows have similar values, meaning that Table 2 continues Table 1. Table 2 should be merged to the right of Table 1 if each row in Table 2 matches a row in Table 1, meaning that Table 2 contains additional columns that augment Table 1.\n\nOnly merge Table 1 and Table 2 if Table 2 cannot be interpreted without merging.  Only merge Table 1 and Table 2 if you can read both images properly.\n\n**Instructions:**\n1. Carefully examine the provided table images.  Table 1 is the first image, and Table 2 is the second image.\n2. Examine the provided html representations of Table 1 and Table 2.\n3. Write a description of Table 1.\n4. Write a description of Table 2.\n5. Analyze whether Table 2 should be merged into Table 1, and write an explanation.\n6. Output your decision on whether they should be merged, and merge direction.\n**Example:**\nInput:\nTable 1\n```html\n<table>\n    <tr>\n        <th>Name</th>\n        <th>Age</th>\n        <th>City</th>\n        <th>State</th>\n    </tr>\n    <tr>\n        <td>John</td>\n        <td>25</td>\n        <td>Chicago</td>\n        <td>IL</td>\n    </tr>\n```\nTable 2\n```html\n<table>\n    <tr>\n        <td>Jane</td>\n        <td>30</td>\n        <td>Los Angeles</td>\n        <td>CA</td>\n    </tr>\n```\nOutput:\n```json\n{\n    \"table1_description\": \"Table 1 has 4 headers, and 1 row.  The headers are Name, Age, City, and State.\",\n    \"table2_description\": \"Table 2 has no headers, but the values appear to represent a person's name, age, city, and state.\",\n    \"explanation\": \"The values in Table 2 match the headers in Table 1, and Table 2 has no headers. Table 2 should be merged to the bottom of Table 1.\",\n    \"merge\": \"true\",\n    \"direction\": \"bottom\"\n}\n```\n**Input:**\nTable 1\n```html\n{{table1}}\nTable 2\n```html\n{{table2}}\n```\n\"\"\"\n\n    @staticmethod\n    def get_row_count(cells: List[TableCell]):\n        if not cells:\n            return 0\n\n        max_rows = None\n        for col_id in set([cell.col_id for cell in cells]):\n            col_cells = [cell for cell in cells if cell.col_id == col_id]\n            rows = 0\n            for cell in col_cells:\n                rows += cell.rowspan\n            if max_rows is None or rows > max_rows:\n                max_rows = rows\n        return max_rows\n\n    @staticmethod\n    def get_column_count(cells: List[TableCell]):\n        if not cells:\n            return 0\n\n        max_cols = None\n        for row_id in set([cell.row_id for cell in cells]):\n            row_cells = [cell for cell in cells if cell.row_id == row_id]\n            cols = 0\n            for cell in row_cells:\n                cols += cell.colspan\n            if max_cols is None or cols > max_cols:\n                max_cols = cols\n        return max_cols\n\n    def rewrite_blocks(self, document: Document):\n        # Skip table merging if disabled via config\n        if self.no_merge_tables_across_pages:\n            logger.info(\"Skipping table merging across pages due to --no_merge_tables_across_pages flag\")\n            return\n\n        table_runs = []\n        table_run = []\n        prev_block = None\n        prev_page_block_count = None\n        for page in document.pages:\n            page_blocks = page.contained_blocks(document, self.block_types)\n            for block in page_blocks:\n                merge_condition = False\n                if prev_block is not None:\n                    prev_cells = prev_block.contained_blocks(document, (BlockTypes.TableCell,))\n                    curr_cells = block.contained_blocks(document, (BlockTypes.TableCell,))\n                    row_match = abs(self.get_row_count(prev_cells) - self.get_row_count(curr_cells)) < 5, # Similar number of rows\n                    col_match = abs(self.get_column_count(prev_cells) - self.get_column_count(curr_cells)) < 2\n\n                    subsequent_page_table = all([\n                        prev_block.page_id == block.page_id - 1, # Subsequent pages\n                        max(prev_block.polygon.height / page.polygon.height,\n                            block.polygon.height / page.polygon.height) > self.table_height_threshold, # Take up most of the page height\n                            (len(page_blocks) == 1 or prev_page_block_count == 1), # Only table on the page\n                            (row_match or col_match)\n                        ])\n\n                    same_page_vertical_table = all([\n                        prev_block.page_id == block.page_id, # On the same page\n                        (1 - self.vertical_table_height_threshold) < prev_block.polygon.height / block.polygon.height < (1 + self.vertical_table_height_threshold), # Similar height\n                        abs(block.polygon.x_start - prev_block.polygon.x_end) < self.vertical_table_distance_threshold, # Close together in x\n                        abs(block.polygon.y_start - prev_block.polygon.y_start) < self.vertical_table_distance_threshold, # Close together in y\n                        row_match\n                    ])\n\n                    same_page_horizontal_table = all([\n                        prev_block.page_id == block.page_id, # On the same page\n                        (1 - self.horizontal_table_width_threshold) < prev_block.polygon.width / block.polygon.width < (1 + self.horizontal_table_width_threshold), # Similar width\n                        abs(block.polygon.y_start - prev_block.polygon.y_end) < self.horizontal_table_distance_threshold, # Close together in y\n                        abs(block.polygon.x_start - prev_block.polygon.x_start) < self.horizontal_table_distance_threshold, # Close together in x\n                        col_match\n                    ])\n\n                    same_page_new_column = all([\n                        prev_block.page_id == block.page_id, # On the same page\n                        abs(block.polygon.x_start - prev_block.polygon.x_end) < self.column_gap_threshold,\n                        block.polygon.y_start < prev_block.polygon.y_end,\n                        block.polygon.width * (1 - self.vertical_table_height_threshold) < prev_block.polygon.width  < block.polygon.width * (1 + self.vertical_table_height_threshold), # Similar width\n                        col_match\n                    ])\n                    merge_condition = any([subsequent_page_table, same_page_vertical_table, same_page_new_column, same_page_horizontal_table])\n\n                if prev_block is not None and merge_condition:\n                    if prev_block not in table_run:\n                        table_run.append(prev_block)\n                    table_run.append(block)\n                else:\n                    if table_run:\n                        table_runs.append(table_run)\n                    table_run = []\n                prev_block = block\n            prev_page_block_count = len(page_blocks)\n\n        if table_run:\n            table_runs.append(table_run)\n\n        # Don't show progress if there is nothing to process\n        total_table_runs = len(table_runs)\n        if total_table_runs == 0:\n            return\n\n        pbar = tqdm(\n            total=total_table_runs,\n            desc=f\"{self.__class__.__name__} running\",\n            disable=self.disable_tqdm,\n        )\n\n        with ThreadPoolExecutor(max_workers=self.max_concurrency) as executor:\n            for future in as_completed([\n                executor.submit(self.process_rewriting, document, blocks)\n                for blocks in table_runs\n            ]):\n                future.result()  # Raise exceptions if any occurred\n                pbar.update(1)\n\n        pbar.close()\n\n    def process_rewriting(self, document: Document, blocks: List[Block]):\n        if len(blocks) < 2:\n            # Can't merge single tables\n            return\n\n        start_block = blocks[0]\n        for i in range(1, len(blocks)):\n            curr_block = blocks[i]\n            children = start_block.contained_blocks(document, (BlockTypes.TableCell,))\n            children_curr = curr_block.contained_blocks(document, (BlockTypes.TableCell,))\n            if not children or not children_curr:\n                # Happens if table/form processors didn't run\n                break\n\n            start_image = start_block.get_image(document, highres=False)\n            curr_image = curr_block.get_image(document, highres=False)\n            start_html = json_to_html(start_block.render(document))\n            curr_html = json_to_html(curr_block.render(document))\n\n            prompt = self.table_merge_prompt.replace(\"{{table1}}\", start_html).replace(\"{{table2}}\", curr_html)\n\n            response = self.llm_service(\n                prompt,\n                [start_image, curr_image],\n                curr_block,\n                MergeSchema,\n            )\n\n            if not response or (\"direction\" not in response or \"merge\" not in response):\n                curr_block.update_metadata(llm_error_count=1)\n                break\n\n            merge = response[\"merge\"]\n\n            # The original table is okay\n            if \"true\" not in merge:\n                start_block = curr_block\n                continue\n\n            # Merge the cells and images of the tables\n            direction = response[\"direction\"]\n            if not self.validate_merge(children, children_curr, direction):\n                start_block = curr_block\n                continue\n\n            merged_image = self.join_images(start_image, curr_image, direction)\n            merged_cells = self.join_cells(children, children_curr, direction)\n            curr_block.structure = []\n            start_block.structure = [b.id for b in merged_cells]\n            start_block.lowres_image = merged_image\n\n    def validate_merge(self, cells1: List[TableCell], cells2: List[TableCell], direction: Literal['right', 'bottom'] = 'right'):\n        if direction == \"right\":\n            # Check if the number of rows is the same\n            cells1_row_count = self.get_row_count(cells1)\n            cells2_row_count = self.get_row_count(cells2)\n            return abs(cells1_row_count - cells2_row_count) < 5\n        elif direction == \"bottom\":\n            # Check if the number of columns is the same\n            cells1_col_count = self.get_column_count(cells1)\n            cells2_col_count = self.get_column_count(cells2)\n            return abs(cells1_col_count - cells2_col_count) < 2\n\n\n    def join_cells(self, cells1: List[TableCell], cells2: List[TableCell], direction: Literal['right', 'bottom'] = 'right') -> List[TableCell]:\n        if direction == 'right':\n            # Shift columns right\n            col_count = self.get_column_count(cells1)\n            for cell in cells2:\n                cell.col_id += col_count\n            new_cells = cells1 + cells2\n        else:\n            # Shift rows up\n            row_count = self.get_row_count(cells1)\n            for cell in cells2:\n                cell.row_id += row_count\n            new_cells = cells1 + cells2\n        return new_cells\n\n    @staticmethod\n    def join_images(image1: Image.Image, image2: Image.Image, direction: Literal['right', 'bottom'] = 'right') -> Image.Image:\n        # Get dimensions\n        w1, h1 = image1.size\n        w2, h2 = image2.size\n\n        if direction == 'right':\n            new_height = max(h1, h2)\n            new_width = w1 + w2\n            new_img = Image.new('RGB', (new_width, new_height), 'white')\n            new_img.paste(image1, (0, 0))\n            new_img.paste(image2, (w1, 0))\n        else:\n            new_width = max(w1, w2)\n            new_height = h1 + h2\n            new_img = Image.new('RGB', (new_width, new_height), 'white')\n            new_img.paste(image1, (0, 0))\n            new_img.paste(image2, (0, h1))\n        return new_img\n\n\nclass MergeSchema(BaseModel):\n    table1_description: str\n    table2_description: str\n    explanation: str\n    merge: Literal[\"true\", \"false\"]\n    direction: Literal[\"bottom\", \"right\"]"
  },
  {
    "path": "marker/processors/order.py",
    "content": "from statistics import mean\nfrom collections import defaultdict\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\n\nclass OrderProcessor(BaseProcessor):\n    \"\"\"\n    A processor for sorting the blocks in order if needed.  This can help when the layout image was sliced.\n    \"\"\"\n    block_types = tuple()\n\n    def __call__(self, document: Document):\n        for page in document.pages:\n            # Skip OCRed pages\n            if page.text_extraction_method != \"pdftext\":\n                continue\n\n            # Skip pages without layout slicing\n            if not page.layout_sliced:\n                continue\n\n            block_idxs = defaultdict(int)\n            for block_id in page.structure:\n                block = document.get_block(block_id)\n                spans = block.contained_blocks(document, (BlockTypes.Span, ))\n                if len(spans) == 0:\n                    continue\n\n                # Avg span position in original PDF\n                block_idxs[block_id] = (spans[0].minimum_position + spans[-1].maximum_position) / 2\n\n            for block_id in page.structure:\n                # Already assigned block id via span position\n                if block_idxs[block_id] > 0:\n                    continue\n\n                block = document.get_block(block_id)\n                prev_block = document.get_prev_block(block)\n                next_block = document.get_next_block(block)\n\n                block_idx_add = 0\n                if prev_block:\n                    block_idx_add = 1\n\n                while prev_block and prev_block.id not in block_idxs:\n                    prev_block = document.get_prev_block(prev_block)\n                    block_idx_add += 1\n\n                if not prev_block:\n                    block_idx_add = -1\n                    while next_block and next_block.id not in block_idxs:\n                        next_block = document.get_next_block(next_block)\n                        block_idx_add -= 1\n\n                if not next_block and not prev_block:\n                    pass\n                elif prev_block:\n                    block_idxs[block_id] = block_idxs[prev_block.id] + block_idx_add\n                else:\n                    block_idxs[block_id] = block_idxs[next_block.id] + block_idx_add\n\n            page.structure = sorted(page.structure, key=lambda x: block_idxs[x])\n\n"
  },
  {
    "path": "marker/processors/page_header.py",
    "content": "from marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\nfrom marker.schema.groups.page import PageGroup\n\n\nclass PageHeaderProcessor(BaseProcessor):\n    \"\"\"\n    A processor for moving PageHeaders to the top\n    \"\"\"\n    block_types = (BlockTypes.PageHeader,)\n\n    def __call__(self, document: Document):\n        for page in document.pages:\n            self.move_page_header_to_top(page, document)\n\n    def move_page_header_to_top(self, page: PageGroup, document: Document):\n        page_header_blocks = page.contained_blocks(document, self.block_types)\n        page_header_block_ids = [block.id for block in page_header_blocks]\n        for block_id in page_header_block_ids:\n            page.structure.remove(block_id)\n        page.structure[:0] = page_header_block_ids\n\n"
  },
  {
    "path": "marker/processors/reference.py",
    "content": "import numpy as np\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Reference\nfrom marker.schema.document import Document\nfrom marker.schema.groups.list import ListGroup\nfrom marker.schema.groups.table import TableGroup\nfrom marker.schema.registry import get_block_class\nfrom marker.schema.groups.figure import FigureGroup\n\n\nclass ReferenceProcessor(BaseProcessor):\n    \"\"\"\n    A processor for adding references to the document.\n    \"\"\"\n\n    def __init__(self, config):\n        super().__init__(config)\n\n    def __call__(self, document: Document):\n        ReferenceClass: Reference = get_block_class(BlockTypes.Reference)\n\n        for page in document.pages:\n            refs = page.refs\n            ref_starts = np.array([ref.coord for ref in refs])\n\n            blocks = []\n            for block_id in page.structure:\n                block = page.get_block(block_id)\n                if isinstance(block, (ListGroup, FigureGroup, TableGroup)):\n                    blocks.extend([page.get_block(b) for b in block.structure])\n                else:\n                    blocks.append(block)\n            blocks = [b for b in blocks if not b.ignore_for_output]\n\n            block_starts = np.array([block.polygon.bbox[:2] for block in blocks])\n\n            if not (len(refs) and len(block_starts)):\n                continue\n\n            distances = np.linalg.norm(block_starts[:, np.newaxis, :] - ref_starts[np.newaxis, :, :], axis=2)\n            for ref_idx in range(len(ref_starts)):\n                block_idx = np.argmin(distances[:, ref_idx])\n                block = blocks[block_idx]\n\n                ref_block = page.add_full_block(ReferenceClass(\n                    ref=refs[ref_idx].ref,\n                    polygon=block.polygon,\n                    page_id=page.page_id\n                ))\n                if block.structure is None:\n                    block.structure = []\n                block.structure.insert(0, ref_block.id)\n"
  },
  {
    "path": "marker/processors/sectionheader.py",
    "content": "import warnings\nfrom typing import Annotated, Dict, List\n\nimport numpy as np\nfrom sklearn.cluster import KMeans\nfrom sklearn.exceptions import ConvergenceWarning\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\n# Ignore sklearn warning about not converging\nwarnings.filterwarnings(\"ignore\", category=ConvergenceWarning)\n\n\nclass SectionHeaderProcessor(BaseProcessor):\n    \"\"\"\n    A processor for recognizing section headers in the document.\n    \"\"\"\n    block_types = (BlockTypes.SectionHeader, )\n    level_count: Annotated[\n        int,\n        \"The number of levels to use for headings.\",\n    ] = 4\n    merge_threshold: Annotated[\n        float,\n        \"The minimum gap between headings to consider them part of the same group.\",\n    ] = 0.25\n    default_level: Annotated[\n        int,\n        \"The default heading level to use if no heading level is detected.\",\n    ] = 2\n    height_tolerance: Annotated[\n        float,\n        \"The minimum height of a heading to consider it a heading.\",\n    ] = 0.99\n\n    def __call__(self, document: Document):\n        line_heights: Dict[int, float] = {}\n        for page in document.pages:\n            # Iterate children to grab all section headers\n            for block in page.children:\n                if block.block_type not in self.block_types:\n                    continue\n                if block.structure is not None:\n                    line_heights[block.id] = block.line_height(document)\n                else:\n                    line_heights[block.id] = 0\n                    block.ignore_for_output = True  # Don't output an empty section header\n\n        flat_line_heights = list(line_heights.values())\n        heading_ranges = self.bucket_headings(flat_line_heights)\n\n        for page in document.pages:\n            # Iterate children to grab all section headers\n            for block in page.children:\n                if block.block_type not in self.block_types:\n                    continue\n                block_height = line_heights.get(block.id, 0)\n                if block_height > 0:\n                    for idx, (min_height, max_height) in enumerate(heading_ranges):\n                        if block_height >= min_height * self.height_tolerance:\n                            block.heading_level = idx + 1\n                            break\n\n                if block.heading_level is None:\n                    block.heading_level = self.default_level\n\n    def bucket_headings(self, line_heights: List[float], num_levels=4):\n        if len(line_heights) <= self.level_count:\n            return []\n\n        data = np.asarray(line_heights).reshape(-1, 1)\n        labels = KMeans(n_clusters=num_levels, random_state=0, n_init=\"auto\").fit_predict(data)\n        data_labels = np.concatenate([data, labels.reshape(-1, 1)], axis=1)\n        data_labels = np.sort(data_labels, axis=0)\n\n        cluster_means = {int(label): float(np.mean(data_labels[data_labels[:, 1] == label, 0])) for label in np.unique(labels)}\n        label_max = None\n        label_min = None\n        heading_ranges = []\n        prev_cluster = None\n        for row in data_labels:\n            value, label = row\n            value = float(value)\n            label = int(label)\n            if prev_cluster is not None and label != prev_cluster:\n                prev_cluster_mean = cluster_means[prev_cluster]\n                cluster_mean = cluster_means[label]\n                if cluster_mean * self.merge_threshold < prev_cluster_mean:\n                    heading_ranges.append((label_min, label_max))\n                    label_min = None\n                    label_max = None\n\n            label_min = value if label_min is None else min(label_min, value)\n            label_max = value if label_max is None else max(label_max, value)\n            prev_cluster = label\n\n        if label_min is not None:\n            heading_ranges.append((label_min, label_max))\n\n        heading_ranges = sorted(heading_ranges, reverse=True)\n\n        return heading_ranges\n"
  },
  {
    "path": "marker/processors/table.py",
    "content": "import re\nfrom collections import defaultdict\nfrom copy import deepcopy\nfrom typing import Annotated, List\nfrom collections import Counter\nfrom PIL import Image\n\nfrom ftfy import fix_text\nfrom surya.detection import DetectionPredictor, TextDetectionResult\nfrom surya.recognition import RecognitionPredictor, TextLine\nfrom surya.table_rec import TableRecPredictor\nfrom surya.table_rec.schema import TableResult, TableCell as SuryaTableCell\nfrom pdftext.extraction import table_output\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks.tablecell import TableCell\nfrom marker.schema.document import Document\nfrom marker.schema.polygon import PolygonBox\nfrom marker.settings import settings\nfrom marker.util import matrix_intersection_area, unwrap_math\nfrom marker.utils.image import is_blank_image\nfrom marker.logger import get_logger\n\nlogger = get_logger()\n\n\nclass TableProcessor(BaseProcessor):\n    \"\"\"\n    A processor for recognizing tables in the document.\n    \"\"\"\n\n    block_types = (BlockTypes.Table, BlockTypes.TableOfContents, BlockTypes.Form)\n    table_rec_batch_size: Annotated[\n        int,\n        \"The batch size to use for the table recognition model.\",\n        \"Default is None, which will use the default batch size for the model.\",\n    ] = None\n    detection_batch_size: Annotated[\n        int,\n        \"The batch size to use for the table detection model.\",\n        \"Default is None, which will use the default batch size for the model.\",\n    ] = None\n    recognition_batch_size: Annotated[\n        int,\n        \"The batch size to use for the table recognition model.\",\n        \"Default is None, which will use the default batch size for the model.\",\n    ] = None\n    contained_block_types: Annotated[\n        List[BlockTypes],\n        \"Block types to remove if they're contained inside the tables.\",\n    ] = (BlockTypes.Text, BlockTypes.TextInlineMath)\n    row_split_threshold: Annotated[\n        float,\n        \"The percentage of rows that need to be split across the table before row splitting is active.\",\n    ] = 0.5\n    pdftext_workers: Annotated[\n        int,\n        \"The number of workers to use for pdftext.\",\n    ] = 1\n    disable_tqdm: Annotated[\n        bool,\n        \"Whether to disable the tqdm progress bar.\",\n    ] = False\n    drop_repeated_table_text: Annotated[bool, \"Drop repeated text in OCR results.\"] = (\n        False\n    )\n    filter_tag_list = [\"p\", \"table\", \"td\", \"tr\", \"th\", \"tbody\"]\n    disable_ocr_math: Annotated[bool, \"Disable inline math recognition in OCR\"] = False\n    disable_ocr: Annotated[bool, \"Disable OCR entirely.\"] = False\n\n    def __init__(\n        self,\n        recognition_model: RecognitionPredictor,\n        table_rec_model: TableRecPredictor,\n        detection_model: DetectionPredictor,\n        config=None,\n    ):\n        super().__init__(config)\n\n        self.recognition_model = recognition_model\n        self.table_rec_model = table_rec_model\n        self.detection_model = detection_model\n\n    def __call__(self, document: Document):\n        filepath = document.filepath  # Path to original pdf file\n\n        table_data = []\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                if block.block_type == BlockTypes.Table:\n                    block.polygon = block.polygon.expand(0.01, 0.01)\n                image = block.get_image(document, highres=True)\n                image_poly = block.polygon.rescale(\n                    (page.polygon.width, page.polygon.height),\n                    page.get_image(highres=True).size,\n                )\n\n                table_data.append(\n                    {\n                        \"block_id\": block.id,\n                        \"page_id\": page.page_id,\n                        \"table_image\": image,\n                        \"table_bbox\": image_poly.bbox,\n                        \"img_size\": page.get_image(highres=True).size,\n                        \"ocr_block\": any(\n                            [\n                                page.text_extraction_method in [\"surya\"],\n                                page.ocr_errors_detected,\n                            ]\n                        ),\n                    }\n                )\n\n        # Detect tables and cells\n        self.table_rec_model.disable_tqdm = self.disable_tqdm\n        tables: List[TableResult] = self.table_rec_model(\n            [t[\"table_image\"] for t in table_data],\n            batch_size=self.get_table_rec_batch_size(),\n        )\n        assert len(tables) == len(table_data), (\n            \"Number of table results should match the number of tables\"\n        )\n\n        # Assign cell text if we don't need OCR\n        # We do this at a line level\n        extract_blocks = [t for t in table_data if not t[\"ocr_block\"]]\n        self.assign_pdftext_lines(\n            extract_blocks, filepath\n        )  # Handle tables where good text exists in the PDF\n        self.assign_text_to_cells(tables, table_data)\n\n        # Assign OCR lines if needed - we do this at a cell level\n        self.assign_ocr_lines(tables, table_data)\n\n        self.split_combined_rows(tables)  # Split up rows that were combined\n        self.combine_dollar_column(tables)  # Combine columns that are just dollar signs\n\n        # Assign table cells to the table\n        table_idx = 0\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                block.structure = []  # Remove any existing lines, spans, etc.\n                cells: List[SuryaTableCell] = tables[table_idx].cells\n                for cell in cells:\n                    # Rescale the cell polygon to the page size\n                    cell_polygon = PolygonBox(polygon=cell.polygon).rescale(\n                        page.get_image(highres=True).size, page.polygon.size\n                    )\n\n                    # Rescale cell polygon to be relative to the page instead of the table\n                    for corner in cell_polygon.polygon:\n                        corner[0] += block.polygon.bbox[0]\n                        corner[1] += block.polygon.bbox[1]\n\n                    cell_block = TableCell(\n                        polygon=cell_polygon,\n                        text_lines=self.finalize_cell_text(cell),\n                        rowspan=cell.rowspan,\n                        colspan=cell.colspan,\n                        row_id=cell.row_id,\n                        col_id=cell.col_id,\n                        is_header=bool(cell.is_header),\n                        page_id=page.page_id,\n                    )\n                    page.add_full_block(cell_block)\n                    block.add_structure(cell_block)\n                table_idx += 1\n\n        # Clean out other blocks inside the table\n        # This can happen with stray text blocks inside the table post-merging\n        for page in document.pages:\n            child_contained_blocks = page.contained_blocks(\n                document, self.contained_block_types\n            )\n            for block in page.contained_blocks(document, self.block_types):\n                intersections = matrix_intersection_area(\n                    [c.polygon.bbox for c in child_contained_blocks],\n                    [block.polygon.bbox],\n                )\n                for child, intersection in zip(child_contained_blocks, intersections):\n                    # Adjust this to percentage of the child block that is enclosed by the table\n                    intersection_pct = intersection / max(child.polygon.area, 1)\n                    if intersection_pct > 0.95 and child.id in page.structure:\n                        page.structure.remove(child.id)\n\n    def finalize_cell_text(self, cell: SuryaTableCell):\n        fixed_text = []\n        text_lines = cell.text_lines if cell.text_lines else []\n        for line in text_lines:\n            text = line[\"text\"].strip()\n            if not text or text == \".\":\n                continue\n            # Spaced sequences: \". . .\", \"- - -\", \"_ _ _\", \"… … …\"\n            text = re.sub(r\"(\\s?[.\\-_…]){2,}\", \"\", text)\n            # Unspaced sequences: \"...\", \"---\", \"___\", \"……\"\n            text = re.sub(r\"[.\\-_…]{2,}\", \"\", text)\n            # Remove mathbf formatting if there is only digits with decimals/commas/currency symbols inside\n            text = re.sub(r\"\\\\mathbf\\{([0-9.,$€£]+)\\}\", r\"<b>\\1</b>\", text)\n            # Drop empty tags like \\overline{}\n            text = re.sub(r\"\\\\[a-zA-Z]+\\{\\s*\\}\", \"\", text)\n            # Drop \\phantom{...} (remove contents too)\n            text = re.sub(r\"\\\\phantom\\{.*?\\}\", \"\", text)\n            # Drop \\quad\n            text = re.sub(r\"\\\\quad\", \"\", text)\n            # Drop \\,\n            text = re.sub(r\"\\\\,\", \"\", text)\n            # Unwrap \\mathsf{...}\n            text = re.sub(r\"\\\\mathsf\\{([^}]*)\\}\", r\"\\1\", text)\n            # Handle unclosed tags: keep contents, drop the command\n            text = re.sub(r\"\\\\[a-zA-Z]+\\{([^}]*)$\", r\"\\1\", text)\n            # If the whole string is \\text{...} → unwrap\n            text = re.sub(r\"^\\s*\\\\text\\{([^}]*)\\}\\s*$\", r\"\\1\", text)\n\n            # In case the above steps left no more latex math - We can unwrap\n            text = unwrap_math(text)\n            text = self.normalize_spaces(fix_text(text))\n            fixed_text.append(text)\n        return fixed_text\n\n    @staticmethod\n    def normalize_spaces(text):\n        space_chars = [\n            \"\\u2003\",  # em space\n            \"\\u2002\",  # en space\n            \"\\u00a0\",  # non-breaking space\n            \"\\u200b\",  # zero-width space\n            \"\\u3000\",  # ideographic space\n        ]\n        for space in space_chars:\n            text = text.replace(space, \" \")\n        return text\n\n    def combine_dollar_column(self, tables: List[TableResult]):\n        for table in tables:\n            if len(table.cells) == 0:\n                # Skip empty tables\n                continue\n            unique_cols = sorted(list(set([c.col_id for c in table.cells])))\n            max_col = max(unique_cols)\n            dollar_cols = []\n            for col in unique_cols:\n                # Cells in this col\n                col_cells = [c for c in table.cells if c.col_id == col]\n                col_text = [\n                    \"\\n\".join(self.finalize_cell_text(c)).strip() for c in col_cells\n                ]\n                all_dollars = all([ct in [\"\", \"$\"] for ct in col_text])\n                colspans = [c.colspan for c in col_cells]\n                span_into_col = [\n                    c\n                    for c in table.cells\n                    if c.col_id != col and c.col_id + c.colspan > col > c.col_id\n                ]\n\n                # This is a column that is entirely dollar signs\n                if all(\n                    [\n                        all_dollars,\n                        len(col_cells) > 1,\n                        len(span_into_col) == 0,\n                        all([c == 1 for c in colspans]),\n                        col < max_col,\n                    ]\n                ):\n                    next_col_cells = [c for c in table.cells if c.col_id == col + 1]\n                    next_col_rows = [c.row_id for c in next_col_cells]\n                    col_rows = [c.row_id for c in col_cells]\n                    if (\n                        len(next_col_cells) == len(col_cells)\n                        and next_col_rows == col_rows\n                    ):\n                        dollar_cols.append(col)\n\n            if len(dollar_cols) == 0:\n                continue\n\n            dollar_cols = sorted(dollar_cols)\n            col_offset = 0\n            for col in unique_cols:\n                col_cells = [c for c in table.cells if c.col_id == col]\n                if col_offset == 0 and col not in dollar_cols:\n                    continue\n\n                if col in dollar_cols:\n                    col_offset += 1\n                    for cell in col_cells:\n                        text_lines = cell.text_lines if cell.text_lines else []\n                        next_row_col = [\n                            c\n                            for c in table.cells\n                            if c.row_id == cell.row_id and c.col_id == col + 1\n                        ]\n\n                        # Add dollar to start of the next column\n                        next_text_lines = (\n                            next_row_col[0].text_lines\n                            if next_row_col[0].text_lines\n                            else []\n                        )\n                        next_row_col[0].text_lines = deepcopy(text_lines) + deepcopy(\n                            next_text_lines\n                        )\n                        table.cells = [\n                            c for c in table.cells if c.cell_id != cell.cell_id\n                        ]  # Remove original cell\n                        next_row_col[0].col_id -= col_offset\n                else:\n                    for cell in col_cells:\n                        cell.col_id -= col_offset\n\n    def split_combined_rows(self, tables: List[TableResult]):\n        for table in tables:\n            if len(table.cells) == 0:\n                # Skip empty tables\n                continue\n            unique_rows = sorted(list(set([c.row_id for c in table.cells])))\n            row_info = []\n            for row in unique_rows:\n                # Cells in this row\n                # Deepcopy is because we do an in-place mutation later, and that can cause rows to shift to match rows in unique_rows\n                # making them be processed twice\n                row_cells = deepcopy([c for c in table.cells if c.row_id == row])\n                rowspans = [c.rowspan for c in row_cells]\n                line_lens = [\n                    len(c.text_lines) if isinstance(c.text_lines, list) else 1\n                    for c in row_cells\n                ]\n\n                # Other cells that span into this row\n                rowspan_cells = [\n                    c\n                    for c in table.cells\n                    if c.row_id != row and c.row_id + c.rowspan > row > c.row_id\n                ]\n                should_split_entire_row = all(\n                    [\n                        len(row_cells) > 1,\n                        len(rowspan_cells) == 0,\n                        all([rowspan == 1 for rowspan in rowspans]),\n                        all([line_len > 1 for line_len in line_lens]),\n                        all([line_len == line_lens[0] for line_len in line_lens]),\n                    ]\n                )\n                line_lens_counter = Counter(line_lens)\n                counter_keys = sorted(list(line_lens_counter.keys()))\n                should_split_partial_row = all(\n                    [\n                        len(row_cells) > 3,  # Only split if there are more than 3 cells\n                        len(rowspan_cells) == 0,\n                        all([r == 1 for r in rowspans]),\n                        len(line_lens_counter) == 2\n                        and counter_keys[0] <= 1\n                        and counter_keys[1] > 1\n                        and line_lens_counter[counter_keys[0]]\n                        == 1,  # Allow a single column with a single line - keys are the line lens, values are the counts\n                    ]\n                )\n                should_split = should_split_entire_row or should_split_partial_row\n                row_info.append(\n                    {\n                        \"should_split\": should_split,\n                        \"row_cells\": row_cells,\n                        \"line_lens\": line_lens,\n                    }\n                )\n\n            # Don't split if we're not splitting most of the rows in the table.  This avoids splitting stray multiline rows.\n            if (\n                sum([r[\"should_split\"] for r in row_info]) / len(row_info)\n                < self.row_split_threshold\n            ):\n                continue\n\n            new_cells = []\n            shift_up = 0\n            max_cell_id = max([c.cell_id for c in table.cells])\n            new_cell_count = 0\n            for row, item_info in zip(unique_rows, row_info):\n                max_lines = max(item_info[\"line_lens\"])\n                if item_info[\"should_split\"]:\n                    for i in range(0, max_lines):\n                        for cell in item_info[\"row_cells\"]:\n                            # Calculate height based on number of splits\n                            split_height = cell.bbox[3] - cell.bbox[1]\n                            current_bbox = [\n                                cell.bbox[0],\n                                cell.bbox[1] + i * split_height,\n                                cell.bbox[2],\n                                cell.bbox[1] + (i + 1) * split_height,\n                            ]\n\n                            line = (\n                                [cell.text_lines[i]]\n                                if cell.text_lines and i < len(cell.text_lines)\n                                else None\n                            )\n                            cell_id = max_cell_id + new_cell_count\n                            new_cells.append(\n                                SuryaTableCell(\n                                    polygon=current_bbox,\n                                    text_lines=line,\n                                    rowspan=1,\n                                    colspan=cell.colspan,\n                                    row_id=cell.row_id + shift_up + i,\n                                    col_id=cell.col_id,\n                                    is_header=cell.is_header\n                                    and i == 0,  # Only first line is header\n                                    within_row_id=cell.within_row_id,\n                                    cell_id=cell_id,\n                                )\n                            )\n                            new_cell_count += 1\n\n                    # For each new row we add, shift up subsequent rows\n                    # The max is to account for partial rows\n                    shift_up += max_lines - 1\n                else:\n                    for cell in item_info[\"row_cells\"]:\n                        cell.row_id += shift_up\n                        new_cells.append(cell)\n\n            # Only update the cells if we added new cells\n            if len(new_cells) > len(table.cells):\n                table.cells = new_cells\n\n    def assign_text_to_cells(self, tables: List[TableResult], table_data: list):\n        for table_result, table_page_data in zip(tables, table_data):\n            if table_page_data[\"ocr_block\"]:\n                continue\n\n            table_text_lines = table_page_data[\"table_text_lines\"]\n            table_cells: List[SuryaTableCell] = table_result.cells\n            text_line_bboxes = [t[\"bbox\"] for t in table_text_lines]\n            table_cell_bboxes = [c.bbox for c in table_cells]\n\n            intersection_matrix = matrix_intersection_area(\n                text_line_bboxes, table_cell_bboxes\n            )\n\n            cell_text = defaultdict(list)\n            for text_line_idx, table_text_line in enumerate(table_text_lines):\n                intersections = intersection_matrix[text_line_idx]\n                if intersections.sum() == 0:\n                    continue\n\n                max_intersection = intersections.argmax()\n                cell_text[max_intersection].append(table_text_line)\n\n            for k in cell_text:\n                # TODO: see if the text needs to be sorted (based on rotation)\n                text = cell_text[k]\n                assert all(\"text\" in t for t in text), \"All text lines must have text\"\n                assert all(\"bbox\" in t for t in text), \"All text lines must have a bbox\"\n                table_cells[k].text_lines = text\n\n    def assign_pdftext_lines(self, extract_blocks: list, filepath: str):\n        table_inputs = []\n        unique_pages = list(set([t[\"page_id\"] for t in extract_blocks]))\n        if len(unique_pages) == 0:\n            return\n\n        for page in unique_pages:\n            tables = []\n            img_size = None\n            for block in extract_blocks:\n                if block[\"page_id\"] == page:\n                    tables.append(block[\"table_bbox\"])\n                    img_size = block[\"img_size\"]\n\n            table_inputs.append({\"tables\": tables, \"img_size\": img_size})\n        cell_text = table_output(\n            filepath,\n            table_inputs,\n            page_range=unique_pages,\n            workers=self.pdftext_workers,\n        )\n        assert len(cell_text) == len(unique_pages), (\n            \"Number of pages and table inputs must match\"\n        )\n\n        for pidx, (page_tables, pnum) in enumerate(zip(cell_text, unique_pages)):\n            table_idx = 0\n            for block in extract_blocks:\n                if block[\"page_id\"] == pnum:\n                    table_text = page_tables[table_idx]\n                    if len(table_text) == 0:\n                        block[\"ocr_block\"] = (\n                            True  # Re-OCR the block if pdftext didn't find any text\n                        )\n                    else:\n                        block[\"table_text_lines\"] = page_tables[table_idx]\n                    table_idx += 1\n            assert table_idx == len(page_tables), (\n                \"Number of tables and table inputs must match\"\n            )\n\n    def align_table_cells(\n        self, table: TableResult, table_detection_result: TextDetectionResult\n    ):\n        table_cells = table.cells\n        table_text_lines = table_detection_result.bboxes\n\n        text_line_bboxes = [t.bbox for t in table_text_lines]\n        table_cell_bboxes = [c.bbox for c in table_cells]\n\n        intersection_matrix = matrix_intersection_area(\n            text_line_bboxes, table_cell_bboxes\n        )\n\n        # Map cells -> list of assigned text lines\n        cell_text = defaultdict(list)\n        for text_line_idx, table_text_line in enumerate(table_text_lines):\n            intersections = intersection_matrix[text_line_idx]\n            if intersections.sum() == 0:\n                continue\n            max_intersection = intersections.argmax()\n            cell_text[max_intersection].append(table_text_line)\n\n        # Adjust cell polygons in place\n        for cell_idx, cell in enumerate(table_cells):\n            # all intersecting lines\n            intersecting_line_indices = [\n                i for i, area in enumerate(intersection_matrix[:, cell_idx]) if area > 0\n            ]\n            if not intersecting_line_indices:\n                continue\n\n            assigned_lines = cell_text.get(cell_idx, [])\n            # Expand to fit assigned lines - **Only in the y direction**\n            for assigned_line in assigned_lines:\n                x1 = cell.bbox[0]\n                x2 = cell.bbox[2]\n                y1 = min(cell.bbox[1], assigned_line.bbox[1])\n                y2 = max(cell.bbox[3], assigned_line.bbox[3])\n                cell.polygon = [[x1, y1], [x2, y1], [x2, y2], [x1, y2]]\n\n            # Clear out non-assigned lines\n            non_assigned_lines = [\n                table_text_lines[i]\n                for i in intersecting_line_indices\n                if table_text_lines[i] not in cell_text.get(cell_idx, [])\n            ]\n            if non_assigned_lines:\n                # Find top-most and bottom-most non-assigned boxes\n                top_box = min(\n                    non_assigned_lines, key=lambda line: line.bbox[1]\n                )  # smallest y0\n                bottom_box = max(\n                    non_assigned_lines, key=lambda line: line.bbox[3]\n                )  # largest y1\n\n                # Current cell bbox (from polygon)\n                x0, y0, x1, y1 = cell.bbox\n\n                # Adjust y-limits based on non-assigned boxes\n                new_y0 = max(y0, top_box.bbox[3])  # top moves down\n                new_y1 = min(y1, bottom_box.bbox[1])  # bottom moves up\n\n                if new_y0 < new_y1:\n                    # Replace polygon with a new shrunken rectangle\n                    cell.polygon = [\n                        [x0, new_y0],\n                        [x1, new_y0],\n                        [x1, new_y1],\n                        [x0, new_y1],\n                    ]\n\n    def needs_ocr(self, tables: List[TableResult], table_blocks: List[dict]):\n        ocr_tables = []\n        ocr_idxs = []\n        for j, (table_result, table_block) in enumerate(zip(tables, table_blocks)):\n            table_cells: List[SuryaTableCell] = table_result.cells\n            text_lines_need_ocr = any([tc.text_lines is None for tc in table_cells])\n            if (\n                table_block[\"ocr_block\"]\n                and text_lines_need_ocr\n                and not self.disable_ocr\n            ):\n                logger.debug(\n                    f\"Table {j} needs OCR, info table block needs ocr: {table_block['ocr_block']}, text_lines {text_lines_need_ocr}\"\n                )\n                ocr_tables.append(table_result)\n                ocr_idxs.append(j)\n\n        detection_results: List[TextDetectionResult] = self.detection_model(\n            images=[table_blocks[i][\"table_image\"] for i in ocr_idxs],\n            batch_size=self.get_detection_batch_size(),\n        )\n        assert len(detection_results) == len(ocr_idxs), (\n            \"Every OCRed table requires a text detection result\"\n        )\n\n        for idx, table_detection_result in zip(ocr_idxs, detection_results):\n            self.align_table_cells(tables[idx], table_detection_result)\n\n        ocr_polys = []\n        for ocr_idx in ocr_idxs:\n            table_cells = tables[ocr_idx].cells\n            polys = [tc for tc in table_cells if tc.text_lines is None]\n            ocr_polys.append(polys)\n        return ocr_tables, ocr_polys, ocr_idxs\n\n    def get_ocr_results(\n        self, table_images: List[Image.Image], ocr_polys: List[List[SuryaTableCell]]\n    ):\n        ocr_polys_bad = []\n\n        for table_image, polys in zip(table_images, ocr_polys):\n            table_polys_bad = [\n                any(\n                    [\n                        poly.height < 6,\n                        is_blank_image(table_image.crop(poly.bbox), poly.polygon),\n                    ]\n                )\n                for poly in polys\n            ]\n            ocr_polys_bad.append(table_polys_bad)\n\n        filtered_polys = []\n        for table_polys, table_polys_bad in zip(ocr_polys, ocr_polys_bad):\n            filtered_table_polys = []\n            for p, is_bad in zip(table_polys, table_polys_bad):\n                if is_bad:\n                    continue\n                polygon = p.polygon\n                # Round the polygon\n                for corner in polygon:\n                    for i in range(2):\n                        corner[i] = int(corner[i])\n\n                filtered_table_polys.append(polygon)\n            filtered_polys.append(filtered_table_polys)\n\n        ocr_results = self.recognition_model(\n            images=table_images,\n            task_names=[\"ocr_with_boxes\"] * len(table_images),\n            recognition_batch_size=self.get_recognition_batch_size(),\n            drop_repeated_text=self.drop_repeated_table_text,\n            polygons=filtered_polys,\n            filter_tag_list=self.filter_tag_list,\n            max_tokens=2048,\n            max_sliding_window=2148,\n            math_mode=not self.disable_ocr_math,\n        )\n\n        # Re-align the predictions to the original length, since we skipped some predictions\n        for table_ocr_result, table_polys_bad in zip(ocr_results, ocr_polys_bad):\n            updated_lines = []\n            idx = 0\n            for is_bad in table_polys_bad:\n                if is_bad:\n                    updated_lines.append(\n                        TextLine(\n                            text=\"\",\n                            polygon=[[0, 0], [0, 0], [0, 0], [0, 0]],\n                            confidence=1,\n                            chars=[],\n                            original_text_good=False,\n                            words=None,\n                        )\n                    )\n                else:\n                    updated_lines.append(table_ocr_result.text_lines[idx])\n                    idx += 1\n            table_ocr_result.text_lines = updated_lines\n\n        return ocr_results\n\n    def assign_ocr_lines(self, tables: List[TableResult], table_blocks: list):\n        ocr_tables, ocr_polys, ocr_idxs = self.needs_ocr(tables, table_blocks)\n        det_images = [\n            t[\"table_image\"] for i, t in enumerate(table_blocks) if i in ocr_idxs\n        ]\n        assert len(det_images) == len(ocr_polys), (\n            f\"Number of detection images and OCR polygons must match: {len(det_images)} != {len(ocr_polys)}\"\n        )\n        self.recognition_model.disable_tqdm = self.disable_tqdm\n        ocr_results = self.get_ocr_results(table_images=det_images, ocr_polys=ocr_polys)\n\n        for result, ocr_res in zip(ocr_tables, ocr_results):\n            table_cells: List[SuryaTableCell] = result.cells\n            cells_need_text = [tc for tc in table_cells if tc.text_lines is None]\n\n            assert len(cells_need_text) == len(ocr_res.text_lines), (\n                \"Number of cells needing text and OCR results must match\"\n            )\n\n            for cell_text, cell_needs_text in zip(ocr_res.text_lines, cells_need_text):\n                # Don't need to correct back to image size\n                # Table rec boxes are relative to the table\n                cell_text_lines = [{\"text\": t} for t in cell_text.text.split(\"<br>\")]\n                cell_needs_text.text_lines = cell_text_lines\n\n    def get_table_rec_batch_size(self):\n        if self.table_rec_batch_size is not None:\n            return self.table_rec_batch_size\n        elif settings.TORCH_DEVICE_MODEL == \"mps\":\n            return 6\n        elif settings.TORCH_DEVICE_MODEL == \"cuda\":\n            return 14\n        return 6\n\n    def get_recognition_batch_size(self):\n        if self.recognition_batch_size is not None:\n            return self.recognition_batch_size\n        elif settings.TORCH_DEVICE_MODEL == \"mps\":\n            return 32\n        elif settings.TORCH_DEVICE_MODEL == \"cuda\":\n            return 48\n        return 32\n\n    def get_detection_batch_size(self):\n        if self.detection_batch_size is not None:\n            return self.detection_batch_size\n        elif settings.TORCH_DEVICE_MODEL == \"cuda\":\n            return 10\n        return 4\n"
  },
  {
    "path": "marker/processors/text.py",
    "content": "import math\nfrom typing import Annotated, List\n\nimport regex\n\nfrom marker.processors import BaseProcessor\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\nfrom marker.schema.text.line import Line\n\n\nclass TextProcessor(BaseProcessor):\n    \"\"\"\n    A processor for merging text across pages and columns.\n    \"\"\"\n\n    block_types = (BlockTypes.Text, BlockTypes.TextInlineMath)\n    ignored_block_types = (BlockTypes.PageHeader, BlockTypes.PageFooter)\n    column_gap_ratio: Annotated[\n        float,\n        \"The minimum ratio of the page width to the column gap to consider a column break.\",\n    ] = 0.02\n\n    def __init__(self, config):\n        super().__init__(config)\n\n    def __call__(self, document: Document):\n        for page in document.pages:\n            for block in page.contained_blocks(document, self.block_types):\n                if block.structure is None:\n                    continue\n\n                if not len(block.structure) >= 2:  # Skip single lines\n                    continue\n\n                next_block = document.get_next_block(block, self.ignored_block_types)\n                if next_block is None:  # we've reached the end of the document\n                    continue\n                if next_block.block_type not in self.block_types:\n                    continue  # we found a non-text block\n                if next_block.structure is None:\n                    continue  # This is odd though, why do we have text blocks with no structure?\n                if next_block.ignore_for_output:\n                    continue  # skip ignored blocks\n\n                column_gap = block.polygon.width * self.column_gap_ratio\n\n                column_break, page_break = False, False\n                next_block_starts_indented = True\n                next_block_in_first_quadrant = False\n                last_line_is_full_width = False\n                last_line_is_hyphentated = False\n\n                if next_block.page_id == block.page_id:  # block on the same page\n                    # we check for a column break\n                    column_break = math.floor(next_block.polygon.y_start) <= math.ceil(\n                        block.polygon.y_start\n                    ) and next_block.polygon.x_start > (\n                        block.polygon.x_end + column_gap\n                    )\n                else:\n                    page_break = True\n                    next_page = document.get_page(next_block.page_id)\n                    next_block_in_first_quadrant = (\n                        next_block.polygon.x_start < next_page.polygon.width // 2\n                    ) and (next_block.polygon.y_start < next_page.polygon.height // 2)\n\n                if not (column_break or page_break):\n                    continue\n\n                new_block_lines = next_block.structure_blocks(document)\n\n                # we check for next_block indentation\n                if len(new_block_lines):\n                    min_x = math.ceil(\n                        min([line.polygon.x_start for line in new_block_lines])\n                    )\n                    next_block_starts_indented = (\n                        new_block_lines[0].polygon.x_start > min_x\n                    )\n\n                lines: List[Line] = [\n                    line\n                    for line in block.structure_blocks(document)\n                    if line.polygon.width > 1\n                ]\n                if len(lines):\n                    max_x = math.floor(max([line.polygon.x_end for line in lines]))\n                    last_line_is_full_width = lines[-1].polygon.x_end >= max_x\n\n                    last_line_is_hyphentated = regex.compile(\n                        r\".*[\\p{Ll}|\\d][-—¬]\\s?$\", regex.DOTALL\n                    ).match(lines[-1].raw_text(document).strip())\n\n                if (\n                    (last_line_is_full_width or last_line_is_hyphentated)\n                    and not next_block_starts_indented\n                    and ((next_block_in_first_quadrant and page_break) or column_break)\n                ):\n                    block.has_continuation = True\n"
  },
  {
    "path": "marker/processors/util.py",
    "content": "import re\n\nfrom bs4 import BeautifulSoup\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.groups import PageGroup\nfrom marker.schema.registry import get_block_class\nfrom marker.schema.text import Line\n\n\ndef escape_latex_commands(text: str):\n    text = (text\n            .replace('\\n', '\\\\n')\n            .replace('\\t', '\\\\t')\n            .replace('\\r', '\\\\r'))\n    return text\n\n\ndef add_math_spans_to_line(corrected_text: str, text_line: Line, page: PageGroup):\n    SpanClass = get_block_class(BlockTypes.Span)\n    corrected_spans = text_to_spans(corrected_text)\n\n    for span_idx, span in enumerate(corrected_spans):\n        if span_idx == len(corrected_spans) - 1:\n            span['content'] += \"\\n\"\n\n        span_block = page.add_full_block(\n            SpanClass(\n                polygon=text_line.polygon,\n                text=span['content'],\n                font='Unknown',\n                font_weight=0,\n                font_size=0,\n                minimum_position=0,\n                maximum_position=0,\n                formats=[span['type']],\n                url=span.get('url'),\n                page_id=text_line.page_id,\n                text_extraction_method=\"gemini\",\n                has_superscript=span[\"has_superscript\"],\n                has_subscript=span[\"has_subscript\"]\n            )\n        )\n        text_line.structure.append(span_block.id)\n\n\ndef text_to_spans(text):\n    soup = BeautifulSoup(text, 'html.parser')\n\n    tag_types = {\n        'b': 'bold',\n        'i': 'italic',\n        'math': 'math',\n        'sub': 'plain',\n        'sup': 'plain',\n        'span': 'plain'\n    }\n    spans = []\n\n    for element in soup.descendants:\n        if not len(list(element.parents)) == 1:\n            continue\n\n        url = element.attrs.get('href') if hasattr(element, 'attrs') else None\n\n        if element.name in tag_types:\n            text = element.get_text()\n            if element.name == \"math\":\n                text = escape_latex_commands(text)\n            spans.append({\n                'type': tag_types[element.name],\n                'content': text,\n                'url': url,\n                \"has_superscript\": element.name == \"sup\",\n                \"has_subscript\": element.name == \"sub\"\n            })\n        elif element.string:\n            spans.append({\n                'type': 'plain',\n                'content': element.string,\n                'url': url,\n                \"has_superscript\": False,\n                \"has_subscript\": False\n            })\n\n    return spans"
  },
  {
    "path": "marker/providers/__init__.py",
    "content": "from copy import deepcopy\nfrom typing import List, Optional, Dict\n\nfrom PIL import Image\nfrom pydantic import BaseModel\n\nfrom pdftext.schema import Reference\n\nfrom marker.logger import configure_logging\nfrom marker.schema.polygon import PolygonBox\nfrom marker.schema.text import Span\nfrom marker.schema.text.char import Char\nfrom marker.schema.text.line import Line\nfrom marker.settings import settings\nfrom marker.util import assign_config\n\nconfigure_logging()\n\n\nclass ProviderOutput(BaseModel):\n    line: Line\n    spans: List[Span]\n    chars: Optional[List[List[Char]]] = None\n\n    @property\n    def raw_text(self):\n        return \"\".join(span.text for span in self.spans)\n\n    def __hash__(self):\n        return hash(tuple(self.line.polygon.bbox))\n\n    def merge(self, other: \"ProviderOutput\"):\n        new_output = deepcopy(self)\n        other_copy = deepcopy(other)\n\n        new_output.spans.extend(other_copy.spans)\n        if new_output.chars is not None and other_copy.chars is not None:\n            new_output.chars.extend(other_copy.chars)\n        elif other_copy.chars is not None:\n            new_output.chars = other_copy.chars\n\n        new_output.line.polygon = new_output.line.polygon.merge(\n            [other_copy.line.polygon]\n        )\n        return new_output\n\n\nProviderPageLines = Dict[int, List[ProviderOutput]]\n\n\nclass BaseProvider:\n    def __init__(self, filepath: str, config: Optional[BaseModel | dict] = None):\n        assign_config(self, config)\n        self.filepath = filepath\n\n    def __len__(self):\n        pass\n\n    def get_images(self, idxs: List[int], dpi: int) -> List[Image.Image]:\n        pass\n\n    def get_page_bbox(self, idx: int) -> PolygonBox | None:\n        pass\n\n    def get_page_lines(self, idx: int) -> List[Line]:\n        pass\n\n    def get_page_refs(self, idx: int) -> List[Reference]:\n        pass\n\n    def __enter__(self):\n        return self\n\n    @staticmethod\n    def get_font_css():\n        from weasyprint import CSS\n        from weasyprint.text.fonts import FontConfiguration\n\n        font_config = FontConfiguration()\n        css = CSS(\n            string=f\"\"\"\n            @font-face {{\n                font-family: GoNotoCurrent-Regular;\n                src: url({settings.FONT_PATH});\n                font-display: swap;\n            }}\n            body {{\n                font-family: {settings.FONT_NAME.split(\".\")[0]}, sans-serif;\n                font-variant-ligatures: none;\n                font-feature-settings: \"liga\" 0;\n                text-rendering: optimizeLegibility;\n            }}\n            \"\"\",\n            font_config=font_config,\n        )\n        return css\n"
  },
  {
    "path": "marker/providers/document.py",
    "content": "import base64\nimport os\nimport re\nimport tempfile\nfrom io import BytesIO\n\nfrom PIL import Image\nfrom marker.logger import get_logger\n\nfrom marker.providers.pdf import PdfProvider\n\nlogger = get_logger()\n\ncss = \"\"\"\n@page {\n    size: A4;\n    margin: 2cm;\n}\n\nimg {\n    max-width: 100%;\n    max-height: 25cm;\n    object-fit: contain;\n    margin: 12pt auto;\n}\n\ndiv, p {\n    max-width: 100%;\n    word-break: break-word;\n    font-size: 10pt;\n}\n\ntable {\n    width: 100%;\n    border-collapse: collapse;\n    break-inside: auto;\n    font-size: 10pt;\n}\n\ntr {\n    break-inside: avoid;\n    page-break-inside: avoid;\n}\n\ntd {\n    border: 0.75pt solid #000;\n    padding: 6pt;\n}\n\"\"\"\n\n\nclass DocumentProvider(PdfProvider):\n    def __init__(self, filepath: str, config=None):\n        temp_pdf = tempfile.NamedTemporaryFile(delete=False, suffix=\".pdf\")\n        self.temp_pdf_path = temp_pdf.name\n        temp_pdf.close()\n\n        # Convert DOCX to PDF\n        try:\n            self.convert_docx_to_pdf(filepath)\n        except Exception as e:\n            raise RuntimeError(f\"Failed to convert {filepath} to PDF: {e}\")\n\n        # Initialize the PDF provider with the temp pdf path\n        super().__init__(self.temp_pdf_path, config)\n\n    def __del__(self):\n        if os.path.exists(self.temp_pdf_path):\n            os.remove(self.temp_pdf_path)\n\n    def convert_docx_to_pdf(self, filepath: str):\n        from weasyprint import CSS, HTML\n        import mammoth\n\n        with open(filepath, \"rb\") as docx_file:\n            # we convert the docx to HTML\n            result = mammoth.convert_to_html(docx_file)\n            html = result.value\n\n            # We convert the HTML into a PDF\n            HTML(string=self._preprocess_base64_images(html)).write_pdf(\n                self.temp_pdf_path, stylesheets=[CSS(string=css), self.get_font_css()]\n            )\n\n    @staticmethod\n    def _preprocess_base64_images(html_content):\n        pattern = r'data:([^;]+);base64,([^\"\\'>\\s]+)'\n\n        def convert_image(match):\n            try:\n                img_data = base64.b64decode(match.group(2))\n\n                with BytesIO(img_data) as bio:\n                    with Image.open(bio) as img:\n                        output = BytesIO()\n                        img.save(output, format=img.format)\n                        new_base64 = base64.b64encode(output.getvalue()).decode()\n                        return f\"data:{match.group(1)};base64,{new_base64}\"\n\n            except Exception as e:\n                logger.error(f\"Failed to process image: {e}\")\n                return \"\"  # we ditch broken images as that breaks the PDF creation down the line\n\n        return re.sub(pattern, convert_image, html_content)\n"
  },
  {
    "path": "marker/providers/epub.py",
    "content": "import base64\nimport os\nimport tempfile\n\nfrom bs4 import BeautifulSoup\n\nfrom marker.providers.pdf import PdfProvider\n\ncss = '''\n@page {\n    size: A4;\n    margin: 2cm;\n}\n\nimg {\n    max-width: 100%;\n    max-height: 25cm;\n    object-fit: contain;\n    margin: 12pt auto;\n}\n\ndiv, p {\n    max-width: 100%;\n    word-break: break-word;\n    font-size: 10pt;\n}\n\ntable {\n    width: 100%;\n    border-collapse: collapse;\n    break-inside: auto;\n    font-size: 10pt;\n}\n\ntr {\n    break-inside: avoid;\n    page-break-inside: avoid;\n}\n\ntd {\n    border: 0.75pt solid #000;\n    padding: 6pt;\n}\n'''\n\n\nclass EpubProvider(PdfProvider):\n    def __init__(self, filepath: str, config=None):\n        temp_pdf = tempfile.NamedTemporaryFile(delete=False, suffix=f\".pdf\")\n        self.temp_pdf_path = temp_pdf.name\n        temp_pdf.close()\n\n        # Convert Epub to PDF\n        try:\n            self.convert_epub_to_pdf(filepath)\n        except Exception as e:\n            raise RuntimeError(f\"Failed to convert {filepath} to PDF: {e}\")\n\n        # Initialize the PDF provider with the temp pdf path\n        super().__init__(self.temp_pdf_path, config)\n\n    def __del__(self):\n        if os.path.exists(self.temp_pdf_path):\n            os.remove(self.temp_pdf_path)\n\n    def convert_epub_to_pdf(self, filepath):\n        from weasyprint import CSS, HTML\n        from ebooklib import epub\n        import ebooklib\n\n        ebook = epub.read_epub(filepath)\n\n        styles = []\n        html_content = \"\"\n        img_tags = {}\n\n        for item in ebook.get_items():\n            if item.get_type() == ebooklib.ITEM_IMAGE:\n                img_data = base64.b64encode(item.get_content()).decode(\"utf-8\")\n                img_tags[item.file_name] = f'data:{item.media_type};base64,{img_data}'\n            elif item.get_type() == ebooklib.ITEM_STYLE:\n                styles.append(item.get_content().decode('utf-8'))\n\n        for item in ebook.get_items():\n            if item.get_type() == ebooklib.ITEM_DOCUMENT:\n                html_content += item.get_content().decode(\"utf-8\")\n\n        soup = BeautifulSoup(html_content, 'html.parser')\n        for img in soup.find_all('img'):\n            src = img.get('src')\n            if src:\n                normalized_src = src.replace('../', '')\n                if normalized_src in img_tags:\n                    img['src'] = img_tags[normalized_src]\n\n        for image in soup.find_all('image'):\n            src = image.get('xlink:href')\n            if src:\n                normalized_src = src.replace('../', '')\n                if normalized_src in img_tags:\n                    image['xlink:href'] = img_tags[normalized_src]\n\n        html_content = str(soup)\n        full_style = ''.join([css])  # + styles)\n\n        # we convert the epub to HTML\n        HTML(string=html_content, base_url=filepath).write_pdf(\n            self.temp_pdf_path,\n            stylesheets=[CSS(string=full_style), self.get_font_css()]\n        )\n"
  },
  {
    "path": "marker/providers/html.py",
    "content": "import os\nimport tempfile\n\nfrom marker.providers.pdf import PdfProvider\n\n\nclass HTMLProvider(PdfProvider):\n    def __init__(self, filepath: str, config=None):\n        temp_pdf = tempfile.NamedTemporaryFile(delete=False, suffix=\".pdf\")\n        self.temp_pdf_path = temp_pdf.name\n        temp_pdf.close()\n\n        # Convert HTML to PDF\n        try:\n            self.convert_html_to_pdf(filepath)\n        except Exception as e:\n            raise RuntimeError(f\"Failed to convert {filepath} to PDF: {e}\")\n\n        # Initialize the PDF provider with the temp pdf path\n        super().__init__(self.temp_pdf_path, config)\n\n    def __del__(self):\n        if os.path.exists(self.temp_pdf_path):\n            os.remove(self.temp_pdf_path)\n\n    def convert_html_to_pdf(self, filepath: str):\n        from weasyprint import HTML\n\n        font_css = self.get_font_css()\n        HTML(filename=filepath, encoding=\"utf-8\").write_pdf(\n            self.temp_pdf_path, stylesheets=[font_css]\n        )\n"
  },
  {
    "path": "marker/providers/image.py",
    "content": "from typing import List, Annotated\nfrom PIL import Image\n\nfrom marker.providers import ProviderPageLines, BaseProvider\nfrom marker.schema.polygon import PolygonBox\nfrom marker.schema.text import Line\nfrom pdftext.schema import Reference\n\n\nclass ImageProvider(BaseProvider):\n    page_range: Annotated[\n        List[int],\n        \"The range of pages to process.\",\n        \"Default is None, which will process all pages.\",\n    ] = None\n\n    image_count: int = 1\n\n    def __init__(self, filepath: str, config=None):\n        super().__init__(filepath, config)\n\n        self.images = [Image.open(filepath)]\n        self.page_lines: ProviderPageLines = {i: [] for i in range(self.image_count)}\n\n        if self.page_range is None:\n            self.page_range = range(self.image_count)\n\n        assert max(self.page_range) < self.image_count and min(self.page_range) >= 0, (\n            f\"Invalid page range, values must be between 0 and {len(self.doc) - 1}.  Min of provided page range is {min(self.page_range)} and max is {max(self.page_range)}.\"\n        )\n\n        self.page_bboxes = {\n            i: [0, 0, self.images[i].size[0], self.images[i].size[1]]\n            for i in self.page_range\n        }\n\n    def __len__(self):\n        return self.image_count\n\n    def get_images(self, idxs: List[int], dpi: int) -> List[Image.Image]:\n        return [self.images[i] for i in idxs]\n\n    def get_page_bbox(self, idx: int) -> PolygonBox | None:\n        bbox = self.page_bboxes[idx]\n        if bbox:\n            return PolygonBox.from_bbox(bbox)\n\n    def get_page_lines(self, idx: int) -> List[Line]:\n        return self.page_lines[idx]\n\n    def get_page_refs(self, idx: int) -> List[Reference]:\n        return []\n"
  },
  {
    "path": "marker/providers/pdf.py",
    "content": "import contextlib\nimport ctypes\nimport logging\nimport re\nfrom typing import Annotated, Dict, List, Optional, Set\n\nimport pypdfium2 as pdfium\nimport pypdfium2.raw as pdfium_c\nfrom ftfy import fix_text\nfrom pdftext.extraction import dictionary_output\nfrom pdftext.schema import Reference\nfrom pdftext.pdf.utils import flatten as flatten_pdf_page\n\nfrom PIL import Image\nfrom pypdfium2 import PdfiumError, PdfDocument\n\nfrom marker.providers import BaseProvider, ProviderOutput, Char, ProviderPageLines\nfrom marker.providers.utils import alphanum_ratio\nfrom marker.schema import BlockTypes\nfrom marker.schema.polygon import PolygonBox\nfrom marker.schema.registry import get_block_class\nfrom marker.schema.text.line import Line\nfrom marker.schema.text.span import Span\n\n# Ignore pypdfium2 warning about form flattening\nlogging.getLogger(\"pypdfium2\").setLevel(logging.ERROR)\n\n\nclass PdfProvider(BaseProvider):\n    \"\"\"\n    A provider for PDF files.\n    \"\"\"\n\n    page_range: Annotated[\n        List[int],\n        \"The range of pages to process.\",\n        \"Default is None, which will process all pages.\",\n    ] = None\n    pdftext_workers: Annotated[\n        int,\n        \"The number of workers to use for pdftext.\",\n    ] = 4\n    flatten_pdf: Annotated[\n        bool,\n        \"Whether to flatten the PDF structure.\",\n    ] = True\n    force_ocr: Annotated[\n        bool,\n        \"Whether to force OCR on the whole document.\",\n    ] = False\n    ocr_invalid_chars: Annotated[\n        tuple,\n        \"The characters to consider invalid for OCR.\",\n    ] = (chr(0xFFFD), \"�\")\n    ocr_space_threshold: Annotated[\n        float,\n        \"The minimum ratio of spaces to non-spaces to detect bad text.\",\n    ] = 0.7\n    ocr_newline_threshold: Annotated[\n        float,\n        \"The minimum ratio of newlines to non-newlines to detect bad text.\",\n    ] = 0.6\n    ocr_alphanum_threshold: Annotated[\n        float,\n        \"The minimum ratio of alphanumeric characters to non-alphanumeric characters to consider an alphanumeric character.\",\n    ] = 0.3\n    image_threshold: Annotated[\n        float,\n        \"The minimum coverage ratio of the image to the page to consider skipping the page.\",\n    ] = 0.65\n    strip_existing_ocr: Annotated[\n        bool,\n        \"Whether to strip existing OCR text from the PDF.\",\n    ] = False\n    disable_links: Annotated[\n        bool,\n        \"Whether to disable links.\",\n    ] = False\n    keep_chars: Annotated[\n        bool,\n        \"Whether to keep character-level information in the output.\",\n    ] = False\n\n    def __init__(self, filepath: str, config=None):\n        super().__init__(filepath, config)\n\n        self.filepath = filepath\n\n        with self.get_doc() as doc:\n            self.page_count = len(doc)\n            self.page_lines: ProviderPageLines = {i: [] for i in range(len(doc))}\n            self.page_refs: Dict[int, List[Reference]] = {\n                i: [] for i in range(len(doc))\n            }\n\n            if self.page_range is None:\n                self.page_range = range(len(doc))\n\n            assert max(self.page_range) < len(doc) and min(self.page_range) >= 0, (\n                f\"Invalid page range, values must be between 0 and {len(doc) - 1}.  Min of provided page range is {min(self.page_range)} and max is {max(self.page_range)}.\"\n            )\n\n            if self.force_ocr:\n                # Manually assign page bboxes, since we can't get them from pdftext\n                self.page_bboxes = {i: doc[i].get_bbox() for i in self.page_range}\n            else:\n                self.page_lines = self.pdftext_extraction(doc)\n\n    @contextlib.contextmanager\n    def get_doc(self):\n        doc = None\n        try:\n            doc = pdfium.PdfDocument(self.filepath)\n\n            # Must be called on the parent pdf, before retrieving pages to render correctly\n            if self.flatten_pdf:\n                doc.init_forms()\n\n            yield doc\n        finally:\n            if doc:\n                doc.close()\n\n    def __len__(self) -> int:\n        return self.page_count\n\n    def font_flags_to_format(self, flags: Optional[int]) -> Set[str]:\n        if flags is None:\n            return {\"plain\"}\n\n        flag_map = {\n            1: \"FixedPitch\",\n            2: \"Serif\",\n            3: \"Symbolic\",\n            4: \"Script\",\n            6: \"Nonsymbolic\",\n            7: \"Italic\",\n            17: \"AllCap\",\n            18: \"SmallCap\",\n            19: \"ForceBold\",\n            20: \"UseExternAttr\",\n        }\n        set_flags = set()\n        for bit_position, flag_name in flag_map.items():\n            if flags & (1 << (bit_position - 1)):\n                set_flags.add(flag_name)\n        if not set_flags:\n            set_flags.add(\"Plain\")\n\n        formats = set()\n        if set_flags == {\"Symbolic\", \"Italic\"} or set_flags == {\n            \"Symbolic\",\n            \"Italic\",\n            \"UseExternAttr\",\n        }:\n            formats.add(\"plain\")\n        elif set_flags == {\"UseExternAttr\"}:\n            formats.add(\"plain\")\n        elif set_flags == {\"Plain\"}:\n            formats.add(\"plain\")\n        else:\n            if set_flags & {\"Italic\"}:\n                formats.add(\"italic\")\n            if set_flags & {\"ForceBold\"}:\n                formats.add(\"bold\")\n            if set_flags & {\n                \"FixedPitch\",\n                \"Serif\",\n                \"Script\",\n                \"Nonsymbolic\",\n                \"AllCap\",\n                \"SmallCap\",\n                \"UseExternAttr\",\n            }:\n                formats.add(\"plain\")\n        return formats\n\n    def font_names_to_format(self, font_name: str | None) -> Set[str]:\n        formats = set()\n        if font_name is None:\n            return formats\n\n        if \"bold\" in font_name.lower():\n            formats.add(\"bold\")\n        if \"ital\" in font_name.lower():\n            formats.add(\"italic\")\n        return formats\n\n    @staticmethod\n    def normalize_spaces(text):\n        space_chars = [\n            \"\\u2003\",  # em space\n            \"\\u2002\",  # en space\n            \"\\u00a0\",  # non-breaking space\n            \"\\u200b\",  # zero-width space\n            \"\\u3000\",  # ideographic space\n        ]\n        for space in space_chars:\n            text = text.replace(space, \" \")\n        return text\n\n    def pdftext_extraction(self, doc: PdfDocument) -> ProviderPageLines:\n        page_lines: ProviderPageLines = {}\n        page_char_blocks = dictionary_output(\n            self.filepath,\n            page_range=self.page_range,\n            keep_chars=self.keep_chars,\n            workers=self.pdftext_workers,\n            flatten_pdf=self.flatten_pdf,\n            quote_loosebox=False,\n            disable_links=self.disable_links,\n        )\n        self.page_bboxes = {\n            i: [0, 0, page[\"width\"], page[\"height\"]]\n            for i, page in zip(self.page_range, page_char_blocks)\n        }\n\n        SpanClass: Span = get_block_class(BlockTypes.Span)\n        LineClass: Line = get_block_class(BlockTypes.Line)\n        CharClass: Char = get_block_class(BlockTypes.Char)\n\n        for page in page_char_blocks:\n            page_id = page[\"page\"]\n            lines: List[ProviderOutput] = []\n            if not self.check_page(page_id, doc):\n                continue\n\n            for block in page[\"blocks\"]:\n                for line in block[\"lines\"]:\n                    spans: List[Span] = []\n                    chars: List[List[Char]] = []\n                    for span in line[\"spans\"]:\n                        if not span[\"text\"]:\n                            continue\n                        font_formats = self.font_flags_to_format(\n                            span[\"font\"][\"flags\"]\n                        ).union(self.font_names_to_format(span[\"font\"][\"name\"]))\n                        font_name = span[\"font\"][\"name\"] or \"Unknown\"\n                        font_weight = span[\"font\"][\"weight\"] or 0\n                        font_size = span[\"font\"][\"size\"] or 0\n                        polygon = PolygonBox.from_bbox(\n                            span[\"bbox\"], ensure_nonzero_area=True\n                        )\n                        superscript = span.get(\"superscript\", False)\n                        subscript = span.get(\"subscript\", False)\n                        text = self.normalize_spaces(fix_text(span[\"text\"]))\n                        if superscript or subscript:\n                            text = text.strip()\n\n                        spans.append(\n                            SpanClass(\n                                polygon=polygon,\n                                text=text,\n                                font=font_name,\n                                font_weight=font_weight,\n                                font_size=font_size,\n                                minimum_position=span[\"char_start_idx\"],\n                                maximum_position=span[\"char_end_idx\"],\n                                formats=list(font_formats),\n                                page_id=page_id,\n                                text_extraction_method=\"pdftext\",\n                                url=span.get(\"url\"),\n                                has_superscript=superscript,\n                                has_subscript=subscript,\n                            )\n                        )\n\n                        if self.keep_chars:\n                            span_chars = [\n                                CharClass(\n                                    text=c[\"char\"],\n                                    polygon=PolygonBox.from_bbox(\n                                        c[\"bbox\"], ensure_nonzero_area=True\n                                    ),\n                                    idx=c[\"char_idx\"],\n                                )\n                                for c in span[\"chars\"]\n                            ]\n                            chars.append(span_chars)\n                        else:\n                            chars.append([])\n\n                    polygon = PolygonBox.from_bbox(\n                        line[\"bbox\"], ensure_nonzero_area=True\n                    )\n\n                    assert len(spans) == len(chars), (\n                        f\"Spans and chars length mismatch on page {page_id}: {len(spans)} spans, {len(chars)} chars\"\n                    )\n                    lines.append(\n                        ProviderOutput(\n                            line=LineClass(polygon=polygon, page_id=page_id),\n                            spans=spans,\n                            chars=chars,\n                        )\n                    )\n            if self.check_line_spans(lines):\n                page_lines[page_id] = lines\n\n            self.page_refs[page_id] = []\n            if page_refs := page.get(\"refs\", None):\n                self.page_refs[page_id] = page_refs\n\n        return page_lines\n\n    def check_line_spans(self, page_lines: List[ProviderOutput]) -> bool:\n        page_spans = [span for line in page_lines for span in line.spans]\n        if len(page_spans) == 0:\n            return False\n\n        text = \"\"\n        for span in page_spans:\n            text = text + \" \" + span.text\n            text = text + \"\\n\"\n        if len(text.strip()) == 0:\n            return False\n        if self.detect_bad_ocr(text):\n            return False\n        return True\n\n    def check_page(self, page_id: int, doc: PdfDocument) -> bool:\n        page = doc.get_page(page_id)\n        page_bbox = PolygonBox.from_bbox(page.get_bbox())\n        try:\n            page_objs = list(\n                page.get_objects(\n                    filter=[pdfium_c.FPDF_PAGEOBJ_TEXT, pdfium_c.FPDF_PAGEOBJ_IMAGE]\n                )\n            )\n        except PdfiumError:\n            # Happens when pdfium fails to get the number of page objects\n            return False\n\n        # if we do not see any text objects in the pdf, we can skip this page\n        if not any([obj.type == pdfium_c.FPDF_PAGEOBJ_TEXT for obj in page_objs]):\n            return False\n\n        if self.strip_existing_ocr:\n            # If any text objects on the page are in invisible render mode, skip this page\n            for text_obj in filter(\n                lambda obj: obj.type == pdfium_c.FPDF_PAGEOBJ_TEXT, page_objs\n            ):\n                if pdfium_c.FPDFTextObj_GetTextRenderMode(text_obj) in [\n                    pdfium_c.FPDF_TEXTRENDERMODE_INVISIBLE,\n                    pdfium_c.FPDF_TEXTRENDERMODE_UNKNOWN,\n                ]:\n                    return False\n\n            non_embedded_fonts = []\n            empty_fonts = []\n            font_map = {}\n            for text_obj in filter(\n                lambda obj: obj.type == pdfium_c.FPDF_PAGEOBJ_TEXT, page_objs\n            ):\n                font = pdfium_c.FPDFTextObj_GetFont(text_obj)\n                font_name = self._get_fontname(font)\n\n                # we also skip pages without embedded fonts and fonts without names\n                non_embedded_fonts.append(pdfium_c.FPDFFont_GetIsEmbedded(font) == 0)\n                empty_fonts.append(\n                    \"glyphless\" in font_name.lower()\n                )  # Add font name check back in when we bump pypdfium2\n                if font_name not in font_map:\n                    font_map[font_name or \"Unknown\"] = font\n\n            if all(non_embedded_fonts) or all(empty_fonts):\n                return False\n\n            # if we see very large images covering most of the page, we can skip this page\n            for img_obj in filter(\n                lambda obj: obj.type == pdfium_c.FPDF_PAGEOBJ_IMAGE, page_objs\n            ):\n                img_bbox = PolygonBox.from_bbox(img_obj.get_pos())\n                if page_bbox.intersection_pct(img_bbox) >= self.image_threshold:\n                    return False\n\n        return True\n\n    def detect_bad_ocr(self, text):\n        if len(text) == 0:\n            # Assume OCR failed if we have no text\n            return True\n\n        spaces = len(re.findall(r\"\\s+\", text))\n        alpha_chars = len(re.sub(r\"\\s+\", \"\", text))\n        if spaces / (alpha_chars + spaces) > self.ocr_space_threshold:\n            return True\n\n        newlines = len(re.findall(r\"\\n+\", text))\n        non_newlines = len(re.sub(r\"\\n+\", \"\", text))\n        if newlines / (newlines + non_newlines) > self.ocr_newline_threshold:\n            return True\n\n        if alphanum_ratio(text) < self.ocr_alphanum_threshold:  # Garbled text\n            return True\n\n        invalid_chars = len([c for c in text if c in self.ocr_invalid_chars])\n        if invalid_chars > max(6.0, len(text) * 0.03):\n            return True\n\n        return False\n\n    @staticmethod\n    def _render_image(\n        pdf: pdfium.PdfDocument, idx: int, dpi: int, flatten_page: bool\n    ) -> Image.Image:\n        page = pdf[idx]\n        if flatten_page:\n            flatten_pdf_page(page)\n            page = pdf[idx]\n        image = page.render(scale=dpi / 72, draw_annots=False).to_pil()\n        image = image.convert(\"RGB\")\n        return image\n\n    def get_images(self, idxs: List[int], dpi: int) -> List[Image.Image]:\n        with self.get_doc() as doc:\n            images = [\n                self._render_image(doc, idx, dpi, self.flatten_pdf) for idx in idxs\n            ]\n        return images\n\n    def get_page_bbox(self, idx: int) -> PolygonBox | None:\n        bbox = self.page_bboxes.get(idx)\n        if bbox:\n            return PolygonBox.from_bbox(bbox)\n\n    def get_page_lines(self, idx: int) -> List[ProviderOutput]:\n        return self.page_lines[idx]\n\n    def get_page_refs(self, idx: int) -> List[Reference]:\n        return self.page_refs[idx]\n\n    @staticmethod\n    def _get_fontname(font) -> str:\n        font_name = \"\"\n        buffer_size = 256\n\n        try:\n            font_name_buffer = ctypes.create_string_buffer(buffer_size)\n            length = pdfium_c.FPDFFont_GetBaseFontName(\n                font, font_name_buffer, buffer_size\n            )\n            if length < buffer_size:\n                font_name = font_name_buffer.value.decode(\"utf-8\")\n            else:\n                font_name_buffer = ctypes.create_string_buffer(length)\n                pdfium_c.FPDFFont_GetBaseFontName(font, font_name_buffer, length)\n                font_name = font_name_buffer.value.decode(\"utf-8\")\n        except Exception:\n            pass\n\n        return font_name\n"
  },
  {
    "path": "marker/providers/powerpoint.py",
    "content": "import base64\nimport os\nimport tempfile\nimport traceback\n\nfrom marker.logger import get_logger\nfrom marker.providers.pdf import PdfProvider\n\nlogger = get_logger()\n\ncss = \"\"\"\n@page {\n    size: A4 landscape;\n    margin: 1.5cm;\n}\n\ntable {\n    width: 100%;\n    border-collapse: collapse;\n    break-inside: auto;\n    font-size: 10pt;\n}\n\ntr {\n    break-inside: avoid;\n    page-break-inside: avoid;\n}\n\ntd {\n    border: 0.75pt solid #000;\n    padding: 6pt;\n}\n\nimg {\n    max-width: 100%;\n    height: auto;\n    object-fit: contain;\n}\n\"\"\"\n\n\nclass PowerPointProvider(PdfProvider):\n    include_slide_number: bool = False\n\n    def __init__(self, filepath: str, config=None):\n        temp_pdf = tempfile.NamedTemporaryFile(delete=False, suffix=\".pdf\")\n        self.temp_pdf_path = temp_pdf.name\n        temp_pdf.close()\n\n        # Convert PPTX to PDF\n        try:\n            self.convert_pptx_to_pdf(filepath)\n        except Exception as e:\n            print(traceback.format_exc())\n            raise ValueError(f\"Error converting PPTX to PDF: {e}\")\n\n        # Initalize the PDF provider with the temp pdf path\n        super().__init__(self.temp_pdf_path, config)\n\n    def __del__(self):\n        if os.path.exists(self.temp_pdf_path):\n            os.remove(self.temp_pdf_path)\n\n    def convert_pptx_to_pdf(self, filepath):\n        from weasyprint import CSS, HTML\n        from pptx import Presentation\n        from pptx.enum.shapes import MSO_SHAPE_TYPE\n\n        pptx = Presentation(filepath)\n\n        html_parts = []\n\n        for slide_index, slide in enumerate(pptx.slides):\n            html_parts.append(\"<section>\")\n            if self.include_slide_number:\n                html_parts.append(f\"<h2>Slide {slide_index + 1}</h2>\")\n\n            # Process shapes in the slide\n            for shape in slide.shapes:\n                # If shape is a group shape, we recursively handle all grouped shapes\n                if shape.shape_type == MSO_SHAPE_TYPE.GROUP:\n                    html_parts.append(self._handle_group(shape))\n                    continue\n\n                # If shape is a table\n                if shape.has_table:\n                    html_parts.append(self._handle_table(shape))\n                    continue\n\n                # If shape is a picture\n                if shape.shape_type == MSO_SHAPE_TYPE.PICTURE:\n                    html_parts.append(self._handle_image(shape))\n                    continue\n\n                # If shape has text\n                if hasattr(shape, \"text\") and shape.text is not None:\n                    if shape.has_text_frame:\n                        # Distinguish placeholders (title, subtitle, etc.)\n                        html_parts.append(self._handle_text(shape))\n                    else:\n                        html_parts.append(f\"<p>{self._escape_html(shape.text)}</p>\")\n\n            html_parts.append(\"</section>\")\n\n        html = \"\\n\".join(html_parts)\n\n        # We convert the HTML into a PDF\n        HTML(string=html).write_pdf(\n            self.temp_pdf_path, stylesheets=[CSS(string=css), self.get_font_css()]\n        )\n\n    def _handle_group(self, group_shape) -> str:\n        \"\"\"\n        Recursively handle shapes in a group. Returns HTML string for the entire group.\n        \"\"\"\n        from pptx.enum.shapes import MSO_SHAPE_TYPE\n\n        group_parts = []\n        for shape in group_shape.shapes:\n            if shape.shape_type == MSO_SHAPE_TYPE.GROUP:\n                group_parts.append(self._handle_group(shape))\n                continue\n\n            if shape.has_table:\n                group_parts.append(self._handle_table(shape))\n                continue\n\n            if shape.shape_type == MSO_SHAPE_TYPE.PICTURE:\n                group_parts.append(self._handle_image(shape))\n                continue\n\n            if hasattr(shape, \"text\"):\n                if shape.has_text_frame:\n                    group_parts.append(self._handle_text(shape))\n                else:\n                    group_parts.append(f\"<p>{self._escape_html(shape.text)}</p>\")\n\n        return \"\".join(group_parts)\n\n    def _handle_text(self, shape) -> str:\n        \"\"\"\n        Processes shape text, including bullet/numbered list detection and placeholders\n        (title, subtitle, etc.). Returns HTML for the text block(s).\n        \"\"\"\n        from pptx.enum.shapes import PP_PLACEHOLDER\n\n        # Distinguish placeholders to see if it's a title or subtitle\n        label_html_tag = \"p\"\n        if shape.is_placeholder:\n            placeholder_type = shape.placeholder_format.type\n            if placeholder_type in [PP_PLACEHOLDER.TITLE, PP_PLACEHOLDER.CENTER_TITLE]:\n                label_html_tag = \"h3\"\n            elif placeholder_type == PP_PLACEHOLDER.SUBTITLE:\n                label_html_tag = \"h4\"\n\n        # Keep track of whether we are currently in a <ul> or <ol>\n        html_parts = []\n        list_open = False\n        list_type = None  # \"ul\" or \"ol\"\n\n        for paragraph in shape.text_frame.paragraphs:\n            p_el = paragraph._element\n            # Check bullet\n            bullet_char = p_el.find(\".//a:buChar\", namespaces=p_el.nsmap)\n            bullet_num = p_el.find(\".//a:buAutoNum\", namespaces=p_el.nsmap)\n\n            is_bullet = (bullet_char is not None) or (paragraph.level > 0)\n            is_numbered = bullet_num is not None\n\n            # If the paragraph is bullet or numbered\n            if is_bullet or is_numbered:\n                # Decide if we need to start a new list or continue an existing one\n                current_list_type = \"ol\" if is_numbered else \"ul\"\n                if not list_open:\n                    # Start new\n                    list_open = True\n                    list_type = current_list_type\n                    html_parts.append(f\"<{list_type}>\")\n\n                elif list_open and list_type != current_list_type:\n                    # Close old list, start new\n                    html_parts.append(f\"</{list_type}>\")\n                    list_type = current_list_type\n                    html_parts.append(f\"<{list_type}>\")\n\n                # Build the bullet (li) text from all runs in the paragraph\n                p_text = \"\".join(run.text for run in paragraph.runs)\n                if p_text:\n                    html_parts.append(f\"<li>{self._escape_html(p_text)}</li>\")\n\n            else:\n                # If we were in a list, we need to close it\n                if list_open:\n                    html_parts.append(f\"</{list_type}>\")\n                    list_open = False\n                    list_type = None\n\n                # Now it's just a normal paragraph\n                # Gather the paragraph text from runs\n                p_text = \"\".join(run.text for run in paragraph.runs)\n                if p_text:\n                    # If we know it's a slide title, we can use <h3> or so\n                    html_parts.append(\n                        f\"<{label_html_tag}>{self._escape_html(p_text)}</{label_html_tag}>\"\n                    )\n\n        # If the text frame ended and we still have an open list, close it\n        if list_open:\n            html_parts.append(f\"</{list_type}>\")\n\n        return \"\".join(html_parts)\n\n    def _handle_image(self, shape) -> str:\n        \"\"\"\n        Embeds the image as a base64 <img> in HTML.\n        \"\"\"\n        image = shape.image\n        image_bytes = image.blob\n\n        try:\n            img_str = base64.b64encode(image_bytes).decode(\"utf-8\")\n            return f\"<img src='data:{image.content_type};base64,{img_str}' />\"\n        except Exception as e:\n            logger.warning(f\"Warning: image cannot be loaded by Pillow: {e}\")\n            return \"\"\n\n    def _handle_table(self, shape) -> str:\n        \"\"\"\n        Renders a shape's table as an HTML <table>.\n        \"\"\"\n        table_html = []\n        table_html.append(\"<table border='1'>\")\n\n        for row in shape.table.rows:\n            row_html = [\"<tr>\"]\n            for cell in row.cells:\n                row_html.append(f\"<td>{self._escape_html(cell.text)}</td>\")\n            row_html.append(\"</tr>\")\n            table_html.append(\"\".join(row_html))\n\n        table_html.append(\"</table>\")\n        return \"\".join(table_html)\n\n    def _escape_html(self, text: str) -> str:\n        \"\"\"\n        Minimal escaping for HTML special characters.\n        \"\"\"\n        return (\n            text.replace(\"&\", \"&amp;\")\n            .replace(\"<\", \"&lt;\")\n            .replace(\">\", \"&gt;\")\n            .replace('\"', \"&quot;\")\n            .replace(\"'\", \"&#39;\")\n        )\n"
  },
  {
    "path": "marker/providers/registry.py",
    "content": "import filetype\nimport filetype.match as file_match\nfrom bs4 import BeautifulSoup\nfrom filetype.types import archive, document, IMAGE\n\nfrom marker.providers.document import DocumentProvider\nfrom marker.providers.epub import EpubProvider\nfrom marker.providers.html import HTMLProvider\nfrom marker.providers.image import ImageProvider\nfrom marker.providers.pdf import PdfProvider\nfrom marker.providers.powerpoint import PowerPointProvider\nfrom marker.providers.spreadsheet import SpreadSheetProvider\n\nDOCTYPE_MATCHERS = {\n    \"image\": IMAGE,\n    \"pdf\": [\n        archive.Pdf,\n    ],\n    \"epub\": [\n        archive.Epub,\n    ],\n    \"doc\": [document.Docx],\n    \"xls\": [document.Xlsx],\n    \"ppt\": [document.Pptx],\n}\n\n\ndef load_matchers(doctype: str):\n    return [cls() for cls in DOCTYPE_MATCHERS[doctype]]\n\n\ndef load_extensions(doctype: str):\n    return [cls.EXTENSION for cls in DOCTYPE_MATCHERS[doctype]]\n\n\ndef provider_from_ext(filepath: str):\n    ext = filepath.rsplit(\".\", 1)[-1].strip()\n    if not ext:\n        return PdfProvider\n\n    if ext in load_extensions(\"image\"):\n        return ImageProvider\n    if ext in load_extensions(\"pdf\"):\n        return PdfProvider\n    if ext in load_extensions(\"doc\"):\n        return DocumentProvider\n    if ext in load_extensions(\"xls\"):\n        return SpreadSheetProvider\n    if ext in load_extensions(\"ppt\"):\n        return PowerPointProvider\n    if ext in load_extensions(\"epub\"):\n        return EpubProvider\n    if ext in [\"html\"]:\n        return HTMLProvider\n\n    return PdfProvider\n\n\ndef provider_from_filepath(filepath: str):\n    if filetype.image_match(filepath) is not None:\n        return ImageProvider\n    if file_match(filepath, load_matchers(\"pdf\")) is not None:\n        return PdfProvider\n    if file_match(filepath, load_matchers(\"epub\")) is not None:\n        return EpubProvider\n    if file_match(filepath, load_matchers(\"doc\")) is not None:\n        return DocumentProvider\n    if file_match(filepath, load_matchers(\"xls\")) is not None:\n        return SpreadSheetProvider\n    if file_match(filepath, load_matchers(\"ppt\")) is not None:\n        return PowerPointProvider\n\n    try:\n        with open(filepath, \"r\", encoding=\"utf-8\") as f:\n            soup = BeautifulSoup(f.read(), \"html.parser\")\n            # Check if there are any HTML tags\n            if bool(soup.find()):\n                return HTMLProvider\n    except Exception:\n        pass\n\n    # Fallback if we incorrectly detect the file type\n    return provider_from_ext(filepath)\n"
  },
  {
    "path": "marker/providers/spreadsheet.py",
    "content": "import os\nimport tempfile\n\nfrom marker.providers.pdf import PdfProvider\n\ncss = '''\n@page {\n    size: A4 landscape;\n    margin: 1.5cm;\n}\n\ntable {\n    width: 100%;\n    border-collapse: collapse;\n    break-inside: auto;\n    font-size: 10pt;\n}\n\ntr {\n    break-inside: avoid;\n    page-break-inside: avoid;\n}\n\ntd {\n    border: 0.75pt solid #000;\n    padding: 6pt;\n}\n'''\n\n\nclass SpreadSheetProvider(PdfProvider):\n    def __init__(self, filepath: str, config=None):\n        temp_pdf = tempfile.NamedTemporaryFile(delete=False, suffix=f\".pdf\")\n        self.temp_pdf_path = temp_pdf.name\n        temp_pdf.close()\n\n        # Convert XLSX to PDF\n        try:\n            self.convert_xlsx_to_pdf(filepath)\n        except Exception as e:\n            raise RuntimeError(f\"Failed to convert {filepath} to PDF: {e}\")\n\n        # Initialize the PDF provider with the temp pdf path\n        super().__init__(self.temp_pdf_path, config)\n\n    def __del__(self):\n        if os.path.exists(self.temp_pdf_path):\n            os.remove(self.temp_pdf_path)\n\n    def convert_xlsx_to_pdf(self, filepath: str):\n        from weasyprint import CSS, HTML\n        from openpyxl import load_workbook\n\n        html = \"\"\n        workbook = load_workbook(filepath)\n        if workbook is not None:\n            for sheet_name in workbook.sheetnames:\n                sheet = workbook[sheet_name]\n                html += f'<div><h1>{sheet_name}</h1>' + self._excel_to_html_table(sheet) + '</div>'\n        else:\n            raise ValueError(\"Invalid XLSX file\")\n\n        # We convert the HTML into a PDF\n        HTML(string=html).write_pdf(\n            self.temp_pdf_path,\n            stylesheets=[CSS(string=css), self.get_font_css()]\n        )\n\n    @staticmethod\n    def _get_merged_cell_ranges(sheet):\n        merged_info = {}\n        for merged_range in sheet.merged_cells.ranges:\n            min_col, min_row, max_col, max_row = merged_range.bounds\n            merged_info[(min_row, min_col)] = {\n                'rowspan': max_row - min_row + 1,\n                'colspan': max_col - min_col + 1,\n                'range': merged_range\n            }\n        return merged_info\n\n    def _excel_to_html_table(self, sheet):\n        merged_cells = self._get_merged_cell_ranges(sheet)\n\n        html = f'<table>'\n\n        # Track cells we should skip due to being part of a merge range\n        skip_cells = set()\n\n        for row_idx, row in enumerate(sheet.rows, 1):\n            html += '<tr>'\n            for col_idx, cell in enumerate(row, 1):\n                if (row_idx, col_idx) in skip_cells:\n                    continue\n\n                # Check if this cell is the start of a merged range\n                merge_info = merged_cells.get((row_idx, col_idx))\n                if merge_info:\n                    # Add cells to skip\n                    for r in range(row_idx, row_idx + merge_info['rowspan']):\n                        for c in range(col_idx, col_idx + merge_info['colspan']):\n                            if (r, c) != (row_idx, col_idx):\n                                skip_cells.add((r, c))\n\n                    # Add merged cell with rowspan/colspan\n                    value = cell.value if cell.value is not None else ''\n                    html += f'<td rowspan=\"{merge_info[\"rowspan\"]}\" colspan=\"{merge_info[\"colspan\"]}\">{value}'\n                else:\n                    # Regular cell\n                    value = cell.value if cell.value is not None else ''\n                    html += f'<td>{value}'\n\n                html += '</td>'\n            html += '</tr>'\n        html += '</table>'\n        return html\n"
  },
  {
    "path": "marker/providers/utils.py",
    "content": "def alphanum_ratio(text):\n    text = text.replace(\" \", \"\")\n    text = text.replace(\"\\n\", \"\")\n    alphanumeric_count = sum([1 for c in text if c.isalnum()])\n\n    if len(text) == 0:\n        return 1\n\n    ratio = alphanumeric_count / len(text)\n    return ratio\n"
  },
  {
    "path": "marker/renderers/__init__.py",
    "content": "import base64\nimport io\nimport re\nfrom collections import Counter\nfrom typing import Annotated, Optional, Tuple, Literal\n\nfrom bs4 import BeautifulSoup\nfrom pydantic import BaseModel\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks.base import BlockId, BlockOutput\nfrom marker.schema.document import Document\nfrom marker.settings import settings\nfrom marker.util import assign_config\n\n\nclass BaseRenderer:\n    image_blocks: Annotated[\n        Tuple[BlockTypes, ...], \"The block types to consider as images.\"\n    ] = (BlockTypes.Picture, BlockTypes.Figure)\n    extract_images: Annotated[bool, \"Extract images from the document.\"] = True\n    image_extraction_mode: Annotated[\n        Literal[\"lowres\", \"highres\"],\n        \"The mode to use for extracting images.\",\n    ] = \"highres\"\n    keep_pageheader_in_output: Annotated[\n        bool, \"Keep the page header in the output HTML.\"\n    ] = False\n    keep_pagefooter_in_output: Annotated[\n        bool, \"Keep the page footer in the output HTML.\"\n    ] = False\n    add_block_ids: Annotated[bool, \"Whether to add block IDs to the output HTML.\"] = (\n        False\n    )\n\n    def __init__(self, config: Optional[BaseModel | dict] = None):\n        assign_config(self, config)\n\n        self.block_config = {\n            \"keep_pageheader_in_output\": self.keep_pageheader_in_output,\n            \"keep_pagefooter_in_output\": self.keep_pagefooter_in_output,\n            \"add_block_ids\": self.add_block_ids,\n        }\n\n    def __call__(self, document):\n        # Children are in reading order\n        raise NotImplementedError\n\n    def extract_image(self, document: Document, image_id, to_base64=False):\n        image_block = document.get_block(image_id)\n        cropped = image_block.get_image(\n            document, highres=self.image_extraction_mode == \"highres\"\n        )\n\n        if to_base64:\n            image_buffer = io.BytesIO()\n            # RGBA to RGB\n            if not cropped.mode == \"RGB\":\n                cropped = cropped.convert(\"RGB\")\n\n            cropped.save(image_buffer, format=settings.OUTPUT_IMAGE_FORMAT)\n            cropped = base64.b64encode(image_buffer.getvalue()).decode(\n                settings.OUTPUT_ENCODING\n            )\n        return cropped\n\n    @staticmethod\n    def merge_consecutive_math(html, tag=\"math\"):\n        if not html:\n            return html\n        pattern = rf\"-</{tag}>(\\s*)<{tag}>\"\n        html = re.sub(pattern, \" \", html)\n\n        pattern = rf'-</{tag}>(\\s*)<{tag} display=\"inline\">'\n        html = re.sub(pattern, \" \", html)\n        return html\n\n    @staticmethod\n    def merge_consecutive_tags(html, tag):\n        if not html:\n            return html\n\n        def replace_whitespace(match):\n            whitespace = match.group(1)\n            if len(whitespace) == 0:\n                return \"\"\n            else:\n                return \" \"\n\n        pattern = rf\"</{tag}>(\\s*)<{tag}>\"\n\n        while True:\n            new_merged = re.sub(pattern, replace_whitespace, html)\n            if new_merged == html:\n                break\n            html = new_merged\n\n        return html\n\n    def generate_page_stats(self, document: Document, document_output):\n        page_stats = []\n        for page in document.pages:\n            block_counts = Counter(\n                [str(block.block_type) for block in page.children]\n            ).most_common()\n            block_metadata = page.aggregate_block_metadata()\n            page_stats.append(\n                {\n                    \"page_id\": page.page_id,\n                    \"text_extraction_method\": page.text_extraction_method,\n                    \"block_counts\": block_counts,\n                    \"block_metadata\": block_metadata.model_dump(),\n                }\n            )\n        return page_stats\n\n    def generate_document_metadata(self, document: Document, document_output):\n        metadata = {\n            \"table_of_contents\": document.table_of_contents,\n            \"page_stats\": self.generate_page_stats(document, document_output),\n        }\n        if document.debug_data_path is not None:\n            metadata[\"debug_data_path\"] = document.debug_data_path\n\n        return metadata\n\n    def extract_block_html(self, document: Document, block_output: BlockOutput):\n        soup = BeautifulSoup(block_output.html, \"html.parser\")\n\n        content_refs = soup.find_all(\"content-ref\")\n        ref_block_id = None\n        images = {}\n        for ref in content_refs:\n            src = ref.get(\"src\")\n            sub_images = {}\n            for item in block_output.children:\n                if item.id == src:\n                    content, sub_images_ = self.extract_block_html(document, item)\n                    sub_images.update(sub_images_)\n                    ref_block_id: BlockId = item.id\n                    break\n\n            if ref_block_id.block_type in self.image_blocks and self.extract_images:\n                images[ref_block_id] = self.extract_image(\n                    document, ref_block_id, to_base64=True\n                )\n            else:\n                images.update(sub_images)\n                ref.replace_with(BeautifulSoup(content, \"html.parser\"))\n\n        if block_output.id.block_type in self.image_blocks and self.extract_images:\n            images[block_output.id] = self.extract_image(\n                document, block_output.id, to_base64=True\n            )\n\n        return str(soup), images\n"
  },
  {
    "path": "marker/renderers/chunk.py",
    "content": "import html\nfrom typing import List, Dict\n\nfrom bs4 import BeautifulSoup\nfrom pydantic import BaseModel\n\nfrom marker.renderers.json import JSONRenderer, JSONBlockOutput\nfrom marker.schema.document import Document\n\n\nclass FlatBlockOutput(BaseModel):\n    id: str\n    block_type: str\n    html: str\n    page: int\n    polygon: List[List[float]]\n    bbox: List[float]\n    section_hierarchy: Dict[int, str] | None = None\n    images: dict | None = None\n\n\nclass ChunkOutput(BaseModel):\n    blocks: List[FlatBlockOutput]\n    page_info: Dict[int, dict]\n    metadata: dict\n\ndef collect_images(block: JSONBlockOutput) -> dict[str, str]:\n    if not getattr(block, \"children\", None):\n        return block.images or {}\n    else:\n        images = block.images or {}\n        for child_block in block.children:\n            images.update(collect_images(child_block))\n        return images\n\ndef assemble_html_with_images(block: JSONBlockOutput, image_blocks: set[str]) -> str:\n    if not getattr(block, \"children\", None):\n        if block.block_type in image_blocks:\n            return f\"<p>{block.html}<img src='{block.id}'></p>\"\n        else:\n            return block.html\n\n    child_html = [assemble_html_with_images(child, image_blocks) for child in block.children]\n    child_ids = [child.id for child in block.children]\n\n    soup = BeautifulSoup(block.html, \"html.parser\")\n    content_refs = soup.find_all(\"content-ref\")\n    for ref in content_refs:\n        src_id = ref.attrs[\"src\"]\n        if src_id in child_ids:\n            ref.replace_with(child_html[child_ids.index(src_id)])\n\n    return html.unescape(str(soup))\n\ndef json_to_chunks(\n    block: JSONBlockOutput, image_blocks: set[str], page_id: int=0) -> FlatBlockOutput | List[FlatBlockOutput]:\n    if block.block_type == \"Page\":\n        children = block.children\n        page_id = int(block.id.split(\"/\")[-1])\n        return [json_to_chunks(child, image_blocks, page_id=page_id) for child in children]\n    else:\n        return FlatBlockOutput(\n            id=block.id,\n            block_type=block.block_type,\n            html=assemble_html_with_images(block, image_blocks),\n            page=page_id,\n            polygon=block.polygon,\n            bbox=block.bbox,\n            section_hierarchy=block.section_hierarchy,\n            images=collect_images(block),\n        )\n\n\nclass ChunkRenderer(JSONRenderer):\n\n    def __call__(self, document: Document) -> ChunkOutput:\n        document_output = document.render(self.block_config)\n        json_output = []\n        for page_output in document_output.children:\n            json_output.append(self.extract_json(document, page_output))\n\n        # This will get the top-level blocks from every page\n        chunk_output = []\n        for item in json_output:\n            chunks = json_to_chunks(item, set([str(block) for block in self.image_blocks]))\n            chunk_output.extend(chunks)\n\n        page_info = {\n            page.page_id: {\"bbox\": page.polygon.bbox, \"polygon\": page.polygon.polygon}\n            for page in document.pages\n        }\n\n        return ChunkOutput(\n            blocks=chunk_output,\n            page_info=page_info,\n            metadata=self.generate_document_metadata(document, document_output),\n        )\n"
  },
  {
    "path": "marker/renderers/extraction.py",
    "content": "from pydantic import BaseModel\n\nfrom marker.extractors.document import DocumentExtractionSchema\nfrom marker.renderers import BaseRenderer\n\n\nclass ExtractionOutput(BaseModel):\n    analysis: str\n    document_json: str\n    original_markdown: str\n\n\nclass ExtractionRenderer(BaseRenderer):\n    def __call__(\n        self, output: DocumentExtractionSchema, markdown: str\n    ) -> ExtractionOutput:\n        # We definitely want to do more complex stuff here soon, so leave it in\n        return ExtractionOutput(\n            analysis=output.analysis,\n            document_json=output.document_json,\n            original_markdown=markdown,\n        )\n"
  },
  {
    "path": "marker/renderers/html.py",
    "content": "import textwrap\n\nfrom PIL import Image\nfrom typing import Annotated, Tuple\n\nfrom bs4 import BeautifulSoup, MarkupResemblesLocatorWarning\nfrom pydantic import BaseModel\n\nfrom marker.renderers import BaseRenderer\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import BlockId\nfrom marker.settings import settings\n\n# Ignore beautifulsoup warnings\nimport warnings\n\nwarnings.filterwarnings(\"ignore\", category=MarkupResemblesLocatorWarning)\n\n# Suppress DecompressionBombError\nImage.MAX_IMAGE_PIXELS = None\n\n\nclass HTMLOutput(BaseModel):\n    html: str\n    images: dict\n    metadata: dict\n\n\nclass HTMLRenderer(BaseRenderer):\n    \"\"\"\n    A renderer for HTML output.\n    \"\"\"\n\n    page_blocks: Annotated[\n        Tuple[BlockTypes],\n        \"The block types to consider as pages.\",\n    ] = (BlockTypes.Page,)\n    paginate_output: Annotated[\n        bool,\n        \"Whether to paginate the output.\",\n    ] = False\n\n    def extract_image(self, document, image_id):\n        image_block = document.get_block(image_id)\n        cropped = image_block.get_image(\n            document, highres=self.image_extraction_mode == \"highres\"\n        )\n        return cropped\n\n    def insert_block_id(self, soup, block_id: BlockId):\n        \"\"\"\n        Insert a block ID into the soup as a data attribute.\n        \"\"\"\n        if block_id.block_type in [BlockTypes.Line, BlockTypes.Span]:\n            return soup\n\n        if self.add_block_ids:\n            # Find the outermost tag (first tag that isn't a NavigableString)\n            outermost_tag = None\n            for element in soup.contents:\n                if hasattr(element, \"name\") and element.name:\n                    outermost_tag = element\n                    break\n\n            # If we found an outermost tag, add the data-block-id attribute\n            if outermost_tag:\n                outermost_tag[\"data-block-id\"] = str(block_id)\n\n            # If soup only contains text or no tags, wrap in a span\n            elif soup.contents:\n                wrapper = soup.new_tag(\"span\")\n                wrapper[\"data-block-id\"] = str(block_id)\n\n                contents = list(soup.contents)\n                for content in contents:\n                    content.extract()\n                    wrapper.append(content)\n                soup.append(wrapper)\n        return soup\n\n    def extract_html(self, document, document_output, level=0):\n        soup = BeautifulSoup(document_output.html, \"html.parser\")\n\n        content_refs = soup.find_all(\"content-ref\")\n        ref_block_id = None\n        images = {}\n        for ref in content_refs:\n            src = ref.get(\"src\")\n            sub_images = {}\n            content = \"\"\n            for item in document_output.children:\n                if item.id == src:\n                    content, sub_images_ = self.extract_html(document, item, level + 1)\n                    sub_images.update(sub_images_)\n                    ref_block_id: BlockId = item.id\n                    break\n\n            if ref_block_id.block_type in self.image_blocks:\n                if self.extract_images:\n                    image = self.extract_image(document, ref_block_id)\n                    image_name = f\"{ref_block_id.to_path()}.{settings.OUTPUT_IMAGE_FORMAT.lower()}\"\n                    images[image_name] = image\n                    element = BeautifulSoup(\n                        f\"<p>{content}<img src='{image_name}'></p>\", \"html.parser\"\n                    )\n                    ref.replace_with(self.insert_block_id(element, ref_block_id))\n                else:\n                    # This will be the image description if using llm mode, or empty if not\n                    element = BeautifulSoup(f\"{content}\", \"html.parser\")\n                    ref.replace_with(self.insert_block_id(element, ref_block_id))\n            elif ref_block_id.block_type in self.page_blocks:\n                images.update(sub_images)\n                if self.paginate_output:\n                    content = f\"<div class='page' data-page-id='{ref_block_id.page_id}'>{content}</div>\"\n                element = BeautifulSoup(f\"{content}\", \"html.parser\")\n                ref.replace_with(self.insert_block_id(element, ref_block_id))\n            else:\n                images.update(sub_images)\n                element = BeautifulSoup(f\"{content}\", \"html.parser\")\n                ref.replace_with(self.insert_block_id(element, ref_block_id))\n\n        output = str(soup)\n        if level == 0:\n            output = self.merge_consecutive_tags(output, \"b\")\n            output = self.merge_consecutive_tags(output, \"i\")\n            output = self.merge_consecutive_math(\n                output\n            )  # Merge consecutive inline math tags\n            output = textwrap.dedent(f\"\"\"\n            <!DOCTYPE html>\n            <html>\n                <head>\n                    <meta charset=\"utf-8\" />\n                </head>\n                <body>\n                    {output}\n                </body>\n            </html>\n\"\"\")\n\n        return output, images\n\n    def __call__(self, document) -> HTMLOutput:\n        document_output = document.render(self.block_config)\n        full_html, images = self.extract_html(document, document_output)\n        soup = BeautifulSoup(full_html, \"html.parser\")\n        full_html = soup.prettify()  # Add indentation to the HTML\n        return HTMLOutput(\n            html=full_html,\n            images=images,\n            metadata=self.generate_document_metadata(document, document_output),\n        )\n"
  },
  {
    "path": "marker/renderers/json.py",
    "content": "from typing import Annotated, Dict, List, Tuple\n\nfrom pydantic import BaseModel\n\nfrom marker.renderers import BaseRenderer\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block, BlockOutput\nfrom marker.schema.document import Document\nfrom marker.schema.registry import get_block_class\n\n\nclass JSONBlockOutput(BaseModel):\n    id: str\n    block_type: str\n    html: str\n    polygon: List[List[float]]\n    bbox: List[float]\n    children: List[\"JSONBlockOutput\"] | None = None\n    section_hierarchy: Dict[int, str] | None = None\n    images: dict | None = None\n\n\nclass JSONOutput(BaseModel):\n    children: List[JSONBlockOutput]\n    block_type: str = str(BlockTypes.Document)\n    metadata: dict\n\n\ndef reformat_section_hierarchy(section_hierarchy):\n    new_section_hierarchy = {}\n    for key, value in section_hierarchy.items():\n        new_section_hierarchy[key] = str(value)\n    return new_section_hierarchy\n\n\nclass JSONRenderer(BaseRenderer):\n    \"\"\"\n    A renderer for JSON output.\n    \"\"\"\n\n    image_blocks: Annotated[\n        Tuple[BlockTypes],\n        \"The list of block types to consider as images.\",\n    ] = (BlockTypes.Picture, BlockTypes.Figure)\n    page_blocks: Annotated[\n        Tuple[BlockTypes],\n        \"The list of block types to consider as pages.\",\n    ] = (BlockTypes.Page,)\n\n    def extract_json(self, document: Document, block_output: BlockOutput):\n        cls = get_block_class(block_output.id.block_type)\n        if cls.__base__ == Block:\n            html, images = self.extract_block_html(document, block_output)\n            return JSONBlockOutput(\n                html=html,\n                polygon=block_output.polygon.polygon,\n                bbox=block_output.polygon.bbox,\n                id=str(block_output.id),\n                block_type=str(block_output.id.block_type),\n                images=images,\n                section_hierarchy=reformat_section_hierarchy(\n                    block_output.section_hierarchy\n                ),\n            )\n        else:\n            children = []\n            for child in block_output.children:\n                child_output = self.extract_json(document, child)\n                children.append(child_output)\n\n            return JSONBlockOutput(\n                html=block_output.html,\n                polygon=block_output.polygon.polygon,\n                bbox=block_output.polygon.bbox,\n                id=str(block_output.id),\n                block_type=str(block_output.id.block_type),\n                children=children,\n                section_hierarchy=reformat_section_hierarchy(\n                    block_output.section_hierarchy\n                ),\n            )\n\n    def __call__(self, document: Document) -> JSONOutput:\n        document_output = document.render(self.block_config)\n        json_output = []\n        for page_output in document_output.children:\n            json_output.append(self.extract_json(document, page_output))\n        return JSONOutput(\n            children=json_output,\n            metadata=self.generate_document_metadata(document, document_output),\n        )\n"
  },
  {
    "path": "marker/renderers/markdown.py",
    "content": "import re\nfrom collections import defaultdict\nfrom typing import Annotated, Tuple\n\nimport regex\nimport six\nfrom bs4 import NavigableString\nfrom markdownify import MarkdownConverter, re_whitespace\nfrom marker.logger import get_logger\nfrom pydantic import BaseModel\n\nfrom marker.renderers.html import HTMLRenderer\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\nlogger = get_logger()\n\n\ndef escape_dollars(text):\n    return text.replace(\"$\", r\"\\$\")\n\n\ndef cleanup_text(full_text):\n    full_text = re.sub(r\"\\n{3,}\", \"\\n\\n\", full_text)\n    full_text = re.sub(r\"(\\n\\s){3,}\", \"\\n\\n\", full_text)\n    return full_text.strip()\n\n\ndef get_formatted_table_text(element):\n    text = []\n    for content in element.contents:\n        if content is None:\n            continue\n\n        if isinstance(content, NavigableString):\n            stripped = content.strip()\n            if stripped:\n                text.append(escape_dollars(stripped))\n        elif content.name == \"br\":\n            text.append(\"<br>\")\n        elif content.name == \"math\":\n            text.append(\"$\" + content.text + \"$\")\n        else:\n            content_str = escape_dollars(str(content))\n            text.append(content_str)\n\n    full_text = \"\"\n    for i, t in enumerate(text):\n        if t == \"<br>\":\n            full_text += t\n        elif i > 0 and text[i - 1] != \"<br>\":\n            full_text += \" \" + t\n        else:\n            full_text += t\n    return full_text\n\n\nclass Markdownify(MarkdownConverter):\n    def __init__(\n        self,\n        paginate_output,\n        page_separator,\n        inline_math_delimiters,\n        block_math_delimiters,\n        html_tables_in_markdown,\n        **kwargs,\n    ):\n        super().__init__(**kwargs)\n        self.paginate_output = paginate_output\n        self.page_separator = page_separator\n        self.inline_math_delimiters = inline_math_delimiters\n        self.block_math_delimiters = block_math_delimiters\n        self.html_tables_in_markdown = html_tables_in_markdown\n\n    def convert_div(self, el, text, parent_tags):\n        is_page = el.has_attr(\"class\") and el[\"class\"][0] == \"page\"\n        if self.paginate_output and is_page:\n            page_id = el[\"data-page-id\"]\n            pagination_item = (\n                \"\\n\\n\" + \"{\" + str(page_id) + \"}\" + self.page_separator + \"\\n\\n\"\n            )\n            return pagination_item + text\n        else:\n            return text\n\n    def convert_p(self, el, text, parent_tags):\n        hyphens = r\"-—¬\"\n        has_continuation = el.has_attr(\"class\") and \"has-continuation\" in el[\"class\"]\n        if has_continuation:\n            block_type = BlockTypes[el[\"block-type\"]]\n            if block_type in [BlockTypes.TextInlineMath, BlockTypes.Text]:\n                if regex.compile(\n                    rf\".*[\\p{{Ll}}|\\d][{hyphens}]\\s?$\", regex.DOTALL\n                ).match(text):  # handle hypenation across pages\n                    return regex.split(rf\"[{hyphens}]\\s?$\", text)[0]\n                return f\"{text} \"\n            if block_type == BlockTypes.ListGroup:\n                return f\"{text}\"\n        return f\"{text}\\n\\n\" if text else \"\"  # default convert_p behavior\n\n    def convert_math(self, el, text, parent_tags):\n        block = el.has_attr(\"display\") and el[\"display\"] == \"block\"\n        if block:\n            return (\n                \"\\n\"\n                + self.block_math_delimiters[0]\n                + text.strip()\n                + self.block_math_delimiters[1]\n                + \"\\n\"\n            )\n        else:\n            return (\n                \" \"\n                + self.inline_math_delimiters[0]\n                + text.strip()\n                + self.inline_math_delimiters[1]\n                + \" \"\n            )\n\n    def convert_table(self, el, text, parent_tags):\n        if self.html_tables_in_markdown:\n            return \"\\n\\n\" + str(el) + \"\\n\\n\"\n\n        total_rows = len(el.find_all(\"tr\"))\n        colspans = []\n        rowspan_cols = defaultdict(int)\n        for i, row in enumerate(el.find_all(\"tr\")):\n            row_cols = rowspan_cols[i]\n            for cell in row.find_all([\"td\", \"th\"]):\n                colspan = int(cell.get(\"colspan\", 1))\n                row_cols += colspan\n                for r in range(int(cell.get(\"rowspan\", 1)) - 1):\n                    rowspan_cols[i + r] += (\n                        colspan  # Add the colspan to the next rows, so they get the correct number of columns\n                    )\n            colspans.append(row_cols)\n        total_cols = max(colspans) if colspans else 0\n\n        grid = [[None for _ in range(total_cols)] for _ in range(total_rows)]\n\n        for row_idx, tr in enumerate(el.find_all(\"tr\")):\n            col_idx = 0\n            for cell in tr.find_all([\"td\", \"th\"]):\n                # Skip filled positions\n                while col_idx < total_cols and grid[row_idx][col_idx] is not None:\n                    col_idx += 1\n\n                # Fill in grid\n                value = (\n                    get_formatted_table_text(cell)\n                    .replace(\"\\n\", \" \")\n                    .replace(\"|\", \" \")\n                    .strip()\n                )\n                rowspan = int(cell.get(\"rowspan\", 1))\n                colspan = int(cell.get(\"colspan\", 1))\n\n                if col_idx >= total_cols:\n                    # Skip this cell if we're out of bounds\n                    continue\n\n                for r in range(rowspan):\n                    for c in range(colspan):\n                        try:\n                            if r == 0 and c == 0:\n                                grid[row_idx][col_idx] = value\n                            else:\n                                grid[row_idx + r][col_idx + c] = (\n                                    \"\"  # Empty cell due to rowspan/colspan\n                                )\n                        except IndexError:\n                            # Sometimes the colspan/rowspan predictions can overflow\n                            logger.info(\n                                f\"Overflow in columns: {col_idx + c} >= {total_cols} or rows: {row_idx + r} >= {total_rows}\"\n                            )\n                            continue\n\n                col_idx += colspan\n\n        markdown_lines = []\n        col_widths = [0] * total_cols\n        for row in grid:\n            for col_idx, cell in enumerate(row):\n                if cell is not None:\n                    col_widths[col_idx] = max(col_widths[col_idx], len(str(cell)))\n\n        def add_header_line():\n            markdown_lines.append(\n                \"|\" + \"|\".join(\"-\" * (width + 2) for width in col_widths) + \"|\"\n            )\n\n        # Generate markdown rows\n        added_header = False\n        for i, row in enumerate(grid):\n            is_empty_line = all(not cell for cell in row)\n            if is_empty_line and not added_header:\n                # Skip leading blank lines\n                continue\n\n            line = []\n            for col_idx, cell in enumerate(row):\n                if cell is None:\n                    cell = \"\"\n                padding = col_widths[col_idx] - len(str(cell))\n                line.append(f\" {cell}{' ' * padding} \")\n            markdown_lines.append(\"|\" + \"|\".join(line) + \"|\")\n\n            if not added_header:\n                # Skip empty lines when adding the header row\n                add_header_line()\n                added_header = True\n\n        # Handle one row tables\n        if total_rows == 1:\n            add_header_line()\n\n        table_md = \"\\n\".join(markdown_lines)\n        return \"\\n\\n\" + table_md + \"\\n\\n\"\n\n    def convert_a(self, el, text, parent_tags):\n        text = self.escape(text)\n        # Escape brackets and parentheses in text\n        text = re.sub(r\"([\\[\\]()])\", r\"\\\\\\1\", text)\n        return super().convert_a(el, text, parent_tags)\n\n    def convert_span(self, el, text, parent_tags):\n        if el.get(\"id\"):\n            return f'<span id=\"{el[\"id\"]}\">{text}</span>'\n        else:\n            return text\n\n    def escape(self, text, parent_tags=None):\n        text = super().escape(text, parent_tags)\n        if self.options[\"escape_dollars\"]:\n            text = text.replace(\"$\", r\"\\$\")\n        return text\n\n    def process_text(self, el, parent_tags=None):\n        text = six.text_type(el) or \"\"\n\n        # normalize whitespace if we're not inside a preformatted element\n        if not el.find_parent(\"pre\"):\n            text = re_whitespace.sub(\" \", text)\n\n        # escape special characters if we're not inside a preformatted or code element\n        if not el.find_parent([\"pre\", \"code\", \"kbd\", \"samp\", \"math\"]):\n            text = self.escape(text)\n\n        # remove trailing whitespaces if any of the following condition is true:\n        # - current text node is the last node in li\n        # - current text node is followed by an embedded list\n        if el.parent.name == \"li\" and (\n            not el.next_sibling or el.next_sibling.name in [\"ul\", \"ol\"]\n        ):\n            text = text.rstrip()\n\n        return text\n\n\nclass MarkdownOutput(BaseModel):\n    markdown: str\n    images: dict\n    metadata: dict\n\n\nclass MarkdownRenderer(HTMLRenderer):\n    page_separator: Annotated[\n        str, \"The separator to use between pages.\", \"Default is '-' * 48.\"\n    ] = \"-\" * 48\n    inline_math_delimiters: Annotated[\n        Tuple[str], \"The delimiters to use for inline math.\"\n    ] = (\"$\", \"$\")\n    block_math_delimiters: Annotated[\n        Tuple[str], \"The delimiters to use for block math.\"\n    ] = (\"$$\", \"$$\")\n    html_tables_in_markdown: Annotated[\n        bool, \"Return tables formatted as HTML, instead of in markdown\"\n    ] = False\n\n    @property\n    def md_cls(self):\n        return Markdownify(\n            self.paginate_output,\n            self.page_separator,\n            heading_style=\"ATX\",\n            bullets=\"-\",\n            escape_misc=False,\n            escape_underscores=True,\n            escape_asterisks=True,\n            escape_dollars=True,\n            sub_symbol=\"<sub>\",\n            sup_symbol=\"<sup>\",\n            inline_math_delimiters=self.inline_math_delimiters,\n            block_math_delimiters=self.block_math_delimiters,\n            html_tables_in_markdown=self.html_tables_in_markdown\n        )\n\n    def __call__(self, document: Document) -> MarkdownOutput:\n        document_output = document.render(self.block_config)\n        full_html, images = self.extract_html(document, document_output)\n        markdown = self.md_cls.convert(full_html)\n        markdown = cleanup_text(markdown)\n\n        # Ensure we set the correct blanks for pagination markers\n        if self.paginate_output:\n            if not markdown.startswith(\"\\n\\n\"):\n                markdown = \"\\n\\n\" + markdown\n            if markdown.endswith(self.page_separator):\n                markdown += \"\\n\\n\"\n\n        return MarkdownOutput(\n            markdown=markdown,\n            images=images,\n            metadata=self.generate_document_metadata(document, document_output),\n        )\n"
  },
  {
    "path": "marker/renderers/ocr_json.py",
    "content": "from typing import Annotated, List, Tuple\n\nfrom pydantic import BaseModel\n\nfrom marker.renderers import BaseRenderer\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\n\n\nclass OCRJSONCharOutput(BaseModel):\n    id: str\n    block_type: str\n    text: str\n    polygon: List[List[float]]\n    bbox: List[float]\n\n\nclass OCRJSONLineOutput(BaseModel):\n    id: str\n    block_type: str\n    html: str\n    polygon: List[List[float]]\n    bbox: List[float]\n    children: List[\"OCRJSONCharOutput\"] | None = None\n\n\nclass OCRJSONPageOutput(BaseModel):\n    id: str\n    block_type: str\n    polygon: List[List[float]]\n    bbox: List[float]\n    children: List[OCRJSONLineOutput] | None = None\n\n\nclass OCRJSONOutput(BaseModel):\n    children: List[OCRJSONPageOutput]\n    block_type: str = str(BlockTypes.Document)\n    metadata: dict | None = None\n\n\nclass OCRJSONRenderer(BaseRenderer):\n    \"\"\"\n    A renderer for OCR JSON output.\n    \"\"\"\n\n    image_blocks: Annotated[\n        Tuple[BlockTypes],\n        \"The list of block types to consider as images.\",\n    ] = (BlockTypes.Picture, BlockTypes.Figure)\n    page_blocks: Annotated[\n        Tuple[BlockTypes],\n        \"The list of block types to consider as pages.\",\n    ] = (BlockTypes.Page,)\n\n    def extract_json(self, document: Document) -> List[OCRJSONPageOutput]:\n        pages = []\n        for page in document.pages:\n            page_equations = [\n                b for b in page.children if b.block_type == BlockTypes.Equation\n                and not b.removed\n            ]\n            equation_lines = []\n            for equation in page_equations:\n                if not equation.structure:\n                    continue\n\n                equation_lines += [\n                    line\n                    for line in equation.structure\n                    if line.block_type == BlockTypes.Line\n                ]\n\n            page_lines = [\n                block\n                for block in page.children\n                if block.block_type == BlockTypes.Line\n                and block.id not in equation_lines\n                and not block.removed\n            ]\n\n            lines = []\n            for line in page_lines + page_equations:\n                line_obj = OCRJSONLineOutput(\n                    id=str(line.id),\n                    block_type=str(line.block_type),\n                    html=\"\",\n                    polygon=line.polygon.polygon,\n                    bbox=line.polygon.bbox,\n                )\n                if line in page_equations:\n                    line_obj.html = line.html\n                else:\n                    line_obj.html = line.formatted_text(document)\n                    spans = (\n                        [document.get_block(span_id) for span_id in line.structure]\n                        if line.structure\n                        else []\n                    )\n                    children = []\n                    for span in spans:\n                        if not span.structure:\n                            continue\n\n                        span_chars = [\n                            document.get_block(char_id) for char_id in span.structure\n                        ]\n                        children.extend(\n                            [\n                                OCRJSONCharOutput(\n                                    id=str(char.id),\n                                    block_type=str(char.block_type),\n                                    text=char.text,\n                                    polygon=char.polygon.polygon,\n                                    bbox=char.polygon.bbox,\n                                )\n                                for char in span_chars\n                            ]\n                        )\n                    line_obj.children = children\n                lines.append(line_obj)\n\n            page = OCRJSONPageOutput(\n                id=str(page.id),\n                block_type=str(page.block_type),\n                polygon=page.polygon.polygon,\n                bbox=page.polygon.bbox,\n                children=lines,\n            )\n            pages.append(page)\n\n        return pages\n\n    def __call__(self, document: Document) -> OCRJSONOutput:\n        return OCRJSONOutput(children=self.extract_json(document), metadata=None)\n"
  },
  {
    "path": "marker/schema/__init__.py",
    "content": "from enum import auto, Enum\n\n\nclass BlockTypes(str, Enum):\n    Line = auto()\n    Span = auto()\n    Char = auto()\n    FigureGroup = auto()\n    TableGroup = auto()\n    ListGroup = auto()\n    PictureGroup = auto()\n    Page = auto()\n    Caption = auto()\n    Code = auto()\n    Figure = auto()\n    Footnote = auto()\n    Form = auto()\n    Equation = auto()\n    Handwriting = auto()\n    TextInlineMath = auto()\n    ListItem = auto()\n    PageFooter = auto()\n    PageHeader = auto()\n    Picture = auto()\n    SectionHeader = auto()\n    Table = auto()\n    Text = auto()\n    TableOfContents = auto()\n    Document = auto()\n    ComplexRegion = auto()\n    TableCell = auto()\n    Reference = auto()\n\n    def __str__(self):\n        return self.name\n"
  },
  {
    "path": "marker/schema/blocks/__init__.py",
    "content": "from __future__ import annotations\n\nfrom marker.schema.blocks.base import Block, BlockId, BlockOutput\nfrom marker.schema.blocks.caption import Caption\nfrom marker.schema.blocks.code import Code\nfrom marker.schema.blocks.figure import Figure\nfrom marker.schema.blocks.footnote import Footnote\nfrom marker.schema.blocks.form import Form\nfrom marker.schema.blocks.equation import Equation\nfrom marker.schema.blocks.handwriting import Handwriting\nfrom marker.schema.blocks.inlinemath import InlineMath\nfrom marker.schema.blocks.listitem import ListItem\nfrom marker.schema.blocks.pagefooter import PageFooter\nfrom marker.schema.blocks.pageheader import PageHeader\nfrom marker.schema.blocks.picture import Picture\nfrom marker.schema.blocks.sectionheader import SectionHeader\nfrom marker.schema.blocks.table import Table\nfrom marker.schema.blocks.text import Text\nfrom marker.schema.blocks.toc import TableOfContents\nfrom marker.schema.blocks.complexregion import ComplexRegion\nfrom marker.schema.blocks.tablecell import TableCell\nfrom marker.schema.blocks.reference import Reference\n"
  },
  {
    "path": "marker/schema/blocks/base.py",
    "content": "from __future__ import annotations\n\nfrom typing import TYPE_CHECKING, Dict, List, Literal, Optional, Sequence, Tuple\n\nfrom pydantic import BaseModel, ConfigDict, field_validator\nfrom PIL import Image\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.polygon import PolygonBox\n\nif TYPE_CHECKING:\n    from marker.schema.document import Document\n    from marker.schema.groups.page import PageGroup\n\n\nclass BlockMetadata(BaseModel):\n    llm_request_count: int = 0\n    llm_error_count: int = 0\n    llm_tokens_used: int = 0\n    previous_text: str = \"\"\n    previous_type: str = \"\"\n    previous_order: int = 0\n\n    def merge(self, model2):\n        return self.__class__(\n            **{\n                field: getattr(self, field) + getattr(model2, field)\n                for field in self.model_fields\n            }\n        )\n\n\nclass BlockOutput(BaseModel):\n    html: str\n    polygon: PolygonBox\n    id: BlockId\n    children: List[BlockOutput] | None = None\n    section_hierarchy: Dict[int, BlockId] | None = None\n\n\nclass BlockId(BaseModel):\n    page_id: int\n    block_id: Optional[int] = None\n    block_type: BlockTypes | None = None\n\n    def __str__(self):\n        if self.block_type is None or self.block_id is None:\n            return f\"/page/{self.page_id}\"\n        return f\"/page/{self.page_id}/{self.block_type.name}/{self.block_id}\"\n\n    def __hash__(self):\n        return hash(str(self))\n\n    def __repr__(self):\n        return str(self)\n\n    def __eq__(self, other):\n        if not isinstance(other, (BlockId, str)):\n            return NotImplemented\n\n        if isinstance(other, str):\n            return str(self) == other\n        else:\n            return (\n                self.page_id == other.page_id\n                and self.block_id == other.block_id\n                and self.block_type == other.block_type\n            )\n\n    @field_validator(\"block_type\")\n    @classmethod\n    def validate_block_type(cls, v):\n        from marker.schema import BlockTypes\n\n        if v not in BlockTypes:\n            raise ValueError(f\"Invalid block type: {v}\")\n        return v\n\n    def to_path(self):\n        return str(self).replace(\"/\", \"_\")\n\n\nclass Block(BaseModel):\n    polygon: PolygonBox\n    block_description: str\n    block_type: Optional[BlockTypes] = None\n    block_id: Optional[int] = None\n    page_id: Optional[int] = None\n    text_extraction_method: Optional[Literal[\"pdftext\", \"surya\", \"gemini\"]] = None\n    structure: List[BlockId] | None = (\n        None  # The top-level page structure, which is the block ids in order\n    )\n    ignore_for_output: bool = False  # Whether this block should be ignored in output\n    replace_output_newlines: bool = (\n        False  # Whether to replace newlines with spaces in output\n    )\n    source: Literal[\"layout\", \"heuristics\", \"processor\"] = \"layout\"\n    top_k: Optional[Dict[BlockTypes, float]] = None\n    metadata: BlockMetadata | None = None\n    lowres_image: Image.Image | None = None\n    highres_image: Image.Image | None = None\n    removed: bool = False  # Has block been replaced by new block?\n    _metadata: Optional[dict] = None\n\n    model_config = ConfigDict(arbitrary_types_allowed=True)\n\n    @property\n    def id(self) -> BlockId:\n        return BlockId(\n            page_id=self.page_id, block_id=self.block_id, block_type=self.block_type\n        )\n\n    @classmethod\n    def from_block(cls, block: Block) -> Block:\n        block_attrs = block.model_dump(exclude=[\"id\", \"block_id\", \"block_type\"])\n        return cls(**block_attrs)\n\n    def set_internal_metadata(self, key, data):\n        if self._metadata is None:\n            self._metadata = {}\n        self._metadata[key] = data\n\n    def get_internal_metadata(self, key):\n        if self._metadata is None:\n            return None\n        return self._metadata.get(key)\n\n    def get_image(\n        self,\n        document: Document,\n        highres: bool = False,\n        expansion: Tuple[float, float] | None = None,\n        remove_blocks: Sequence[BlockTypes] | None = None,\n    ) -> Image.Image | None:\n        image = self.highres_image if highres else self.lowres_image\n        if image is None:\n            page = document.get_page(self.page_id)\n            page_image = page.get_image(highres=highres, remove_blocks=remove_blocks)\n\n            # Scale to the image size\n            bbox = self.polygon.rescale(\n                (page.polygon.width, page.polygon.height), page_image.size\n            )\n            if expansion:\n                bbox = bbox.expand(*expansion)\n            bbox = bbox.bbox\n            image = page_image.crop(bbox)\n        return image\n\n    def structure_blocks(self, document_page: Document | PageGroup) -> List[Block]:\n        if self.structure is None:\n            return []\n        return [document_page.get_block(block_id) for block_id in self.structure]\n\n    def get_prev_block(\n        self,\n        document_page: Document | PageGroup,\n        block: Block,\n        ignored_block_types: Optional[List[BlockTypes]] = None,\n    ):\n        if ignored_block_types is None:\n            ignored_block_types = []\n\n        structure_idx = self.structure.index(block.id)\n        if structure_idx == 0:\n            return None\n\n        for prev_block_id in reversed(self.structure[:structure_idx]):\n            if prev_block_id.block_type not in ignored_block_types:\n                return document_page.get_block(prev_block_id)\n\n    def get_next_block(\n        self,\n        document_page: Document | PageGroup,\n        block: Optional[Block] = None,\n        ignored_block_types: Optional[List[BlockTypes]] = None,\n    ):\n        if ignored_block_types is None:\n            ignored_block_types = []\n\n        structure_idx = 0\n        if block is not None:\n            structure_idx = self.structure.index(block.id) + 1\n\n        for next_block_id in self.structure[structure_idx:]:\n            if next_block_id.block_type not in ignored_block_types:\n                return document_page.get_block(next_block_id)\n\n        return None  # No valid next block found\n\n    def add_structure(self, block: Block):\n        if self.structure is None:\n            self.structure = [block.id]\n        else:\n            self.structure.append(block.id)\n\n    def update_structure_item(self, old_id: BlockId, new_id: BlockId):\n        if self.structure is not None:\n            for i, item in enumerate(self.structure):\n                if item == old_id:\n                    self.structure[i] = new_id\n                    break\n\n    def remove_structure_items(self, block_ids: List[BlockId]):\n        if self.structure is not None:\n            self.structure = [item for item in self.structure if item not in block_ids]\n\n    def raw_text(self, document: Document) -> str:\n        from marker.schema.text.line import Line\n        from marker.schema.text.span import Span\n        from marker.schema.blocks.tablecell import TableCell\n\n        if self.structure is None:\n            if isinstance(self, (Span, TableCell)):\n                return self.text\n            else:\n                return \"\"\n\n        text = \"\"\n        for block_id in self.structure:\n            block = document.get_block(block_id)\n            text += block.raw_text(document)\n            if isinstance(block, Line) and not text.endswith(\"\\n\"):\n                text += \"\\n\"\n        return text\n\n    def assemble_html(\n        self,\n        document: Document,\n        child_blocks: List[BlockOutput],\n        parent_structure: Optional[List[str]] = None,\n        block_config: Optional[dict] = None,\n    ) -> str:\n        if self.ignore_for_output:\n            return \"\"\n\n        template = \"\"\n        for c in child_blocks:\n            template += f\"<content-ref src='{c.id}'></content-ref>\"\n\n        if self.replace_output_newlines:\n            template = template.replace(\"\\n\", \" \")\n            template = \"<p>\" + template + \"</p>\"\n\n        return template\n\n    def assign_section_hierarchy(self, section_hierarchy):\n        if self.block_type == BlockTypes.SectionHeader and self.heading_level:\n            levels = list(section_hierarchy.keys())\n            for level in levels:\n                if level >= self.heading_level:\n                    del section_hierarchy[level]\n            section_hierarchy[self.heading_level] = self.id\n\n        return section_hierarchy\n\n    def contained_blocks(\n        self, document: Document, block_types: Sequence[BlockTypes] = None\n    ) -> List[Block]:\n        if self.structure is None:\n            return []\n\n        blocks = []\n        for block_id in self.structure:\n            block = document.get_block(block_id)\n            if block.removed:\n                continue\n            if (\n                block_types is None or block.block_type in block_types\n            ) and not block.removed:\n                blocks.append(block)\n            blocks += block.contained_blocks(document, block_types)\n        return blocks\n\n    def replace_block(self, block: Block, new_block: Block):\n        if self.structure is not None:\n            for i, item in enumerate(self.structure):\n                if item == block.id:\n                    self.structure[i] = new_block.id\n                    break\n\n    def render(\n        self,\n        document: Document,\n        parent_structure: Optional[List[str]] = None,\n        section_hierarchy: dict | None = None,\n        block_config: Optional[dict] = None,\n    ) -> BlockOutput:\n        if block_config is None:\n            block_config = {}\n\n        child_content = []\n        if section_hierarchy is None:\n            section_hierarchy = {}\n        section_hierarchy = self.assign_section_hierarchy(section_hierarchy)\n\n        if self.structure is not None and len(self.structure) > 0:\n            for block_id in self.structure:\n                block = document.get_block(block_id)\n                rendered = block.render(\n                    document, self.structure, section_hierarchy, block_config\n                )\n                section_hierarchy = (\n                    rendered.section_hierarchy.copy()\n                )  # Update the section hierarchy from the peer blocks\n                child_content.append(rendered)\n\n        return BlockOutput(\n            html=self.assemble_html(\n                document, child_content, parent_structure, block_config\n            ),\n            polygon=self.polygon,\n            id=self.id,\n            children=child_content,\n            section_hierarchy=section_hierarchy,\n        )\n\n    def line_height(self, document: Document) -> float:\n        lines = self.contained_blocks(document, (BlockTypes.Line,))\n        if len(lines) == 0:\n            return 0\n        return self.polygon.height / len(lines)\n\n    def update_metadata(self, **kwargs):\n        if self.metadata is None:\n            self.metadata = BlockMetadata()\n\n        for key, value in kwargs.items():\n            metadata_attr = getattr(self.metadata, key)\n            if isinstance(metadata_attr, int) and isinstance(value, int):\n                setattr(self.metadata, key, metadata_attr + value)\n            elif isinstance(metadata_attr, str) and isinstance(value, str):\n                setattr(self.metadata, key, value)\n            else:\n                raise ValueError(f\"Metadata attribute {key} is not an integer\")\n\n    def handle_html_output(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        if block_config is None:\n            block_config = {}\n\n        child_ref_blocks = [\n            block\n            for block in child_blocks\n            if block.id.block_type == BlockTypes.Reference\n        ]\n        html = Block.assemble_html(\n            self, document, child_ref_blocks, parent_structure, block_config\n        )\n        return html + self.html\n"
  },
  {
    "path": "marker/schema/blocks/basetable.py",
    "content": "from typing import List\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block, BlockOutput\nfrom marker.schema.blocks.tablecell import TableCell\n\n\nclass BaseTable(Block):\n    block_type: BlockTypes | None = None\n    html: str | None = None\n\n    @staticmethod\n    def format_cells(\n        document, child_blocks, block_config, child_cells: List[TableCell] | None = None\n    ):\n        if child_cells is None:\n            child_cells: List[TableCell] = [\n                document.get_block(c.id)\n                for c in child_blocks\n                if c.id.block_type == BlockTypes.TableCell\n            ]\n\n        unique_rows = sorted(list(set([c.row_id for c in child_cells])))\n        html_repr = \"<table><tbody>\"\n        for row_id in unique_rows:\n            row_cells = sorted(\n                [c for c in child_cells if c.row_id == row_id], key=lambda x: x.col_id\n            )\n            html_repr += \"<tr>\"\n            for cell in row_cells:\n                html_repr += cell.assemble_html(\n                    document, child_blocks, None, block_config\n                )\n            html_repr += \"</tr>\"\n        html_repr += \"</tbody></table>\"\n        return html_repr\n\n    def assemble_html(\n        self,\n        document,\n        child_blocks: List[BlockOutput],\n        parent_structure=None,\n        block_config: dict | None = None,\n    ):\n        # Filter out the table cells, so they don't render twice\n        child_ref_blocks = [\n            block\n            for block in child_blocks\n            if block.id.block_type == BlockTypes.Reference\n        ]\n        template = super().assemble_html(\n            document, child_ref_blocks, parent_structure, block_config\n        )\n\n        child_block_types = set([c.id.block_type for c in child_blocks])\n        if self.html:\n            # LLM processor\n            return template + self.html\n        elif len(child_blocks) > 0 and BlockTypes.TableCell in child_block_types:\n            # Table processor\n            return template + self.format_cells(document, child_blocks, block_config)\n        else:\n            # Default text lines and spans\n            return f\"<p>{template}</p>\"\n"
  },
  {
    "path": "marker/schema/blocks/caption.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass Caption(Block):\n    block_type: BlockTypes = BlockTypes.Caption\n    block_description: str = \"A text caption that is directly above or below an image or table. Only used for text describing the image or table.  \"\n    replace_output_newlines: bool = True\n    html: str | None = None\n\n    def assemble_html(self, document, child_blocks, parent_structure, block_config):\n        if self.html:\n            return super().handle_html_output(\n                document, child_blocks, parent_structure, block_config\n            )\n\n        return super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n"
  },
  {
    "path": "marker/schema/blocks/code.py",
    "content": "import html\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass Code(Block):\n    block_type: BlockTypes = BlockTypes.Code\n    code: str | None = None\n    html: str | None = None\n    block_description: str = \"A programming code block.\"\n\n    def assemble_html(self, document, child_blocks, parent_structure, block_config):\n        if self.html:\n            return self.html\n        code = self.code or \"\"\n        return f\"<pre>{html.escape(code)}</pre>\"\n"
  },
  {
    "path": "marker/schema/blocks/complexregion.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass ComplexRegion(Block):\n    block_type: BlockTypes = BlockTypes.ComplexRegion\n    html: str | None = None\n    block_description: str = \"A complex region that can consist of multiple different types of blocks mixed with images. This block is chosen when it is difficult to categorize the region as a single block type.\"\n\n    def assemble_html(self, document, child_blocks, parent_structure, block_config):\n        if self.html:\n            child_ref_blocks = [\n                block\n                for block in child_blocks\n                if block.id.block_type == BlockTypes.Reference\n            ]\n            html = super().assemble_html(\n                document, child_ref_blocks, parent_structure, block_config\n            )\n            return html + self.html\n        else:\n            template = super().assemble_html(\n                document, child_blocks, parent_structure, block_config\n            )\n            return f\"<p>{template}</p>\"\n"
  },
  {
    "path": "marker/schema/blocks/equation.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass Equation(Block):\n    block_type: BlockTypes = BlockTypes.Equation\n    html: str | None = None\n    block_description: str = \"A block math equation.\"\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure=None, block_config=None\n    ):\n        if self.html:\n            child_ref_blocks = [\n                block\n                for block in child_blocks\n                if block.id.block_type == BlockTypes.Reference\n            ]\n            html_out = super().assemble_html(\n                document, child_ref_blocks, parent_structure, block_config\n            )\n            html_out += f\"\"\"<p block-type='{self.block_type}'>{self.html}</p>\"\"\"\n            return html_out\n        else:\n            template = super().assemble_html(\n                document, child_blocks, parent_structure, block_config\n            )\n            return f\"<p block-type='{self.block_type}'>{template}</p>\"\n"
  },
  {
    "path": "marker/schema/blocks/figure.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass Figure(Block):\n    block_type: BlockTypes = BlockTypes.Figure\n    description: str | None = None\n    html: str | None = None\n    block_description: str = \"A chart or other image that contains data.\"\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        if self.html:\n            return super().handle_html_output(\n                document, child_blocks, parent_structure, block_config\n            )\n\n        child_ref_blocks = [\n            block\n            for block in child_blocks\n            if block.id.block_type == BlockTypes.Reference\n        ]\n        html = super().assemble_html(\n            document, child_ref_blocks, parent_structure, block_config\n        )\n        if self.description:\n            html += f\"<p role='img' data-original-image-id='{self.id}'>Image {self.id} description: {self.description}</p>\"\n        return html\n"
  },
  {
    "path": "marker/schema/blocks/footnote.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass Footnote(Block):\n    block_type: BlockTypes = BlockTypes.Footnote\n    block_description: str = (\n        \"A footnote that explains a term or concept in the document.\"\n    )\n    replace_output_newlines: bool = True\n    html: str | None = None\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        if self.html:\n            return super().handle_html_output(\n                document, child_blocks, parent_structure, block_config\n            )\n\n        return super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n"
  },
  {
    "path": "marker/schema/blocks/form.py",
    "content": "from typing import List\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks.basetable import BaseTable\n\n\nclass Form(BaseTable):\n    block_type: BlockTypes = BlockTypes.Form\n    block_description: str = \"A form, such as a tax form, that contains fields and labels.  It most likely doesn't have a table structure.\"\n"
  },
  {
    "path": "marker/schema/blocks/handwriting.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass Handwriting(Block):\n    block_type: BlockTypes = BlockTypes.Handwriting\n    block_description: str = \"A region that contains handwriting.\"\n    html: str | None = None\n    replace_output_newlines: bool = True\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        if self.html:\n            return self.html\n        else:\n            return super().assemble_html(\n                document, child_blocks, parent_structure, block_config\n            )\n"
  },
  {
    "path": "marker/schema/blocks/inlinemath.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass InlineMath(Block):\n    block_type: BlockTypes = BlockTypes.TextInlineMath\n    has_continuation: bool = False\n    blockquote: bool = False\n    blockquote_level: int = 0\n    block_description: str = \"A text block that contains inline math.  This is not used for italic text or references - only for text that contains math.\"\n    html: str | None = None\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        if self.ignore_for_output:\n            return \"\"\n\n        if self.html:\n            return super().handle_html_output(\n                document, child_blocks, parent_structure, block_config\n            )\n\n        template = super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n        template = template.replace(\"\\n\", \" \")\n\n        el_attr = f\" block-type='{self.block_type}'\"\n        if self.has_continuation:\n            el_attr += \" class='has-continuation'\"\n\n        if self.blockquote:\n            # Add indentation for blockquote levels\n            blockquote_prefix = \"<blockquote>\" * self.blockquote_level\n            blockquote_suffix = \"</blockquote>\" * self.blockquote_level\n            return f\"{blockquote_prefix}<p{el_attr}>{template}</p>{blockquote_suffix}\"\n        else:\n            return f\"<p{el_attr}>{template}</p>\"\n"
  },
  {
    "path": "marker/schema/blocks/listitem.py",
    "content": "import re\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\ndef replace_bullets(child_blocks):\n    # Replace bullet characters with a -\n    first_block = None\n    while len(child_blocks) > 0:\n        first_block = child_blocks[0]\n        child_blocks = first_block.children\n\n    if first_block is not None and first_block.id.block_type == BlockTypes.Line:\n        bullet_pattern = r\"(^|[\\n ]|<[^>]*>)[•●○ഠ ം◦■▪▫–—-]( )\"\n        first_block.html = re.sub(bullet_pattern, r\"\\1\\2\", first_block.html)\n\n\nclass ListItem(Block):\n    block_type: BlockTypes = BlockTypes.ListItem\n    list_indent_level: int = 0\n    block_description: str = \"A list item that is part of a list.  This block is used to represent a single item in a list.\"\n    html: str | None = None\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        template = super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n        template = template.replace(\"\\n\", \" \")\n        # Remove the first bullet character\n        replace_bullets(child_blocks)\n\n        if self.html:\n            template = (\n                super()\n                .handle_html_output(\n                    document, child_blocks, parent_structure, block_config\n                )\n                .strip()\n            )\n            template = template.replace(\"<li>\", \"\").replace(\"</li>\", \"\")\n\n        el_attr = f\" block-type='{self.block_type}'\"\n        if self.list_indent_level:\n            return f\"<ul><li{el_attr} class='list-indent-{self.list_indent_level}'>{template}</li></ul>\"\n        return f\"<li{el_attr}>{template}</li>\"\n"
  },
  {
    "path": "marker/schema/blocks/pagefooter.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass PageFooter(Block):\n    block_type: str = BlockTypes.PageFooter\n    block_description: str = (\n        \"Text that appears at the bottom of a page, like a page number.\"\n    )\n    replace_output_newlines: bool = True\n    ignore_for_output: bool = True\n    html: str | None = None\n\n    def assemble_html(self, document, child_blocks, parent_structure, block_config):\n        if block_config and block_config.get(\"keep_pagefooter_in_output\"):\n            self.ignore_for_output = False\n\n        if self.html and not self.ignore_for_output:\n            return self.html\n\n        return super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n"
  },
  {
    "path": "marker/schema/blocks/pageheader.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass PageHeader(Block):\n    block_type: BlockTypes = BlockTypes.PageHeader\n    block_description: str = (\n        \"Text that appears at the top of a page, like a page title.\"\n    )\n    replace_output_newlines: bool = True\n    ignore_for_output: bool = True\n    html: str | None = None\n\n    def assemble_html(self, document, child_blocks, parent_structure, block_config):\n        if block_config and block_config.get(\"keep_pageheader_in_output\"):\n            self.ignore_for_output = False\n\n        if self.html and not self.ignore_for_output:\n            return self.html\n\n        return super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n"
  },
  {
    "path": "marker/schema/blocks/picture.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass Picture(Block):\n    block_type: BlockTypes = BlockTypes.Picture\n    description: str | None = None\n    block_description: str = \"An image block that represents a picture.\"\n    html: str | None = None\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        if self.html:\n            return super().handle_html_output(\n                document, child_blocks, parent_structure, block_config\n            )\n\n        child_ref_blocks = [\n            block\n            for block in child_blocks\n            if block.id.block_type == BlockTypes.Reference\n        ]\n        html = super().assemble_html(\n            document, child_ref_blocks, parent_structure, block_config\n        )\n\n        if self.description:\n            return (\n                html\n                + f\"<p role='img' data-original-image-id='{self.id}'>Image {self.id} description: {self.description}</p>\"\n            )\n        return html\n"
  },
  {
    "path": "marker/schema/blocks/reference.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass Reference(Block):\n    block_type: BlockTypes = BlockTypes.Reference\n    ref: str\n    block_description: str = \"A reference to this block from another block.\"\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure=None, block_config=None\n    ):\n        template = super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n        return f\"<span id='{self.ref}'>{template}</span>\"\n"
  },
  {
    "path": "marker/schema/blocks/sectionheader.py",
    "content": "from typing import Optional\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass SectionHeader(Block):\n    block_type: BlockTypes = BlockTypes.SectionHeader\n    heading_level: Optional[int] = None\n    block_description: str = \"The header of a section of text or other blocks.\"\n    html: str | None = None\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        if self.ignore_for_output:\n            return \"\"\n\n        if self.html:\n            return super().handle_html_output(\n                document, child_blocks, parent_structure, block_config\n            )\n\n        template = super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n        template = template.replace(\"\\n\", \" \")\n        tag = f\"h{self.heading_level}\" if self.heading_level else \"h2\"\n        return f\"<{tag}>{template}</{tag}>\"\n"
  },
  {
    "path": "marker/schema/blocks/table.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks.basetable import BaseTable\n\n\nclass Table(BaseTable):\n    block_type: BlockTypes = BlockTypes.Table\n    block_description: str = \"A table of data, like a results table.  It will be in a tabular format.\"\n"
  },
  {
    "path": "marker/schema/blocks/tablecell.py",
    "content": "from typing import List\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass TableCell(Block):\n    block_type: BlockTypes = BlockTypes.TableCell\n    rowspan: int\n    colspan: int\n    row_id: int\n    col_id: int\n    is_header: bool\n    text_lines: List[str] | None = None\n    block_description: str = \"A cell in a table.\"\n\n    @property\n    def text(self):\n        return \"\\n\".join(self.text_lines)\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure=None, block_config=None\n    ):\n        add_cell_id = block_config and block_config.get(\"add_block_ids\", False)\n\n        tag_cls = \"th\" if self.is_header else \"td\"\n        tag = f\"<{tag_cls}\"\n        if self.rowspan > 1:\n            tag += f\" rowspan={self.rowspan}\"\n        if self.colspan > 1:\n            tag += f\" colspan={self.colspan}\"\n        if add_cell_id:\n            tag += f' data-block-id=\"{self.id}\"'\n        if self.text_lines is None:\n            self.text_lines = []\n        text = \"<br>\".join(self.text_lines)\n        return f\"{tag}>{text}</{tag_cls}>\"\n"
  },
  {
    "path": "marker/schema/blocks/text.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass Text(Block):\n    block_type: BlockTypes = BlockTypes.Text\n    has_continuation: bool = False\n    blockquote: bool = False\n    blockquote_level: int = 0\n    html: str | None = None\n    block_description: str = \"A paragraph or line of text.\"\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        if self.ignore_for_output:\n            return \"\"\n\n        # This happens when we used an llm processor\n        if self.html:\n            return super().handle_html_output(\n                document, child_blocks, parent_structure, block_config\n            )\n\n        template = super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n        template = template.replace(\"\\n\", \" \")\n\n        el_attr = f\" block-type='{self.block_type}'\"\n        if self.has_continuation:\n            el_attr += \" class='has-continuation'\"\n\n        if self.blockquote:\n            blockquote_prefix = \"<blockquote>\" * self.blockquote_level\n            blockquote_suffix = \"</blockquote>\" * self.blockquote_level\n            return f\"{blockquote_prefix}<p{el_attr}>{template}</p>{blockquote_suffix}\"\n        else:\n            return f\"<p{el_attr}>{template}</p>\"\n"
  },
  {
    "path": "marker/schema/blocks/toc.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks.basetable import BaseTable\n\n\nclass TableOfContents(BaseTable):\n    block_type: str = BlockTypes.TableOfContents\n    block_description: str = \"A table of contents.\"\n"
  },
  {
    "path": "marker/schema/document.py",
    "content": "from __future__ import annotations\n\nfrom typing import List, Sequence, Optional\n\nfrom pydantic import BaseModel\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block, BlockId, BlockOutput\nfrom marker.schema.groups.page import PageGroup\n\n\nclass DocumentOutput(BaseModel):\n    children: List[BlockOutput]\n    html: str\n    block_type: BlockTypes = BlockTypes.Document\n\n\nclass TocItem(BaseModel):\n    title: str\n    heading_level: int\n    page_id: int\n    polygon: List[List[float]]\n\n\nclass Document(BaseModel):\n    filepath: str\n    pages: List[PageGroup]\n    block_type: BlockTypes = BlockTypes.Document\n    table_of_contents: List[TocItem] | None = None\n    debug_data_path: str | None = None  # Path that debug data was saved to\n\n    def get_block(self, block_id: BlockId):\n        page = self.get_page(block_id.page_id)\n        block = page.get_block(block_id)\n        if block:\n            return block\n        return None\n\n    def get_page(self, page_id):\n        for page in self.pages:\n            if page.page_id == page_id:\n                return page\n        return None\n\n    def get_next_block(\n        self, block: Block, ignored_block_types: List[BlockTypes] = None\n    ):\n        if ignored_block_types is None:\n            ignored_block_types = []\n        next_block = None\n\n        # Try to find the next block in the current page\n        page = self.get_page(block.page_id)\n        next_block = page.get_next_block(block, ignored_block_types)\n        if next_block:\n            return next_block\n\n        # If no block found, search subsequent pages\n        for page in self.pages[self.pages.index(page) + 1 :]:\n            next_block = page.get_next_block(None, ignored_block_types)\n            if next_block:\n                return next_block\n        return None\n\n    def get_next_page(self, page: PageGroup):\n        page_idx = self.pages.index(page)\n        if page_idx + 1 < len(self.pages):\n            return self.pages[page_idx + 1]\n        return None\n\n    def get_prev_block(self, block: Block):\n        page = self.get_page(block.page_id)\n        prev_block = page.get_prev_block(block)\n        if prev_block:\n            return prev_block\n        prev_page = self.get_prev_page(page)\n        if not prev_page:\n            return None\n        return prev_page.get_block(prev_page.structure[-1])\n\n    def get_prev_page(self, page: PageGroup):\n        page_idx = self.pages.index(page)\n        if page_idx > 0:\n            return self.pages[page_idx - 1]\n        return None\n\n    def assemble_html(\n        self, child_blocks: List[Block], block_config: Optional[dict] = None\n    ):\n        template = \"\"\n        for c in child_blocks:\n            template += f\"<content-ref src='{c.id}'></content-ref>\"\n        return template\n\n    def render(self, block_config: Optional[dict] = None):\n        child_content = []\n        section_hierarchy = None\n        for page in self.pages:\n            rendered = page.render(self, None, section_hierarchy, block_config)\n            section_hierarchy = rendered.section_hierarchy.copy()\n            child_content.append(rendered)\n\n        return DocumentOutput(\n            children=child_content,\n            html=self.assemble_html(child_content, block_config),\n        )\n\n    def contained_blocks(self, block_types: Sequence[BlockTypes] = None) -> List[Block]:\n        blocks = []\n        for page in self.pages:\n            blocks += page.contained_blocks(self, block_types)\n        return blocks\n"
  },
  {
    "path": "marker/schema/groups/__init__.py",
    "content": "from marker.schema.blocks.base import Block\nfrom marker.schema.groups.figure import FigureGroup\nfrom marker.schema.groups.table import TableGroup\nfrom marker.schema.groups.list import ListGroup\nfrom marker.schema.groups.picture import PictureGroup\nfrom marker.schema.groups.page import PageGroup\n"
  },
  {
    "path": "marker/schema/groups/base.py",
    "content": "from marker.schema.blocks import Block\n\n\nclass Group(Block):\n    pass"
  },
  {
    "path": "marker/schema/groups/figure.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.groups.base import Group\n\n\nclass FigureGroup(Group):\n    block_type: BlockTypes = BlockTypes.FigureGroup\n    block_description: str = \"A group that contains a figure and associated captions.\"\n    html: str | None = None\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        if self.html:\n            return self.html\n\n        child_html = super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n        return child_html\n"
  },
  {
    "path": "marker/schema/groups/list.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.groups.base import Group\n\n\nclass ListGroup(Group):\n    block_type: BlockTypes = BlockTypes.ListGroup\n    has_continuation: bool = False\n    block_description: str = \"A group of list items that should be rendered together.\"\n    html: str | None = None\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        if self.html:\n            return self.handle_html_output(\n                document, child_blocks, parent_structure, block_config\n            )\n\n        template = super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n\n        el_attr = f\" block-type='{self.block_type}'\"\n        if self.has_continuation:\n            el_attr += \" class='has-continuation'\"\n        return f\"<p{el_attr}><ul>{template}</ul></p>\"\n"
  },
  {
    "path": "marker/schema/groups/page.py",
    "content": "from collections import defaultdict\nfrom typing import Any, Dict, List, Optional, Sequence, Tuple, Union\nimport numpy as np\n\nfrom PIL import Image, ImageDraw\n\nfrom pdftext.schema import Reference\nfrom pydantic import computed_field\n\nfrom marker.providers import ProviderOutput\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block, BlockId, Text\nfrom marker.schema.blocks.base import BlockMetadata\nfrom marker.schema.groups.base import Group\nfrom marker.schema.polygon import PolygonBox\nfrom marker.util import matrix_intersection_area, sort_text_lines\n\nLINE_MAPPING_TYPE = List[Tuple[int, ProviderOutput]]\n\n\nclass PageGroup(Group):\n    block_type: BlockTypes = BlockTypes.Page\n    # This is bytes if it is serialized\n    lowres_image: Image.Image | None | bytes = None\n    highres_image: Image.Image | None | bytes = None\n    children: List[Union[Any, Block]] | None = None\n    layout_sliced: bool = (\n        False  # Whether the layout model had to slice the image (order may be wrong)\n    )\n    excluded_block_types: Sequence[BlockTypes] = (\n        BlockTypes.Line,\n        BlockTypes.Span,\n    )\n    maximum_assignment_distance: float = 20  # pixels\n    block_description: str = \"A single page in the document.\"\n    refs: List[Reference] | None = None\n    ocr_errors_detected: bool = False\n\n    def incr_block_id(self):\n        if self.block_id is None:\n            self.block_id = 0\n        else:\n            self.block_id += 1\n\n    def add_child(self, block: Block):\n        if self.children is None:\n            self.children = [block]\n        else:\n            self.children.append(block)\n\n    def get_image(\n        self,\n        *args,\n        highres: bool = False,\n        remove_blocks: Sequence[BlockTypes] | None = None,\n        **kwargs,\n    ):\n        image = self.highres_image if highres else self.lowres_image\n\n        # Check if RGB, convert if needed\n        if isinstance(image, Image.Image) and image.mode != \"RGB\":\n            image = image.convert(\"RGB\")\n\n        # Avoid double OCR for certain elements\n        if remove_blocks:\n            image = image.copy()\n            draw = ImageDraw.Draw(image)\n            bad_blocks = [\n                block\n                for block in self.current_children\n                if block.block_type in remove_blocks\n            ]\n            for bad_block in bad_blocks:\n                poly = bad_block.polygon.rescale(self.polygon.size, image.size).polygon\n                poly = [(int(p[0]), int(p[1])) for p in poly]\n                draw.polygon(poly, fill=\"white\")\n\n        return image\n\n    @computed_field\n    @property\n    def current_children(self) -> List[Block]:\n        return [child for child in self.children if not child.removed]\n\n    def get_next_block(\n        self,\n        block: Optional[Block] = None,\n        ignored_block_types: Optional[List[BlockTypes]] = None,\n    ):\n        if ignored_block_types is None:\n            ignored_block_types = []\n\n        structure_idx = 0\n        if block is not None:\n            structure_idx = self.structure.index(block.id) + 1\n\n        # Iterate over blocks following the given block\n        for next_block_id in self.structure[structure_idx:]:\n            if next_block_id.block_type not in ignored_block_types:\n                return self.get_block(next_block_id)\n\n        return None  # No valid next block found\n\n    def get_prev_block(self, block: Block):\n        block_idx = self.structure.index(block.id)\n        if block_idx > 0:\n            return self.get_block(self.structure[block_idx - 1])\n        return None\n\n    def add_block(self, block_cls: type[Block], polygon: PolygonBox) -> Block:\n        self.incr_block_id()\n        block = block_cls(\n            polygon=polygon,\n            block_id=self.block_id,\n            page_id=self.page_id,\n        )\n        self.add_child(block)\n        return block\n\n    def add_full_block(self, block: Block) -> Block:\n        self.incr_block_id()\n        block.block_id = self.block_id\n        self.add_child(block)\n        return block\n\n    def get_block(self, block_id: BlockId) -> Block | None:\n        block: Block = self.children[block_id.block_id]\n        assert block.block_id == block_id.block_id\n        return block\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure=None, block_config=None\n    ):\n        template = \"\"\n        for c in child_blocks:\n            template += f\"<content-ref src='{c.id}'></content-ref>\"\n        return template\n\n    def compute_line_block_intersections(\n        self, blocks: List[Block], provider_outputs: List[ProviderOutput]\n    ):\n        max_intersections = {}\n\n        block_bboxes = [block.polygon.bbox for block in blocks]\n        line_bboxes = [\n            provider_output.line.polygon.bbox for provider_output in provider_outputs\n        ]\n\n        intersection_matrix = matrix_intersection_area(line_bboxes, block_bboxes)\n\n        for line_idx, line in enumerate(provider_outputs):\n            intersection_line = intersection_matrix[line_idx]\n            if intersection_line.sum() == 0:\n                continue\n\n            max_intersection = intersection_line.argmax()\n            max_intersections[line_idx] = (\n                intersection_matrix[line_idx, max_intersection],\n                blocks[max_intersection].id,\n            )\n        return max_intersections\n\n    def compute_max_structure_block_intersection_pct(self):\n        structure_blocks = [self.get_block(block_id) for block_id in self.structure]\n        strucure_block_bboxes = [b.polygon.bbox for b in structure_blocks]\n\n        intersection_matrix = matrix_intersection_area(strucure_block_bboxes, strucure_block_bboxes)\n        np.fill_diagonal(intersection_matrix, 0)    # Ignore self-intersections\n\n        max_intersection_pct = 0\n        for block_idx, block in enumerate(structure_blocks):\n            if block.polygon.area == 0:\n                continue\n            max_intersection_pct = max(max_intersection_pct, np.max(intersection_matrix[block_idx]) / block.polygon.area)\n\n        return max_intersection_pct\n\n    def replace_block(self, block: Block, new_block: Block):\n        # Handles incrementing the id\n        self.add_full_block(new_block)\n\n        # Replace block id in structure\n        super().replace_block(block, new_block)\n\n        # Replace block in structure of children\n        for child in self.children:\n            child.replace_block(block, new_block)\n\n        # Mark block as removed\n        block.removed = True\n\n    def identify_missing_blocks(\n        self,\n        provider_line_idxs: List[int],\n        provider_outputs: List[ProviderOutput],\n        assigned_line_idxs: set[int],\n    ):\n        new_blocks = []\n        new_block = None\n        for line_idx in provider_line_idxs:\n            if line_idx in assigned_line_idxs:\n                continue\n\n            # if the unassociated line is a new line with minimal area, we can skip it\n            if (\n                provider_outputs[line_idx].line.polygon.area <= 1\n                and provider_outputs[line_idx].raw_text == \"\\n\"\n            ):\n                continue\n\n            if new_block is None:\n                new_block = [(line_idx, provider_outputs[line_idx])]\n            elif all(\n                [\n                    new_block[-1][0] + 1 == line_idx,\n                    provider_outputs[line_idx].line.polygon.center_distance(\n                        new_block[-1][1].line.polygon\n                    )\n                    < self.maximum_assignment_distance,\n                ]\n            ):\n                new_block.append((line_idx, provider_outputs[line_idx]))\n            else:\n                new_blocks.append(new_block)\n                new_block = [(line_idx, provider_outputs[line_idx])]\n            assigned_line_idxs.add(line_idx)\n        if new_block:\n            new_blocks.append(new_block)\n\n        return new_blocks\n\n    def create_missing_blocks(\n        self,\n        new_blocks: List[LINE_MAPPING_TYPE],\n        block_lines: Dict[BlockId, LINE_MAPPING_TYPE],\n    ):\n        for new_block in new_blocks:\n            block = self.add_block(Text, new_block[0][1].line.polygon)\n            block.source = \"heuristics\"\n            block_lines[block.id] = new_block\n\n            min_dist_idx = None\n            min_dist = None\n            for existing_block_id in self.structure:\n                existing_block = self.get_block(existing_block_id)\n                if existing_block.block_type in self.excluded_block_types:\n                    continue\n                # We want to assign to blocks closer in y than x\n                dist = block.polygon.center_distance(\n                    existing_block.polygon, x_weight=5, absolute=True\n                )\n                if dist > 0 and min_dist_idx is None or dist < min_dist:\n                    min_dist = dist\n                    min_dist_idx = existing_block.id\n\n            if min_dist_idx is not None:\n                existing_idx = self.structure.index(min_dist_idx)\n                self.structure.insert(existing_idx + 1, block.id)\n            else:\n                self.structure.append(block.id)\n\n    def add_initial_blocks(\n        self,\n        block_lines: Dict[BlockId, LINE_MAPPING_TYPE],\n        text_extraction_method: str,\n        keep_chars: bool = False,\n    ):\n        # Add lines to the proper blocks, sorted in order\n        for block_id, lines in block_lines.items():\n            line_extraction_methods = set(\n                [line[1].line.text_extraction_method for line in lines]\n            )\n            if len(line_extraction_methods) == 1:\n                lines = sorted(lines, key=lambda x: x[0])\n                lines = [line for _, line in lines]\n            else:\n                lines = [line for _, line in lines]\n                line_polygons = [line.line.polygon for line in lines]\n                sorted_line_polygons = sort_text_lines(line_polygons)\n                argsort = [line_polygons.index(p) for p in sorted_line_polygons]\n                lines = [lines[i] for i in argsort]\n\n            block = self.get_block(block_id)\n            for provider_output in lines:\n                line = provider_output.line\n                spans = provider_output.spans\n                self.add_full_block(line)\n                block.add_structure(line)\n                block.polygon = block.polygon.merge([line.polygon])\n                block.text_extraction_method = text_extraction_method\n                for span_idx, span in enumerate(spans):\n                    self.add_full_block(span)\n                    line.add_structure(span)\n\n                    if not keep_chars:\n                        continue\n\n                    # Provider doesn't have chars\n                    if len(provider_output.chars) == 0:\n                        continue\n\n                    # Loop through characters associated with the span\n                    for char in provider_output.chars[span_idx]:\n                        char.page_id = self.page_id\n                        self.add_full_block(char)\n                        span.add_structure(char)\n\n    def merge_blocks(\n        self,\n        provider_outputs: List[ProviderOutput],\n        text_extraction_method: str,\n        keep_chars: bool = False,\n    ):\n        provider_line_idxs = list(range(len(provider_outputs)))\n        valid_blocks = [\n            block\n            for block in self.current_children  # ensure we only look at children that haven't been replaced\n            if block.block_type not in self.excluded_block_types\n        ]\n\n        max_intersections = self.compute_line_block_intersections(\n            valid_blocks, provider_outputs\n        )\n\n        # Try to assign lines by intersection\n        assigned_line_idxs = set()\n        block_lines = defaultdict(list)\n        for line_idx, provider_output in enumerate(provider_outputs):\n            if line_idx in max_intersections:\n                block_id = max_intersections[line_idx][1]\n                block_lines[block_id].append((line_idx, provider_output))\n                assigned_line_idxs.add(line_idx)\n\n        # If no intersection, assign by distance\n        for line_idx in set(provider_line_idxs).difference(assigned_line_idxs):\n            min_dist = None\n            min_dist_idx = None\n            provider_output: ProviderOutput = provider_outputs[line_idx]\n            line = provider_output.line\n            for block in valid_blocks:\n                # We want to assign to blocks closer in y than x\n                dist = line.polygon.center_distance(block.polygon, x_weight=5)\n                if min_dist_idx is None or dist < min_dist:\n                    min_dist = dist\n                    min_dist_idx = block.id\n\n            if min_dist_idx is not None and min_dist < self.maximum_assignment_distance:\n                block_lines[min_dist_idx].append((line_idx, provider_output))\n                assigned_line_idxs.add(line_idx)\n\n        # This creates new blocks to hold anything too far away\n        new_blocks = self.identify_missing_blocks(\n            provider_line_idxs, provider_outputs, assigned_line_idxs\n        )\n        self.create_missing_blocks(new_blocks, block_lines)\n\n        # Add blocks to the page\n        self.add_initial_blocks(block_lines, text_extraction_method, keep_chars)\n\n    def aggregate_block_metadata(self) -> BlockMetadata:\n        if self.metadata is None:\n            self.metadata = BlockMetadata()\n\n        for block in self.current_children:\n            if block.metadata is not None:\n                self.metadata = self.metadata.merge(block.metadata)\n        return self.metadata\n"
  },
  {
    "path": "marker/schema/groups/picture.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.groups.base import Group\n\n\nclass PictureGroup(Group):\n    block_type: BlockTypes = BlockTypes.PictureGroup\n    block_description: str = \"A picture along with associated captions.\"\n    html: str | None = None\n\n    def assemble_html(\n        self, document, child_blocks, parent_structure, block_config=None\n    ):\n        if self.html:\n            return self.html\n\n        child_html = super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n        return child_html\n"
  },
  {
    "path": "marker/schema/groups/table.py",
    "content": "from typing import List\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import BlockOutput\nfrom marker.schema.groups.base import Group\n\n\nclass TableGroup(Group):\n    block_type: BlockTypes = BlockTypes.TableGroup\n    block_description: str = \"A table along with associated captions.\"\n    html: str | None = None\n\n    def assemble_html(\n        self,\n        document,\n        child_blocks: List[BlockOutput],\n        parent_structure=None,\n        block_config: dict | None = None,\n    ):\n        if self.html:\n            return self.handle_html_output(\n                document, child_blocks, parent_structure, block_config\n            )\n\n        return super().assemble_html(\n            document, child_blocks, parent_structure, block_config\n        )\n"
  },
  {
    "path": "marker/schema/polygon.py",
    "content": "from __future__ import annotations\nimport copy\nfrom typing import List\n\nimport numpy as np\nfrom pydantic import BaseModel, field_validator, computed_field\n\n\nclass PolygonBox(BaseModel):\n    polygon: List[List[float]]\n\n    @field_validator('polygon')\n    @classmethod\n    def check_elements(cls, v: List[List[float]]) -> List[List[float]]:\n        if len(v) != 4:\n            raise ValueError('corner must have 4 elements')\n\n        for corner in v:\n            if len(corner) != 2:\n                raise ValueError('corner must have 2 elements')\n\n        min_x = min([corner[0] for corner in v])\n        min_y = min([corner[1] for corner in v])\n\n        # Ensure corners are clockwise from top left\n        corner_error = f\" .Corners are {v}\"\n        assert v[2][1] >= min_y, f'bottom right corner should have a greater y value than top right corner' + corner_error\n        assert v[3][1] >= min_y, 'bottom left corner should have a greater y value than top left corner' + corner_error\n        assert v[1][0] >= min_x, 'top right corner should have a greater x value than top left corner' + corner_error\n        assert v[2][0] >= min_x, 'bottom right corner should have a greater x value than bottom left corner' + corner_error\n        return v\n\n    @property\n    def height(self):\n        return self.bbox[3] - self.bbox[1]\n\n    @property\n    def width(self):\n        return self.bbox[2] - self.bbox[0]\n\n    @property\n    def area(self):\n        return self.width * self.height\n\n    @property\n    def center(self):\n        return [(self.bbox[0] + self.bbox[2]) / 2, (self.bbox[1] + self.bbox[3]) / 2]\n\n    @property\n    def size(self):\n        return [self.width, self.height]\n\n    @property\n    def x_start(self):\n        return self.bbox[0]\n\n    @property\n    def y_start(self):\n        return self.bbox[1]\n\n    @property\n    def x_end(self):\n        return self.bbox[2]\n\n    @property\n    def y_end(self):\n        return self.bbox[3]\n\n    @computed_field\n    @property\n    def bbox(self) -> List[float]:\n        min_x = min([corner[0] for corner in self.polygon])\n        min_y = min([corner[1] for corner in self.polygon])\n        max_x = max([corner[0] for corner in self.polygon])\n        max_y = max([corner[1] for corner in self.polygon])\n        return [min_x, min_y, max_x, max_y]\n\n    def expand(self, x_margin: float, y_margin: float) -> PolygonBox:\n        new_polygon = []\n        x_margin = x_margin * self.width\n        y_margin = y_margin * self.height\n        for idx, poly in enumerate(self.polygon):\n            if idx == 0:\n                new_polygon.append([poly[0] - x_margin, poly[1] - y_margin])\n            elif idx == 1:\n                new_polygon.append([poly[0] + x_margin, poly[1] - y_margin])\n            elif idx == 2:\n                new_polygon.append([poly[0] + x_margin, poly[1] + y_margin])\n            elif idx == 3:\n                new_polygon.append([poly[0] - x_margin, poly[1] + y_margin])\n        return PolygonBox(polygon=new_polygon)\n\n    def expand_y2(self, y_margin: float) -> PolygonBox:\n        new_polygon = []\n        y_margin = y_margin * self.height\n        for idx, poly in enumerate(self.polygon):\n            if idx == 2:\n                new_polygon.append([poly[0], poly[1] + y_margin])\n            elif idx == 3:\n                new_polygon.append([poly[0], poly[1] + y_margin])\n            else:\n                new_polygon.append(poly)\n        return PolygonBox(polygon=new_polygon)\n\n    def expand_y1(self, y_margin: float) -> PolygonBox:\n        new_polygon = []\n        y_margin = y_margin * self.height\n        for idx, poly in enumerate(self.polygon):\n            if idx == 0:\n                new_polygon.append([poly[0], poly[1] - y_margin])\n            elif idx == 1:\n                new_polygon.append([poly[0], poly[1] - y_margin])\n            else:\n                new_polygon.append(poly)\n        return PolygonBox(polygon=new_polygon)\n\n    def minimum_gap(self, other: PolygonBox):\n        if self.intersection_pct(other) > 0:\n            return 0\n\n        def dist(p1, p2):\n            return ((p1[0] - p2[0]) ** 2 + (p1[1] - p2[1]) ** 2) ** 0.5\n\n        left = other.bbox[2] < self.bbox[0]\n        right = self.bbox[2] < other.bbox[0]\n        bottom = other.bbox[3] < self.bbox[1]\n        top = self.bbox[3] < other.bbox[1]\n        if top and left:\n            return dist((self.bbox[0], self.bbox[3]), (other.bbox[2], other.bbox[1]))\n        elif left and bottom:\n            return dist((self.bbox[0], self.bbox[1]), (other.bbox[2], other.bbox[3]))\n        elif bottom and right:\n            return dist((self.bbox[2], self.bbox[1]), (other.bbox[0], other.bbox[3]))\n        elif right and top:\n            return dist((self.bbox[2], self.bbox[3]), (other.bbox[0], other.bbox[1]))\n        elif left:\n            return self.bbox[0] - other.bbox[2]\n        elif right:\n            return other.bbox[0] - self.bbox[2]\n        elif bottom:\n            return self.bbox[1] - other.bbox[3]\n        elif top:\n            return other.bbox[1] - self.bbox[3]\n        else:\n            return 0\n\n    def center_distance(self, other: PolygonBox, x_weight: float = 1, y_weight: float = 1, absolute=False):\n        if not absolute:\n            return ((self.center[0] - other.center[0]) ** 2 * x_weight + (self.center[1] - other.center[1]) ** 2 * y_weight) ** 0.5\n        else:\n            return abs(self.center[0] - other.center[0]) * x_weight + abs(self.center[1] - other.center[1]) * y_weight\n\n    def tl_distance(self, other: PolygonBox):\n        return ((self.bbox[0] - other.bbox[0]) ** 2 + (self.bbox[1] - other.bbox[1]) ** 2) ** 0.5\n\n    def rescale(self, old_size, new_size):\n        # Point is in x, y format\n        page_width, page_height = old_size\n        img_width, img_height = new_size\n\n        width_scaler = img_width / page_width\n        height_scaler = img_height / page_height\n\n        new_corners = copy.deepcopy(self.polygon)\n        for corner in new_corners:\n            corner[0] = corner[0] * width_scaler\n            corner[1] = corner[1] * height_scaler\n        return PolygonBox(polygon=new_corners)\n\n    def fit_to_bounds(self, bounds):\n        new_corners = copy.deepcopy(self.polygon)\n        for corner in new_corners:\n            corner[0] = max(min(corner[0], bounds[2]), bounds[0])\n            corner[1] = max(min(corner[1], bounds[3]), bounds[1])\n        return PolygonBox(polygon=new_corners)\n\n    def overlap_x(self, other: PolygonBox):\n        return max(0, min(self.bbox[2], other.bbox[2]) - max(self.bbox[0], other.bbox[0]))\n\n    def overlap_y(self, other: PolygonBox):\n        return max(0, min(self.bbox[3], other.bbox[3]) - max(self.bbox[1], other.bbox[1]))\n\n    def intersection_area(self, other: PolygonBox):\n        return self.overlap_x(other) * self.overlap_y(other)\n\n    def intersection_pct(self, other: PolygonBox):\n        if self.area == 0:\n            return 0\n\n        intersection = self.intersection_area(other)\n        return intersection / self.area\n\n    def merge(self, others: List[PolygonBox]) -> PolygonBox:\n        corners = []\n        for i in range(len(self.polygon)):\n            x_coords = [self.polygon[i][0]] + [other.polygon[i][0] for other in others]\n            y_coords = [self.polygon[i][1]] + [other.polygon[i][1] for other in others]\n            min_x = min(x_coords)\n            min_y = min(y_coords)\n            max_x = max(x_coords)\n            max_y = max(y_coords)\n\n            if i == 0:\n                corners.append([min_x, min_y])\n            elif i == 1:\n                corners.append([max_x, min_y])\n            elif i == 2:\n                corners.append([max_x, max_y])\n            elif i == 3:\n                corners.append([min_x, max_y])\n        return PolygonBox(polygon=corners)\n\n    @classmethod\n    def from_bbox(cls, bbox: List[float], ensure_nonzero_area=False):\n        if ensure_nonzero_area:\n            bbox = list(bbox)\n            bbox[2] = max(bbox[2], bbox[0] + 1)\n            bbox[3] = max(bbox[3], bbox[1] + 1)\n        return cls(polygon=[[bbox[0], bbox[1]], [bbox[2], bbox[1]], [bbox[2], bbox[3]], [bbox[0], bbox[3]]])\n"
  },
  {
    "path": "marker/schema/registry.py",
    "content": "from typing import Dict, Type\nfrom importlib import import_module\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import (\n    Block,\n    Caption,\n    Code,\n    Equation,\n    Figure,\n    Footnote,\n    Form,\n    Handwriting,\n    InlineMath,\n    ListItem,\n    PageFooter,\n    PageHeader,\n    Picture,\n    SectionHeader,\n    Table,\n    TableOfContents,\n    Text,\n    ComplexRegion,\n    TableCell,\n    Reference,\n)\nfrom marker.schema.document import Document\nfrom marker.schema.groups import (\n    FigureGroup,\n    ListGroup,\n    PageGroup,\n    PictureGroup,\n    TableGroup,\n)\nfrom marker.schema.text import Line, Span\nfrom marker.schema.text.char import Char\n\nBLOCK_REGISTRY: Dict[BlockTypes, str] = {}\n\n\ndef register_block_class(block_type: BlockTypes, block_cls: Type[Block]):\n    BLOCK_REGISTRY[block_type] = f\"{block_cls.__module__}.{block_cls.__name__}\"\n\n\ndef get_block_class(block_type: BlockTypes) -> Type[Block]:\n    class_path = BLOCK_REGISTRY[block_type]\n    module_name, class_name = class_path.rsplit(\".\", 1)\n    module = import_module(module_name)\n    return getattr(module, class_name)\n\n\nregister_block_class(BlockTypes.Line, Line)\nregister_block_class(BlockTypes.Span, Span)\nregister_block_class(BlockTypes.Char, Char)\nregister_block_class(BlockTypes.FigureGroup, FigureGroup)\nregister_block_class(BlockTypes.TableGroup, TableGroup)\nregister_block_class(BlockTypes.ListGroup, ListGroup)\nregister_block_class(BlockTypes.PictureGroup, PictureGroup)\nregister_block_class(BlockTypes.Page, PageGroup)\nregister_block_class(BlockTypes.Caption, Caption)\nregister_block_class(BlockTypes.Code, Code)\nregister_block_class(BlockTypes.Figure, Figure)\nregister_block_class(BlockTypes.Footnote, Footnote)\nregister_block_class(BlockTypes.Form, Form)\nregister_block_class(BlockTypes.Equation, Equation)\nregister_block_class(BlockTypes.Handwriting, Handwriting)\nregister_block_class(BlockTypes.TextInlineMath, InlineMath)\nregister_block_class(BlockTypes.ListItem, ListItem)\nregister_block_class(BlockTypes.PageFooter, PageFooter)\nregister_block_class(BlockTypes.PageHeader, PageHeader)\nregister_block_class(BlockTypes.Picture, Picture)\nregister_block_class(BlockTypes.SectionHeader, SectionHeader)\nregister_block_class(BlockTypes.Table, Table)\nregister_block_class(BlockTypes.Text, Text)\nregister_block_class(BlockTypes.TableOfContents, TableOfContents)\nregister_block_class(BlockTypes.ComplexRegion, ComplexRegion)\nregister_block_class(BlockTypes.TableCell, TableCell)\nregister_block_class(BlockTypes.Reference, Reference)\nregister_block_class(BlockTypes.Document, Document)\n\nassert len(BLOCK_REGISTRY) == len(BlockTypes)\nassert all(\n    [\n        get_block_class(k).model_fields[\"block_type\"].default == k\n        for k, _ in BLOCK_REGISTRY.items()\n    ]\n)\n"
  },
  {
    "path": "marker/schema/text/__init__.py",
    "content": "from marker.schema.text.line import Line\nfrom marker.schema.text.span import Span\n"
  },
  {
    "path": "marker/schema/text/char.py",
    "content": "from marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\n\n\nclass Char(Block):\n    block_type: BlockTypes = BlockTypes.Char\n    block_description: str = \"A single character inside a span.\"\n\n    text: str\n    idx: int\n"
  },
  {
    "path": "marker/schema/text/line.py",
    "content": "import html\nimport re\nfrom typing import Literal, List\n\nimport regex\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block, BlockOutput\n\nHYPHENS = r\"-—¬\"\n\n\ndef remove_tags(text):\n    return re.sub(r\"<[^>]+>\", \"\", text)\n\n\ndef replace_last(string, old, new):\n    matches = list(re.finditer(old, string))\n    if not matches:\n        return string\n    last_match = matches[-1]\n    return string[: last_match.start()] + new + string[last_match.end() :]\n\n\ndef strip_trailing_hyphens(line_text, next_line_text, line_html) -> str:\n    lowercase_letters = r\"\\p{Ll}\"\n\n    hyphen_regex = regex.compile(rf\".*[{HYPHENS}]\\s?$\", regex.DOTALL)\n    next_line_starts_lowercase = regex.match(\n        rf\"^\\s?[{lowercase_letters}]\", next_line_text\n    )\n\n    if hyphen_regex.match(line_text) and next_line_starts_lowercase:\n        line_html = replace_last(line_html, rf\"[{HYPHENS}]\", \"\")\n\n    return line_html\n\n\nclass Line(Block):\n    block_type: BlockTypes = BlockTypes.Line\n    block_description: str = \"A line of text.\"\n    formats: List[Literal[\"math\"]] | None = (\n        None  # Sometimes we want to set math format at the line level, not span\n    )\n\n    def ocr_input_text(self, document):\n        text = \"\"\n        for block in self.contained_blocks(document, (BlockTypes.Span,)):\n            # We don't include superscripts/subscripts and math since they can be unreliable at this stage\n            block_text = block.text\n            if block.italic:\n                text += f\"<i>{block_text}</i>\"\n            elif block.bold:\n                text += f\"<b>{block_text}</b>\"\n            else:\n                text += block_text\n\n        return text.strip()\n\n    def formatted_text(self, document, skip_urls=False):\n        text = \"\"\n        for block in self.contained_blocks(document, (BlockTypes.Span,)):\n            block_text = html.escape(block.text)\n\n            if block.has_superscript:\n                block_text = re.sub(r\"^([0-9\\W]+)(.*)\", r\"<sup>\\1</sup>\\2\", block_text)\n                if \"<sup>\" not in block_text:\n                    block_text = f\"<sup>{block_text}</sup>\"\n\n            if block.url and not skip_urls:\n                block_text = f\"<a href='{block.url}'>{block_text}</a>\"\n\n            if block.italic:\n                text += f\"<i>{block_text}</i>\"\n            elif block.bold:\n                text += f\"<b>{block_text}</b>\"\n            elif block.math:\n                text += f\"<math display='inline'>{block_text}</math>\"\n            else:\n                text += block_text\n\n        return text\n\n    def assemble_html(self, document, child_blocks, parent_structure, block_config):\n        template = \"\"\n        for c in child_blocks:\n            template += c.html\n\n        raw_text = remove_tags(template).strip()\n        structure_idx = parent_structure.index(self.id)\n        if structure_idx < len(parent_structure) - 1:\n            next_block_id = parent_structure[structure_idx + 1]\n            next_line = document.get_block(next_block_id)\n            next_line_raw_text = next_line.raw_text(document)\n            template = strip_trailing_hyphens(raw_text, next_line_raw_text, template)\n        else:\n            template = template.strip(\n                \" \"\n            )  # strip any trailing whitespace from the last line\n        return template\n\n    def render(\n        self, document, parent_structure, section_hierarchy=None, block_config=None\n    ):\n        child_content = []\n        if self.structure is not None and len(self.structure) > 0:\n            for block_id in self.structure:\n                block = document.get_block(block_id)\n                child_content.append(\n                    block.render(\n                        document, parent_structure, section_hierarchy, block_config\n                    )\n                )\n\n        return BlockOutput(\n            html=self.assemble_html(\n                document, child_content, parent_structure, block_config\n            ),\n            polygon=self.polygon,\n            id=self.id,\n            children=[],\n            section_hierarchy=section_hierarchy,\n        )\n\n    def merge(self, other: \"Line\"):\n        self.polygon = self.polygon.merge([other.polygon])\n\n        # Handle merging structure with Nones\n        if self.structure is None:\n            self.structure = other.structure\n        elif other.structure is not None:\n            self.structure = self.structure + other.structure\n\n        # Merge formats with Nones\n        if self.formats is None:\n            self.formats = other.formats\n        elif other.formats is not None:\n            self.formats = list(set(self.formats + other.formats))\n"
  },
  {
    "path": "marker/schema/text/span.py",
    "content": "import html\nimport re\nfrom typing import List, Literal, Optional\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\nfrom marker.util import unwrap_math\n\n\ndef cleanup_text(full_text):\n    full_text = re.sub(r\"(\\n\\s){3,}\", \"\\n\\n\", full_text)\n    full_text = full_text.replace(\"\\xa0\", \" \")  # Replace non-breaking spaces\n    return full_text\n\n\nclass Span(Block):\n    block_type: BlockTypes = BlockTypes.Span\n    block_description: str = \"A span of text inside a line.\"\n\n    text: str\n    font: str\n    font_weight: float\n    font_size: float\n    minimum_position: int\n    maximum_position: int\n    formats: List[\n        Literal[\n            \"plain\",\n            \"math\",\n            \"chemical\",\n            \"bold\",\n            \"italic\",\n            \"highlight\",\n            \"subscript\",\n            \"superscript\",\n            \"small\",\n            \"code\",\n            \"underline\",\n        ]\n    ]\n    has_superscript: bool = False\n    has_subscript: bool = False\n    url: Optional[str] = None\n    html: Optional[str] = None\n\n    @property\n    def bold(self):\n        return \"bold\" in self.formats\n\n    @property\n    def italic(self):\n        return \"italic\" in self.formats\n\n    @property\n    def math(self):\n        return \"math\" in self.formats\n\n    @property\n    def highlight(self):\n        return \"highlight\" in self.formats\n\n    @property\n    def superscript(self):\n        return \"superscript\" in self.formats\n\n    @property\n    def subscript(self):\n        return \"subscript\" in self.formats\n\n    @property\n    def small(self):\n        return \"small\" in self.formats\n\n    @property\n    def code(self):\n        return \"code\" in self.formats\n\n    @property\n    def underline(self):\n        return \"underline\" in self.formats\n\n    def assemble_html(self, document, child_blocks, parent_structure, block_config):\n        if self.ignore_for_output:\n            return \"\"\n\n        if self.html:\n            return self.html\n\n        text = self.text\n\n        # Remove trailing newlines\n        replaced_newline = False\n        while len(text) > 0 and text[-1] in [\"\\n\", \"\\r\"]:\n            text = text[:-1]\n            replaced_newline = True\n\n        # Remove leading newlines\n        while len(text) > 0 and text[0] in [\"\\n\", \"\\r\"]:\n            text = text[1:]\n\n        if replaced_newline and not text.endswith(\"-\"):\n            text += \" \"\n\n        text = text.replace(\n            \"-\\n\", \"\"\n        )  # Remove hyphenated line breaks from the middle of the span\n        text = html.escape(text)\n        text = cleanup_text(text)\n\n        if self.has_superscript:\n            text = re.sub(r\"^([0-9\\W]+)(.*)\", r\"<sup>\\1</sup>\\2\", text)\n\n            # Handle full block superscript\n            if \"<sup>\" not in text:\n                text = f\"<sup>{text}</sup>\"\n\n        if self.url:\n            text = f\"<a href='{self.url}'>{text}</a>\"\n\n        # TODO Support multiple formats\n        if self.italic:\n            text = f\"<i>{text}</i>\"\n        elif self.bold:\n            text = f\"<b>{text}</b>\"\n        elif self.math:\n            block_envs = [\"split\", \"align\", \"gather\", \"multline\"]\n            if any(f\"\\\\begin{{{env}}}\" in text for env in block_envs):\n                display_mode = \"block\"\n            else:\n                display_mode = \"inline\"\n            text = f\"<math display='{display_mode}'>{text}</math>\"\n        elif self.highlight:\n            text = f\"<mark>{text}</mark>\"\n        elif self.subscript:\n            text = f\"<sub>{text}</sub>\"\n        elif self.superscript:\n            text = f\"<sup>{text}</sup>\"\n        elif self.underline:\n            text = f\"<u>{text}</u>\"\n        elif self.small:\n            text = f\"<small>{text}</small>\"\n        elif self.code:\n            text = f\"<code>{text}</code>\"\n\n        text = unwrap_math(text)\n        return text\n"
  },
  {
    "path": "marker/scripts/__init__.py",
    "content": ""
  },
  {
    "path": "marker/scripts/chunk_convert.py",
    "content": "import argparse\nimport os\nimport subprocess\nimport pkg_resources\n\n\ndef chunk_convert_cli():\n    parser = argparse.ArgumentParser(description=\"Convert a folder of PDFs to a folder of markdown files in chunks.\")\n    parser.add_argument(\"in_folder\", help=\"Input folder with pdfs.\")\n    parser.add_argument(\"out_folder\", help=\"Output folder\")\n    args = parser.parse_args()\n\n    cur_dir = os.path.dirname(os.path.abspath(__file__))\n    script_path = os.path.join(cur_dir, \"chunk_convert.sh\")\n\n    # Construct the command\n    cmd = f\"{script_path} {args.in_folder} {args.out_folder}\"\n\n    # Execute the shell script\n    subprocess.run(cmd, shell=True, check=True)"
  },
  {
    "path": "marker/scripts/chunk_convert.sh",
    "content": "#!/bin/bash\n\ntrap 'pkill -P $$' SIGINT\n\n# Check if NUM_DEVICES is set\nif [[ -z \"$NUM_DEVICES\" ]]; then\n    echo \"Please set the NUM_DEVICES environment variable.\"\n    exit 1\nfi\n\nif [[ -z \"$NUM_WORKERS\" ]]; then\n    echo \"Please set the NUM_WORKERS environment variable.\"\n    exit 1\nfi\n\n# Get input folder and output folder from args\nif [[ -z \"$1\" ]]; then\n    echo \"Please provide an input folder.\"\n    exit 1\nfi\n\nif [[ -z \"$2\" ]]; then\n    echo \"Please provide an output folder.\"\n    exit 1\nfi\n\nINPUT_FOLDER=$1\nOUTPUT_FOLDER=$2\n\n# Ensure output folder exists\nmkdir -p \"$OUTPUT_FOLDER\"\n\n# Loop from 0 to NUM_DEVICES and run the marker command in parallel\nfor (( i=0; i<$NUM_DEVICES; i++ )); do\n    DEVICE_NUM=$i\n    export DEVICE_NUM\n    export NUM_DEVICES\n    export NUM_WORKERS\n    echo \"Running marker on GPU $DEVICE_NUM\"\n    cmd=\"CUDA_VISIBLE_DEVICES=$DEVICE_NUM marker $INPUT_FOLDER --output_dir $OUTPUT_FOLDER --num_chunks $NUM_DEVICES --chunk_idx $DEVICE_NUM --workers $NUM_WORKERS\"\n    eval $cmd &\n\n    sleep 5\ndone\n\n# Wait for all background processes to finish\nwait"
  },
  {
    "path": "marker/scripts/common.py",
    "content": "import ast\nimport base64\nimport io\nimport re\nimport sys\nfrom typing import Optional\n\nfrom PIL import Image\nimport click\nimport pypdfium2\nimport streamlit as st\nfrom pydantic import BaseModel\nfrom streamlit.runtime.uploaded_file_manager import UploadedFile\n\nfrom marker.config.parser import ConfigParser\nfrom marker.config.printer import CustomClickPrinter\nfrom marker.models import create_model_dict\nfrom marker.settings import settings\n\n\n@st.cache_data()\ndef parse_args():\n    # Use to grab common cli options\n    @ConfigParser.common_options\n    def options_func():\n        pass\n\n    def extract_click_params(decorated_function):\n        if hasattr(decorated_function, \"__click_params__\"):\n            return decorated_function.__click_params__\n        return []\n\n    cmd = CustomClickPrinter(\"Marker app.\")\n    extracted_params = extract_click_params(options_func)\n    cmd.params.extend(extracted_params)\n    ctx = click.Context(cmd)\n    try:\n        cmd_args = sys.argv[1:]\n        cmd.parse_args(ctx, cmd_args)\n        return ctx.params\n    except click.exceptions.ClickException as e:\n        return {\"error\": str(e)}\n\n\n@st.cache_resource()\ndef load_models():\n    return create_model_dict()\n\n\ndef open_pdf(pdf_file):\n    stream = io.BytesIO(pdf_file.getvalue())\n    return pypdfium2.PdfDocument(stream)\n\n\ndef img_to_html(img, img_alt):\n    img_bytes = io.BytesIO()\n    img.save(img_bytes, format=settings.OUTPUT_IMAGE_FORMAT)\n    img_bytes = img_bytes.getvalue()\n    encoded = base64.b64encode(img_bytes).decode()\n    img_html = f'<img src=\"data:image/{settings.OUTPUT_IMAGE_FORMAT.lower()};base64,{encoded}\" alt=\"{img_alt}\" style=\"max-width: 100%;\">'\n    return img_html\n\n\n@st.cache_data()\ndef get_page_image(pdf_file, page_num, dpi=96):\n    if \"pdf\" in pdf_file.type:\n        doc = open_pdf(pdf_file)\n        page = doc[page_num]\n        png_image = (\n            page.render(\n                scale=dpi / 72,\n            )\n            .to_pil()\n            .convert(\"RGB\")\n        )\n    else:\n        png_image = Image.open(pdf_file).convert(\"RGB\")\n    return png_image\n\n\n@st.cache_data()\ndef page_count(pdf_file: UploadedFile):\n    if \"pdf\" in pdf_file.type:\n        doc = open_pdf(pdf_file)\n        return len(doc) - 1\n    else:\n        return 1\n\n\ndef pillow_image_to_base64_string(img: Image) -> str:\n    buffered = io.BytesIO()\n    img.save(buffered, format=\"JPEG\")\n    return base64.b64encode(buffered.getvalue()).decode(\"utf-8\")\n\n\ndef extract_root_pydantic_class(schema_code: str) -> Optional[str]:\n    try:\n        # Parse the code into an AST\n        tree = ast.parse(schema_code)\n\n        # Find all class definitions that inherit from BaseModel\n        class_names = set()\n        class_info = {}  # Store information about each class\n\n        for node in ast.walk(tree):\n            if isinstance(node, ast.ClassDef):\n                # Check if this class inherits from BaseModel\n                is_pydantic = False\n                for base in node.bases:\n                    if isinstance(base, ast.Name) and base.id == \"BaseModel\":\n                        is_pydantic = True\n                        break\n\n                if is_pydantic:\n                    class_names.add(node.name)\n                    class_info[node.name] = {\n                        \"references\": set(),  # Classes this class references\n                        \"fields\": [],  # Field names in this class\n                    }\n\n                    # Extract field information\n                    for item in node.body:\n                        if isinstance(item, ast.AnnAssign) and isinstance(\n                            item.target, ast.Name\n                        ):\n                            field_name = item.target.id\n                            class_info[node.name][\"fields\"].append(field_name)\n\n                            # Check if this field references another class\n                            annotation_str = ast.unparse(item.annotation)\n\n                            # Look for List[ClassName], Optional[ClassName], Dict[Any, ClassName], etc.\n                            for other_class in class_names:\n                                pattern = rf\"(?:List|Dict|Set|Tuple|Optional|Union)?\\[.*{other_class}.*\\]|{other_class}\"\n                                if re.search(pattern, annotation_str):\n                                    class_info[node.name][\"references\"].add(other_class)\n\n        if len(class_names) == 1:\n            return list(class_names)[0]\n\n        referenced_classes = set()\n        for class_name, info in class_info.items():\n            referenced_classes.update(info[\"references\"])\n\n        # Find classes that reference others but aren't referenced themselves (potential roots)\n        root_candidates = set()\n        for class_name, info in class_info.items():\n            if info[\"references\"] and class_name not in referenced_classes:\n                root_candidates.add(class_name)\n\n        # If we found exactly one root candidate, return it\n        if len(root_candidates) == 1:\n            return list(root_candidates)[0]\n\n        return None\n    except Exception as e:\n        print(f\"Error parsing schema: {e}\")\n        return None\n\n\ndef get_root_class(schema_code: str) -> Optional[BaseModel]:\n    root_class_name = extract_root_pydantic_class(schema_code)\n\n    if not root_class_name:\n        return None\n\n    if \"from pydantic\" not in schema_code:\n        schema_code = \"from pydantic import BaseModel\\n\" + schema_code\n    if \"from typing\" not in schema_code:\n        schema_code = (\n            \"from typing import List, Dict, Optional, Set, Tuple, Union, Any\\n\\n\"\n            + schema_code\n        )\n\n    # Execute the code in a new namespace\n    namespace = {}\n    exec(schema_code, namespace)\n\n    # Return the root class object\n    return namespace.get(root_class_name)\n"
  },
  {
    "path": "marker/scripts/convert.py",
    "content": "import atexit\nimport os\nimport time\n\nimport psutil\nimport torch\n\nfrom marker.utils.batch import get_batch_sizes_worker_counts\n\n# Ensure threads don't contend\nos.environ[\"MKL_DYNAMIC\"] = \"FALSE\"\nos.environ[\"OMP_DYNAMIC\"] = \"FALSE\"\nos.environ[\"OMP_NUM_THREADS\"] = \"2\"  # Avoid OpenMP issues with multiprocessing\nos.environ[\"OPENBLAS_NUM_THREADS\"] = \"2\"\nos.environ[\"MKL_NUM_THREADS\"] = \"2\"\nos.environ[\"GRPC_VERBOSITY\"] = \"ERROR\"\nos.environ[\"GLOG_minloglevel\"] = \"2\"\nos.environ[\"PYTORCH_ENABLE_MPS_FALLBACK\"] = (\n    \"1\"  # Transformers uses .isin for a simple op, which is not supported on MPS\n)\nos.environ[\"IN_STREAMLIT\"] = \"true\"  # Avoid multiprocessing inside surya\n\nimport math\nimport traceback\n\nimport click\nimport torch.multiprocessing as mp\nfrom tqdm import tqdm\nimport gc\n\nfrom marker.config.parser import ConfigParser\nfrom marker.config.printer import CustomClickPrinter\nfrom marker.logger import configure_logging, get_logger\nfrom marker.models import create_model_dict\nfrom marker.output import output_exists, save_output\nfrom marker.utils.gpu import GPUManager\n\nconfigure_logging()\nlogger = get_logger()\n\n\ndef worker_init():\n    model_dict = create_model_dict()\n\n    global model_refs\n    model_refs = model_dict\n\n    # Ensure we clean up the model references on exit\n    atexit.register(worker_exit)\n\n\ndef worker_exit():\n    global model_refs\n    try:\n        del model_refs\n    except Exception:\n        pass\n\n\ndef process_single_pdf(args):\n    page_count = 0\n    fpath, cli_options = args\n    torch.set_num_threads(cli_options[\"total_torch_threads\"])\n    del cli_options[\"total_torch_threads\"]\n\n    config_parser = ConfigParser(cli_options)\n\n    out_folder = config_parser.get_output_folder(fpath)\n    base_name = config_parser.get_base_filename(fpath)\n    if cli_options.get(\"skip_existing\") and output_exists(out_folder, base_name):\n        return page_count\n\n    converter_cls = config_parser.get_converter_cls()\n    config_dict = config_parser.generate_config_dict()\n    config_dict[\"disable_tqdm\"] = True\n\n    try:\n        if cli_options.get(\"debug_print\"):\n            logger.debug(f\"Converting {fpath}\")\n        converter = converter_cls(\n            config=config_dict,\n            artifact_dict=model_refs,\n            processor_list=config_parser.get_processors(),\n            renderer=config_parser.get_renderer(),\n            llm_service=config_parser.get_llm_service(),\n        )\n        rendered = converter(fpath)\n        out_folder = config_parser.get_output_folder(fpath)\n        save_output(rendered, out_folder, base_name)\n        page_count = converter.page_count\n\n        if cli_options.get(\"debug_print\"):\n            logger.debug(f\"Converted {fpath}\")\n        del rendered\n        del converter\n    except Exception as e:\n        logger.error(f\"Error converting {fpath}: {e}\")\n        traceback.print_exc()\n    finally:\n        gc.collect()\n\n    return page_count\n\n\n@click.command(cls=CustomClickPrinter)\n@click.argument(\"in_folder\", type=str)\n@click.option(\"--chunk_idx\", type=int, default=0, help=\"Chunk index to convert\")\n@click.option(\n    \"--num_chunks\",\n    type=int,\n    default=1,\n    help=\"Number of chunks being processed in parallel\",\n)\n@click.option(\n    \"--max_files\", type=int, default=None, help=\"Maximum number of pdfs to convert\"\n)\n@click.option(\n    \"--skip_existing\",\n    is_flag=True,\n    default=False,\n    help=\"Skip existing converted files.\",\n)\n@click.option(\n    \"--debug_print\", is_flag=True, default=False, help=\"Print debug information.\"\n)\n@click.option(\n    \"--max_tasks_per_worker\",\n    type=int,\n    default=10,\n    help=\"Maximum number of tasks per worker process before recycling.\",\n)\n@click.option(\n    \"--workers\",\n    type=int,\n    default=None,\n    help=\"Number of worker processes to use.  Set automatically by default, but can be overridden.\",\n)\n@ConfigParser.common_options\ndef convert_cli(in_folder: str, **kwargs):\n    total_pages = 0\n    in_folder = os.path.abspath(in_folder)\n    files = [os.path.join(in_folder, f) for f in os.listdir(in_folder)]\n    files = [f for f in files if os.path.isfile(f)]\n\n    # Handle chunks if we're processing in parallel\n    # Ensure we get all files into a chunk\n    chunk_size = math.ceil(len(files) / kwargs[\"num_chunks\"])\n    start_idx = kwargs[\"chunk_idx\"] * chunk_size\n    end_idx = start_idx + chunk_size\n    files_to_convert = files[start_idx:end_idx]\n\n    # Limit files converted if needed\n    if kwargs[\"max_files\"]:\n        files_to_convert = files_to_convert[: kwargs[\"max_files\"]]\n\n    # Disable nested multiprocessing\n    kwargs[\"disable_multiprocessing\"] = True\n\n    try:\n        mp.set_start_method(\"spawn\")  # Required for CUDA, forkserver doesn't work\n    except RuntimeError:\n        raise RuntimeError(\n            \"Set start method to spawn twice. This may be a temporary issue with the script. Please try running it again.\"\n        )\n\n    chunk_idx = kwargs[\"chunk_idx\"]\n\n    # Use GPU context manager for automatic setup/cleanup\n    with GPUManager(chunk_idx) as gpu_manager:\n        batch_sizes, workers = get_batch_sizes_worker_counts(gpu_manager, 7)\n\n        # Override workers if specified\n        if kwargs[\"workers\"] is not None:\n            workers = kwargs[\"workers\"]\n\n        # Set proper batch sizes and thread counts\n        total_processes = max(1, min(len(files_to_convert), workers))\n        kwargs[\"total_torch_threads\"] = max(\n            2, psutil.cpu_count(logical=False) // total_processes\n        )\n        kwargs.update(batch_sizes)\n\n        logger.info(\n            f\"Converting {len(files_to_convert)} pdfs in chunk {kwargs['chunk_idx'] + 1}/{kwargs['num_chunks']} with {total_processes} processes and saving to {kwargs['output_dir']}\"\n        )\n        task_args = [(f, kwargs) for f in files_to_convert]\n\n        start_time = time.time()\n        with mp.Pool(\n            processes=total_processes,\n            initializer=worker_init,\n            maxtasksperchild=kwargs[\"max_tasks_per_worker\"],\n        ) as pool:\n            pbar = tqdm(total=len(task_args), desc=\"Processing PDFs\", unit=\"pdf\")\n            for page_count in pool.imap_unordered(process_single_pdf, task_args):\n                pbar.update(1)\n                total_pages += page_count\n            pbar.close()\n\n        total_time = time.time() - start_time\n        print(\n            f\"Inferenced {total_pages} pages in {total_time:.2f} seconds, for a throughput of {total_pages / total_time:.2f} pages/sec for chunk {chunk_idx + 1}/{kwargs['num_chunks']}\"\n        )\n"
  },
  {
    "path": "marker/scripts/convert_single.py",
    "content": "import os\n\nos.environ[\"GRPC_VERBOSITY\"] = \"ERROR\"\nos.environ[\"GLOG_minloglevel\"] = \"2\"\nos.environ[\"PYTORCH_ENABLE_MPS_FALLBACK\"] = (\n    \"1\"  # Transformers uses .isin for a simple op, which is not supported on MPS\n)\n\nimport time\nimport click\n\nfrom marker.config.parser import ConfigParser\nfrom marker.config.printer import CustomClickPrinter\nfrom marker.logger import configure_logging, get_logger\nfrom marker.models import create_model_dict\nfrom marker.output import save_output\n\nconfigure_logging()\nlogger = get_logger()\n\n\n@click.command(cls=CustomClickPrinter, help=\"Convert a single PDF to markdown.\")\n@click.argument(\"fpath\", type=str)\n@ConfigParser.common_options\ndef convert_single_cli(fpath: str, **kwargs):\n    models = create_model_dict()\n    start = time.time()\n    config_parser = ConfigParser(kwargs)\n\n    converter_cls = config_parser.get_converter_cls()\n    converter = converter_cls(\n        config=config_parser.generate_config_dict(),\n        artifact_dict=models,\n        processor_list=config_parser.get_processors(),\n        renderer=config_parser.get_renderer(),\n        llm_service=config_parser.get_llm_service(),\n    )\n    rendered = converter(fpath)\n    out_folder = config_parser.get_output_folder(fpath)\n    save_output(rendered, out_folder, config_parser.get_base_filename(fpath))\n\n    logger.info(f\"Saved markdown to {out_folder}\")\n    logger.info(f\"Total time: {time.time() - start}\")\n"
  },
  {
    "path": "marker/scripts/extraction_app.py",
    "content": "import json\nimport os\n\nfrom streamlit_ace import st_ace\nfrom pydantic import BaseModel\n\nfrom marker.converters.extraction import ExtractionConverter\nfrom marker.scripts.common import (\n    parse_args,\n    load_models,\n    get_page_image,\n    page_count,\n    get_root_class,\n)\n\nos.environ[\"PYTORCH_ENABLE_MPS_FALLBACK\"] = \"1\"\nos.environ[\"IN_STREAMLIT\"] = \"true\"\n\nfrom streamlit.runtime.uploaded_file_manager import UploadedFile\n\nimport tempfile\nfrom typing import Any, Dict\n\nimport streamlit as st\n\nfrom marker.config.parser import ConfigParser\n\n\ndef extract_data(\n    fname: str, config: dict, schema: str, markdown: str | None = None\n) -> (str, Dict[str, Any], dict):\n    config[\"pdftext_workers\"] = 1\n    config[\"page_schema\"] = schema\n    config[\"existing_markdown\"] = markdown\n    config_parser = ConfigParser(config)\n    config_dict = config_parser.generate_config_dict()\n\n    converter_cls = ExtractionConverter\n    converter = converter_cls(\n        config=config_dict,\n        artifact_dict=model_dict,\n        processor_list=config_parser.get_processors(),\n        renderer=config_parser.get_renderer(),\n        llm_service=config_parser.get_llm_service(),\n    )\n    return converter(fname)\n\n\nst.set_page_config(layout=\"wide\")\ncol1, col2 = st.columns([0.5, 0.5])\n\nmodel_dict = load_models()\ncli_options = parse_args()\n\nst.markdown(\"\"\"\n# Marker Extraction Demo\n\nThis app will let you use marker to do structured extraction.\n\nWarning: This can execute untrusted code entered into the schema panel.\n\"\"\")\n\nin_file: UploadedFile = st.sidebar.file_uploader(\n    \"PDF, document, or image file:\",\n    type=[\"pdf\", \"png\", \"jpg\", \"jpeg\", \"gif\", \"pptx\", \"docx\", \"xlsx\", \"html\", \"epub\"],\n)\n\n# Initialize session state variables\nif \"rendered_pydantic_schema\" not in st.session_state:\n    st.session_state.rendered_pydantic_schema = \"\"\n\nif \"markdown\" not in st.session_state:\n    st.session_state.markdown = \"\"\n\nif \"current_file_id\" not in st.session_state:\n    st.session_state.current_file_id = None\n\n# Detect file changes and clear markdown when new file is uploaded\nif in_file is not None:\n    # Create a unique identifier for the current file\n    current_file_id = f\"{in_file.name}_{in_file.size}_{hash(in_file.getvalue())}\"\n\n    # Check if this is a new file\n    if st.session_state.current_file_id != current_file_id:\n        st.session_state.current_file_id = current_file_id\n        st.session_state.markdown = \"\"  # Clear markdown for new file\nelse:\n    # No file uploaded, clear the current file ID\n    if st.session_state.current_file_id is not None:\n        st.session_state.current_file_id = None\n        st.session_state.markdown = \"\"  # Clear markdown when no file\n        st.session_state.rendered_pydantic_schema = \"\"\n\nif in_file is None:\n    st.stop()\n\nfiletype = in_file.type\n\nwith col1:\n    page_count = page_count(in_file)\n    page_number = st.number_input(\n        f\"Page number out of {page_count}:\", min_value=0, value=0, max_value=page_count\n    )\n    pil_image = get_page_image(in_file, page_number)\n    st.image(pil_image, use_container_width=True)\nwith col2:\n    tab1, tab2 = st.tabs([\"JSON Schema\", \"Pydantic Schema\"])\n\n    # Initialize schema variable\n    schema = None\n\n    with tab1:\n        st.write(\"Enter an existing JSON schema here:\")\n        default_json_value = (\n            st.session_state.rendered_pydantic_schema\n            if st.session_state.rendered_pydantic_schema\n            else \"\"\n        )\n        json_schema_input = st.text_area(\n            \"JSON Schema\",\n            value=default_json_value,\n            height=300,\n            placeholder='{\"type\": \"object\", \"properties\": {\"name\": {\"type\": \"string\"}, \"age\": {\"type\": \"integer\"}}}',\n            key=\"json_schema_input\",\n            label_visibility=\"collapsed\",\n        )\n\n        # Set schema if JSON input is provided\n        if json_schema_input and json_schema_input.strip():\n            try:\n                # Validate JSON\n                json.loads(json_schema_input)\n                schema = json_schema_input.strip()\n                st.success(\"✅ Valid JSON schema detected\")\n            except json.JSONDecodeError as e:\n                st.error(f\"❌ Invalid JSON: {e}\")\n                schema = None\n\n    with tab2:\n        st.write(\"Enter pydantic schema here:\")\n        pydantic_schema_input = st_ace(\n            value=\"\"\"from pydantic import BaseModel\n\nclass Schema(BaseModel):\n    # Add your fields here\n    # Example:\n    name: str\n    age: int\n    # email: str\n    pass\"\"\",\n            language=\"python\",\n            height=300,\n            key=\"pydantic_editor\",\n        )\n\n        render_schema = st.button(\"🔄 Render Pydantic schema to JSON\")\n\n        if render_schema and pydantic_schema_input:\n            try:\n                pydantic_root: BaseModel = get_root_class(pydantic_schema_input)\n                json_schema = pydantic_root.model_json_schema()\n                schema = json.dumps(json_schema, indent=2)\n                st.success(\"✅ Schema rendered successfully!\")\n                st.json(json_schema)\n                st.session_state.rendered_pydantic_schema = schema\n            except Exception as e:\n                st.error(f\"❌ Could not parse your schema: {e}\")\n                schema = None\n        elif (\n            pydantic_schema_input\n            and pydantic_schema_input.strip()\n            and not render_schema\n        ):\n            # If there's Pydantic code but not rendered yet, show a message\n            if (\n                \"class Schema(BaseModel):\" in pydantic_schema_input\n                and \"pass\" not in pydantic_schema_input\n            ):\n                st.info(\n                    \"💡 Click 'Render Pydantic schema to JSON' to convert your Pydantic model to JSON schema\"\n                )\n\n# Move the run logic outside of col2\nrun_marker = st.sidebar.button(\"Run Extraction\")\n\nuse_llm = st.sidebar.checkbox(\n    \"Use LLM\", help=\"Use LLM for higher quality text\", value=False\n)\nforce_ocr = st.sidebar.checkbox(\"Force OCR\", help=\"Force OCR on all pages\", value=False)\nstrip_existing_ocr = st.sidebar.checkbox(\n    \"Strip existing OCR\",\n    help=\"Strip existing OCR text from the PDF and re-OCR.\",\n    value=False,\n)\n\n# Check if schema is provided before running\nif run_marker:\n    if not schema:\n        st.error(\n            \"❌ Please provide a schema in either the JSON Schema or Pydantic Schema tab before running extraction.\"\n        )\n        st.stop()\n\n    # Run Marker\n    with tempfile.TemporaryDirectory() as tmp_dir:\n        temp_pdf = os.path.join(tmp_dir, \"temp.pdf\")\n        with open(temp_pdf, \"wb\") as f:\n            f.write(in_file.getvalue())\n\n        cli_options.update(\n            {\n                \"force_ocr\": force_ocr,\n                \"use_llm\": use_llm,\n                \"strip_existing_ocr\": strip_existing_ocr,\n            }\n        )\n\n        try:\n            rendered = extract_data(\n                temp_pdf, cli_options, schema, st.session_state.markdown\n            )\n\n            with col2:\n                st.write(\"## Output JSON\")\n                st.json(rendered.model_dump(exclude=[\"original_markdown\"]))\n                st.session_state.markdown = rendered.original_markdown\n\n        except Exception as e:\n            st.error(f\"❌ Extraction failed: {e}\")\n\nelse:\n    # Show instruction when not running\n    if not schema:\n        st.info(\"📝 Please provide a schema and click 'Run Extraction' to begin.\")\n"
  },
  {
    "path": "marker/scripts/file_to_s3.py",
    "content": "import json\nimport shutil\nimport datetime\nfrom pathlib import Path\nimport boto3\n\nfrom huggingface_hub import snapshot_download\n\nimport click\n\nS3_API_URL = \"https://1afbe4656a6b40d982ab5e730a39f6b9.r2.cloudflarestorage.com\"\n\n@click.command(help=\"Uploads files to an S3 bucket\")\n@click.argument(\"filepath\", type=str)\n@click.argument(\"s3_path\", type=str)\n@click.option(\"--bucket_name\", type=str, default=\"datalab\")\n@click.option(\"--access_key_id\", type=str, default=\"<access_key_id>\")\n@click.option(\"--access_key_secret\", type=str, default=\"<access_key_secret>\")\ndef main(filepath: str, s3_path: str, bucket_name: str, access_key_id: str, access_key_secret: str):\n    filepath = Path(filepath)\n    # Upload the files to S3\n    s3_client = boto3.client(\n        's3',\n        endpoint_url=S3_API_URL,\n        aws_access_key_id=access_key_id,\n        aws_secret_access_key=access_key_secret,\n        region_name=\"enam\"\n    )\n\n    s3_key = f\"{s3_path}/{filepath.name}\"\n\n    try:\n        s3_client.upload_file(\n            str(filepath),\n            bucket_name,\n            s3_key\n        )\n    except Exception as e:\n        print(f\"Error uploading {filepath}: {str(e)}\")\n\n    print(f\"Uploaded files to {s3_path}\")\n\nif __name__ == \"__main__\":\n    main()\n\n\n\n"
  },
  {
    "path": "marker/scripts/run_streamlit_app.py",
    "content": "import subprocess\nimport os\nimport sys\n\n\ndef streamlit_app_cli(app_name: str = \"streamlit_app.py\"):\n    argv = sys.argv[1:]\n    cur_dir = os.path.dirname(os.path.abspath(__file__))\n    app_path = os.path.join(cur_dir, app_name)\n    cmd = [\n        \"streamlit\",\n        \"run\",\n        app_path,\n        \"--server.fileWatcherType\",\n        \"none\",\n        \"--server.headless\",\n        \"true\",\n    ]\n    if argv:\n        cmd += [\"--\"] + argv\n    subprocess.run(cmd, env={**os.environ, \"IN_STREAMLIT\": \"true\"})\n\n\ndef extraction_app_cli():\n    streamlit_app_cli(\"extraction_app.py\")\n"
  },
  {
    "path": "marker/scripts/server.py",
    "content": "import traceback\n\nimport click\nimport os\n\nfrom pydantic import BaseModel, Field\nfrom starlette.responses import HTMLResponse\n\nfrom marker.config.parser import ConfigParser\nfrom marker.output import text_from_rendered\n\nimport base64\nfrom contextlib import asynccontextmanager\nfrom typing import Optional, Annotated\nimport io\n\nfrom fastapi import FastAPI, Form, File, UploadFile\nfrom marker.converters.pdf import PdfConverter\nfrom marker.models import create_model_dict\nfrom marker.settings import settings\n\napp_data = {}\n\n\nUPLOAD_DIRECTORY = \"./uploads\"\nos.makedirs(UPLOAD_DIRECTORY, exist_ok=True)\n\n\n@asynccontextmanager\nasync def lifespan(app: FastAPI):\n    app_data[\"models\"] = create_model_dict()\n\n    yield\n\n    if \"models\" in app_data:\n        del app_data[\"models\"]\n\n\napp = FastAPI(lifespan=lifespan)\n\n\n@app.get(\"/\")\nasync def root():\n    return HTMLResponse(\n        \"\"\"\n<h1>Marker API</h1>\n<ul>\n    <li><a href=\"/docs\">API Documentation</a></li>\n    <li><a href=\"/marker\">Run marker (post request only)</a></li>\n</ul>\n\"\"\"\n    )\n\n\nclass CommonParams(BaseModel):\n    filepath: Annotated[\n        Optional[str], Field(description=\"The path to the PDF file to convert.\")\n    ]\n    page_range: Annotated[\n        Optional[str],\n        Field(\n            description=\"Page range to convert, specify comma separated page numbers or ranges.  Example: 0,5-10,20\",\n            example=None,\n        ),\n    ] = None\n    force_ocr: Annotated[\n        bool,\n        Field(\n            description=\"Force OCR on all pages of the PDF.  Defaults to False.  This can lead to worse results if you have good text in your PDFs (which is true in most cases).\"\n        ),\n    ] = False\n    paginate_output: Annotated[\n        bool,\n        Field(\n            description=\"Whether to paginate the output.  Defaults to False.  If set to True, each page of the output will be separated by a horizontal rule that contains the page number (2 newlines, {PAGE_NUMBER}, 48 - characters, 2 newlines).\"\n        ),\n    ] = False\n    output_format: Annotated[\n        str,\n        Field(\n            description=\"The format to output the text in.  Can be 'markdown', 'json', or 'html'.  Defaults to 'markdown'.\"\n        ),\n    ] = \"markdown\"\n\n\nasync def _convert_pdf(params: CommonParams):\n    assert params.output_format in [\"markdown\", \"json\", \"html\", \"chunks\"], (\n        \"Invalid output format\"\n    )\n    try:\n        options = params.model_dump()\n        config_parser = ConfigParser(options)\n        config_dict = config_parser.generate_config_dict()\n        config_dict[\"pdftext_workers\"] = 1\n        converter_cls = PdfConverter\n        converter = converter_cls(\n            config=config_dict,\n            artifact_dict=app_data[\"models\"],\n            processor_list=config_parser.get_processors(),\n            renderer=config_parser.get_renderer(),\n            llm_service=config_parser.get_llm_service(),\n        )\n        rendered = converter(params.filepath)\n        text, _, images = text_from_rendered(rendered)\n        metadata = rendered.metadata\n    except Exception as e:\n        traceback.print_exc()\n        return {\n            \"success\": False,\n            \"error\": str(e),\n        }\n\n    encoded = {}\n    for k, v in images.items():\n        byte_stream = io.BytesIO()\n        v.save(byte_stream, format=settings.OUTPUT_IMAGE_FORMAT)\n        encoded[k] = base64.b64encode(byte_stream.getvalue()).decode(\n            settings.OUTPUT_ENCODING\n        )\n\n    return {\n        \"format\": params.output_format,\n        \"output\": text,\n        \"images\": encoded,\n        \"metadata\": metadata,\n        \"success\": True,\n    }\n\n\n@app.post(\"/marker\")\nasync def convert_pdf(params: CommonParams):\n    return await _convert_pdf(params)\n\n\n@app.post(\"/marker/upload\")\nasync def convert_pdf_upload(\n    page_range: Optional[str] = Form(default=None),\n    force_ocr: Optional[bool] = Form(default=False),\n    paginate_output: Optional[bool] = Form(default=False),\n    output_format: Optional[str] = Form(default=\"markdown\"),\n    file: UploadFile = File(\n        ..., description=\"The PDF file to convert.\", media_type=\"application/pdf\"\n    ),\n):\n    upload_path = os.path.join(UPLOAD_DIRECTORY, file.filename)\n    with open(upload_path, \"wb+\") as upload_file:\n        file_contents = await file.read()\n        upload_file.write(file_contents)\n\n    params = CommonParams(\n        filepath=upload_path,\n        page_range=page_range,\n        force_ocr=force_ocr,\n        paginate_output=paginate_output,\n        output_format=output_format,\n    )\n    results = await _convert_pdf(params)\n    os.remove(upload_path)\n    return results\n\n\n@click.command()\n@click.option(\"--port\", type=int, default=8000, help=\"Port to run the server on\")\n@click.option(\"--host\", type=str, default=\"127.0.0.1\", help=\"Host to run the server on\")\ndef server_cli(port: int, host: str):\n    import uvicorn\n\n    # Run the server\n    uvicorn.run(\n        app,\n        host=host,\n        port=port,\n    )\n"
  },
  {
    "path": "marker/scripts/streamlit_app.py",
    "content": "import os\n\nfrom marker.scripts.common import (\n    load_models,\n    parse_args,\n    img_to_html,\n    get_page_image,\n    page_count,\n)\n\nos.environ[\"PYTORCH_ENABLE_MPS_FALLBACK\"] = \"1\"\nos.environ[\"IN_STREAMLIT\"] = \"true\"\n\nfrom marker.settings import settings\nfrom streamlit.runtime.uploaded_file_manager import UploadedFile\n\nimport re\nimport tempfile\nfrom typing import Any, Dict\n\nimport streamlit as st\nfrom PIL import Image\n\nfrom marker.converters.pdf import PdfConverter\nfrom marker.config.parser import ConfigParser\nfrom marker.output import text_from_rendered\n\n\ndef convert_pdf(fname: str, config_parser: ConfigParser) -> (str, Dict[str, Any], dict):\n    config_dict = config_parser.generate_config_dict()\n    config_dict[\"pdftext_workers\"] = 1\n    converter_cls = PdfConverter\n    converter = converter_cls(\n        config=config_dict,\n        artifact_dict=model_dict,\n        processor_list=config_parser.get_processors(),\n        renderer=config_parser.get_renderer(),\n        llm_service=config_parser.get_llm_service(),\n    )\n    return converter(fname)\n\n\ndef markdown_insert_images(markdown, images):\n    image_tags = re.findall(\n        r'(!\\[(?P<image_title>[^\\]]*)\\]\\((?P<image_path>[^\\)\"\\s]+)\\s*([^\\)]*)\\))',\n        markdown,\n    )\n\n    for image in image_tags:\n        image_markdown = image[0]\n        image_alt = image[1]\n        image_path = image[2]\n        if image_path in images:\n            markdown = markdown.replace(\n                image_markdown, img_to_html(images[image_path], image_alt)\n            )\n    return markdown\n\n\nst.set_page_config(layout=\"wide\")\ncol1, col2 = st.columns([0.5, 0.5])\n\nmodel_dict = load_models()\ncli_options = parse_args()\n\nst.markdown(\"\"\"\n# Marker Demo\n\nThis app will let you try marker, a PDF or image -> Markdown, HTML, JSON converter. It works with any language, and extracts images, tables, equations, etc.\n\nFind the project [here](https://github.com/VikParuchuri/marker).\n\"\"\")\n\nin_file: UploadedFile = st.sidebar.file_uploader(\n    \"PDF, document, or image file:\",\n    type=[\"pdf\", \"png\", \"jpg\", \"jpeg\", \"gif\", \"pptx\", \"docx\", \"xlsx\", \"html\", \"epub\"],\n)\n\nif in_file is None:\n    st.stop()\n\nfiletype = in_file.type\n\nwith col1:\n    page_count = page_count(in_file)\n    page_number = st.number_input(\n        f\"Page number out of {page_count}:\", min_value=0, value=0, max_value=page_count\n    )\n    pil_image = get_page_image(in_file, page_number)\n    st.image(pil_image, use_container_width=True)\n\npage_range = st.sidebar.text_input(\n    \"Page range to parse, comma separated like 0,5-10,20\",\n    value=f\"{page_number}-{page_number}\",\n)\noutput_format = st.sidebar.selectbox(\n    \"Output format\", [\"markdown\", \"json\", \"html\", \"chunks\"], index=0\n)\nrun_marker = st.sidebar.button(\"Run Marker\")\n\nuse_llm = st.sidebar.checkbox(\n    \"Use LLM\", help=\"Use LLM for higher quality processing\", value=False\n)\nforce_ocr = st.sidebar.checkbox(\"Force OCR\", help=\"Force OCR on all pages\", value=False)\nstrip_existing_ocr = st.sidebar.checkbox(\n    \"Strip existing OCR\",\n    help=\"Strip existing OCR text from the PDF and re-OCR.\",\n    value=False,\n)\ndebug = st.sidebar.checkbox(\"Debug\", help=\"Show debug information\", value=False)\ndisable_ocr_math = st.sidebar.checkbox(\n    \"Disable math\",\n    help=\"Disable math in OCR output - no inline math\",\n    value=False,\n)\n\nif not run_marker:\n    st.stop()\n\n# Run Marker\nwith tempfile.TemporaryDirectory() as tmp_dir:\n    temp_pdf = os.path.join(tmp_dir, \"temp.pdf\")\n    with open(temp_pdf, \"wb\") as f:\n        f.write(in_file.getvalue())\n\n    cli_options.update(\n        {\n            \"output_format\": output_format,\n            \"page_range\": page_range,\n            \"force_ocr\": force_ocr,\n            \"debug\": debug,\n            \"output_dir\": settings.DEBUG_DATA_FOLDER if debug else None,\n            \"use_llm\": use_llm,\n            \"strip_existing_ocr\": strip_existing_ocr,\n            \"disable_ocr_math\": disable_ocr_math,\n        }\n    )\n    config_parser = ConfigParser(cli_options)\n    rendered = convert_pdf(temp_pdf, config_parser)\n    page_range = config_parser.generate_config_dict()[\"page_range\"]\n    first_page = page_range[0] if page_range else 0\n\ntext, ext, images = text_from_rendered(rendered)\nwith col2:\n    if output_format == \"markdown\":\n        text = markdown_insert_images(text, images)\n        st.markdown(text, unsafe_allow_html=True)\n    elif output_format == \"json\":\n        st.json(text)\n    elif output_format == \"html\":\n        st.html(text)\n    elif output_format == \"chunks\":\n        st.json(text)\n\nif debug:\n    with col1:\n        debug_data_path = rendered.metadata.get(\"debug_data_path\")\n        if debug_data_path:\n            pdf_image_path = os.path.join(debug_data_path, f\"pdf_page_{first_page}.png\")\n            img = Image.open(pdf_image_path)\n            st.image(img, caption=\"PDF debug image\", use_container_width=True)\n            layout_image_path = os.path.join(\n                debug_data_path, f\"layout_page_{first_page}.png\"\n            )\n            img = Image.open(layout_image_path)\n            st.image(img, caption=\"Layout debug image\", use_container_width=True)\n        st.write(\"Raw output:\")\n        st.code(text, language=output_format)\n"
  },
  {
    "path": "marker/services/__init__.py",
    "content": "from typing import Optional, List, Annotated\nfrom io import BytesIO\n\nimport PIL\nfrom pydantic import BaseModel\n\nfrom marker.schema.blocks import Block\nfrom marker.util import assign_config, verify_config_keys\nimport base64\n\n\nclass BaseService:\n    timeout: Annotated[int, \"The timeout to use for the service.\"] = 30\n    max_retries: Annotated[\n        int, \"The maximum number of retries to use for the service.\"\n    ] = 2\n    retry_wait_time: Annotated[int, \"The wait time between retries.\"] = 3\n    max_output_tokens: Annotated[\n        int, \"The maximum number of output tokens to generate.\"\n    ] = None\n\n    def img_to_base64(self, img: PIL.Image.Image, format: str = \"WEBP\"):\n        image_bytes = BytesIO()\n        img.save(image_bytes, format=format)\n        return base64.b64encode(image_bytes.getvalue()).decode(\"utf-8\")\n\n    def process_images(self, images: List[PIL.Image.Image]) -> list:\n        raise NotImplementedError\n\n    def format_image_for_llm(self, image):\n        if not image:\n            return []\n\n        if not isinstance(image, list):\n            image = [image]\n\n        image_parts = self.process_images(image)\n        return image_parts\n\n    def __init__(self, config: Optional[BaseModel | dict] = None):\n        assign_config(self, config)\n\n        # Ensure we have all necessary fields filled out (API keys, etc.)\n        verify_config_keys(self)\n\n    def __call__(\n        self,\n        prompt: str,\n        image: PIL.Image.Image | List[PIL.Image.Image] | None,\n        block: Block | None,\n        response_schema: type[BaseModel],\n        max_retries: int | None = None,\n        timeout: int | None = None,\n    ):\n        raise NotImplementedError\n"
  },
  {
    "path": "marker/services/azure_openai.py",
    "content": "import json\nimport time\nfrom typing import Annotated, List\n\nimport PIL\nfrom marker.logger import get_logger\nfrom openai import AzureOpenAI, APITimeoutError, RateLimitError\nfrom PIL import Image\nfrom pydantic import BaseModel\n\nfrom marker.schema.blocks import Block\nfrom marker.services import BaseService\n\nlogger = get_logger()\n\n\nclass AzureOpenAIService(BaseService):\n    azure_endpoint: Annotated[\n        str, \"The Azure OpenAI endpoint URL. No trailing slash.\"\n    ] = None\n    azure_api_key: Annotated[\n        str, \"The API key to use for the Azure OpenAI service.\"\n    ] = None\n    azure_api_version: Annotated[str, \"The Azure OpenAI API version to use.\"] = None\n    deployment_name: Annotated[\n        str, \"The deployment name for the Azure OpenAI model.\"\n    ] = None\n\n    def process_images(self, images: List[PIL.Image.Image]) -> list:\n        if isinstance(images, Image.Image):\n            images = [images]\n\n        return [\n            {\n                \"type\": \"image_url\",\n                \"image_url\": {\n                    \"url\": \"data:image/webp;base64,{}\".format(self.img_to_base64(img)),\n                },\n            }\n            for img in images\n        ]\n\n    def __call__(\n        self,\n        prompt: str,\n        image: PIL.Image.Image | List[PIL.Image.Image] | None,\n        block: Block | None,\n        response_schema: type[BaseModel],\n        max_retries: int | None = None,\n        timeout: int | None = None,\n    ):\n        if max_retries is None:\n            max_retries = self.max_retries\n\n        if timeout is None:\n            timeout = self.timeout\n\n        client = self.get_client()\n        image_data = self.format_image_for_llm(image)\n\n        messages = [\n            {\n                \"role\": \"user\",\n                \"content\": [\n                    *image_data,\n                    {\"type\": \"text\", \"text\": prompt},\n                ],\n            }\n        ]\n\n        total_tries = max_retries + 1\n        for tries in range(1, total_tries + 1):\n            try:\n                response = client.beta.chat.completions.parse(\n                    extra_headers={\n                        \"X-Title\": \"Marker\",\n                        \"HTTP-Referer\": \"https://github.com/datalab-to/marker\",\n                    },\n                    model=self.deployment_name,\n                    messages=messages,\n                    timeout=timeout,\n                    response_format=response_schema,\n                )\n                response_text = response.choices[0].message.content\n                total_tokens = response.usage.total_tokens\n                if block:\n                    block.update_metadata(\n                        llm_tokens_used=total_tokens, llm_request_count=1\n                    )\n                return json.loads(response_text)\n            except (APITimeoutError, RateLimitError) as e:\n                # Rate limit exceeded\n                if tries == total_tries:\n                    # Last attempt failed. Give up\n                    logger.error(\n                        f\"Rate limit error: {e}. Max retries reached. Giving up. (Attempt {tries}/{total_tries})\"\n                    )\n                    break\n                else:\n                    wait_time = tries * self.retry_wait_time\n                    logger.warning(\n                        f\"Rate limit error: {e}. Retrying in {wait_time} seconds... (Attempt {tries}/{total_tries})\"\n                    )\n                    time.sleep(wait_time)\n            except Exception as e:\n                logger.error(f\"Azure OpenAI inference failed: {e}\")\n                break\n\n        return {}\n\n    def get_client(self) -> AzureOpenAI:\n        return AzureOpenAI(\n            api_version=self.azure_api_version,\n            azure_endpoint=self.azure_endpoint,\n            api_key=self.azure_api_key,\n        )\n"
  },
  {
    "path": "marker/services/claude.py",
    "content": "import json\nimport time\nfrom typing import List, Annotated, T\n\nimport PIL\nfrom PIL import Image\nimport anthropic\nfrom anthropic import RateLimitError, APITimeoutError\nfrom marker.logger import get_logger\nfrom pydantic import BaseModel\n\nfrom marker.schema.blocks import Block\nfrom marker.services import BaseService\n\nlogger = get_logger()\n\n\nclass ClaudeService(BaseService):\n    claude_model_name: Annotated[\n        str, \"The name of the Google model to use for the service.\"\n    ] = \"claude-3-7-sonnet-20250219\"\n    claude_api_key: Annotated[str, \"The Claude API key to use for the service.\"] = None\n    max_claude_tokens: Annotated[\n        int, \"The maximum number of tokens to use for a single Claude request.\"\n    ] = 8192\n\n    def process_images(self, images: List[Image.Image]) -> List[dict]:\n        return [\n            {\n                \"type\": \"image\",\n                \"source\": {\n                    \"type\": \"base64\",\n                    \"media_type\": \"image/webp\",\n                    \"data\": self.img_to_base64(img),\n                },\n            }\n            for img in images\n        ]\n\n    def validate_response(self, response_text: str, schema: type[T]) -> T:\n        response_text = response_text.strip()\n        if response_text.startswith(\"```json\"):\n            response_text = response_text[7:]\n        if response_text.endswith(\"```\"):\n            response_text = response_text[:-3]\n\n        try:\n            # Try to parse as JSON first\n            out_schema = schema.model_validate_json(response_text)\n            out_json = out_schema.model_dump()\n            return out_json\n        except Exception:\n            try:\n                # Re-parse with fixed escapes\n                escaped_str = response_text.replace(\"\\\\\", \"\\\\\\\\\")\n                out_schema = schema.model_validate_json(escaped_str)\n                return out_schema.model_dump()\n            except Exception:\n                return\n\n    def get_client(self):\n        return anthropic.Anthropic(\n            api_key=self.claude_api_key,\n        )\n\n    def __call__(\n        self,\n        prompt: str,\n        image: PIL.Image.Image | List[PIL.Image.Image] | None,\n        block: Block | None,\n        response_schema: type[BaseModel],\n        max_retries: int | None = None,\n        timeout: int | None = None,\n    ):\n        if max_retries is None:\n            max_retries = self.max_retries\n\n        if timeout is None:\n            timeout = self.timeout\n\n        schema_example = response_schema.model_json_schema()\n        system_prompt = f\"\"\"\nFollow the instructions given by the user prompt.  You must provide your response in JSON format matching this schema:\n\n{json.dumps(schema_example, indent=2)}\n\nRespond only with the JSON schema, nothing else.  Do not include ```json, ```,  or any other formatting.\n\"\"\".strip()\n\n        client = self.get_client()\n        image_data = self.format_image_for_llm(image)\n\n        messages = [\n            {\n                \"role\": \"user\",\n                \"content\": [\n                    *image_data,\n                    {\"type\": \"text\", \"text\": prompt},\n                ],\n            }\n        ]\n\n        total_tries = max_retries + 1\n        for tries in range(1, total_tries + 1):\n            try:\n                response = client.messages.create(\n                    system=system_prompt,\n                    model=self.claude_model_name,\n                    max_tokens=self.max_claude_tokens,\n                    messages=messages,\n                    timeout=timeout,\n                )\n                # Extract and validate response\n                response_text = response.content[0].text\n                return self.validate_response(response_text, response_schema)\n            except (RateLimitError, APITimeoutError) as e:\n                # Rate limit exceeded\n                if tries == total_tries:\n                    # Last attempt failed. Give up\n                    logger.error(\n                        f\"Rate limit error: {e}. Max retries reached. Giving up. (Attempt {tries}/{total_tries})\",\n                    )\n                    break\n                else:\n                    wait_time = tries * self.retry_wait_time\n                    logger.warning(\n                        f\"Rate limit error: {e}. Retrying in {wait_time} seconds... (Attempt {tries}/{total_tries})\",\n                    )\n                    time.sleep(wait_time)\n            except Exception as e:\n                logger.error(f\"Error during Claude API call: {e}\")\n                break\n\n        return {}\n"
  },
  {
    "path": "marker/services/gemini.py",
    "content": "import json\nimport time\nimport traceback\nfrom io import BytesIO\nfrom typing import List, Annotated\n\nimport PIL\nfrom google import genai\nfrom google.genai import types\nfrom google.genai.errors import APIError\nfrom marker.logger import get_logger\nfrom pydantic import BaseModel\n\nfrom marker.schema.blocks import Block\nfrom marker.services import BaseService\n\nlogger = get_logger()\n\n\nclass BaseGeminiService(BaseService):\n    gemini_model_name: Annotated[\n        str, \"The name of the Google model to use for the service.\"\n    ] = \"gemini-2.0-flash\"\n    thinking_budget: Annotated[\n        int, \"The thinking token budget to use for the service.\"\n    ] = None\n\n    def img_to_bytes(self, img: PIL.Image.Image):\n        image_bytes = BytesIO()\n        img.save(image_bytes, format=\"WEBP\")\n        return image_bytes.getvalue()\n\n    def get_google_client(self, timeout: int):\n        raise NotImplementedError\n\n    def process_images(self, images):\n        image_parts = [\n            types.Part.from_bytes(data=self.img_to_bytes(img), mime_type=\"image/webp\")\n            for img in images\n        ]\n        return image_parts\n\n    def __call__(\n        self,\n        prompt: str,\n        image: PIL.Image.Image | List[PIL.Image.Image] | None,\n        block: Block | None,\n        response_schema: type[BaseModel],\n        max_retries: int | None = None,\n        timeout: int | None = None,\n    ):\n        if max_retries is None:\n            max_retries = self.max_retries\n\n        if timeout is None:\n            timeout = self.timeout\n\n        client = self.get_google_client(timeout=timeout)\n        image_parts = self.format_image_for_llm(image)\n\n        total_tries = max_retries + 1\n        temperature = 0\n        for tries in range(1, total_tries + 1):\n            config = {\n                \"temperature\": temperature,\n                \"response_schema\": response_schema,\n                \"response_mime_type\": \"application/json\",\n            }\n            if self.max_output_tokens:\n                config[\"max_output_tokens\"] = self.max_output_tokens\n\n            if self.thinking_budget is not None:\n                # For gemini models, we can optionally set a thinking budget in the config\n                config[\"thinking_config\"] = types.ThinkingConfig(\n                    thinking_budget=self.thinking_budget\n                )\n\n            try:\n                responses = client.models.generate_content(\n                    model=self.gemini_model_name,\n                    contents=image_parts\n                    + [\n                        prompt\n                    ],  # According to gemini docs, it performs better if the image is the first element\n                    config=config,\n                )\n                output = responses.candidates[0].content.parts[0].text\n                total_tokens = responses.usage_metadata.total_token_count\n                if block:\n                    block.update_metadata(\n                        llm_tokens_used=total_tokens, llm_request_count=1\n                    )\n                return json.loads(output)\n            except APIError as e:\n                if e.code in [429, 443, 503]:\n                    # Rate limit exceeded\n                    if tries == total_tries:\n                        # Last attempt failed. Give up\n                        logger.error(\n                            f\"APIError: {e}. Max retries reached. Giving up. (Attempt {tries}/{total_tries})\",\n                        )\n                        break\n                    else:\n                        wait_time = tries * self.retry_wait_time\n                        logger.warning(\n                            f\"APIError: {e}. Retrying in {wait_time} seconds... (Attempt {tries}/{total_tries})\",\n                        )\n                        time.sleep(wait_time)\n                else:\n                    logger.error(f\"APIError: {e}\")\n                    break\n            except json.JSONDecodeError as e:\n                temperature = 0.2  # Increase temperature slightly to try and get a different respons\n\n                # The response was not valid JSON\n                if tries == total_tries:\n                    # Last attempt failed. Give up\n                    logger.error(\n                        f\"JSONDecodeError: {e}. Max retries reached. Giving up. (Attempt {tries}/{total_tries})\",\n                    )\n                    break\n                else:\n                    logger.warning(\n                        f\"JSONDecodeError: {e}. Retrying... (Attempt {tries}/{total_tries})\",\n                    )\n            except Exception as e:\n                logger.error(f\"Exception: {e}\")\n                traceback.print_exc()\n                break\n\n        return {}\n\n\nclass GoogleGeminiService(BaseGeminiService):\n    gemini_api_key: Annotated[str, \"The Google API key to use for the service.\"] = None\n\n    def get_google_client(self, timeout: int):\n        return genai.Client(\n            api_key=self.gemini_api_key,\n            http_options={\"timeout\": timeout * 1000},  # Convert to milliseconds\n        )\n"
  },
  {
    "path": "marker/services/ollama.py",
    "content": "import json\nfrom typing import Annotated, List\n\nimport PIL\nimport requests\nfrom marker.logger import get_logger\nfrom pydantic import BaseModel\n\nfrom marker.schema.blocks import Block\nfrom marker.services import BaseService\n\nlogger = get_logger()\n\n\nclass OllamaService(BaseService):\n    ollama_base_url: Annotated[\n        str, \"The base url to use for ollama.  No trailing slash.\"\n    ] = \"http://localhost:11434\"\n    ollama_model: Annotated[str, \"The model name to use for ollama.\"] = (\n        \"llama3.2-vision\"\n    )\n\n    def process_images(self, images):\n        image_bytes = [self.img_to_base64(img) for img in images]\n        return image_bytes\n\n    def __call__(\n        self,\n        prompt: str,\n        image: PIL.Image.Image | List[PIL.Image.Image] | None,\n        block: Block | None,\n        response_schema: type[BaseModel],\n        max_retries: int | None = None,\n        timeout: int | None = None,\n    ):\n        url = f\"{self.ollama_base_url}/api/generate\"\n        headers = {\"Content-Type\": \"application/json\"}\n\n        schema = response_schema.model_json_schema()\n        format_schema = {\n            \"type\": \"object\",\n            \"properties\": schema[\"properties\"],\n            \"required\": schema[\"required\"],\n        }\n\n        image_bytes = self.format_image_for_llm(image)\n\n        payload = {\n            \"model\": self.ollama_model,\n            \"prompt\": prompt,\n            \"stream\": False,\n            \"format\": format_schema,\n            \"images\": image_bytes,\n        }\n\n        try:\n            response = requests.post(url, json=payload, headers=headers)\n            response.raise_for_status()\n            response_data = response.json()\n\n            total_tokens = (\n                response_data[\"prompt_eval_count\"] + response_data[\"eval_count\"]\n            )\n\n            if block:\n                block.update_metadata(llm_request_count=1, llm_tokens_used=total_tokens)\n\n            data = response_data[\"response\"]\n            return json.loads(data)\n        except Exception as e:\n            logger.warning(f\"Ollama inference failed: {e}\")\n\n        return {}\n"
  },
  {
    "path": "marker/services/openai.py",
    "content": "import json\nimport time\nfrom typing import Annotated, List\n\nimport openai\nimport PIL\nfrom marker.logger import get_logger\nfrom openai import APITimeoutError, RateLimitError\nfrom PIL import Image\nfrom pydantic import BaseModel\n\nfrom marker.schema.blocks import Block\nfrom marker.services import BaseService\n\nlogger = get_logger()\n\n\nclass OpenAIService(BaseService):\n    openai_base_url: Annotated[\n        str, \"The base url to use for OpenAI-like models.  No trailing slash.\"\n    ] = \"https://api.openai.com/v1\"\n    openai_model: Annotated[str, \"The model name to use for OpenAI-like model.\"] = (\n        \"gpt-4o-mini\"\n    )\n    openai_api_key: Annotated[\n        str, \"The API key to use for the OpenAI-like service.\"\n    ] = None\n    openai_image_format: Annotated[\n        str,\n        \"The image format to use for the OpenAI-like service. Use 'png' for better compatability\",\n    ] = \"webp\"\n\n    def process_images(self, images: List[Image.Image]) -> List[dict]:\n        \"\"\"\n        Generate the base-64 encoded message to send to an\n        openAI-compatabile multimodal model.\n\n        Args:\n            images: Image or list of PIL images to include\n            format: Format to use for the image; use \"png\" for better compatability.\n\n        Returns:\n            A list of OpenAI-compatbile multimodal messages containing the base64-encoded images.\n        \"\"\"\n        if isinstance(images, Image.Image):\n            images = [images]\n\n        img_fmt = self.openai_image_format\n        return [\n            {\n                \"type\": \"image_url\",\n                \"image_url\": {\n                    \"url\": \"data:image/{};base64,{}\".format(\n                        img_fmt, self.img_to_base64(img, format=img_fmt)\n                    ),\n                },\n            }\n            for img in images\n        ]\n\n    def __call__(\n        self,\n        prompt: str,\n        image: PIL.Image.Image | List[PIL.Image.Image] | None,\n        block: Block | None,\n        response_schema: type[BaseModel],\n        max_retries: int | None = None,\n        timeout: int | None = None,\n    ):\n        if max_retries is None:\n            max_retries = self.max_retries\n\n        if timeout is None:\n            timeout = self.timeout\n\n        client = self.get_client()\n        image_data = self.format_image_for_llm(image)\n\n        messages = [\n            {\n                \"role\": \"user\",\n                \"content\": [\n                    *image_data,\n                    {\"type\": \"text\", \"text\": prompt},\n                ],\n            }\n        ]\n\n        total_tries = max_retries + 1\n        for tries in range(1, total_tries + 1):\n            try:\n                response = client.beta.chat.completions.parse(\n                    extra_headers={\n                        \"X-Title\": \"Marker\",\n                        \"HTTP-Referer\": \"https://github.com/datalab-to/marker\",\n                    },\n                    model=self.openai_model,\n                    messages=messages,\n                    timeout=timeout,\n                    response_format=response_schema,\n                )\n                response_text = response.choices[0].message.content\n                total_tokens = response.usage.total_tokens\n                if block:\n                    block.update_metadata(\n                        llm_tokens_used=total_tokens, llm_request_count=1\n                    )\n                return json.loads(response_text)\n            except (APITimeoutError, RateLimitError) as e:\n                # Rate limit exceeded\n                if tries == total_tries:\n                    # Last attempt failed. Give up\n                    logger.error(\n                        f\"Rate limit error: {e}. Max retries reached. Giving up. (Attempt {tries}/{total_tries})\",\n                    )\n                    break\n                else:\n                    wait_time = tries * self.retry_wait_time\n                    logger.warning(\n                        f\"Rate limit error: {e}. Retrying in {wait_time} seconds... (Attempt {tries}/{total_tries})\",\n                    )\n                    time.sleep(wait_time)\n            except Exception as e:\n                logger.error(f\"OpenAI inference failed: {e}\")\n                break\n\n        return {}\n\n    def get_client(self) -> openai.OpenAI:\n        return openai.OpenAI(api_key=self.openai_api_key, base_url=self.openai_base_url)\n"
  },
  {
    "path": "marker/services/vertex.py",
    "content": "from typing import Annotated\n\nfrom google import genai\n\nfrom marker.services.gemini import BaseGeminiService\n\nclass GoogleVertexService(BaseGeminiService):\n    vertex_project_id: Annotated[\n        str,\n        \"Google Cloud Project ID for Vertex AI.\",\n    ] = None\n    vertex_location: Annotated[\n        str,\n        \"Google Cloud Location for Vertex AI.\",\n    ] = \"us-central1\"\n    gemini_model_name: Annotated[\n        str,\n        \"The name of the Google model to use for the service.\"\n    ] = \"gemini-2.0-flash-001\"\n    vertex_dedicated: Annotated[\n        bool,\n        \"Whether to use a dedicated Vertex AI instance.\"\n    ] = False\n\n    def get_google_client(self, timeout: int):\n        http_options = {\"timeout\": timeout * 1000} # Convert to milliseconds\n        if self.vertex_dedicated:\n            http_options[\"headers\"] = {\"x-vertex-ai-llm-request-type\": \"dedicated\"}\n        return genai.Client(\n            vertexai=True,\n            project=self.vertex_project_id,\n            location=self.vertex_location,\n            http_options=http_options,\n        )"
  },
  {
    "path": "marker/settings.py",
    "content": "from typing import Optional\n\nfrom dotenv import find_dotenv\nfrom pydantic import computed_field\nfrom pydantic_settings import BaseSettings\nimport torch\nimport os\n\n\nclass Settings(BaseSettings):\n    # Paths\n    BASE_DIR: str = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))\n    OUTPUT_DIR: str = os.path.join(BASE_DIR, \"conversion_results\")\n    FONT_DIR: str = os.path.join(BASE_DIR, \"static\", \"fonts\")\n    DEBUG_DATA_FOLDER: str = os.path.join(BASE_DIR, \"debug_data\")\n    ARTIFACT_URL: str = \"https://models.datalab.to/artifacts\"\n    FONT_NAME: str = \"GoNotoCurrent-Regular.ttf\"\n    FONT_PATH: str = os.path.join(FONT_DIR, FONT_NAME)\n    LOGLEVEL: str = \"INFO\"\n\n    # General\n    OUTPUT_ENCODING: str = \"utf-8\"\n    OUTPUT_IMAGE_FORMAT: str = \"JPEG\"\n\n    # LLM\n    GOOGLE_API_KEY: Optional[str] = \"\"\n\n    # General models\n    TORCH_DEVICE: Optional[str] = (\n        None  # Note: MPS device does not work for text detection, and will default to CPU\n    )\n\n    @computed_field\n    @property\n    def TORCH_DEVICE_MODEL(self) -> str:\n        if self.TORCH_DEVICE is not None:\n            return self.TORCH_DEVICE\n\n        if torch.cuda.is_available():\n            return \"cuda\"\n\n        if torch.backends.mps.is_available():\n            return \"mps\"\n\n        return \"cpu\"\n\n    @computed_field\n    @property\n    def MODEL_DTYPE(self) -> torch.dtype:\n        if self.TORCH_DEVICE_MODEL == \"cuda\":\n            return torch.bfloat16\n        else:\n            return torch.float32\n\n    class Config:\n        env_file = find_dotenv(\"local.env\")\n        extra = \"ignore\"\n\n\nsettings = Settings()\n"
  },
  {
    "path": "marker/util.py",
    "content": "import inspect\nimport os\nfrom importlib import import_module\nfrom typing import List, Annotated\nimport re\n\nimport numpy as np\nimport requests\nfrom pydantic import BaseModel\n\nfrom marker.schema.polygon import PolygonBox\nfrom marker.settings import settings\n\nOPENING_TAG_REGEX = re.compile(r\"<((?:math|i|b))(?:\\s+[^>]*)?>\")\nCLOSING_TAG_REGEX = re.compile(r\"</((?:math|i|b))>\")\nTAG_MAPPING = {\n    'i': 'italic',\n    'b': 'bold',\n    'math': 'math',\n    'mark': 'highlight',\n    'sub': 'subscript',\n    'sup': 'superscript',\n    'small': 'small',\n    'u': 'underline',\n    'code': 'code'\n}\n\ndef strings_to_classes(items: List[str]) -> List[type]:\n    classes = []\n    for item in items:\n        module_name, class_name = item.rsplit('.', 1)\n        module = import_module(module_name)\n        classes.append(getattr(module, class_name))\n    return classes\n\n\ndef classes_to_strings(items: List[type]) -> List[str]:\n    for item in items:\n        if not inspect.isclass(item):\n            raise ValueError(f\"Item {item} is not a class\")\n\n    return [f\"{item.__module__}.{item.__name__}\" for item in items]\n\n\ndef verify_config_keys(obj):\n    annotations = inspect.get_annotations(obj.__class__)\n\n    none_vals = \"\"\n    for attr_name, annotation in annotations.items():\n        if isinstance(annotation, type(Annotated[str, \"\"])):\n            value = getattr(obj, attr_name)\n            if value is None:\n                none_vals += f\"{attr_name}, \"\n\n    assert len(none_vals) == 0, f\"In order to use {obj.__class__.__name__}, you must set the configuration values `{none_vals}`.\"\n\n\ndef assign_config(cls, config: BaseModel | dict | None):\n    cls_name = cls.__class__.__name__\n    if config is None:\n        return\n    elif isinstance(config, BaseModel):\n        dict_config = config.dict()\n    elif isinstance(config, dict):\n        dict_config = config\n    else:\n        raise ValueError(\"config must be a dict or a pydantic BaseModel\")\n\n    for k in dict_config:\n        if hasattr(cls, k):\n            setattr(cls, k, dict_config[k])\n    for k in dict_config:\n        if cls_name not in k:\n            continue\n        # Enables using class-specific keys, like \"MarkdownRenderer_remove_blocks\"\n        split_k = k.removeprefix(cls_name + \"_\")\n\n        if hasattr(cls, split_k):\n            setattr(cls, split_k, dict_config[k])\n\n\ndef parse_range_str(range_str: str) -> List[int]:\n    range_lst = range_str.split(\",\")\n    page_lst = []\n    for i in range_lst:\n        if \"-\" in i:\n            start, end = i.split(\"-\")\n            page_lst += list(range(int(start), int(end) + 1))\n        else:\n            page_lst.append(int(i))\n    page_lst = sorted(list(set(page_lst)))  # Deduplicate page numbers and sort in order\n    return page_lst\n\n\ndef matrix_intersection_area(boxes1: List[List[float]], boxes2: List[List[float]]) -> np.ndarray:\n    if len(boxes1) == 0 or len(boxes2) == 0:\n        return np.zeros((len(boxes1), len(boxes2)))\n\n    boxes1 = np.array(boxes1)\n    boxes2 = np.array(boxes2)\n\n    boxes1 = boxes1[:, np.newaxis, :]  # Shape: (N, 1, 4)\n    boxes2 = boxes2[np.newaxis, :, :]  # Shape: (1, M, 4)\n\n    min_x = np.maximum(boxes1[..., 0], boxes2[..., 0])  # Shape: (N, M)\n    min_y = np.maximum(boxes1[..., 1], boxes2[..., 1])\n    max_x = np.minimum(boxes1[..., 2], boxes2[..., 2])\n    max_y = np.minimum(boxes1[..., 3], boxes2[..., 3])\n\n    width = np.maximum(0, max_x - min_x)\n    height = np.maximum(0, max_y - min_y)\n\n    return width * height  # Shape: (N, M)\n\n\ndef matrix_distance(boxes1: List[List[float]], boxes2: List[List[float]]) -> np.ndarray:\n    if len(boxes2) == 0:\n        return np.zeros((len(boxes1), 0))\n    if len(boxes1) == 0:\n        return np.zeros((0, len(boxes2)))\n\n    boxes1 = np.array(boxes1)  # Shape: (N, 4)\n    boxes2 = np.array(boxes2)  # Shape: (M, 4)\n\n    boxes1_centers = (boxes1[:, :2] + boxes1[:, 2:]) / 2 # Shape: (M, 2)\n    boxes2_centers = (boxes2[:, :2] + boxes2[:, 2:]) / 2  # Shape: (M, 2)\n\n    boxes1_centers = boxes1_centers[:, np.newaxis, :]  # Shape: (N, 1, 2)\n    boxes2_centers = boxes2_centers[np.newaxis, :, :]  # Shape: (1, M, 2)\n\n    distances = np.linalg.norm(boxes1_centers - boxes2_centers, axis=2)  # Shape: (N, M)\n    return distances\n\n\ndef sort_text_lines(lines: List[PolygonBox], tolerance=1.25):\n    # Sorts in reading order.  Not 100% accurate, this should only\n    # be used as a starting point for more advanced sorting.\n    vertical_groups = {}\n    for line in lines:\n        group_key = round(line.bbox[1] / tolerance) * tolerance\n        if group_key not in vertical_groups:\n            vertical_groups[group_key] = []\n        vertical_groups[group_key].append(line)\n\n    # Sort each group horizontally and flatten the groups into a single list\n    sorted_lines = []\n    for _, group in sorted(vertical_groups.items()):\n        sorted_group = sorted(group, key=lambda x: x.bbox[0])\n        sorted_lines.extend(sorted_group)\n\n    return sorted_lines\n\ndef download_font():\n    if not os.path.exists(settings.FONT_PATH):\n        os.makedirs(os.path.dirname(settings.FONT_PATH), exist_ok=True)\n        font_dl_path = f\"{settings.ARTIFACT_URL}/{settings.FONT_NAME}\"\n        with requests.get(font_dl_path, stream=True) as r, open(settings.FONT_PATH, 'wb') as f:\n            r.raise_for_status()\n            for chunk in r.iter_content(chunk_size=8192):\n                f.write(chunk)\n\ndef get_opening_tag_type(tag):\n    \"\"\"\n    Determines if a tag is an opening tag and extracts the tag type.\n    \n    Args:\n        tag (str): The tag string to analyze.\n\n    Returns:\n        tuple: (is_opening_tag (bool), tag_type (str or None))\n    \"\"\"\n    match = OPENING_TAG_REGEX.match(tag)\n    \n    if match:\n        tag_type = match.group(1)\n        if tag_type in TAG_MAPPING:\n            return True, TAG_MAPPING[tag_type]\n    \n    return False, None\n\ndef get_closing_tag_type(tag):\n    \"\"\"\n    Determines if a tag is an opening tag and extracts the tag type.\n    \n    Args:\n        tag (str): The tag string to analyze.\n\n    Returns:\n        tuple: (is_opening_tag (bool), tag_type (str or None))\n    \"\"\"\n    match = CLOSING_TAG_REGEX.match(tag)\n    \n    if match:\n        tag_type = match.group(1)\n        if tag_type in TAG_MAPPING:\n            return True, TAG_MAPPING[tag_type]\n    \n    return False, None\n\n# Modification of unwrap_math from surya.recognition\nMATH_SYMBOLS = [\"^\", \"_\", \"\\\\\", \"{\", \"}\"]\nMATH_TAG_PATTERN = re.compile(r'<math\\b[^>]*>.*?</math>', re.DOTALL)\nLATEX_ESCAPES = {\n    r'\\%': '%',\n    r'\\$': '$',\n    r'\\_': '_',\n    r'\\&': '&',\n    r'\\#': '#',\n    r'\\‰': '‰',\n}\ndef normalize_latex_escapes(s: str) -> str:\n    for k, v in LATEX_ESCAPES.items():\n        s = s.replace(k, v)\n    return s\n\ndef unwrap_math(text: str, math_symbols: List[str] = MATH_SYMBOLS) -> str:\n    \"\"\"Unwrap a single <math>...</math> block if it's not really math.\"\"\"\n    if MATH_TAG_PATTERN.match(text):\n        # Remove tags\n        inner = re.sub(r'^\\s*<math\\b[^>]*>|</math>\\s*$', '', text, flags=re.DOTALL)\n\n        # Strip a single leading/trailing \\\\ plus surrounding whitespace\n        inner_stripped = re.sub(r'^\\s*\\\\\\\\\\s*|\\s*\\\\\\\\\\s*$', '', inner)\n\n        # Unwrap \\text{...}\n        unwrapped = re.sub(r'\\\\text[a-zA-Z]*\\s*\\{(.*?)\\}', r'\\1', inner_stripped)\n\n        # Normalize escapes\n        normalized = normalize_latex_escapes(unwrapped)\n\n        # If no math symbols remain → unwrap fully\n        if not any(symb in normalized for symb in math_symbols):\n            return normalized.strip()\n\n    # Otherwise, return as-is\n    return text"
  },
  {
    "path": "marker/utils/__init__.py",
    "content": ""
  },
  {
    "path": "marker/utils/batch.py",
    "content": "from marker.utils.gpu import GPUManager\n\n\ndef get_batch_sizes_worker_counts(gpu_manager: GPUManager, peak_worker_vram: int):\n    vram = gpu_manager.get_gpu_vram()\n\n    workers = max(1, vram // peak_worker_vram)\n    if workers == 1:\n        return {}, workers\n\n    return {\n        \"layout_batch_size\": 12,\n        \"detection_batch_size\": 8,\n        \"table_rec_batch_size\": 12,\n        \"ocr_error_batch_size\": 12,\n        \"recognition_batch_size\": 64,\n        \"equation_batch_size\": 16,\n        \"detector_postprocessing_cpu_workers\": 2,\n    }, workers\n"
  },
  {
    "path": "marker/utils/gpu.py",
    "content": "import os\nimport subprocess\nimport torch\n\nfrom marker.logger import get_logger\nfrom marker.settings import settings\n\nlogger = get_logger()\n\n\nclass GPUManager:\n    default_gpu_vram: int = 8\n\n    def __init__(self, device_idx: int):\n        self.device_idx = device_idx\n        self.original_compute_mode = None\n        self.mps_server_process = None\n\n    def __enter__(self):\n        if self.using_cuda():\n            self.start_mps_server()\n        return self\n\n    def __exit__(self, exc_type, exc_val, exc_tb):\n        if self.using_cuda():\n            self.cleanup()\n\n    @staticmethod\n    def using_cuda():\n        return \"cuda\" in settings.TORCH_DEVICE_MODEL\n\n    def check_cuda_available(self) -> bool:\n        if not torch.cuda.is_available():\n            return False\n        try:\n            subprocess.run([\"nvidia-smi\", \"--version\"], capture_output=True, check=True)\n            return True\n        except (subprocess.CalledProcessError, FileNotFoundError):\n            return False\n\n    def get_gpu_vram(self):\n        if not self.using_cuda():\n            return self.default_gpu_vram\n\n        try:\n            result = subprocess.run(\n                [\n                    \"nvidia-smi\",\n                    \"--query-gpu=memory.total\",\n                    \"--format=csv,noheader,nounits\",\n                    \"-i\",\n                    str(self.device_idx),\n                ],\n                capture_output=True,\n                text=True,\n                check=True,\n            )\n\n            vram_mb = int(result.stdout.strip())\n            vram_gb = int(vram_mb / 1024)\n            return vram_gb\n\n        except (subprocess.CalledProcessError, ValueError, FileNotFoundError):\n            return self.default_gpu_vram\n\n    def start_mps_server(self) -> bool:\n        if not self.check_cuda_available():\n            return False\n\n        try:\n            # Set MPS environment with chunk-specific directories\n            env = os.environ.copy()\n            pipe_dir = f\"/tmp/nvidia-mps-{self.device_idx}\"\n            log_dir = f\"/tmp/nvidia-log-{self.device_idx}\"\n            env[\"CUDA_MPS_PIPE_DIRECTORY\"] = pipe_dir\n            env[\"CUDA_MPS_LOG_DIRECTORY\"] = log_dir\n\n            # Create directories\n            os.makedirs(pipe_dir, exist_ok=True)\n            os.makedirs(log_dir, exist_ok=True)\n\n            # Start MPS control daemon\n            self.mps_server_process = subprocess.Popen(\n                [\"nvidia-cuda-mps-control\", \"-d\"],\n                env=env,\n                stdout=subprocess.PIPE,\n                stderr=subprocess.PIPE,\n            )\n\n            logger.info(f\"Started NVIDIA MPS server for chunk {self.device_idx}\")\n            return True\n        except (subprocess.CalledProcessError, FileNotFoundError) as e:\n            logger.warning(\n                f\"Failed to start MPS server for chunk {self.device_idx}: {e}\"\n            )\n            return False\n\n    def stop_mps_server(self) -> None:\n        try:\n            # Stop MPS server\n            env = os.environ.copy()\n            env[\"CUDA_MPS_PIPE_DIRECTORY\"] = f\"/tmp/nvidia-mps-{self.device_idx}\"\n            env[\"CUDA_MPS_LOG_DIRECTORY\"] = f\"/tmp/nvidia-log-{self.device_idx}\"\n\n            subprocess.run(\n                [\"nvidia-cuda-mps-control\"],\n                input=\"quit\\n\",\n                text=True,\n                env=env,\n                timeout=10,\n            )\n\n            if self.mps_server_process:\n                self.mps_server_process.terminate()\n                try:\n                    self.mps_server_process.wait(timeout=5)\n                except subprocess.TimeoutExpired:\n                    self.mps_server_process.kill()\n                self.mps_server_process = None\n\n            logger.info(f\"Stopped NVIDIA MPS server for chunk {self.device_idx}\")\n        except Exception as e:\n            logger.warning(\n                f\"Failed to stop MPS server for chunk {self.device_idx}: {e}\"\n            )\n\n    def cleanup(self) -> None:\n        self.stop_mps_server()\n"
  },
  {
    "path": "marker/utils/image.py",
    "content": "from PIL import Image\nimport numpy as np\nimport cv2\nfrom typing import List, Optional\n\ndef is_blank_image(image: Image.Image, polygon: Optional[List[List[int]]] = None) -> bool:\n    image = np.asarray(image)\n    if (\n        image is None\n        or image.size == 0\n        or image.shape[0] == 0\n        or image.shape[1] == 0\n    ):\n        # Handle empty image case\n        return True\n\n    if polygon is not None:\n        rounded_polys = [[int(corner[0]), int(corner[1])] for corner in polygon]\n        if rounded_polys[0] == rounded_polys[1] and rounded_polys[2] == rounded_polys[3]:\n            return True\n\n    gray = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY)\n    gray = cv2.GaussianBlur(gray, (7, 7), 0)\n\n    # Adaptive threshold (inverse for text as white)\n    binarized = cv2.adaptiveThreshold(\n        gray, 255, cv2.ADAPTIVE_THRESH_GAUSSIAN_C, cv2.THRESH_BINARY_INV, 31, 15\n    )\n\n    num_labels, labels, stats, _ = cv2.connectedComponentsWithStats(\n        binarized, connectivity=8\n    )\n    cleaned = np.zeros_like(binarized)\n    for i in range(1, num_labels):  # skip background\n        cleaned[labels == i] = 255\n\n    kernel = np.ones((1, 5), np.uint8)\n    dilated = cv2.dilate(cleaned, kernel, iterations=3)\n    b = dilated / 255\n    return bool(b.sum() == 0)"
  },
  {
    "path": "marker_app.py",
    "content": "from marker.scripts.run_streamlit_app import streamlit_app_cli\n\nif __name__ == \"__main__\":\n    streamlit_app_cli()"
  },
  {
    "path": "marker_server.py",
    "content": "from marker.scripts.server import server_cli\n\nif __name__ == \"__main__\":\n    server_cli()\n"
  },
  {
    "path": "pyproject.toml",
    "content": "[tool.poetry]\nname = \"marker-pdf\"\nversion = \"1.10.2\"\ndescription = \"Convert documents to markdown with high speed and accuracy.\"\nauthors = [\"Vik Paruchuri <github@vikas.sh>\"]\nreadme = \"README.md\"\nlicense = \"GPL-3.0-or-later\"\nrepository = \"https://github.com/VikParuchuri/marker\"\nkeywords = [\"pdf\", \"markdown\", \"ocr\", \"nlp\"]\npackages = [\n    {include = \"marker\"}\n]\ninclude = [\n    \"marker/scripts/*.sh\",\n    \"marker/scripts/*.html\",\n]\n\n[tool.poetry.dependencies]\npython = \"^3.10\"\nPillow = \"^10.1.0\"\npydantic = \"^2.4.2\"\npydantic-settings = \"^2.0.3\"\ntransformers = \"^4.45.2\"\npython-dotenv = \"^1.0.0\"\ntorch = \"^2.7.0\"\ntqdm = \"^4.66.1\"\nftfy = \"^6.1.1\"\nrapidfuzz = \"^3.8.1\"\nsurya-ocr = \"^0.17.1\"\nregex = \"^2024.4.28\"\npdftext = \"~0.6.3\"\nmarkdownify = \"^1.1.0\"\nclick = \"^8.2.0\"\nmarkdown2 = \"^2.5.2\"\nfiletype = \"^1.2.0\"\ngoogle-genai = \"^1.0.0\"\nanthropic = \"^0.46.0\"\npre-commit = \"^4.2.0\"\nscikit-learn = \"^1.6.1\"\n\n# Optional dependencies for documents\nmammoth = {version = \"^1.9.0\", optional = true}\nopenpyxl = {version = \"^3.1.5\", optional = true}\npython-pptx = {version = \"^1.0.2\", optional = true}\nebooklib = {version = \"^0.18\", optional = true}\nweasyprint = {version = \"^63.1\", optional = true}\nopenai = \"^1.65.2\"\n\n[tool.poetry.group.dev.dependencies]\njupyter = \"^1.0.0\"\ndatasets = \"^2.21.0\"\nstreamlit = \"^1.37.1\"\nfastapi = \"^0.115.4\"\nuvicorn = \"^0.32.0\"\npython-multipart = \"^0.0.16\"\npytest = \"^8.3.3\"\npytest-mock = \"^3.14.0\"\napted = \"1.0.3\"\ndistance = \"0.1.3\"\nlxml = \"5.3.0\"\ntabulate = \"^0.9.0\"\nlatex2mathml = \"^3.77.0\"\nplaywright = \"^1.49.1\"\n\n[tool.poetry.extras]\nfull = [\"mammoth\", \"openpyxl\", \"python-pptx\", \"ebooklib\", \"weasyprint\"]\n\n[tool.poetry.scripts]\nmarker = \"marker.scripts.convert:convert_cli\"\nmarker_single = \"marker.scripts.convert_single:convert_single_cli\"\nmarker_chunk_convert = \"marker.scripts.chunk_convert:chunk_convert_cli\"\nmarker_gui = \"marker.scripts.run_streamlit_app:streamlit_app_cli\"\nmarker_extract = \"marker.scripts.run_streamlit_app:extraction_app_cli\"\nmarker_server = \"marker.scripts.server:server_cli\"\n\n[build-system]\nrequires = [\"poetry-core\"]\nbuild-backend = \"poetry.core.masonry.api\"\n"
  },
  {
    "path": "pytest.ini",
    "content": "[pytest]\ntestpaths=tests\nmarkers =\n    filename(name): specify the filename for the pdf_document fixture\nfilterwarnings =\n    ignore::Warning"
  },
  {
    "path": "signatures/version1/cla.json",
    "content": "{\n  \"signedContributors\": [\n    {\n      \"name\": \"korakot\",\n      \"id\": 3155646,\n      \"comment_id\": 2143359366,\n      \"created_at\": \"2024-06-01T08:25:52Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 161\n    },\n    {\n      \"name\": \"tosaddler\",\n      \"id\": 13705399,\n      \"comment_id\": 2144014410,\n      \"created_at\": \"2024-06-02T20:40:52Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 165\n    },\n    {\n      \"name\": \"q2333gh\",\n      \"id\": 32679742,\n      \"comment_id\": 2156122900,\n      \"created_at\": \"2024-06-08T18:01:39Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 176\n    },\n    {\n      \"name\": \"q2333gh\",\n      \"id\": 32679742,\n      \"comment_id\": 2156614334,\n      \"created_at\": \"2024-06-09T13:48:49Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 176\n    },\n    {\n      \"name\": \"aniketinamdar\",\n      \"id\": 79044809,\n      \"comment_id\": 2157453610,\n      \"created_at\": \"2024-06-10T06:43:39Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 179\n    },\n    {\n      \"name\": \"Zxilly\",\n      \"id\": 31370133,\n      \"comment_id\": 2295163597,\n      \"created_at\": \"2024-08-18T07:44:04Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 257\n    },\n    {\n      \"name\": \"conscienceli\",\n      \"id\": 4034943,\n      \"comment_id\": 2333374932,\n      \"created_at\": \"2024-09-06T06:56:25Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 276\n    },\n    {\n      \"name\": \"jcytong\",\n      \"id\": 156466,\n      \"comment_id\": 2334987739,\n      \"created_at\": \"2024-09-07T01:27:51Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 278\n    },\n    {\n      \"name\": \"syldor\",\n      \"id\": 4158062,\n      \"comment_id\": 2428114896,\n      \"created_at\": \"2024-10-22T03:05:34Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 309\n    },\n    {\n      \"name\": \"iammosespaulr\",\n      \"id\": 28682735,\n      \"comment_id\": 2448054789,\n      \"created_at\": \"2024-10-30T18:36:24Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 327\n    },\n    {\n      \"name\": \"tjbck\",\n      \"id\": 25473318,\n      \"comment_id\": 2454051305,\n      \"created_at\": \"2024-11-04T08:09:46Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 332\n    },\n    {\n      \"name\": \"jonaskahn\",\n      \"id\": 4338500,\n      \"comment_id\": 2516932772,\n      \"created_at\": \"2024-12-04T10:47:00Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 413\n    },\n    {\n      \"name\": \"Leon-Sander\",\n      \"id\": 72946124,\n      \"comment_id\": 2519736628,\n      \"created_at\": \"2024-12-05T09:26:56Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 415\n    },\n    {\n      \"name\": \"aguadoenzo\",\n      \"id\": 11411723,\n      \"comment_id\": 2520293935,\n      \"created_at\": \"2024-12-05T13:13:34Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 416\n    },\n    {\n      \"name\": \"tarun-menta\",\n      \"id\": 66506307,\n      \"comment_id\": 2543907406,\n      \"created_at\": \"2024-12-15T15:06:32Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 427\n    },\n    {\n      \"name\": \"ZeyuTeng96\",\n      \"id\": 96521059,\n      \"comment_id\": 2567236036,\n      \"created_at\": \"2025-01-02T02:36:02Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 452\n    },\n    {\n      \"name\": \"xiaoyao9184\",\n      \"id\": 6614349,\n      \"comment_id\": 2571623521,\n      \"created_at\": \"2025-01-05T13:15:34Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 463\n    },\n    {\n      \"name\": \"yasyf\",\n      \"id\": 709645,\n      \"comment_id\": 2571679069,\n      \"created_at\": \"2025-01-05T16:23:12Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 464\n    },\n    {\n      \"name\": \"jazzido\",\n      \"id\": 27584,\n      \"comment_id\": 2610428000,\n      \"created_at\": \"2025-01-23T17:01:02Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 502\n    },\n    {\n      \"name\": \"tagliala\",\n      \"id\": 556268,\n      \"comment_id\": 2614522545,\n      \"created_at\": \"2025-01-26T17:44:13Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 507\n    },\n    {\n      \"name\": \"conjuncts\",\n      \"id\": 67614673,\n      \"comment_id\": 2646947362,\n      \"created_at\": \"2025-02-10T05:22:00Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 533\n    },\n    {\n      \"name\": \"sleiss\",\n      \"id\": 5084100,\n      \"comment_id\": 2661051259,\n      \"created_at\": \"2025-02-15T19:11:32Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 552\n    },\n    {\n      \"name\": \"dantetemplar\",\n      \"id\": 69670642,\n      \"comment_id\": 2661665606,\n      \"created_at\": \"2025-02-16T23:02:34Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 555\n    },\n    {\n      \"name\": \"vicenciomf2\",\n      \"id\": 127889973,\n      \"comment_id\": 2676007412,\n      \"created_at\": \"2025-02-22T04:34:27Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 574\n    },\n    {\n      \"name\": \"denisshepelin\",\n      \"id\": 143056,\n      \"comment_id\": 2694298068,\n      \"created_at\": \"2025-03-03T12:50:11Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 592\n    },\n    {\n      \"name\": \"lecifire\",\n      \"id\": 43193080,\n      \"comment_id\": 2735460895,\n      \"created_at\": \"2025-03-19T06:25:13Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 609\n    },\n    {\n      \"name\": \"eddiedozier\",\n      \"id\": 9558671,\n      \"comment_id\": 2774087436,\n      \"created_at\": \"2025-04-03T01:14:41Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 646\n    },\n    {\n      \"name\": \"MauritsBrinkman\",\n      \"id\": 153435669,\n      \"comment_id\": 2838830143,\n      \"created_at\": \"2025-04-29T13:10:38Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 675\n    },\n    {\n      \"name\": \"jacksontromero\",\n      \"id\": 42822986,\n      \"comment_id\": 2927811267,\n      \"created_at\": \"2025-06-01T20:10:35Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 721\n    },\n    {\n      \"name\": \"rgeorgi\",\n      \"id\": 805862,\n      \"comment_id\": 2968063099,\n      \"created_at\": \"2025-06-12T20:23:50Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 751\n    },\n    {\n      \"name\": \"zanussbaum\",\n      \"id\": 33707069,\n      \"comment_id\": 3006162493,\n      \"created_at\": \"2025-06-25T21:12:25Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 769\n    },\n    {\n      \"name\": \"runarmod\",\n      \"id\": 40912933,\n      \"comment_id\": 3007582739,\n      \"created_at\": \"2025-06-26T08:06:45Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 772\n    },\n    {\n      \"name\": \"ArnoKlein\",\n      \"id\": 64474825,\n      \"comment_id\": 3044904172,\n      \"created_at\": \"2025-07-07T12:41:57Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 793\n    },\n    {\n      \"name\": \"voberoi\",\n      \"id\": 26339,\n      \"comment_id\": 3054261379,\n      \"created_at\": \"2025-07-09T22:17:58Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 796\n    },\n    {\n      \"name\": \"MrWaradana\",\n      \"id\": 77272854,\n      \"comment_id\": 3060610542,\n      \"created_at\": \"2025-07-11T05:30:30Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 799\n    },\n    {\n      \"name\": \"schen1102\",\n      \"id\": 221293366,\n      \"comment_id\": 3083001869,\n      \"created_at\": \"2025-07-17T07:50:39Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 810\n    },\n    {\n      \"name\": \"igormf\",\n      \"id\": 8070635,\n      \"comment_id\": 3156380190,\n      \"created_at\": \"2025-08-05T19:40:17Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 823\n    },\n    {\n      \"name\": \"muratcanlaloglu\",\n      \"id\": 71566447,\n      \"comment_id\": 3189653464,\n      \"created_at\": \"2025-08-14T19:34:21Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 833\n    },\n    {\n      \"name\": \"SageStack\",\n      \"id\": 124574940,\n      \"comment_id\": 3192827940,\n      \"created_at\": \"2025-08-15T21:40:27Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 837\n    },\n    {\n      \"name\": \"dowithless\",\n      \"id\": 165774507,\n      \"comment_id\": 3192986184,\n      \"created_at\": \"2025-08-15T23:20:17Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 839\n    },\n    {\n      \"name\": \"blap\",\n      \"id\": 913963,\n      \"comment_id\": 3036951999,\n      \"created_at\": \"2025-07-04T17:42:05Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 789\n    },\n    {\n      \"name\": \"sandy0kwon\",\n      \"id\": 78377296,\n      \"comment_id\": 3207667429,\n      \"created_at\": \"2025-08-20T18:59:07Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 843\n    },\n    {\n      \"name\": \"TwinkleXD\",\n      \"id\": 68148987,\n      \"comment_id\": 3218116522,\n      \"created_at\": \"2025-08-24T13:49:14Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 849\n    },\n    {\n      \"name\": \"u-ashish\",\n      \"id\": 14264791,\n      \"comment_id\": 3221349115,\n      \"created_at\": \"2025-08-25T18:41:28Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 850\n    },\n    {\n      \"name\": \"EdmondChuiHW\",\n      \"id\": 1967998,\n      \"comment_id\": 3254531992,\n      \"created_at\": \"2025-09-04T16:30:48Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 869\n    },\n    {\n      \"name\": \"himanshu-josh\",\n      \"id\": 216880840,\n      \"comment_id\": 3311497351,\n      \"created_at\": \"2025-09-19T09:48:31Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 891\n    },\n    {\n      \"name\": \"aud\",\n      \"id\": 13060190,\n      \"comment_id\": 3331451358,\n      \"created_at\": \"2025-09-25T02:21:46Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 895\n    },\n    {\n      \"name\": \"Tenkeboks\",\n      \"id\": 198454519,\n      \"comment_id\": 3338897497,\n      \"created_at\": \"2025-09-26T14:05:43Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 897\n    },\n    {\n      \"name\": \"ozzzzz\",\n      \"id\": 5720160,\n      \"comment_id\": 3363582442,\n      \"created_at\": \"2025-10-02T23:18:12Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 905\n    },\n    {\n      \"name\": \"Vidarshana26204\",\n      \"id\": 36869394,\n      \"comment_id\": 3394829315,\n      \"created_at\": \"2025-10-12T16:26:13Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 916\n    },\n    {\n      \"name\": \"kipavy\",\n      \"id\": 88386090,\n      \"comment_id\": 3501207459,\n      \"created_at\": \"2025-11-07T08:10:21Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 940\n    },\n    {\n      \"name\": \"lumoe\",\n      \"id\": 20421914,\n      \"comment_id\": 3552985238,\n      \"created_at\": \"2025-11-19T14:25:09Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 949\n    },\n    {\n      \"name\": \"linminhtoo\",\n      \"id\": 25001874,\n      \"comment_id\": 3691533443,\n      \"created_at\": \"2025-12-25T15:18:05Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 962\n    },\n    {\n      \"name\": \"fabnemEPFL\",\n      \"id\": 117652591,\n      \"comment_id\": 3718432073,\n      \"created_at\": \"2026-01-07T11:24:20Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 969\n    },\n    {\n      \"name\": \"ag-mout\",\n      \"id\": 69329397,\n      \"comment_id\": 3771900767,\n      \"created_at\": \"2026-01-20T09:33:59Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 973\n    },\n    {\n      \"name\": \"kamransoomro84\",\n      \"id\": 4132530,\n      \"comment_id\": 3806581473,\n      \"created_at\": \"2026-01-27T17:42:36Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 977\n    },\n    {\n      \"name\": \"ambicuity\",\n      \"id\": 44251619,\n      \"comment_id\": 3873275621,\n      \"created_at\": \"2026-02-09T18:31:00Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 989\n    },\n    {\n      \"name\": \"Br1an67\",\n      \"id\": 29810238,\n      \"comment_id\": 3980336865,\n      \"created_at\": \"2026-03-01T15:53:36Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 994\n    },\n    {\n      \"name\": \"jcs-zfc\",\n      \"id\": 171920867,\n      \"comment_id\": 3999996998,\n      \"created_at\": \"2026-03-04T20:11:44Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 1004\n    },\n    {\n      \"name\": \"EurFelux\",\n      \"id\": 59059173,\n      \"comment_id\": 4030668010,\n      \"created_at\": \"2026-03-10T11:23:03Z\",\n      \"repoId\": 712111618,\n      \"pullRequestNo\": 1009\n    }\n  ]\n}"
  },
  {
    "path": "static/fonts/.gitignore",
    "content": "*\n!.gitignore"
  },
  {
    "path": "tests/builders/test_blank_page.py",
    "content": "from surya.layout.schema import LayoutResult\n\nfrom marker.builders.document import DocumentBuilder\nfrom marker.builders.layout import LayoutBuilder\nfrom marker.builders.line import LineBuilder\n\n\ndef test_blank_page(config, doc_provider, layout_model, ocr_error_model, detection_model):\n    layout_builder = LayoutBuilder(layout_model, config)\n    line_builder = LineBuilder(detection_model, ocr_error_model)\n    builder = DocumentBuilder(config)\n    document = builder.build_document(doc_provider)\n\n    layout_results = [LayoutResult(\n        bboxes=[],\n        image_bbox=p.polygon.bbox,\n    ) for p in document.pages]\n    provider_lines = {p.page_id: [] for p in document.pages}\n    ocr_lines = {p.page_id: [] for p in document.pages}\n\n    layout_builder.add_blocks_to_pages(document.pages, layout_results)\n    line_builder.merge_blocks(document, provider_lines, ocr_lines)\n\n    assert all([isinstance(p.children, list) for p in document.pages])\n    assert all([isinstance(p.structure, list) for p in document.pages])"
  },
  {
    "path": "tests/builders/test_document_builder.py",
    "content": "import pytest\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.text.line import Line\n\n\n@pytest.mark.filename(\"thinkpython.pdf\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_document_builder(pdf_document):\n    first_page = pdf_document.pages[0]\n    assert first_page.structure[0] == \"/page/0/SectionHeader/0\"\n\n    first_block = first_page.get_block(first_page.structure[0])\n    assert first_block.block_type == BlockTypes.SectionHeader\n    assert first_block.text_extraction_method == \"pdftext\"\n\n    first_text_block: Line = first_page.get_block(first_block.structure[0])\n    assert first_text_block.block_type == BlockTypes.Line\n\n    first_span = first_page.get_block(first_text_block.structure[0])\n    assert first_span.block_type == BlockTypes.Span\n    assert first_span.text == \"Think Python\"\n    assert first_span.font == \"URWPalladioL-Roma\"\n    assert first_span.formats == [\"plain\"]\n\n\n@pytest.mark.config({\"page_range\": [0]})\ndef test_document_builder_inline_eq(pdf_document):\n    first_page = pdf_document.pages[0]\n    assert first_page.structure[0] == \"/page/0/SectionHeader/0\"\n\n    first_block = first_page.get_block(first_page.structure[0])\n    assert first_block.block_type == BlockTypes.SectionHeader\n    assert first_block.text_extraction_method == \"surya\"\n\n    first_text_block: Line = first_page.get_block(first_block.structure[0])\n    assert first_text_block.block_type == BlockTypes.Line\n\n    first_span = first_page.get_block(first_text_block.structure[0])\n    assert first_span.block_type == BlockTypes.Span\n    assert first_span.text.strip() == \"Subspace Adversarial Training\"\n    assert \"bold\" in first_span.formats\n"
  },
  {
    "path": "tests/builders/test_garbled_pdf.py",
    "content": "import pytest\n\nfrom marker.builders.document import DocumentBuilder\nfrom marker.builders.line import LineBuilder\nfrom marker.processors.table import TableProcessor\nfrom marker.schema import BlockTypes\n\n\n@pytest.mark.filename(\"water_damage.pdf\")\ndef test_garbled_pdf(pdf_document, recognition_model, table_rec_model, detection_model):\n    assert pdf_document.pages[0].structure[0] == \"/page/0/Table/0\"\n\n    table_block = pdf_document.pages[0].get_block(pdf_document.pages[0].structure[0])\n    assert table_block.block_type == BlockTypes.Table\n    assert table_block.structure[0] == \"/page/0/Line/10\"\n\n    table_cell = pdf_document.pages[0].get_block(table_block.structure[0])\n    assert table_cell.block_type == BlockTypes.Line\n\n    # We don't OCR in the initial pass, only with the TableProcessor\n    processor = TableProcessor(recognition_model, table_rec_model, detection_model)\n    processor(pdf_document)\n\n    table = pdf_document.pages[0].contained_blocks(pdf_document, (BlockTypes.Table,))[0]\n    assert \"варіант\" in table.raw_text(pdf_document)\n\n    table_cell = pdf_document.pages[0].get_block(table_block.structure[0])\n    assert table_cell.block_type == BlockTypes.TableCell\n\n\n@pytest.mark.filename(\"hindi_judgement.pdf\")\n@pytest.mark.config({\"page_range\": [2, 3], \"disable_ocr\": True})\ndef test_garbled_builder(config, doc_provider, detection_model, ocr_error_model):\n    line_builder = LineBuilder(detection_model, ocr_error_model, config)\n    builder = DocumentBuilder(config)\n    document = builder.build_document(doc_provider)\n\n    bad_ocr_results = line_builder.ocr_error_detection(\n        document.pages, doc_provider.page_lines\n    )\n    assert len(bad_ocr_results.labels) == 2\n    assert any([label == \"bad\" for label in bad_ocr_results.labels])\n\n\n@pytest.mark.filename(\"adversarial.pdf\")\n@pytest.mark.config({\"page_range\": [2, 3], \"disable_ocr\": True})\ndef test_nongarbled_builder(config, doc_provider, detection_model, ocr_error_model):\n    line_builder = LineBuilder(detection_model, ocr_error_model, config)\n    builder = DocumentBuilder(config)\n    document = builder.build_document(doc_provider)\n\n    bad_ocr_results = line_builder.ocr_error_detection(\n        document.pages, doc_provider.page_lines\n    )\n    assert len(bad_ocr_results.labels) == 2\n    assert all([label == \"good\" for label in bad_ocr_results.labels])\n"
  },
  {
    "path": "tests/builders/test_layout_replace.py",
    "content": "import pytest\n\nfrom marker.builders.document import DocumentBuilder\nfrom marker.builders.layout import LayoutBuilder\nfrom marker.builders.line import LineBuilder\nfrom marker.renderers.markdown import MarkdownRenderer\nfrom marker.schema import BlockTypes\nfrom marker.schema.registry import get_block_class\n\n\n@pytest.mark.filename(\"thinkpython.pdf\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_layout_replace(\n    request, config, doc_provider, layout_model, ocr_error_model, detection_model\n):\n    # The llm layout builder replaces blocks - this makes sure text is still merged properly\n    layout_builder = LayoutBuilder(layout_model, config)\n    line_builder = LineBuilder(detection_model, ocr_error_model, config)\n    builder = DocumentBuilder(config)\n    document = builder.build_document(doc_provider)\n    layout_builder(document, doc_provider)\n    page = document.pages[0]\n    new_blocks = []\n    for block in page.contained_blocks(document, (BlockTypes.Text,)):\n        generated_block_class = get_block_class(BlockTypes.TextInlineMath)\n        generated_block = generated_block_class(\n            polygon=block.polygon,\n            page_id=block.page_id,\n            structure=block.structure,\n        )\n        page.replace_block(block, generated_block)\n        new_blocks.append(generated_block)\n    line_builder(document, doc_provider)\n\n    for block in new_blocks:\n        assert block.raw_text(document).strip()\n\n    renderer = MarkdownRenderer(config)\n    rendered = renderer(document)\n\n    assert \"Think Python\" in rendered.markdown\n"
  },
  {
    "path": "tests/builders/test_ocr_builder.py",
    "content": "from PIL import Image\n\nfrom marker.builders.ocr import OcrBuilder\n\n\ndef test_blank_char_builder(recognition_model):\n    builder = OcrBuilder(recognition_model)\n    image = Image.new(\"RGB\", (100, 100))\n    spans = builder.spans_from_html_chars([], None, image)  # Test with empty char list\n    assert len(spans) == 0\n"
  },
  {
    "path": "tests/builders/test_ocr_pipeline.py",
    "content": "import pytest\n\nfrom marker.schema import BlockTypes\nfrom marker.schema.text.line import Line\n\n\ndef _ocr_pipeline_test(pdf_document):\n    first_page = pdf_document.pages[0]\n    assert first_page.structure[0] == \"/page/0/SectionHeader/0\"\n\n    first_block = first_page.get_block(first_page.structure[0])\n    assert first_block.text_extraction_method == \"surya\"\n    assert first_block.block_type == BlockTypes.SectionHeader\n\n    first_text_block: Line = first_page.get_block(first_block.structure[0])\n    assert first_text_block.block_type == BlockTypes.Line\n\n    first_span = first_page.get_block(first_text_block.structure[0])\n    assert first_span.block_type == BlockTypes.Span\n    assert first_span.text.strip() == \"Subspace Adversarial Training\"\n\n    # Ensure we match all text lines up properly\n    # Makes sure the OCR bbox is being scaled to the same scale as the layout boxes\n    text_lines = first_page.contained_blocks(pdf_document, (BlockTypes.Line,))\n    text_blocks = first_page.contained_blocks(\n        pdf_document, (BlockTypes.Text, BlockTypes.TextInlineMath)\n    )\n    # assert len(text_lines) == 83\n\n    # Ensure the bbox sizes match up\n    max_line_position = max([line.polygon.y_end for line in text_lines])\n    max_block_position = max(\n        [block.polygon.y_end for block in text_blocks if block.source == \"layout\"]\n    )\n    assert max_line_position <= (max_block_position * 1.02)\n\n\n@pytest.mark.config({\"force_ocr\": True, \"page_range\": [0]})\ndef test_ocr_pipeline(pdf_document):\n    _ocr_pipeline_test(pdf_document)\n\n\n@pytest.mark.config({\"force_ocr\": True, \"page_range\": [0], \"use_llm\": True})\ndef test_ocr_with_inline_pipeline(pdf_document):\n    _ocr_pipeline_test(pdf_document)\n"
  },
  {
    "path": "tests/builders/test_overriding.py",
    "content": "import multiprocessing as mp\n\nimport pytest\n\nfrom marker.providers.pdf import PdfProvider\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import SectionHeader\nfrom marker.schema.document import Document\nfrom marker.schema.registry import register_block_class\nfrom marker.schema.text import Line\nfrom tests.utils import setup_pdf_provider\n\n\nclass NewSectionHeader(SectionHeader):\n    pass\n\n\nclass NewLine(Line):\n    pass\n\n\n@pytest.mark.config({\n    \"page_range\": [0],\n    \"override_map\": {BlockTypes.SectionHeader: NewSectionHeader}\n})\ndef test_overriding(pdf_document: Document):\n    assert pdf_document.pages[0]\\\n        .get_block(pdf_document.pages[0].structure[0]).__class__ == NewSectionHeader\n\n\ndef get_lines(pdf: str, config=None):\n    for block_type, block_cls in config[\"override_map\"].items():\n        register_block_class(block_type, block_cls)\n\n    provider: PdfProvider = setup_pdf_provider(pdf, config)\n    return provider.get_page_lines(0)\n\n\ndef test_overriding_mp():\n    config = {\n        \"page_range\": [0],\n        \"override_map\": {BlockTypes.Line: NewLine}\n    }\n\n    pdf_list = [\"adversarial.pdf\", \"adversarial_rot.pdf\"]\n\n    with mp.Pool(processes=2) as pool:\n        results = pool.starmap(get_lines, [(pdf, config) for pdf in pdf_list])\n        assert all([r[0].line.__class__ == NewLine for r in results])\n"
  },
  {
    "path": "tests/builders/test_pdf_links.py",
    "content": "import re\n\nimport pytest\n\nfrom marker.converters.pdf import PdfConverter\nfrom marker.renderers.markdown import MarkdownOutput\nfrom marker.schema import BlockTypes\nfrom marker.schema.document import Document\nfrom marker.util import classes_to_strings\n\n\n@pytest.mark.filename(\"arxiv_test.pdf\")\n@pytest.mark.output_format(\"markdown\")\n@pytest.mark.config({\"disable_ocr\": True})\ndef test_pdf_links(pdf_document: Document, config, renderer, model_dict, temp_doc):\n    first_page = pdf_document.pages[1]\n\n    processors = [\"marker.processors.reference.ReferenceProcessor\"]\n    pdf_converter = PdfConverter(\n        artifact_dict=model_dict,\n        processor_list=processors,\n        renderer=classes_to_strings([renderer])[0],\n        config=config,\n    )\n\n    for section_header_span in first_page.contained_blocks(\n        pdf_document, (BlockTypes.Span,)\n    ):\n        if \"II.\" in section_header_span.text:\n            assert section_header_span.url == \"#page-1-0\"\n            break\n    else:\n        raise ValueError(\"Could not find II. in the first page\")\n\n    section_header_block = first_page.contained_blocks(\n        pdf_document, (BlockTypes.SectionHeader,)\n    )[0]\n    assert section_header_block.raw_text(pdf_document) == \"II. THEORETICAL FRAMEWORK\\n\"\n\n    assert first_page.refs[0].ref == \"page-1-0\"\n\n    markdown_output: MarkdownOutput = pdf_converter(temp_doc.name)\n    markdown = markdown_output.markdown\n\n    assert \"[II.](#page-1-0)\" in markdown\n    assert '<span id=\"page-1-0\"></span>II. THEORETICAL FRAMEWORK' in markdown\n\n    for ref in set(\n        [\n            f'<span id=\"page-{m[0]}-{m[1]}\">'\n            for m in re.findall(r\"\\]\\(#page-(\\d+)-(\\d+)\\)\", markdown)\n        ]\n    ):\n        assert ref in markdown, f\"Reference {ref} not found in markdown\"\n"
  },
  {
    "path": "tests/builders/test_rotated_bboxes.py",
    "content": "import pytest\n\nfrom marker.schema import BlockTypes\n\n\n@pytest.mark.config({\"page_range\": [0]})\n@pytest.mark.filename(\"adversarial_rot.pdf\")\ndef test_rotated_bboxes(pdf_document):\n    first_page = pdf_document.pages[0]\n\n    # Ensure we match all text lines up properly\n    text_lines = first_page.contained_blocks(pdf_document, (BlockTypes.Line,))\n    text_blocks = first_page.contained_blocks(\n        pdf_document, (BlockTypes.Text, BlockTypes.TextInlineMath)\n    )\n    # assert len(text_lines) == 84\n\n    # Ensure the bbox sizes match up\n    max_line_position = max([line.polygon.x_end for line in text_lines])\n    max_block_position = max(\n        [block.polygon.x_end for block in text_blocks if block.source == \"layout\"]\n    )\n    assert max_line_position <= max_block_position\n"
  },
  {
    "path": "tests/builders/test_strip_existing_ocr.py",
    "content": "import pytest\n\n\n@pytest.mark.config({\"page_range\": [0], \"strip_existing_ocr\": True})\n@pytest.mark.filename(\"handwritten.pdf\")\ndef test_strip_ocr(doc_provider):\n    # Ensure that the OCR text isn't extracted\n    assert len(doc_provider.page_lines) == 0\n\n\n@pytest.mark.config({\"page_range\": [0]})\n@pytest.mark.filename(\"handwritten.pdf\")\ndef test_keep_ocr(doc_provider):\n    assert len(doc_provider.page_lines) == 1\n"
  },
  {
    "path": "tests/builders/test_structure.py",
    "content": "import pytest\n\nfrom marker.builders.structure import StructureBuilder\n\n\n@pytest.mark.config({\"page_range\": [0]})\ndef test_structure_builder(pdf_document):\n    structure = StructureBuilder()\n    structure(pdf_document)\n    assert len(pdf_document.pages[0].structure) > 0\n"
  },
  {
    "path": "tests/config/test_config.py",
    "content": "import sys\nfrom contextlib import suppress\nimport click\n\nfrom marker.config.printer import CustomClickPrinter\nfrom marker.config.crawler import crawler\nfrom marker.config.parser import ConfigParser\n\n\ndef capture_kwargs(argv):\n    command = click.command(cls=CustomClickPrinter)\n    captured_kwargs = {}\n\n    def parse_args(**kwargs):\n        captured_kwargs.update(kwargs)\n        return kwargs\n\n    original_argv = sys.argv\n    sys.argv = argv\n    try:\n        with suppress(SystemExit):\n            command(ConfigParser.common_options(parse_args))()\n    finally:\n        sys.argv = original_argv\n\n    return captured_kwargs\n\n\ndef test_config_parser():\n    sys.argv = [\n        \"test\",\n        \"--disable_multiprocessing\",\n        \"--output_dir\",\n        \"output_dir\",\n        \"--height_tolerance\",\n        \"0.5\",\n    ]\n    kwargs = capture_kwargs(sys.argv)\n    parser = ConfigParser(kwargs)\n    config_dict = parser.generate_config_dict()\n\n    # Validate kwarg capturing\n    assert kwargs[\"disable_multiprocessing\"]\n    assert kwargs[\"output_dir\"] == \"output_dir\"\n\n    assert config_dict[\"pdftext_workers\"] == 1  # disabling multiprocessing does this\n    assert config_dict[\"height_tolerance\"] == 0.5\n\n\ndef test_config_none():\n    kwargs = capture_kwargs([\"test\"])\n\n    for key in crawler.attr_set:\n        # We force some options to become flags for ease of use on the CLI\n        value = None\n        assert kwargs.get(key) is value\n\n\ndef test_config_llm():\n    kwargs = capture_kwargs([\"test\", \"--use_llm\"])\n    parser = ConfigParser(kwargs)\n    config_dict = parser.generate_config_dict()\n\n    # Validate kwarg capturing\n    assert config_dict[\"use_llm\"]\n\n\ndef test_config_force_ocr():\n    kwargs = capture_kwargs([\"test\", \"--force_ocr\"])\n    parser = ConfigParser(kwargs)\n    config_dict = parser.generate_config_dict()\n\n    # Validate kwarg capturing\n    assert config_dict[\"force_ocr\"]\n"
  },
  {
    "path": "tests/conftest.py",
    "content": "import tempfile\nfrom typing import Dict, Type\n\nfrom PIL import Image, ImageDraw\n\nimport datasets\nimport pytest\n\nfrom marker.builders.document import DocumentBuilder\nfrom marker.builders.layout import LayoutBuilder\nfrom marker.builders.line import LineBuilder\nfrom marker.builders.ocr import OcrBuilder\nfrom marker.builders.structure import StructureBuilder\nfrom marker.converters.pdf import PdfConverter\nfrom marker.models import create_model_dict\nfrom marker.providers.registry import provider_from_filepath\nfrom marker.renderers.chunk import ChunkRenderer\nfrom marker.renderers.html import HTMLRenderer\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import Block\nfrom marker.renderers.markdown import MarkdownRenderer\nfrom marker.renderers.json import JSONRenderer\nfrom marker.schema.registry import register_block_class\nfrom marker.util import classes_to_strings, strings_to_classes\n\n\n@pytest.fixture(scope=\"session\")\ndef model_dict():\n    model_dict = create_model_dict()\n    yield model_dict\n    del model_dict\n\n\n@pytest.fixture(scope=\"session\")\ndef layout_model(model_dict):\n    yield model_dict[\"layout_model\"]\n\n\n@pytest.fixture(scope=\"session\")\ndef detection_model(model_dict):\n    yield model_dict[\"detection_model\"]\n\n\n@pytest.fixture(scope=\"session\")\ndef recognition_model(model_dict):\n    yield model_dict[\"recognition_model\"]\n\n\n@pytest.fixture(scope=\"session\")\ndef table_rec_model(model_dict):\n    yield model_dict[\"table_rec_model\"]\n\n\n@pytest.fixture(scope=\"session\")\ndef ocr_error_model(model_dict):\n    yield model_dict[\"ocr_error_model\"]\n\n\n@pytest.fixture(scope=\"function\")\ndef config(request):\n    config_mark = request.node.get_closest_marker(\"config\")\n    config = config_mark.args[0] if config_mark else {}\n\n    override_map: Dict[BlockTypes, Type[Block]] = config.get(\"override_map\", {})\n    for block_type, override_block_type in override_map.items():\n        register_block_class(block_type, override_block_type)\n\n    return config\n\n\n@pytest.fixture(scope=\"session\")\ndef pdf_dataset():\n    return datasets.load_dataset(\"datalab-to/pdfs\", split=\"train\")\n\n\n@pytest.fixture(scope=\"function\")\ndef temp_doc(request, pdf_dataset):\n    filename_mark = request.node.get_closest_marker(\"filename\")\n    filename = filename_mark.args[0] if filename_mark else \"adversarial.pdf\"\n\n    idx = pdf_dataset[\"filename\"].index(filename)\n    suffix = filename.split(\".\")[-1]\n\n    temp_pdf = tempfile.NamedTemporaryFile(suffix=f\".{suffix}\")\n    temp_pdf.write(pdf_dataset[\"pdf\"][idx])\n    temp_pdf.flush()\n    yield temp_pdf\n\n\n@pytest.fixture(scope=\"function\")\ndef doc_provider(request, config, temp_doc):\n    provider_cls = provider_from_filepath(temp_doc.name)\n    yield provider_cls(temp_doc.name, config)\n\n\n@pytest.fixture(scope=\"function\")\ndef pdf_document(\n    request,\n    config,\n    doc_provider,\n    layout_model,\n    ocr_error_model,\n    recognition_model,\n    detection_model,\n):\n    layout_builder = LayoutBuilder(layout_model, config)\n    line_builder = LineBuilder(detection_model, ocr_error_model, config)\n    ocr_builder = OcrBuilder(recognition_model, config)\n    builder = DocumentBuilder(config)\n    structure_builder = StructureBuilder(config)\n    document = builder(doc_provider, layout_builder, line_builder, ocr_builder)\n    structure_builder(document)\n    yield document\n\n\n@pytest.fixture(scope=\"function\")\ndef pdf_converter(request, config, model_dict, renderer, llm_service):\n    if llm_service:\n        llm_service = classes_to_strings([llm_service])[0]\n    yield PdfConverter(\n        artifact_dict=model_dict,\n        processor_list=None,\n        renderer=classes_to_strings([renderer])[0],\n        config=config,\n        llm_service=llm_service,\n    )\n\n\n@pytest.fixture(scope=\"function\")\ndef renderer(request, config):\n    if request.node.get_closest_marker(\"output_format\"):\n        output_format = request.node.get_closest_marker(\"output_format\").args[0]\n        if output_format == \"markdown\":\n            return MarkdownRenderer\n        elif output_format == \"json\":\n            return JSONRenderer\n        elif output_format == \"html\":\n            return HTMLRenderer\n        elif output_format == \"chunks\":\n            return ChunkRenderer\n        else:\n            raise ValueError(f\"Unknown output format: {output_format}\")\n    else:\n        return MarkdownRenderer\n\n\n@pytest.fixture(scope=\"function\")\ndef llm_service(request, config):\n    llm_service = config.get(\"llm_service\")\n    if not llm_service:\n        yield None\n    else:\n        yield strings_to_classes([llm_service])[0]\n\n\n@pytest.fixture(scope=\"function\")\ndef temp_image():\n    img = Image.new(\"RGB\", (512, 512), color=\"white\")\n    draw = ImageDraw.Draw(img)\n    draw.text((200, 200), \"Hello, World!\", fill=\"black\", font_size=36)\n    with tempfile.NamedTemporaryFile(suffix=\".png\") as f:\n        img.save(f.name)\n        f.flush()\n        yield f\n"
  },
  {
    "path": "tests/converters/test_extraction_converter.py",
    "content": "import json\nimport pytest\n\nfrom marker.converters.extraction import ExtractionConverter\nfrom marker.extractors.page import PageExtractionSchema\nfrom marker.extractors.document import DocumentExtractionSchema\nfrom marker.services import BaseService\n\n\nclass MockLLMService(BaseService):\n    def __call__(self, prompt, image=None, page=None, response_schema=None, **kwargs):\n        if response_schema == PageExtractionSchema:\n            return {\n                \"description\": \"Mock extraction description\",\n                \"detailed_notes\": \"Mock detailed notes for page extraction\",\n            }\n        elif response_schema == DocumentExtractionSchema:\n            return {\n                \"analysis\": \"Mock document analysis\",\n                \"document_json\": json.dumps({\"test_key\": \"test_value\"}),\n            }\n        return {}\n\n\n@pytest.fixture\ndef mock_llm_service():\n    return MockLLMService\n\n\n@pytest.fixture\ndef extraction_converter(config, model_dict, mock_llm_service):\n    test_schema = {\n        \"title\": \"TestSchema\",\n        \"type\": \"object\",\n        \"properties\": {\"test_key\": {\"title\": \"Test Key\", \"type\": \"string\"}},\n        \"required\": [\"test_key\"],\n    }\n\n    config[\"page_schema\"] = json.dumps(test_schema)\n    config[\"output_format\"] = \"markdown\"\n    model_dict[\"llm_service\"] = mock_llm_service\n\n    converter = ExtractionConverter(\n        artifact_dict=model_dict, processor_list=None, config=config\n    )\n    converter.llm_service = mock_llm_service\n    converter.default_llm_service = MockLLMService\n    return converter\n\n\n@pytest.mark.config({\"page_range\": [0]})\ndef test_extraction_converter(config, model_dict, mock_llm_service, temp_doc):\n    config[\"page_schema\"] = \"invalid json\"\n\n    model_dict[\"llm_service\"] = mock_llm_service\n    converter = ExtractionConverter(\n        artifact_dict=model_dict, processor_list=None, config=config\n    )\n    converter.artifact_dict[\"llm_service\"] = mock_llm_service()\n\n    results = converter(temp_doc.name)\n    assert results.document_json == '{\"test_key\": \"test_value\"}'\n\n\n@pytest.mark.config({\"page_range\": [0, 1]})\ndef test_extraction_converter_multiple_pages(extraction_converter, temp_doc):\n    result = extraction_converter(temp_doc.name)\n\n    assert result is not None\n    assert result.document_json is not None\n    assert json.loads(result.document_json) == {\"test_key\": \"test_value\"}\n    assert result.analysis == \"Mock document analysis\"\n"
  },
  {
    "path": "tests/converters/test_ocr_converter.py",
    "content": "import pytest\n\nfrom marker.converters.ocr import OCRConverter\nfrom marker.renderers.ocr_json import OCRJSONOutput, OCRJSONPageOutput\n\n\ndef _ocr_converter(config, model_dict, temp_pdf, line_count: int, eq_count: int):\n    converter = OCRConverter(artifact_dict=model_dict, config=config)\n\n    ocr_json: OCRJSONOutput = converter(temp_pdf.name)\n    pages = ocr_json.children\n\n    assert len(pages) == 1\n    # assert len(pages[0].children) == line_count\n    eqs = [line for line in pages[0].children if line.block_type == \"Equation\"]\n    assert len(eqs) == eq_count\n    return pages\n\n\ndef check_bboxes(page: OCRJSONPageOutput, lines):\n    page_size = page.bbox\n    for line in lines:\n        assert len(line.children) > 0\n        for child in line.children:\n            bbox = child.bbox\n            assert all(\n                [\n                    bbox[0] >= page_size[0],\n                    bbox[1] >= page_size[1],\n                    bbox[2] <= page_size[2],\n                    bbox[3] <= page_size[3],\n                ]\n            ), \"Child bbox is outside page bbox\"\n\n\n@pytest.mark.config({\"page_range\": [0]})\ndef test_ocr_converter(config, model_dict, temp_doc):\n    _ocr_converter(config, model_dict, temp_doc, 85, 2)\n\n\n@pytest.mark.filename(\"pres.pdf\")\n@pytest.mark.config({\"page_range\": [1], \"force_ocr\": True, \"keep_chars\": True})\ndef test_ocr_converter_force(config, model_dict, temp_doc):\n    pages = _ocr_converter(config, model_dict, temp_doc, 10, 0)\n    lines = [line for line in pages[0].children if line.block_type == \"Line\"]\n    check_bboxes(pages[0], lines)\n\n\n@pytest.mark.filename(\"pres.pdf\")\n@pytest.mark.config({\"page_range\": [1], \"keep_chars\": True})\ndef test_ocr_converter_keep(config, model_dict, temp_doc):\n    pages = _ocr_converter(config, model_dict, temp_doc, 10, 0)\n    lines = [line for line in pages[0].children if line.block_type == \"Line\"]\n    check_bboxes(pages[0], lines)\n"
  },
  {
    "path": "tests/converters/test_pdf_converter.py",
    "content": "import io\n\nimport pytest\nfrom marker.converters.pdf import PdfConverter\nfrom marker.renderers.markdown import MarkdownOutput\n\n\n@pytest.mark.output_format(\"markdown\")\n@pytest.mark.config({\"page_range\": [0, 1, 2, 3, 7], \"disable_ocr\": True})\ndef test_pdf_converter(pdf_converter: PdfConverter, temp_doc):\n    markdown_output: MarkdownOutput = pdf_converter(temp_doc.name)\n    markdown = markdown_output.markdown\n\n    # Basic assertions\n    assert len(markdown) > 0\n    assert \"# Subspace Adversarial Training\" in markdown\n\n    # Some assertions for line joining across pages\n    assert (\n        \"AT solutions. However, these methods highly rely on specifically\" in markdown\n    )  # pgs: 1-2\n    assert (\n        \"(with adversarial perturbations), which harms natural accuracy, \" in markdown\n    )  # pgs: 3-4\n\n    # Some assertions for line joining across columns\n    assert \"remain similar across a wide range of choices.\" in markdown  # pg: 2\n    assert \"a new scheme for designing more robust and efficient\" in markdown  # pg: 8\n\n\n@pytest.mark.filename(\"manual.epub\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_epub_converter(pdf_converter: PdfConverter, temp_doc):\n    markdown_output: MarkdownOutput = pdf_converter(temp_doc.name)\n    markdown = markdown_output.markdown\n\n    # Basic assertions\n    assert \"Simple Sabotage Field Manual\" in markdown\n\n\n@pytest.mark.filename(\"single_sheet.xlsx\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_xlsx_converter(pdf_converter: PdfConverter, temp_doc):\n    markdown_output: MarkdownOutput = pdf_converter(temp_doc.name)\n    markdown = markdown_output.markdown\n\n    # Basic assertions\n    assert \"four\" in markdown\n\n\n@pytest.mark.filename(\"china.html\")\n@pytest.mark.config({\"page_range\": [10]})\ndef test_html_converter(pdf_converter: PdfConverter, temp_doc):\n    markdown_output: MarkdownOutput = pdf_converter(temp_doc.name)\n    markdown = markdown_output.markdown\n\n    # Basic assertions\n    assert \"Republic of China\" in markdown\n\n\n@pytest.mark.filename(\"gatsby.docx\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_docx_converter(pdf_converter: PdfConverter, temp_doc):\n    markdown_output: MarkdownOutput = pdf_converter(temp_doc.name)\n    markdown = markdown_output.markdown\n\n    # Basic assertions\n    assert \"The Decline of the American Dream in the 1920s\" in markdown\n\n\n@pytest.mark.filename(\"lambda.pptx\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_pptx_converter(pdf_converter: PdfConverter, temp_doc):\n    markdown_output: MarkdownOutput = pdf_converter(temp_doc.name)\n    markdown = markdown_output.markdown\n\n    # Basic assertions\n    assert \"Adam Doupé\" in markdown\n\n\n@pytest.mark.output_format(\"markdown\")\n@pytest.mark.config({\"page_range\": [0, 1, 2, 3, 7], \"disable_ocr\": True})\ndef test_pdf_converter_bytes(pdf_converter: PdfConverter, temp_doc):\n    with open(temp_doc.name, \"rb\") as f:\n        data = f.read()\n\n    input_bytes = io.BytesIO(data)\n    markdown_output: MarkdownOutput = pdf_converter(input_bytes)\n    markdown = markdown_output.markdown\n\n    # Basic assertions\n    assert len(markdown) > 0\n    assert \"# Subspace Adversarial Training\" in markdown\n\n    # Some assertions for line joining across pages\n    assert (\n        \"AT solutions. However, these methods highly rely on specifically\" in markdown\n    )  # pgs: 1-2\n    assert (\n        \"(with adversarial perturbations), which harms natural accuracy, \" in markdown\n    )  # pgs: 3-4\n\n    # Some assertions for line joining across columns\n    assert \"remain similar across a wide range of choices.\" in markdown  # pg: 2\n    assert \"a new scheme for designing more robust and efficient\" in markdown  # pg: 8\n"
  },
  {
    "path": "tests/converters/test_table_converter.py",
    "content": "import pytest\nfrom marker.converters.table import TableConverter\nfrom marker.renderers.markdown import MarkdownOutput\nfrom marker.util import classes_to_strings\n\ndef _table_converter(config, model_dict, renderer, temp_pdf):\n    converter = TableConverter(\n        artifact_dict=model_dict,\n        processor_list=None,\n        renderer=classes_to_strings([renderer])[0],\n        config=config\n    )\n\n    markdown_output: MarkdownOutput = converter(temp_pdf.name)\n    markdown = markdown_output.markdown\n\n    assert len(markdown) > 0\n    assert \"cyclic\" in markdown\n\n\n@pytest.mark.output_format(\"markdown\")\n@pytest.mark.config({\"page_range\": [5]})\ndef test_table_converter(config, model_dict, renderer, temp_doc):\n    _table_converter(config, model_dict, renderer, temp_doc)\n\n@pytest.mark.output_format(\"markdown\")\n@pytest.mark.config({\"page_range\": [5], \"force_ocr\": True})\ndef test_table_converter_ocr(config, model_dict, renderer, temp_doc):\n    _table_converter(config, model_dict, renderer, temp_doc)\n\n"
  },
  {
    "path": "tests/processors/test_document_toc_processor.py",
    "content": "import pytest\n\nfrom marker.processors.document_toc import DocumentTOCProcessor\n\n\n@pytest.mark.config({\"page_range\": [0]})\ndef test_document_toc_processor(pdf_document, detection_model, recognition_model, table_rec_model):\n    processor = DocumentTOCProcessor()\n    processor(pdf_document)\n\n    assert len(pdf_document.table_of_contents) == 4\n    assert pdf_document.table_of_contents[0][\"title\"] == \"Subspace Adversarial Training\"\n"
  },
  {
    "path": "tests/processors/test_equation_processor.py",
    "content": "import pytest\n\nfrom marker.schema import BlockTypes\nfrom marker.processors.equation import EquationProcessor\n\n\n@pytest.mark.config({\"page_range\": [0]})\ndef test_equation_processor(pdf_document, recognition_model):\n    processor = EquationProcessor(recognition_model)\n    processor(pdf_document)\n\n    for block in pdf_document.pages[0].children:\n        if block.block_type == BlockTypes.Equation:\n            assert block.html is not None"
  },
  {
    "path": "tests/processors/test_footnote_processor.py",
    "content": "import pytest\n\nfrom marker.processors.footnote import FootnoteProcessor\nfrom marker.schema import BlockTypes\n\n\n@pytest.mark.filename(\"population_stats.pdf\")\n@pytest.mark.config({\"page_range\": [4]})\ndef test_footnote_processor(pdf_document):\n    processor = FootnoteProcessor()\n    processor(pdf_document)\n\n    page0_footnotes = pdf_document.pages[0].contained_blocks(pdf_document, [BlockTypes.Footnote])\n    assert len(page0_footnotes) >= 2\n\n    assert page0_footnotes[-1].raw_text(pdf_document).strip().startswith(\"5\")\n"
  },
  {
    "path": "tests/processors/test_ignoretext.py",
    "content": "import pytest\n\nfrom marker.processors.ignoretext import IgnoreTextProcessor\nfrom marker.schema import BlockTypes\n\n\n@pytest.mark.filename(\"bio_pdf.pdf\")\n@pytest.mark.config({\"page_range\": list(range(10))})\n@pytest.mark.skip(reason=\"New layout model correctly identifies the block as a PageHeader, so nothing to be done by the IgnoreTextProcessor\")\ndef test_ignoretext_processor(pdf_document):\n    processor = IgnoreTextProcessor()\n    processor(pdf_document)\n\n    page1_header = pdf_document.pages[1].contained_blocks(pdf_document, [BlockTypes.Text])[0]\n    assert \"bioRxiv\" in page1_header.raw_text(pdf_document)\n\n    assert page1_header.ignore_for_output is True\n"
  },
  {
    "path": "tests/processors/test_llm_processors.py",
    "content": "from unittest.mock import MagicMock, Mock\n\nimport pytest\nfrom marker.processors.llm.llm_complex import LLMComplexRegionProcessor\nfrom marker.processors.llm.llm_equation import LLMEquationProcessor\n\nfrom marker.processors.llm.llm_form import LLMFormProcessor\nfrom marker.processors.llm.llm_image_description import LLMImageDescriptionProcessor\nfrom marker.processors.llm.llm_meta import LLMSimpleBlockMetaProcessor\nfrom marker.processors.llm.llm_table import LLMTableProcessor\nfrom marker.processors.table import TableProcessor\nfrom marker.renderers.markdown import MarkdownRenderer\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import ComplexRegion\n\n\n@pytest.mark.filename(\"form_1040.pdf\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_llm_form_processor_no_config(pdf_document, llm_service):\n    processor_lst = [LLMFormProcessor()]\n    processor = LLMSimpleBlockMetaProcessor(processor_lst, llm_service)\n    processor(pdf_document)\n\n    forms = pdf_document.contained_blocks((BlockTypes.Form,))\n    assert forms[0].html is None\n\n\n@pytest.mark.filename(\"form_1040.pdf\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_llm_form_processor_no_cells(pdf_document, llm_service):\n    config = {\"use_llm\": True, \"gemini_api_key\": \"test\"}\n    processor_lst = [LLMFormProcessor(config)]\n    processor = LLMSimpleBlockMetaProcessor(processor_lst, llm_service, config)\n    processor(pdf_document)\n\n    forms = pdf_document.contained_blocks((BlockTypes.Form,))\n    assert forms[0].html is None\n\n\n@pytest.mark.filename(\"form_1040.pdf\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_llm_form_processor(pdf_document, table_rec_model, recognition_model, detection_model):\n    corrected_html = \"<em>This is corrected markdown.</em>\\n\" * 100\n    corrected_html = \"<p>\" + corrected_html.strip() + \"</p>\\n\"\n\n    mock_cls = Mock()\n    mock_cls.return_value = {\"corrected_html\": corrected_html}\n\n    cell_processor = TableProcessor(recognition_model, table_rec_model, detection_model)\n    cell_processor(pdf_document)\n\n    config = {\"use_llm\": True, \"gemini_api_key\": \"test\"}\n    processor_lst = [LLMFormProcessor(config)]\n    processor = LLMSimpleBlockMetaProcessor(processor_lst, mock_cls, config)\n    processor(pdf_document)\n\n    forms = pdf_document.contained_blocks((BlockTypes.Form,))\n    assert forms[0].html == corrected_html.strip()\n\n\n\n@pytest.mark.filename(\"table_ex2.pdf\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_llm_table_processor(pdf_document, table_rec_model, recognition_model, detection_model):\n    corrected_html = \"\"\"\n<table>\n    <tr>\n        <td>Column 1</td>\n        <td>Column 2</td>\n        <td>Column 3</td>\n        <td>Column 4</td>\n    </tr>\n    <tr>\n        <td>Value 1 <math>x</math></td>\n        <td>Value 2</td>\n        <td>Value 3</td>\n        <td>Value 4</td>\n    </tr>\n    <tr>\n        <td>Value 5</td>\n        <td>Value 6</td>\n        <td>Value 7</td>\n        <td>Value 8</td>\n    </tr>\n</table>\n    \"\"\".strip()\n\n    mock_cls = Mock()\n    mock_cls.return_value = {\"corrected_html\": corrected_html}\n\n    cell_processor = TableProcessor(recognition_model, table_rec_model, detection_model)\n    cell_processor(pdf_document)\n\n    processor = LLMTableProcessor(mock_cls, {\"use_llm\": True, \"gemini_api_key\": \"test\"})\n    processor(pdf_document)\n\n    tables = pdf_document.contained_blocks((BlockTypes.Table,))\n    table_cells = tables[0].contained_blocks(pdf_document, (BlockTypes.TableCell,))\n    assert table_cells[0].text == \"Column 1\"\n\n    markdown = MarkdownRenderer()(pdf_document).markdown\n    assert \"Value 1 $x$\" in markdown\n\n\n@pytest.mark.filename(\"A17_FlightPlan.pdf\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_llm_caption_processor_disabled(pdf_document):\n    config = {\"use_llm\": True, \"gemini_api_key\": \"test\"}\n    mock_cls = MagicMock()\n    processor_lst = [LLMImageDescriptionProcessor(config)]\n    processor = LLMSimpleBlockMetaProcessor(processor_lst, mock_cls, config)\n    processor(pdf_document)\n\n    contained_pictures = pdf_document.contained_blocks((BlockTypes.Picture, BlockTypes.Figure))\n    assert all(picture.description is None for picture in contained_pictures)\n\n@pytest.mark.filename(\"A17_FlightPlan.pdf\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_llm_caption_processor(pdf_document):\n    description = \"This is an image description.\"\n    mock_cls = Mock()\n    mock_cls.return_value = {\"image_description\": description}\n\n    config = {\"use_llm\": True, \"gemini_api_key\": \"test\", \"extract_images\": False}\n    processor_lst = [LLMImageDescriptionProcessor(config)]\n    processor = LLMSimpleBlockMetaProcessor(processor_lst, mock_cls, config)\n    processor(pdf_document)\n\n    contained_pictures = pdf_document.contained_blocks((BlockTypes.Picture, BlockTypes.Figure))\n    assert all(picture.description == description for picture in contained_pictures)\n\n    # Ensure the rendering includes the description\n    renderer = MarkdownRenderer({\"extract_images\": False})\n    md = renderer(pdf_document).markdown\n\n    assert description in md\n\n\n@pytest.mark.filename(\"A17_FlightPlan.pdf\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_llm_complex_region_processor(pdf_document):\n    md = \"This is some *markdown* for a complex region.\"\n    mock_cls = Mock()\n    mock_cls.return_value = {\"corrected_markdown\": md * 25}\n\n    # Replace the block with a complex region\n    old_block = pdf_document.pages[0].children[0]\n    new_block = ComplexRegion(\n        **old_block.dict(exclude=[\"id\", \"block_id\", \"block_type\"]),\n    )\n    pdf_document.pages[0].replace_block(old_block, new_block)\n\n    # Test processor\n    config = {\"use_llm\": True, \"gemini_api_key\": \"test\"}\n    processor_lst = [LLMComplexRegionProcessor(config)]\n    processor = LLMSimpleBlockMetaProcessor(processor_lst, mock_cls, config)\n    processor(pdf_document)\n\n    # Ensure the rendering includes the description\n    renderer = MarkdownRenderer()\n    rendered_md = renderer(pdf_document).markdown\n\n    assert md in rendered_md\n\n@pytest.mark.filename(\"adversarial.pdf\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_multi_llm_processors(pdf_document):\n    description = \"<math>This is an image description.  And here is a lot of writing about it.</math>\" * 10\n    mock_cls = Mock()\n    mock_cls.return_value = {\"image_description\": description, \"corrected_equation\": description}\n\n    config = {\"use_llm\": True, \"gemini_api_key\": \"test\", \"extract_images\": False, \"min_equation_height\": .001}\n    processor_lst = [LLMImageDescriptionProcessor(config), LLMEquationProcessor(config)]\n    processor = LLMSimpleBlockMetaProcessor(processor_lst, mock_cls, config)\n    processor(pdf_document)\n\n    contained_pictures = pdf_document.contained_blocks((BlockTypes.Picture, BlockTypes.Figure))\n    assert all(picture.description == description for picture in contained_pictures)\n\n    contained_equations = pdf_document.contained_blocks((BlockTypes.Equation,))\n    print([equation.html for equation in contained_equations])\n    assert all(equation.html == description for equation in contained_equations)"
  },
  {
    "path": "tests/processors/test_table_merge.py",
    "content": "from unittest.mock import Mock\n\nimport pytest\n\nfrom marker.processors.llm.llm_table_merge import LLMTableMergeProcessor\nfrom marker.processors.table import TableProcessor\nfrom marker.schema import BlockTypes\n\n\n@pytest.mark.filename(\"table_ex2.pdf\")\ndef test_llm_table_processor_nomerge(pdf_document, table_rec_model, recognition_model, detection_model, mocker):\n    mock_cls = Mock()\n    mock_cls.return_value = {\n        \"merge\": \"true\",\n        \"direction\": \"right\"\n    }\n\n    cell_processor = TableProcessor(recognition_model, table_rec_model, detection_model)\n    cell_processor(pdf_document)\n\n    tables = pdf_document.contained_blocks((BlockTypes.Table,))\n    assert len(tables) == 3\n\n    processor = LLMTableMergeProcessor(mock_cls, {\"use_llm\": True, \"gemini_api_key\": \"test\"})\n    processor(pdf_document)\n\n    tables = pdf_document.contained_blocks((BlockTypes.Table,))\n    assert len(tables) == 3"
  },
  {
    "path": "tests/processors/test_table_processor.py",
    "content": "from typing import List\n\nimport pytest\n\nfrom marker.renderers.markdown import MarkdownRenderer\nfrom marker.schema import BlockTypes\nfrom marker.processors.table import TableProcessor\nfrom marker.schema.blocks import TableCell\n\n\n@pytest.mark.config({\"page_range\": [5]})\ndef test_table_processor(\n    pdf_document, recognition_model, table_rec_model, detection_model\n):\n    processor = TableProcessor(recognition_model, table_rec_model, detection_model)\n    processor(pdf_document)\n\n    for block in pdf_document.pages[0].children:\n        if block.block_type == BlockTypes.Table:\n            children = block.contained_blocks(pdf_document, (BlockTypes.TableCell,))\n            assert children\n            assert len(children) > 0\n            assert isinstance(children[0], TableCell)\n\n    assert len(pdf_document.contained_blocks((BlockTypes.Table,))) == 2\n\n    renderer = MarkdownRenderer()\n    table_output = renderer(pdf_document)\n    assert \"Schedule\" in table_output.markdown\n\n\n@pytest.mark.filename(\"table_ex.pdf\")\n@pytest.mark.config({\"page_range\": [0], \"force_ocr\": True})\ndef test_avoid_double_ocr(\n    pdf_document, recognition_model, table_rec_model, detection_model\n):\n    tables = pdf_document.contained_blocks((BlockTypes.Table,))\n    lines = tables[0].contained_blocks(pdf_document, (BlockTypes.Line,))\n    assert len(lines) == 0\n\n    processor = TableProcessor(\n        recognition_model, table_rec_model, detection_model, config={\"force_ocr\": True}\n    )\n    processor(pdf_document)\n\n    renderer = MarkdownRenderer()\n    table_output = renderer(pdf_document)\n    assert \"Participants\" in table_output.markdown\n\n\n@pytest.mark.filename(\"multicol-blocks.pdf\")\n@pytest.mark.config({\"page_range\": [3]})\ndef test_overlap_blocks(\n    pdf_document, detection_model, recognition_model, table_rec_model\n):\n    page = pdf_document.pages[0]\n    assert \"Cascading, and the Auxiliary Problem Principle\" in page.raw_text(\n        pdf_document\n    )\n\n    processor = TableProcessor(recognition_model, table_rec_model, detection_model)\n    processor(pdf_document)\n\n    assert \"Cascading, and the Auxiliary Problem Principle\" in page.raw_text(\n        pdf_document\n    )\n\n\n@pytest.mark.filename(\"pres.pdf\")\n@pytest.mark.config({\"page_range\": [4]})\ndef test_ocr_table(pdf_document, recognition_model, table_rec_model, detection_model):\n    processor = TableProcessor(recognition_model, table_rec_model, detection_model)\n    processor(pdf_document)\n\n    renderer = MarkdownRenderer()\n    table_output = renderer(pdf_document)\n    assert \"1.2E-38\" in table_output.markdown\n\n\n@pytest.mark.config({\"page_range\": [11]})\ndef test_split_rows(pdf_document, recognition_model, table_rec_model, detection_model):\n    processor = TableProcessor(recognition_model, table_rec_model, detection_model)\n    processor(pdf_document)\n\n    table = pdf_document.contained_blocks((BlockTypes.Table,))[-1]\n    cells: List[TableCell] = table.contained_blocks(\n        pdf_document, (BlockTypes.TableCell,)\n    )\n    unique_rows = len(set([cell.row_id for cell in cells]))\n    assert unique_rows == 6\n"
  },
  {
    "path": "tests/providers/test_document_providers.py",
    "content": "import pytest\n\n\n@pytest.mark.config({\"page_range\": [0]})\n@pytest.mark.filename(\"lambda.pptx\")\ndef test_pptx_provider(doc_provider):\n    assert doc_provider.get_images([0], 72)[0].size == (842, 596)\n\n    page_lines = doc_provider.get_page_lines(0)\n\n    spans = page_lines[0].spans\n    assert spans[0].text == \"Lambda Calculus\"\n\n    spans = page_lines[1].spans\n    assert spans[0].text == \"CSE 340 – Principles of Programming Languages\"\n\n\n@pytest.mark.config({\"page_range\": [0]})\n@pytest.mark.filename(\"manual.epub\")\ndef test_epub_provider(doc_provider):\n    assert doc_provider.get_images([0], 72)[0].size == (596, 842)\n\n    page_lines = doc_provider.get_page_lines(0)\n\n    spans = page_lines[0].spans\n    assert spans[0].text == \"The Project Gutenberg eBook of Simple\"\n\n\n@pytest.mark.config({\"page_range\": [0]})\n@pytest.mark.filename(\"china.html\")\ndef test_html_provider(doc_provider):\n    assert doc_provider.get_images([0], 72)[0].size == (596, 842)\n\n    page_lines = doc_provider.get_page_lines(0)\n\n    spans = page_lines[0].spans\n    assert spans[0].text == \"Jump to content\"\n\n@pytest.mark.config({\"page_range\": [0]})\n@pytest.mark.filename(\"gatsby.docx\")\ndef test_docx_provider(doc_provider):\n    assert doc_provider.get_images([0], 72)[0].size == (596, 842)\n\n    page_lines = doc_provider.get_page_lines(0)\n\n    spans = page_lines[0].spans\n    assert spans[0].text == \"Themes\"\n\n\n@pytest.mark.config({\"page_range\": [0]})\n@pytest.mark.filename(\"single_sheet.xlsx\")\ndef test_xlsx_provider(doc_provider):\n    assert doc_provider.get_images([0], 72)[0].size == (842, 596)\n\n    page_lines = doc_provider.get_page_lines(0)\n\n    spans = page_lines[0].spans\n    assert spans[0].text == \"Sheet1\""
  },
  {
    "path": "tests/providers/test_image_provider.py",
    "content": "from marker.providers.image import ImageProvider\nfrom marker.renderers.markdown import MarkdownOutput\n\n\ndef test_image_provider(config, temp_image):\n    provider = ImageProvider(temp_image.name, config)\n    assert len(provider) == 1\n    assert provider.get_images([0], 72)[0].size == (512, 512)\n\n    page_lines = provider.get_page_lines(0)\n    assert len(page_lines) == 0\n\ndef test_image_provider_conversion(pdf_converter, temp_image):\n    markdown_output: MarkdownOutput = pdf_converter(temp_image.name)\n    assert \"Hello, World!\" in markdown_output.markdown\n\n\n"
  },
  {
    "path": "tests/providers/test_pdf_provider.py",
    "content": "import pytest\n\n\n@pytest.mark.config({\"page_range\": [0]})\ndef test_pdf_provider(doc_provider):\n    assert len(doc_provider) == 12\n    assert doc_provider.get_images([0], 72)[0].size == (612, 792)\n    assert doc_provider.get_images([0], 96)[0].size == (816, 1056)\n\n    page_lines = doc_provider.get_page_lines(0)\n    assert len(page_lines) == 85\n\n    spans = page_lines[0].spans\n    assert len(spans) == 2\n    assert spans[0].text == \"Subspace Adversarial Training\"\n    assert spans[0].font == \"NimbusRomNo9L-Medi\"\n    assert spans[0].formats == [\"plain\"]\n"
  },
  {
    "path": "tests/renderers/test_chunk_renderer.py",
    "content": "import pytest\n\nfrom marker.renderers.chunk import ChunkRenderer\n\n\n@pytest.mark.config({\"page_range\": [0]})\ndef test_chunk_renderer(pdf_document):\n    renderer = ChunkRenderer()\n    chunk_output = renderer(pdf_document)\n    blocks = chunk_output.blocks\n    page_info = chunk_output.page_info\n\n    assert len(blocks) == 14\n    assert blocks[0].block_type == \"SectionHeader\"\n    assert page_info[0][\"bbox\"] is not None\n    assert page_info[0][\"polygon\"] is not None\n\n    figure_groups = [block for block in blocks if block.block_type == \"FigureGroup\"]\n    figures = [block for block in blocks if block.block_type == \"Figure\"]\n    captions = [block for block in blocks if block.block_type == \"Caption\"]\n\n    assert len(figure_groups) == 1\n    assert len(figures) == 0\n    assert len(captions) == 0\n\n    figure_group = figure_groups[0]\n    assert figure_group.images is not None\n    assert len(figure_group.images) == 1\n    assert \"<img src='/page/0/Figure/9'>\" in figure_group.html"
  },
  {
    "path": "tests/renderers/test_extract_images.py",
    "content": "import pytest\n\nfrom marker.renderers.markdown import MarkdownRenderer\n\n\n@pytest.mark.config({\"page_range\": [0]})\n@pytest.mark.filename(\"A17_FlightPlan.pdf\")\ndef test_disable_extract_images(pdf_document):\n    renderer = MarkdownRenderer({\"extract_images\": False})\n    md = renderer(pdf_document).markdown\n\n    # Verify markdown\n    assert \"jpeg\" not in md\n\n\n@pytest.mark.config({\"page_range\": [0]})\n@pytest.mark.filename(\"A17_FlightPlan.pdf\")\ndef test_extract_images(pdf_document):\n    renderer = MarkdownRenderer()\n    md = renderer(pdf_document).markdown\n\n    # Verify markdown\n    assert \"jpeg\" in md"
  },
  {
    "path": "tests/renderers/test_html_renderer.py",
    "content": "import pytest\n\nfrom marker.renderers.html import HTMLRenderer\n\n\n@pytest.mark.config(\n    {\n        \"page_range\": [0],\n        \"disable_ocr\": True,\n        \"add_block_ids\": True,\n        \"paginate_output\": True,\n    }\n)\ndef test_html_renderer_block_ids(pdf_document, config):\n    renderer = HTMLRenderer(config)\n    html = renderer(pdf_document).html\n\n    # Verify some block IDs are present\n    assert \"/page/0/Text/1\" in html\n"
  },
  {
    "path": "tests/renderers/test_json_renderer.py",
    "content": "import pytest\n\nfrom marker.renderers.json import JSONRenderer\n\n\n@pytest.mark.config({\"page_range\": [0]})\ndef test_markdown_renderer_pagination(pdf_document):\n    renderer = JSONRenderer()\n    pages = renderer(pdf_document).children\n\n    assert len(pages) == 1\n    assert pages[0].block_type == \"Page\"\n    assert pages[0].children[0].block_type == \"SectionHeader\""
  },
  {
    "path": "tests/renderers/test_markdown_renderer.py",
    "content": "import pytest\n\nfrom marker.renderers.markdown import MarkdownRenderer\nfrom marker.schema import BlockTypes\nfrom marker.schema.blocks import TableCell\n\n\n@pytest.mark.config({\"page_range\": [0], \"disable_ocr\": True})\ndef test_markdown_renderer(pdf_document):\n    renderer = MarkdownRenderer()\n    md = renderer(pdf_document).markdown\n\n    # Verify markdown\n    assert \"# Subspace Adversarial Training\" in md\n\n\n@pytest.mark.config({\"page_range\": [0]})\ndef test_markdown_renderer_auto_ocr(pdf_document):\n    renderer = MarkdownRenderer()\n    md = renderer(pdf_document).markdown\n\n    # Verify markdown\n    assert \"Subspace Adversarial Training\" in md\n\n\n@pytest.mark.config({\"page_range\": [0, 1], \"paginate_output\": True})\ndef test_markdown_renderer_pagination(pdf_document):\n    renderer = MarkdownRenderer({\"paginate_output\": True})\n    md = renderer(pdf_document).markdown\n\n    assert \"\\n\\n{0}-\" in md\n    assert \"\\n\\n{1}-\" in md\n\n\n@pytest.mark.config({\"page_range\": [0, 1], \"paginate_output\": True})\ndef test_markdown_renderer_pagination_blank_last_page(pdf_document):\n    # Clear all children and structure from the last page to simulate a blank page\n    last_page = pdf_document.pages[-1]\n    last_page.children = []\n    last_page.structure = []\n\n    renderer = MarkdownRenderer({\"paginate_output\": True})\n    md = renderer(pdf_document).markdown\n\n    # Should end with pagination marker and preserve trailing newlines\n    assert md.endswith(\"}\\n\\n\") or md.endswith(\n        \"}------------------------------------------------\\n\\n\"\n    )\n\n\n@pytest.mark.config({\"page_range\": [0, 1]})\ndef test_markdown_renderer_metadata(pdf_document):\n    renderer = MarkdownRenderer({\"paginate_output\": True})\n    metadata = renderer(pdf_document).metadata\n    assert \"table_of_contents\" in metadata\n\n\n@pytest.mark.config({\"page_range\": [0, 1]})\ndef test_markdown_renderer_images(pdf_document):\n    renderer = MarkdownRenderer({\"extract_images\": False})\n    markdown_output = renderer(pdf_document)\n\n    assert len(markdown_output.images) == 0\n    assert \"![](\" not in markdown_output.markdown\n\n\n@pytest.mark.config({\"page_range\": [5]})\ndef test_markdown_renderer_tables(pdf_document):\n    table = pdf_document.contained_blocks((BlockTypes.Table,))[0]\n    page = pdf_document.pages[0]\n\n    cell = TableCell(\n        polygon=table.polygon,\n        text_lines=[\"54<i>.45</i>67<br>89<math>x</math>\"],\n        rowspan=1,\n        colspan=1,\n        row_id=0,\n        col_id=0,\n        is_header=False,\n        page_id=page.page_id,\n    )\n    page.add_full_block(cell)\n    table.structure = []\n    table.add_structure(cell)\n\n    renderer = MarkdownRenderer()\n    md = renderer(pdf_document).markdown\n    assert \"54 <i>.45</i> 67<br>89 $x$\" in md\n"
  },
  {
    "path": "tests/schema/groups/test_list_grouping.py",
    "content": "import pytest\n\nfrom marker.builders.structure import StructureBuilder\nfrom marker.schema import BlockTypes\n\n\n@pytest.mark.config({\"page_range\": [4]})\n@pytest.mark.skip(reason=\"Model breaks this up due to equations\")\ndef test_list_grouping(pdf_document):\n    structure = StructureBuilder()\n    structure(pdf_document)\n\n    page = pdf_document.pages[0]\n    list_groups = []\n    for block in page.children:\n        if block.block_type == BlockTypes.ListGroup:\n            list_groups.append(block)\n\n    # The model breaks this up, since it has equations in it\n    assert len(list_groups) == 3\n"
  },
  {
    "path": "tests/services/test_service_init.py",
    "content": "import pytest\n\nfrom marker.converters.pdf import PdfConverter\nfrom marker.services.gemini import GoogleGeminiService\nfrom marker.services.ollama import OllamaService\nfrom marker.services.vertex import GoogleVertexService\nfrom marker.services.openai import OpenAIService\nfrom marker.services.azure_openai import AzureOpenAIService\n\n\n@pytest.mark.output_format(\"markdown\")\n@pytest.mark.config({\"page_range\": [0]})\ndef test_empty_llm(pdf_converter: PdfConverter, temp_doc):\n    assert pdf_converter.artifact_dict[\"llm_service\"] is None\n    assert pdf_converter.llm_service is None\n\n\ndef test_llm_no_keys(model_dict, config):\n    with pytest.raises(AssertionError):\n        PdfConverter(artifact_dict=model_dict, config={\"use_llm\": True})\n\n\n@pytest.mark.output_format(\"markdown\")\n@pytest.mark.config({\"page_range\": [0], \"use_llm\": True, \"gemini_api_key\": \"test\"})\ndef test_llm_gemini(pdf_converter: PdfConverter, temp_doc):\n    assert pdf_converter.artifact_dict[\"llm_service\"] is not None\n    assert isinstance(pdf_converter.llm_service, GoogleGeminiService)\n\n\n@pytest.mark.output_format(\"markdown\")\n@pytest.mark.config(\n    {\n        \"page_range\": [0],\n        \"use_llm\": True,\n        \"vertex_project_id\": \"test\",\n        \"llm_service\": \"marker.services.vertex.GoogleVertexService\",\n    }\n)\ndef test_llm_vertex(pdf_converter: PdfConverter, temp_doc):\n    assert pdf_converter.artifact_dict[\"llm_service\"] is not None\n    assert isinstance(pdf_converter.llm_service, GoogleVertexService)\n\n\n@pytest.mark.output_format(\"markdown\")\n@pytest.mark.config(\n    {\n        \"page_range\": [0],\n        \"use_llm\": True,\n        \"llm_service\": \"marker.services.ollama.OllamaService\",\n    }\n)\ndef test_llm_ollama(pdf_converter: PdfConverter, temp_doc):\n    assert pdf_converter.artifact_dict[\"llm_service\"] is not None\n    assert isinstance(pdf_converter.llm_service, OllamaService)\n\n\n@pytest.mark.output_format(\"markdown\")\n@pytest.mark.config(\n    {\n        \"page_range\": [0],\n        \"use_llm\": True,\n        \"llm_service\": \"marker.services.openai.OpenAIService\",\n        \"openai_api_key\": \"test\",\n    }\n)\ndef test_llm_openai(pdf_converter: PdfConverter, temp_doc):\n    assert pdf_converter.artifact_dict[\"llm_service\"] is not None\n    assert isinstance(pdf_converter.llm_service, OpenAIService)\n\n\n@pytest.mark.output_format(\"markdown\")\n@pytest.mark.config(\n    {\n        \"page_range\": [0],\n        \"use_llm\": True,\n        \"llm_service\": \"marker.services.azure_openai.AzureOpenAIService\",\n        \"azure_endpoint\": \"https://example.openai.azure.com\",\n        \"azure_api_key\": \"test\",\n        \"deployment_name\": \"test-model\",\n        \"azure_api_version\": \"1\",\n    }\n)\ndef test_llm_azure_openai(pdf_converter: PdfConverter, temp_doc):\n    assert pdf_converter.artifact_dict[\"llm_service\"] is not None\n    assert isinstance(pdf_converter.llm_service, AzureOpenAIService)\n"
  },
  {
    "path": "tests/utils.py",
    "content": "from marker.providers.pdf import PdfProvider\nimport tempfile\n\nimport datasets\n\n\ndef setup_pdf_provider(\n    filename='adversarial.pdf',\n    config=None,\n) -> PdfProvider:\n    dataset = datasets.load_dataset(\"datalab-to/pdfs\", split=\"train\")\n    idx = dataset['filename'].index(filename)\n\n    temp_pdf = tempfile.NamedTemporaryFile(suffix=\".pdf\")\n    temp_pdf.write(dataset['pdf'][idx])\n    temp_pdf.flush()\n\n    provider = PdfProvider(temp_pdf.name, config)\n    return provider\n"
  }
]